:root {
    --navy: #0A2342;
    --navy-2: #06172e;
    --navy-soft: #12365d;
    --gold: #D4A017;
    --gold-2: #f0c85a;
    --white: #ffffff;
    --paper: #f7f4ed;
    --ink: #142033;
    --muted: #677286;
    --line: rgba(10, 35, 66, 0.12);
    --shadow: 0 24px 80px rgba(10, 35, 66, 0.16);
    --shadow-soft: 0 18px 45px rgba(10, 35, 66, 0.1);
    --radius: 8px;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --font-display: "Playfair Display", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(212, 160, 23, 0.08), transparent 28%),
        linear-gradient(315deg, rgba(10, 35, 66, 0.08), transparent 38%);
}

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

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

.site-icon {
    width: 1.15em;
    height: 1.15em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1100;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: var(--radius);
    background: var(--gold);
    color: var(--navy);
    font-weight: 800;
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    padding: 14px 0;
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
    padding: 8px 0;
    background: rgba(10, 35, 66, 0.92);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
}

.navbar {
    padding: 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.brand-symbol {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 160, 23, .55);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(212, 160, 23, .95), rgba(255, 220, 122, .92));
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: 0 12px 28px rgba(212, 160, 23, .28);
}

.brand-copy {
    display: grid;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
}

.brand-copy small {
    color: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 600;
}

.navbar-nav {
    align-items: center;
    gap: 2px;
}

.navbar .nav-link {
    position: relative;
    padding: 12px 11px;
    color: rgba(255, 255, 255, .8);
    font-size: .92rem;
    font-weight: 700;
    white-space: nowrap;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white);
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 7px;
    left: 12px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: var(--gold);
    transition: transform .22s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .18rem rgba(212, 160, 23, .35);
}

.navbar-toggler-icon {
    position: relative;
    width: 22px;
    height: 16px;
    border-top: 2px solid rgba(255, 255, 255, .94);
    background-image: none;
    filter: none;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    border-top: 2px solid rgba(255, 255, 255, .94);
}

.navbar-toggler-icon::before {
    top: 5px;
}

.navbar-toggler-icon::after {
    top: 12px;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.mobile-menu-fab {
    display: none;
}

.icon-action {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.icon-action:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 160, 23, .65);
    background: rgba(212, 160, 23, .16);
}

.icon-action-whatsapp {
    color: #8df7bb;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0;
}

.btn-gold {
    border: 1px solid rgba(212, 160, 23, .6);
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: var(--navy);
    box-shadow: 0 14px 30px rgba(212, 160, 23, .26);
}

.btn-gold:hover {
    transform: translateY(-2px);
    border-color: var(--gold-2);
    color: var(--navy);
    box-shadow: 0 18px 36px rgba(212, 160, 23, .34);
}

.btn-navy {
    border: 1px solid var(--navy);
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-2);
    color: var(--white);
}

.hero-section {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.hero-media,
.hero-media picture,
.hero-media img,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(5, 19, 37, .94) 0%, rgba(5, 19, 37, .74) 42%, rgba(5, 19, 37, .24) 72%, rgba(5, 19, 37, .58) 100%),
        linear-gradient(180deg, rgba(5, 19, 37, .58) 0%, rgba(5, 19, 37, .08) 42%, rgba(5, 19, 37, .88) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-copy {
    padding-top: 96px;
    max-width: 100%;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hero-copy h1,
.section-heading h2,
.premium-band h2,
.quote-section h2,
.testimonial-section h2,
.contact-panel h2,
.page-hero h1,
.page-feature h2,
.article-block h2,
.legal-panel h2 {
    font-family: var(--font-display);
    letter-spacing: 0;
}

.hero-copy h1 {
    max-width: 800px;
    margin: 0 0 22px;
    font-size: clamp(3.15rem, 6vw, 5.8rem);
    font-weight: 800;
    line-height: .98;
}

.hero-copy h1 > span {
    display: block;
}

.mobile-break {
    display: inline;
}

.hero-copy p {
    max-width: 630px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(1.08rem, 2vw, 1.34rem);
    line-height: 1.75;
}

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

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    max-width: 620px;
    margin-top: 46px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(14px);
}

.hero-proof div {
    padding: 18px;
    background: rgba(255, 255, 255, .06);
}

.hero-proof strong {
    display: block;
    color: var(--gold-2);
    font-size: 1.35rem;
    font-weight: 900;
}

.hero-proof span {
    color: rgba(255, 255, 255, .72);
    font-size: .86rem;
}

.section {
    position: relative;
    padding: 104px 0;
}

.section-overlap {
    margin-top: -92px;
    padding-top: 0;
    z-index: 2;
}

.advantage-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.advantage-card,
.service-card,
.why-card,
.blog-card,
.quote-panel,
.contact-panel,
.page-feature,
.article-block,
.legal-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--shadow-soft);
}

.advantage-card {
    min-height: 245px;
    padding: 34px 28px;
    border: 0;
    border-right: 1px solid var(--line);
    box-shadow: none;
}

.advantage-card:last-child {
    border-right: 0;
}

.icon-ring,
.service-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(212, 160, 23, .12);
    color: var(--gold);
}

.icon-ring .site-icon,
.service-icon .site-icon {
    width: 25px;
    height: 25px;
}

.icon-ring-soft {
    background: rgba(255, 255, 255, .1);
    color: var(--gold-2);
}

.advantage-card h2,
.service-card h3,
.why-card h3,
.blog-card h3 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 900;
}

.advantage-card p,
.service-card p,
.why-card p,
.blog-card p,
.section-lead,
.section-heading p,
.page-hero p,
.content-page p,
.legal-panel p {
    color: var(--muted);
    line-height: 1.75;
}

.section-heading {
    max-width: 790px;
    margin: 0 auto 52px;
}

.section-heading h2,
.premium-band h2,
.quote-section h2,
.testimonial-section h2,
.contact-panel h2,
.page-feature h2,
.article-block h2,
.legal-panel h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: clamp(2.1rem, 4vw, 3.55rem);
    font-weight: 800;
    line-height: 1.08;
}

.service-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 30px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before,
.why-card::before,
.blog-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity .25s ease;
}

.service-card:hover,
.why-card:hover,
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 160, 23, .45);
    box-shadow: var(--shadow);
}

.service-card:hover::before,
.why-card:hover::before,
.blog-card:hover::before {
    opacity: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--navy);
    font-weight: 900;
}

.card-link .site-icon {
    width: 18px;
    transition: transform .2s ease;
}

.card-link:hover {
    color: var(--gold);
}

.card-link:hover .site-icon {
    transform: translateX(4px);
}

.premium-band {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(212, 160, 23, .12), transparent 30%),
        linear-gradient(180deg, var(--navy), var(--navy-2));
}

.premium-band h2,
.premium-band .section-lead {
    color: var(--white);
}

.premium-band .section-lead {
    color: rgba(255, 255, 255, .72);
}

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

.why-card {
    position: relative;
    min-height: 255px;
    padding: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: none;
}

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

.why-card p {
    color: rgba(255, 255, 255, .7);
}

.counter-section {
    padding: 38px 0;
    background: var(--gold);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(10, 35, 66, .16);
}

.counter-item {
    padding: 32px 20px;
    text-align: center;
    background: rgba(255, 255, 255, .22);
}

.counter-item strong {
    display: block;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.1rem);
    font-weight: 900;
}

.counter-item span {
    color: rgba(10, 35, 66, .82);
    font-weight: 800;
}

.quote-section {
    background: linear-gradient(180deg, var(--paper), #fff);
}

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

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--ink);
    font-weight: 700;
}

.check-list .site-icon {
    width: 21px;
    height: 21px;
    margin-top: 3px;
    color: var(--gold);
    stroke-width: 2.4;
}

.quote-panel {
    padding: clamp(24px, 4vw, 42px);
}

.quote-form .form-label {
    color: var(--navy);
    font-size: .86rem;
    font-weight: 900;
}

.quote-form .form-control,
.quote-form .form-select {
    border-color: rgba(10, 35, 66, .14);
    border-radius: var(--radius);
    color: var(--navy);
    background: #fbfcff;
}

.quote-form .form-control:focus,
.quote-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 .2rem rgba(212, 160, 23, .14);
}

.hp-field {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.premium-alert {
    border-radius: var(--radius);
    font-weight: 800;
}

.blog-preview {
    background: var(--white);
}

.blog-card {
    position: relative;
    height: 100%;
    min-height: 300px;
    padding: 30px;
    overflow: hidden;
}

.blog-card > span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(212, 160, 23, .12);
    color: var(--navy);
    font-size: .78rem;
    font-weight: 900;
}

.testimonial-section {
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(10, 35, 66, .95), rgba(10, 35, 66, .88)),
        url("../images/hero-family-insurance.jpg") center / cover fixed;
}

.testimonial-section h2,
.testimonial-section .section-lead {
    color: var(--white);
}

.testimonial-section .section-lead {
    color: rgba(255, 255, 255, .74);
}

.testimonial-slider {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 26px 60px rgba(0, 0, 0, .24);
    backdrop-filter: blur(14px);
}

.testimonial-slider blockquote {
    min-height: 285px;
    margin: 0;
    padding: clamp(30px, 5vw, 58px);
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.65;
}

.testimonial-slider footer {
    display: grid;
    gap: 3px;
    margin-top: 28px;
    font-size: 1rem;
}

.testimonial-slider footer strong {
    color: var(--gold-2);
}

.testimonial-slider footer span {
    color: rgba(255, 255, 255, .72);
}

.carousel-controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    position: static;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, .08);
    opacity: 1;
}

.carousel-control-prev span,
.carousel-control-next span {
    font-size: 2rem;
    line-height: 1;
}

.contact-section {
    background: var(--paper);
}

.contact-panel {
    height: 100%;
    padding: clamp(26px, 4vw, 42px);
}

.contact-list,
.footer-contact {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 28px 0;
    list-style: none;
}

.contact-list li,
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-list .site-icon,
.footer-contact .site-icon {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    color: var(--gold);
}

.map-frame {
    height: 100%;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

.site-footer {
    color: rgba(255, 255, 255, .76);
    background: #06172e;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr 1fr;
    gap: 34px;
    padding: 72px 0 46px;
}

.footer-brand p {
    max-width: 330px;
    margin: 22px 0;
    line-height: 1.75;
}

.site-footer h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 900;
}

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

.footer-list a,
.footer-contact a,
.legal-links a {
    color: rgba(255, 255, 255, .76);
}

.footer-list a:hover,
.footer-contact a:hover,
.legal-links a:hover {
    color: var(--gold-2);
}

.legal-links .agency-credit {
    color: var(--gold-2);
    font-weight: 800;
}

.legal-links .agency-credit:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    margin: 0;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.floating-whatsapp,
.back-to-top {
    position: fixed;
    z-index: 1000;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 0;
}

.floating-whatsapp {
    right: 22px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    color: var(--white);
    background: #19b866;
    box-shadow: 0 14px 36px rgba(25, 184, 102, .35);
}

.floating-whatsapp .site-icon {
    width: 28px;
    height: 28px;
}

.back-to-top {
    right: 28px;
    bottom: 94px;
    width: 44px;
    height: 44px;
    color: var(--navy);
    background: var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.page-hero {
    position: relative;
    padding: 170px 0 86px;
    color: var(--white);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 23, 46, .96), rgba(10, 35, 66, .84)),
        url("../images/hero-family-insurance.jpg") center / cover;
}

.page-hero h1 {
    max-width: 880px;
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 1.04;
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
}

.content-page {
    padding: 92px 0;
}

.page-feature {
    height: 100%;
    padding: 30px;
}

.article-block,
.legal-panel {
    padding: clamp(26px, 4vw, 46px);
}

.article-block + .article-block {
    margin-top: 24px;
}

.article-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.process-list {
    counter-reset: step;
    display: grid;
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-list li {
    counter-increment: step;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.process-list li::before {
    content: counter(step);
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
}

@media (max-width: 1199.98px) {
    .site-header,
    .site-header.is-scrolled {
        background: rgba(10, 35, 66, .96);
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: var(--radius);
        background: rgba(6, 23, 46, .98);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .header-actions {
        margin-top: 12px;
    }

    .advantage-strip,
    .why-grid,
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .advantage-card:nth-child(2) {
        border-right: 0;
    }

    .advantage-card:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 720px;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg, rgba(5, 19, 37, .93), rgba(5, 19, 37, .58)),
            linear-gradient(180deg, rgba(5, 19, 37, .38), rgba(5, 19, 37, .9));
    }

    .section {
        padding: 78px 0;
    }

    .counter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .site-header .container {
        position: relative;
        width: 100%;
        max-width: 100%;
    }

    .navbar-toggler {
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 1200;
        display: inline-flex !important;
        background: rgba(255, 255, 255, .08);
        backdrop-filter: blur(12px);
    }

    .navbar-collapse {
        margin-top: 18px;
        width: 100%;
    }

    .brand-copy small {
        display: none;
    }

    .brand-symbol {
        width: 43px;
        height: 43px;
    }

    .hero-section {
        min-height: 700px;
    }

    .hero-media img {
        object-position: 64% center;
    }

    .hero-copy {
        padding-top: 112px;
        width: min(100%, 330px);
        max-width: 330px;
    }

    .hero-copy h1 {
        width: 100%;
        max-width: 330px;
        font-size: clamp(2.08rem, 9.8vw, 2.56rem);
        line-height: 1.08;
        overflow-wrap: break-word;
    }

    .mobile-break {
        display: block;
    }

    .hero-copy p {
        width: 100%;
        max-width: 330px;
        font-size: 1rem;
    }

    .hero-actions,
    .hero-proof {
        width: min(100%, 330px);
        max-width: 330px;
    }

    .section-kicker {
        max-width: 100%;
        gap: 8px;
        font-size: .68rem;
        letter-spacing: .08em;
        white-space: normal;
    }

    .hero-proof,
    .advantage-strip,
    .why-grid,
    .counter-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .hero-proof div,
    .advantage-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .advantage-card:last-child {
        border-bottom: 0;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
    }

    .navbar-toggler {
        border-color: rgba(212, 160, 23, .6);
        background: linear-gradient(135deg, var(--gold), var(--gold-2));
        color: var(--navy);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    }

    .navbar-toggler-icon {
        display: none;
    }

    .navbar-toggler::after {
        content: "☰";
        font-size: 1.35rem;
        font-weight: 900;
        line-height: 1;
    }

    .mobile-menu-fab {
        position: fixed;
        top: 18px;
        right: 18px;
        z-index: 1300;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(212, 160, 23, .6);
        border-radius: 50%;
        background: linear-gradient(135deg, var(--gold), var(--gold-2));
        color: var(--navy);
        font-size: 1.28rem;
        font-weight: 900;
        line-height: 1;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
    }

    .testimonial-slider blockquote {
        min-height: 360px;
    }

    .carousel-controls {
        right: 18px;
        bottom: 18px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 18px;
    }

    .back-to-top {
        right: 22px;
        bottom: 86px;
    }
}

@media (max-width: 575.98px) {
    .navbar-toggler,
    .mobile-menu-fab {
        right: auto;
        left: min(calc(100vw - 62px), 326px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
