:root {
    --primary: #FF5A5F;
    --primary-dark: #D43B40;
    --secondary: #1F2937;
    --accent: #10B981;
    --text-main: #111827;
    --text-light: #6B7280;
    --bg-light: #F3F4F6;
    --white: #fff;
    --radius: 16px;
    --shadow: 0 10px 25px -8px rgba(15, 23, 42, .2);
    --transition: all .3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

input,
button,
select,
textarea {
    font-family: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 90, 95, .3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 90, 95, .4);
}

.btn-outline {
    background: #fff;
    border: 2px solid #e2e8f0;
    color: var(--secondary);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 90, 95, .04);
}

header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.nav-container {
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 32px;
    border: 1px solid rgba(226, 232, 240, .8);
    pointer-events: auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 1;
}

.logo {
    font-family: 'Avenir Next', 'Futura', 'Century Gothic', 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
}

.logo-wordmark {
    display: inline-block;
    white-space: nowrap;
}

.logo span {
    color: var(--primary);
}

.nav-location-search {
    position: relative;
    min-width: 220px;
    max-width: 460px;
    flex: 1 1 320px;
    width: 100%;
}

.nav-location-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: .85rem;
    pointer-events: none;
}

.nav-location-input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 9px 14px 9px 34px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--secondary);
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.nav-location-input:focus {
    border-color: rgba(255, 90, 95, .45);
    box-shadow: 0 0 0 3px rgba(255, 90, 95, .15);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-main);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--primary);
    text-decoration: none;
}

.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:focus {
    color: #fff;
}


.nav-links .btn {
    width: auto;
    padding: 10px 24px;
    font-size: .9rem;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

@media (min-width: 769px) {
    .nav-container.nav-collapse .hamburger {
        display: block;
    }

    .nav-container.nav-collapse .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 10px;
        width: min(320px, calc(100vw - 32px));
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 16px;
        box-shadow: 0 14px 34px rgba(15, 23, 42, .14);
        padding: 14px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        z-index: 1200;
    }

    .nav-container.nav-collapse .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-container.nav-collapse .nav-links li {
        width: 100%;
    }

    .nav-container.nav-collapse .nav-links a {
        display: block;
        width: 100%;
    }

    .nav-container.nav-collapse .nav-links .btn {
        width: 100%;
    }
}

.page-hero {
    padding: 170px 24px 70px;
    background:
        radial-gradient(circle at 15% 15%, rgba(255, 90, 95, .12), transparent 35%),
        radial-gradient(circle at 85% 10%, rgba(16, 185, 129, .12), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #eef2f7;
}

.hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 90, 95, .1);
    color: var(--primary-dark);
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -1.3px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.page-hero h1 span {
    color: var(--primary);
}

.page-hero p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 24px;
    max-width: 760px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    font-size: .8rem;
    font-weight: 700;
    color: #334155;
    background: #fff;
}

.hero-panel {
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    background: #fff;
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-panel h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hero-panel p {
    color: var(--text-light);
    font-size: .92rem;
    margin-bottom: 10px;
}

.hero-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
}

.hero-metric {
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 10px;
    background: #f8fafc;
}

.hero-metric strong {
    display: block;
    color: var(--secondary);
    font-size: 1rem;
}

.hero-metric span {
    font-size: .8rem;
    color: var(--text-light);
    font-weight: 600;
}

.page-main {
    padding: 54px 24px 100px;
}

.section {
    max-width: 1200px;
    margin: 0 auto 48px;
}

.section-header {
    margin-bottom: 18px;
}

.section-header h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    color: var(--secondary);
    margin-bottom: 8px;
    letter-spacing: -.5px;
}

.section-header p {
    color: var(--text-light);
    max-width: 860px;
}

.cards-2,
.cards-3,
.cards-4 {
    display: grid;
    gap: 12px;
}

.cards-2 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
}

.cards-3 {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
}

.cards-4 {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    padding: 16px;
}

.card h3 {
    color: var(--secondary);
    font-size: 1.02rem;
    margin-bottom: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
}

.card h4 {
    color: var(--secondary);
    font-size: .98rem;
    margin-bottom: 6px;
}

.card p,
.card li {
    color: var(--text-light);
    font-size: .92rem;
}

.list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.list li {
    border: 1px solid #edf2f7;
    border-radius: 10px;
    padding: 8px 10px;
    background: #f8fafc;
    color: #334155;
}

.table-wrap {
    overflow-x: auto;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
}

.policy-table th {
    text-align: left;
    font-size: .84rem;
    letter-spacing: .03em;
    text-transform: uppercase;
    color: #475569;
    background: #f8fafc;
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.policy-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: .91rem;
    color: #334155;
    vertical-align: top;
}

.policy-table tr:last-child td {
    border-bottom: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 800;
}

.badge-yes {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.badge-no {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.badge-review {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
}

.timeline {
    display: grid;
    gap: 10px;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 6px;
}

.timeline-item h4 {
    color: var(--secondary);
    margin-bottom: 3px;
    font-size: .95rem;
}

.timeline-item p {
    color: var(--text-light);
    font-size: .9rem;
}

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

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    color: var(--secondary);
    font-weight: 700;
    font-size: .95rem;
}

.faq-question i {
    color: #94a3b8;
    transition: transform .2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    color: var(--text-light);
    transition: max-height .25s ease, padding .25s ease;
    font-size: .92rem;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-item.open .faq-answer {
    max-height: 260px;
    padding: 0 16px 14px;
}

.cta-band {
    background: linear-gradient(130deg, #111827 0%, #1f2937 70%);
    border-radius: 20px;
    padding: 28px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: center;
    margin-top: 20px;
}

.cta-band h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.cta-band p {
    color: #cbd5e1;
    max-width: 640px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 5% 30px;
    margin-top: 80px;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h5 {
    color: white;
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary);
}

@media (max-width: 1080px) {
    .hero-wrap,
    .cards-2,
    .cards-3,
    .cards-4,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        justify-content: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        top: 10px;
    }

    .nav-container {
        width: 95%;
        border-radius: 20px;
        padding: 12px 16px;
    }

    .nav-location-search {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 2.5%;
        width: 95%;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: .2s;
        z-index: 999;
        border: 1px solid #f1f5f9;
        gap: 16px;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hamburger {
        display: block;
    }

    .page-hero {
        padding-top: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

/* Premium Header Upgrade */
.nav-container {
    position: relative;
    background: linear-gradient(140deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .78));
    border: 1px solid rgba(255, 255, 255, .76);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .14), 0 3px 12px rgba(15, 23, 42, .08), inset 0 1px 0 rgba(255, 255, 255, .75);
    backdrop-filter: blur(24px) saturate(145%);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    padding: 12px 28px;
}

.nav-container::before {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    top: 1px;
    height: 40%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .52), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.logo {
    font-size: 1.22rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.nav-links {
    gap: 28px;
}

.nav-links a {
    position: relative;
    color: #0f172a;
    font-weight: 620;
    font-size: .89rem;
    letter-spacing: .01em;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary), #f97316);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
    opacity: .95;
}

.nav-links a:not(.btn-primary):hover::after,
.nav-links a:not(.btn-primary):focus-visible::after {
    transform: scaleX(1);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--primary);
}

.nav-links .btn-primary,
.nav-links a.btn-primary,
.nav-links button.btn-primary {
    background: linear-gradient(135deg, #ff5a5f, #e64956);
    border: 1px solid rgba(255, 255, 255, .36);
    box-shadow: 0 14px 28px rgba(255, 90, 95, .34), inset 0 1px 0 rgba(255, 255, 255, .34);
    color: #fff !important;
}

.nav-links .btn-primary:hover,
.nav-links a.btn-primary:hover,
.nav-links button.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(255, 90, 95, .4), inset 0 1px 0 rgba(255, 255, 255, .36);
}

.nav-links .btn-primary:focus-visible,
.nav-links a.btn-primary:focus-visible,
.nav-links button.btn-primary:focus-visible {
    outline: 2px solid rgba(255, 90, 95, .4);
    outline-offset: 2px;
}

header.scrolled-past-hero .nav-container {
    padding: 10px 24px;
    background: linear-gradient(140deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .85));
    box-shadow: 0 14px 36px rgba(15, 23, 42, .16), 0 2px 10px rgba(15, 23, 42, .1), inset 0 1px 0 rgba(255, 255, 255, .82);
}

@media (max-width: 768px) {
    .nav-container {
        width: 95%;
        border-radius: 22px;
        padding: 10px 16px;
    }

    .nav-links {
        background: linear-gradient(180deg, #ffffff, #f8fafc);
        border: 1px solid #e2e8f0;
        box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
        gap: 18px;
    }

    .nav-links a:not(.btn-primary)::after {
        display: none;
    }
}
