:root {
    --color-primary: #c5161d;
    --color-primary-dark: #8f1116;
    --color-primary-soft: #f1f3f6;
    --color-dark: #0f131a;
    --color-dark-soft: #171d27;
    --color-slate: #4f5b6f;
    --color-muted: #717c90;
    --color-light: #f3f5f7;
    --color-white: #ffffff;
    --color-gold: #c5161d;
    --border-soft: rgba(16, 20, 29, 0.08);
    --shadow-soft: 0 16px 40px rgba(16, 20, 29, 0.08);
    --shadow-strong: 0 20px 46px rgba(16, 20, 29, 0.14);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --navbar-height: 78px;
}

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

body {
    font-family: "Manrope", sans-serif;
    font-size: 0.97rem;
    color: var(--color-dark);
    background:
        radial-gradient(circle at top left, rgba(15, 19, 26, 0.05), transparent 28%),
        radial-gradient(circle at top right, rgba(197, 22, 29, 0.06), transparent 20%),
        linear-gradient(180deg, #ffffff 0%, #f3f5f7 100%);
}

section {
    position: relative;
}

a {
    text-decoration: none;
}

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

.section-spacing {
    padding: 88px 0;
}

.section-soft {
    background:
        radial-gradient(circle at right top, rgba(15, 19, 26, 0.05), transparent 18%),
        linear-gradient(180deg, #ffffff 0%, #f2f4f7 100%);
}

.section-dark {
    padding: 88px 0;
    background:
        radial-gradient(circle at top center, rgba(197, 22, 29, 0.18), transparent 22%),
        linear-gradient(180deg, #10141c 0%, #090c12 100%);
    overflow: hidden;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 44px;
}

.section-heading h2,
.faq-intro h2,
.final-cta-card h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 2.25vw, 2.18rem);
    font-weight: 100;
    line-height: 1.1;
    letter-spacing: 0.03em;
    margin-bottom: 14px;
}

.section-heading p,
.faq-intro p,
.final-cta-card p,
.hero-description {
    font-size: 0.84rem;
    line-height: 1.7;
    color: var(--color-slate);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 19, 26, 0.05);
    color: var(--color-primary-dark);
    font-size: 0.68rem;
    font-weight: 100;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(197, 22, 29, 0.12);
}

.hero-tag {
    font-weight: 100;
    letter-spacing: 0.13em;
}

.corporate-navbar {
    min-height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 20, 29, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease, min-height 0.3s ease;
}

.corporate-navbar.is-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 28px rgba(16, 20, 29, 0.07);
}

.brand-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    line-height: 1.1;
    color: var(--color-dark);
}

.brand-text strong {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.brand-text small {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--color-slate);
}

.navbar-nav .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    padding: 0.55rem 0.75rem;
    position: relative;
    font-size: 0.95rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.4rem;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    padding: 0.8rem 1.28rem;
    font-size: 0.95rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-brand {
    background: linear-gradient(135deg, #c5161d 0%, #8f1116 100%);
    color: var(--color-white);
    border: 0;
    box-shadow: 0 14px 28px rgba(197, 22, 29, 0.22);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--color-white);
    box-shadow: 0 18px 34px rgba(197, 22, 29, 0.28);
}

.btn-outline-brand {
    border: 1px solid rgba(16, 20, 29, 0.16);
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.88);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: var(--color-dark);
    color: var(--color-white);
    border-color: var(--color-dark);
}

.hero-section {
    padding: 148px 0 88px;
    background:
        linear-gradient(rgba(15, 19, 26, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 19, 26, 0.028) 1px, transparent 1px),
        radial-gradient(circle at top right, rgba(197, 22, 29, 0.10), transparent 22%),
        radial-gradient(circle at 12% 16%, rgba(15, 19, 26, 0.06), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 246, 249, 0.94) 52%, rgba(240, 243, 247, 0.96) 100%);
    background-size: 72px 72px, 72px 72px, auto, auto, auto;
    background-position: center;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
}

.hero-section::before {
    width: 260px;
    height: 260px;
    top: 80px;
    right: 10%;
    background: rgba(197, 22, 29, 0.12);
}

.hero-section::after {
    width: 210px;
    height: 210px;
    bottom: 20px;
    left: -60px;
    background: rgba(15, 19, 26, 0.10);
}

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

.hero-section .container::before {
    content: "";
    position: absolute;
    top: -56px;
    right: 0;
    width: 420px;
    height: 420px;
    border-radius: 48px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(255, 255, 255, 0.02)),
        linear-gradient(135deg, rgba(15, 19, 26, 0.04), transparent 58%);
    border: 1px solid rgba(15, 19, 26, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transform: rotate(-14deg);
    pointer-events: none;
    z-index: 0;
}

.hero-section .container::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(197, 22, 29, 0.08), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.hero-copy {
    padding-top: 8px;
}

.hero-insurance-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-insurance-icons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 19, 26, 0.08);
    color: var(--color-dark);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-insurance-icons i {
    color: var(--color-primary);
    font-size: 0.9rem;
}

.hero-insurance-icons a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(197, 22, 29, 0.18);
}

.hero-mobile-highlights {
    display: none;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.98rem, 3.62vw, 3.25rem);
    font-weight: 500;
    line-height: 1.03;
    margin-bottom: 24px;
    color: var(--color-dark);
    letter-spacing: 0.02em;
}

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

.hero-actions .btn {
    min-width: 290px;
}

.hero-actions .btn i,
.btn-footer-whatsapp i,
.final-cta-card .btn i {
    margin-right: 8px;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    align-items: start;
    justify-items: end;
}

.hero-showcase-card {
    position: relative;
    width: min(100%, 330px);
    padding: 17px 18px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 250, 0.94) 100%);
    border: 1px solid rgba(15, 19, 26, 0.08);
    box-shadow: 0 28px 54px rgba(15, 19, 26, 0.14);
    overflow: hidden;
}

.hero-showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(197, 22, 29, 0.10), transparent 28%),
        linear-gradient(135deg, rgba(15, 19, 26, 0.02), transparent 46%);
    pointer-events: none;
}

.hero-showcase-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    pointer-events: none;
}

.hero-showcase-top {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 10px;
    z-index: 1;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(197, 22, 29, 0.08);
    color: var(--color-primary-dark);
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.hero-pill i {
    font-size: 0.74rem;
}

.hero-showcase-logo-wrap {
    position: relative;
    z-index: 1;
    width: 148px;
    height: 148px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0%, rgba(241, 243, 246, 0.96) 72%);
    border: 1px solid rgba(15, 19, 26, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 32px rgba(15, 19, 26, 0.08);
}

.hero-showcase-logo {
    width: 82%;
    filter: drop-shadow(0 18px 28px rgba(197, 22, 29, 0.12));
}

.hero-showcase-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
}

.hero-showcase-metrics article {
    padding: 9px 11px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 19, 26, 0.07);
}

.hero-showcase-metrics strong {
    display: block;
    margin-bottom: 3px;
    color: var(--color-dark);
    font-size: 0.9rem;
}

.hero-showcase-metrics p {
    margin: 0;
    color: var(--color-slate);
    font-size: 0.79rem;
    line-height: 1.38;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(24px);
}

.hero-orb-primary {
    width: 150px;
    height: 150px;
    top: 20px;
    right: 10px;
    background: rgba(197, 22, 29, 0.12);
}

.hero-orb-secondary {
    width: 180px;
    height: 180px;
    left: 0;
    bottom: 30px;
    background: rgba(15, 19, 26, 0.07);
}

.insurance-card,
.feature-card,
.testimonial-card,
.faq-intro,
.final-cta-card {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(16, 20, 29, 0.06);
    box-shadow: var(--shadow-soft);
}

.insurance-card {
    height: 100%;
    padding: 22px;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.insurance-card:hover,
.feature-card:hover,
.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(16, 20, 29, 0.10);
}

.insurance-icon,
.feature-card i {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(15, 19, 26, 0.08) 0%, rgba(197, 22, 29, 0.10) 100%);
    color: var(--color-primary);
    font-size: 1.35rem;
    margin-bottom: 16px;
}

.insurance-card h3,
.feature-card h3,
.process-step h3,
.testimonial-card strong,
.aside-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
}

.insurance-card p,
.feature-card p,
.process-step p,
.testimonial-card p,
.aside-card p,
.footer-brand p,
.footer-block p {
    color: var(--color-slate);
    line-height: 1.65;
    font-size: 0.95rem;
}

.btn-card {
    margin-top: auto;
    align-self: flex-start;
    background: transparent;
    color: var(--color-primary-dark);
    border: 1px solid rgba(197, 22, 29, 0.18);
    padding-inline: 1.1rem;
}

.btn-card:hover,
.btn-card:focus {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.feature-card {
    height: 100%;
    padding: 24px;
}

.section-dark-differentials .section-heading h2 {
    color: var(--color-white);
}

.section-dark-differentials .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}

.section-dark-differentials .section-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
}

.section-dark-differentials .section-tag::before {
    box-shadow: 0 0 0 6px rgba(197, 22, 29, 0.18);
}

.section-dark-differentials .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.section-dark-differentials .feature-card:hover {
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.section-dark-differentials .feature-card h3 {
    color: var(--color-white);
}

.section-dark-differentials .feature-card p {
    color: rgba(255, 255, 255, 0.70);
}

.section-dark-differentials .feature-card i {
    background: linear-gradient(135deg, rgba(197, 22, 29, 0.16) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ff5a5f;
}

.process-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.process-wrapper::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(197, 22, 29, 0.55), rgba(255, 255, 255, 0.08));
}

.process-step {
    position: relative;
    z-index: 1;
    padding: 24px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}

.process-step h3 {
    color: var(--color-white);
    margin-top: 14px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #c5161d 0%, #8f1116 100%);
    color: var(--color-white);
    font-size: 1.05rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(197, 22, 29, 0.18);
}

.testimonial-card {
    height: 100%;
    padding: 22px;
}

.testimonial-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
    color: var(--color-primary);
}

.testimonial-card strong {
    display: block;
    margin-bottom: 4px;
}

.testimonial-card span {
    color: var(--color-muted);
    font-weight: 700;
}

.faq-intro {
    padding: 38px;
}

.accordion-item {
    border: 0;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 12px 26px rgba(16, 20, 29, 0.06);
}

.accordion-button {
    padding: 22px 24px;
    font-weight: 800;
    color: var(--color-dark);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(15, 19, 26, 0.05);
    color: var(--color-primary-dark);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--color-slate);
    line-height: 1.75;
    background: rgba(255, 255, 255, 0.92);
}

.final-cta {
    padding: 88px 0 64px;
}

.final-cta-card {
    padding: 42px;
    text-align: center;
    background:
        radial-gradient(circle at top center, rgba(15, 19, 26, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(242, 244, 247, 0.96) 100%);
}

.final-cta-card .btn {
    margin-top: 12px;
}

.footer-section {
    padding: 58px 0 24px;
    background: linear-gradient(180deg, #10141d 0%, #0b1017 100%);
    color: rgba(255, 255, 255, 0.82);
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-logo {
    width: 62px;
    opacity: 0.98;
}

.footer-brand h3,
.footer-block h4 {
    color: var(--color-white);
}

.footer-brand h3 {
    font-size: 1.06rem;
    margin-bottom: 8px;
}

.footer-block h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

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

.footer-links a,
.footer-contact a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
    color: var(--color-white);
}

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

.footer-contact i {
    color: var(--color-primary);
    margin-top: 3px;
}

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

.social-links a,
.floating-whatsapp {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.social-links a {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.16);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px 20px;
    font-size: 0.94rem;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1200;
    background: linear-gradient(135deg, #25d366 0%, #14b854 100%);
    color: var(--color-white);
    box-shadow: 0 14px 28px rgba(20, 184, 84, 0.24);
    font-size: 1.45rem;
    animation: pulse-whatsapp 2.6s infinite;
}

.floating-whatsapp:hover {
    color: var(--color-white);
}

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

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

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 18px 36px rgba(20, 184, 84, 0.30);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 20px 42px rgba(20, 184, 84, 0.38);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 18px 36px rgba(20, 184, 84, 0.30);
    }
}

@media (min-width: 1440px) {
    .hero-section {
        min-height: 880px;
        display: flex;
        align-items: center;
    }

    .hero-title {
        font-size: 3.78rem;
    }

    .hero-description {
        max-width: 720px;
        font-size: 0.98rem;
    }

    .hero-actions .btn {
        min-width: 330px;
        padding: 16px 28px;
        font-size: 0.98rem;
    }

    .hero-showcase-card {
        width: min(100%, 360px);
        padding: 24px 24px;
    }

    .hero-showcase-top {
        margin-bottom: 16px;
    }

    .hero-showcase-logo-wrap {
        width: 178px;
        height: 178px;
        margin-bottom: 16px;
    }

    .hero-showcase-metrics {
        gap: 11px;
    }

    .hero-showcase-metrics article {
        padding: 14px 15px;
    }

    .hero-showcase-metrics p {
        font-size: 0.84rem;
        line-height: 1.5;
    }
}

@media (max-width: 1199.98px) {
    .hero-showcase-card {
        width: min(100%, 290px);
        padding: 15px 13px;
    }

    .hero-showcase-logo-wrap {
        width: 130px;
        height: 130px;
    }

    .process-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-wrapper::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 16px 30px rgba(16, 20, 29, 0.07);
    }

    .hero-section {
        padding-top: 132px;
    }

    .hero-section .container::before {
        width: 260px;
        height: 260px;
        top: -10px;
        right: 50%;
        transform: translateX(50%) rotate(-10deg);
    }

    .hero-section .container::after {
        width: 180px;
        height: 180px;
        left: -40px;
        bottom: -40px;
    }

    .hero-visual {
        min-height: auto;
        justify-items: center;
        margin-top: 8px;
    }

    .hero-showcase-card {
        width: min(100%, 280px);
        padding: 14px 12px;
    }

    .hero-showcase-logo-wrap {
        width: 122px;
        height: 122px;
    }

    .hero-copy {
        padding-top: 0;
    }

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

    .footer-brand {
        max-width: 420px;
    }
}

@media (max-width: 767.98px) {
    .section-spacing,
    .section-dark,
    .final-cta {
        padding: 40px 0;
    }

    .hero-section {
        padding: 112px 0 34px;
        background-size: 44px 44px, 44px 44px, auto, auto, auto;
    }

    .nav-quote-btn {
        display: none;
    }

    .hero-section .container::before {
        width: 180px;
        height: 180px;
        top: 10px;
    }

    .hero-section .container::after {
        width: 120px;
        height: 120px;
        left: -20px;
        bottom: -20px;
    }

    .hero-title {
        font-size: 2.16rem;
        line-height: 0.98;
        font-weight: 500;
        letter-spacing: 0.06em;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-insurance-icons,
    .hero-visual {
        display: none;
    }

    .hero-mobile-highlights {
        display: flex;
        gap: 8px;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-actions {
        margin-top: 56px;
    }

    .hero-mobile-highlights span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 6px 8px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.86);
        border: 1px solid rgba(15, 19, 26, 0.08);
        color: var(--color-dark);
        font-size: 0.68rem;
        font-weight: 500;
        letter-spacing: 0.06em;
    }

    .hero-mobile-highlights i {
        color: var(--color-primary);
        font-size: 0.72rem;
    }

    .hero-actions .btn,
    .final-cta-card .btn {
        width: 100%;
        justify-content: center;
    }

    .insurance-card .btn-card {
        width: 100%;
        justify-content: center;
        padding: 13px 18px;
        margin-top: 16px;
        font-size: 0.9rem;
    }

    .faq-intro,
    .final-cta-card {
        padding: 22px 18px;
    }

    .hero-showcase-card {
        width: min(100%, 255px);
        padding: 12px 11px;
    }

    .hero-showcase-logo-wrap {
        width: 100px;
        height: 100px;
        margin-bottom: 8px;
    }

    .hero-showcase-top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .process-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

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

@media (max-width: 575.98px) {
    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 0.94rem;
    }

    .brand-text small {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 1.98rem;
        line-height: 0.98;
        font-weight: 500;
    }

    .hero-section .container::before {
        width: 140px;
        height: 140px;
        top: 24px;
    }

    .hero-showcase-card {
        width: min(100%, 225px);
        padding: 10px;
    }

    .hero-showcase-logo-wrap {
        width: 88px;
        height: 88px;
    }

    .hero-showcase-metrics article {
        padding: 9px;
    }

    .hero-showcase-metrics strong {
        font-size: 0.88rem;
    }

    .hero-showcase-metrics p {
        font-size: 0.8rem;
    }

    .section-heading h2,
    .faq-intro h2,
    .final-cta-card h2 {
        font-size: 1.45rem;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.72rem;
        line-height: 1.02;
        letter-spacing: 0.005em;
    }
}
