:root {
    --navy: #1b3a6b;
    --navy-dark: #0b2144;
    --green: #2ead5a;
    --green-dark: #16813f;
    --text: #13294b;
    --muted: #64748b;
    --line: #dbe6f3;
    --soft: #f5f9fe;
    --white: #ffffff;
    --shadow: 0 22px 70px rgba(27, 58, 107, 0.12);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.nav-open,
body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.container {
    width: min(100% - 32px, var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(100% - 32px, 820px);
}

.section {
    padding: 86px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 230, 243, 0.8);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    max-width: 190px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    color: var(--navy);
    font-weight: 700;
    font-size: 0.96rem;
}

.main-nav a {
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--green);
}

.nav-cta {
    padding: 12px 18px;
    color: var(--white) !important;
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(46, 173, 90, 0.26);
}

.nav-toggle {
    display: none;
    border: 0;
    color: var(--white);
    background: var(--navy);
    border-radius: 999px;
    padding: 10px 14px;
    font: inherit;
    font-weight: 800;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    padding: 48px 0 54px;
    background:
        radial-gradient(circle at 85% 20%, rgba(46, 173, 90, 0.16), transparent 32%),
        linear-gradient(145deg, #f7fbff 0%, #ffffff 58%, #eef7ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 58, 107, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 58, 107, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000, transparent 72%);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
    gap: 44px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-dark);
    line-height: 1.08;
}

h1 {
    max-width: 780px;
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 6.2vw, 4.65rem);
    letter-spacing: -0.06em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.hero-text,
.section-heading p,
.intro-section p,
.content-card p,
.legal-content p {
    color: var(--muted);
    font-size: 1.08rem;
}

.hero-text {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: 1.16rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 16px 36px rgba(46, 173, 90, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--green-dark);
}

.button-secondary {
    color: var(--navy);
    background: var(--white);
    border-color: var(--line);
    box-shadow: 0 14px 34px rgba(27, 58, 107, 0.08);
}

.button-card {
    width: 100%;
    color: var(--white);
    background: var(--navy);
    text-align: center;
    white-space: normal;
}

.button-card:hover,
.button-card:focus-visible {
    background: var(--green);
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
    margin: 34px 0 0;
}

.trust-strip div {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.trust-strip dt {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.trust-strip dd {
    margin: 4px 0 0;
    color: var(--navy);
    font-weight: 900;
}

.brand-prompts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.brand-prompts span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 10px 26px rgba(27, 58, 107, 0.06);
}

.hero-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(219, 230, 243, 0.9);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.hero-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-card:hover,
.hero-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(46, 173, 90, 0.35);
    box-shadow: 0 20px 54px rgba(27, 58, 107, 0.12);
}

.hero-card-featured {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0d4f8b);
}

.hero-card-featured h3 {
    color: var(--white);
}

.hero-card-featured .button-card {
    color: var(--navy);
    background: var(--white);
}

.hero-card-featured .button-card:hover,
.hero-card-featured .button-card:focus-visible {
    color: var(--white);
    background: var(--green);
}

.hero-card-top {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.hero-product-kicker {
    color: var(--green);
    font-weight: 900;
}

.hero-product-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    color: var(--green);
    background: rgba(46, 173, 90, 0.12);
    border: 1px solid rgba(46, 173, 90, 0.22);
    border-radius: 16px;
}

.hero-product-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.hero-card-featured .hero-product-icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.hero-card h3 {
    margin-bottom: 7px;
    font-size: 1.22rem;
}

.hero-card p {
    margin-bottom: 14px;
    color: inherit;
    opacity: 0.82;
}

.hero-card .button {
    margin-top: auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 34px;
}

.intro-section {
    text-align: center;
}

.product-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card,
.content-card,
.contact-card,
.info-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 60px rgba(27, 58, 107, 0.08);
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover,
.product-card:focus-within,
.insurer-card:hover,
.faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(46, 173, 90, 0.34);
    box-shadow: 0 24px 70px rgba(27, 58, 107, 0.13);
}

.product-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    background: linear-gradient(135deg, rgba(46, 173, 90, 0.16), rgba(27, 58, 107, 0.1));
    border: 1px solid rgba(46, 173, 90, 0.22);
    border-radius: 18px;
}

.product-icon::before {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 900;
}

.product-icon-rca::before {
    content: "A";
}

.product-icon-pad::before {
    content: "H";
}

.product-icon-travel::before {
    content: "T";
}

.product-kicker {
    margin-bottom: 8px;
    color: var(--green);
    font-weight: 900;
}

.product-card small {
    display: block;
    margin: auto 0 22px;
    color: var(--muted);
}

.benefits-section,
.soft-section {
    background: var(--soft);
}

.benefits-grid,
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.content-grid.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
}

.benefits-list {
    display: grid;
    gap: 16px;
}

.benefits-list article {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.benefits-list p {
    margin-bottom: 0;
    color: var(--muted);
}

.credibility-card,
.final-cta-inner {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    padding: 34px;
    background: linear-gradient(135deg, #ffffff, #f5f9fe);
    border: 1px solid var(--line);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.credibility-card p,
.final-cta-inner p {
    max-width: 760px;
    color: var(--muted);
}

.final-cta {
    padding-top: 0;
}

.final-cta-inner {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0a4f87);
}

.final-cta-inner h2,
.final-cta-inner p {
    color: var(--white);
}

.page-hero {
    background: linear-gradient(145deg, #f7fbff, #ffffff);
    text-align: center;
}

.page-hero h1 {
    margin-inline: auto;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.page-hero p:last-child {
    color: var(--muted);
    font-size: 1.16rem;
}

.content-card,
.info-panel,
.contact-card {
    padding: 30px;
}

.accent-card {
    background: linear-gradient(135deg, var(--navy), #0d4f8b);
}

.accent-card h2,
.accent-card p {
    color: var(--white);
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    background: var(--green);
    border-radius: 999px;
}

.primary-contact {
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0d4f8b);
}

.primary-contact h2,
.primary-contact p {
    color: var(--white);
}

.contact-card p {
    font-size: 1.25rem;
    font-weight: 900;
}

.contact-card small {
    color: var(--muted);
}

.legal-section {
    background: var(--soft);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(230px, 0.32fr) minmax(0, 0.9fr);
    gap: 28px;
    align-items: start;
}

.legal-summary,
.legal-content {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 60px rgba(27, 58, 107, 0.07);
}

.legal-summary {
    position: sticky;
    top: 112px;
    padding: 26px;
}

.legal-content {
    padding: 34px;
}

.legal-content h2 {
    margin-top: 36px;
    font-size: 1.55rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--green-dark);
    font-weight: 800;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 27, 55, 0.64);
    backdrop-filter: blur(10px);
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    max-height: min(88vh, 820px);
    overflow: auto;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(8, 27, 55, 0.32);
}

.modal-dialog h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    color: var(--navy);
    background: var(--soft);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 1.45rem;
    font-weight: 900;
}

.modal-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.75fr);
    gap: 20px;
    margin: 26px 0;
}

.modal-note {
    padding: 22px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), #0d4f8b);
    border-radius: 22px;
}

.modal-note h3,
.modal-note p {
    color: var(--white);
}

.modal-action {
    width: 100%;
}

.carousel-section,
.home-contact-section {
    background: var(--soft);
}

.carousel-controls {
    display: none;
    gap: 10px;
    justify-content: flex-end;
}

.carousel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    color: var(--navy);
    background: var(--white);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 12px 34px rgba(27, 58, 107, 0.08);
}

.service-carousel {
    position: relative;
    min-height: 285px;
}

.service-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    padding: 34px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(58px);
    background:
        radial-gradient(circle at 90% 18%, rgba(46, 173, 90, 0.15), transparent 28%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
}

.service-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    animation: carouselFadeLeft 0.7s ease both;
}

.service-slide p {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.12rem;
}

.service-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-title-row h3 {
    margin-bottom: 0;
}

.service-title-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    color: var(--green);
    background: linear-gradient(135deg, rgba(46, 173, 90, 0.18), rgba(27, 58, 107, 0.08));
    border: 1px solid rgba(46, 173, 90, 0.24);
    border-radius: 20px;
}

.service-title-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.2;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    background: #b9c7da;
    border-radius: 999px;
    cursor: pointer;
}

.carousel-dots button.is-active {
    width: 28px;
    background: var(--green);
}

@keyframes carouselFadeLeft {
    from {
        opacity: 0;
        transform: translateX(44px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.insurer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.insurer-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 16px 48px rgba(27, 58, 107, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.insurer-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.insurer-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    color: var(--green);
}

.insurer-icon svg {
    width: 100%;
    height: 100%;
    fill: rgba(46, 173, 90, 0.13);
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.faq-section {
    background: var(--white);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.faq-item summary {
    padding: 20px 22px;
    color: var(--navy-dark);
    cursor: pointer;
    font-weight: 900;
}

.faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    color: var(--text);
    background: var(--white);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.privacy-check {
    display: flex !important;
    grid-template-columns: none;
    gap: 10px !important;
    align-items: flex-start;
    color: var(--muted) !important;
    font-size: 0.92rem;
    font-weight: 700 !important;
}

.privacy-check input {
    width: auto;
    margin-top: 4px;
}

.form-hp {
    position: absolute;
    left: -9999px;
}

.form-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 900;
}

.form-alert.success {
    color: var(--green-dark);
    background: rgba(46, 173, 90, 0.12);
}

.form-alert.error {
    color: #a33a2a;
    background: rgba(210, 75, 48, 0.1);
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--navy-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 0.9fr;
    gap: 34px;
    padding: 58px 0 34px;
}

.footer-brand img {
    max-width: 210px;
    margin-bottom: 16px;
    padding: 10px 12px;
    background: var(--white);
    border-radius: 18px;
}

.site-footer h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-list {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    min-height: 58px;
    padding: 0 20px;
    color: var(--white);
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 18px 44px rgba(46, 173, 90, 0.36);
    font-weight: 900;
}

.whatsapp-float::before {
    content: "";
    width: 14px;
    height: 14px;
    margin-right: 9px;
    background: var(--white);
    border-radius: 999px;
}

@media (max-width: 920px) {
    .section {
        padding: 64px 0;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        inset: 82px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .hero-grid,
    .section-heading,
    .benefits-grid,
    .content-grid,
    .content-grid.reverse,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 58px 0 64px;
    }

    .product-grid,
    .contact-grid,
    .insurer-grid,
    .hero-panel,
    .modal-content-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .carousel-controls {
        justify-content: flex-start;
    }

    .service-carousel {
        min-height: 320px;
    }

    .credibility-card,
    .final-cta-inner,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .legal-summary {
        position: static;
    }
}

@media (max-width: 560px) {
    .container,
    .narrow {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 74px;
    }

    .brand {
        max-width: 160px;
    }

    .main-nav {
        top: 74px;
    }

    h1 {
        font-size: clamp(2.35rem, 14vw, 3.6rem);
    }

    .hero-actions,
    .button,
    .nav-cta {
        width: 100%;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .credibility-card,
    .final-cta-inner,
    .legal-content,
    .content-card,
    .contact-card,
    .product-card {
        border-radius: 22px;
    }

    .hero-panel,
    .credibility-card,
    .final-cta-inner,
    .legal-content {
        padding: 22px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 54px;
        padding: 0 16px;
    }
}
