/* Design System */
:root {
    --bg-dark: #ffffff;
    --bg-darker: #f8fafc;
    --accent: #552bb0;
    --accent-hover: #4a23a0;
    --accent-light: #7c52d9;
    --text-main: #0f172a;
    --text-muted: #475569;
    --card-bg: #ffffff;
    --card-border: #d1d5db;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.1);
    --danger: #ef4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-max: 1280px;
    --header-height: 80px;
    --sidebar-width: 280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.mt-10 {
    margin-top: 10px;
}

.mt-40 {
    margin-top: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* width: 100%; */
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

#zip-submit{
    width: 49%;
}
.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(85, 43, 176, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-light {
    background-color: #f8fafc;
    color: var(--text-muted);
}

.btn-light:hover {
    background-color: #f1f5f9;
}

/* Header */
/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
}

/* Nav */
.nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
    margin: 0;
    list-style: none;
}

.nav-list a {
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
}

.nav-list a:hover {
    color: var(--accent);
}

/* CTA */
.header-cta .btn {
    border: 2px solid var(--accent);
    color: var(--text-main);
    background: transparent;
    padding: 8px 20px;
}

.header-cta .btn:hover {
    background: var(--accent);
    color: #ffffff;
}

/* ============ HAMBURGER MENU ============ */
.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 8px;
}

.menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 1000;
        border-top: 1px solid var(--card-border);
    }

    .nav.active {
        max-height: calc(100vh - var(--header-height));
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }

    .nav-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        padding: 10px 0 !important;
        margin: 0;
    }

    .nav-list li {
        width: 100%;
        /* border-bottom: 1px solid var(--card-border); */
    }

    .nav-list a {
        display: block;
        padding: 18px 20px;
        color: var(--text-main);
        font-weight: 500;
        font-size: 15px;
        transition: all 0.2s ease;
    }

    .nav-list a:hover {
        background: rgba(85, 43, 176, 0.08);
        color: var(--accent);
        padding-left: 24px;
    }

    .header-cta {
        display: none;
    }
}

/* Hero Section */
.hero {
    padding: calc(var(--header-height) + 40px) 0 40px;
    background: linear-gradient(180deg, #601eda59 0%, #f5f3ff 100%);
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-container {
    margin-bottom: 20px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(85, 43, 176, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(85, 43, 176, 0.2);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 12px;
}

.disclosure-box {
    background: #f5f3ff;
    border: 1px solid rgba(85, 43, 176, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    max-width: 800px;
    margin: 0 auto 16px;
    text-align: left;
}

.disclosure-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-size: 13px;
}

.disclosure-box p {
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 0px;
}

.partner-link {
    font-size: 14px;
    margin-bottom: 6px;
}

.partner-link a {
    color: var(--accent-light);
    border-bottom: 1px solid rgba(124, 82, 217, 0.3);
}

.zip-lookup {
    max-width: 460px;
    margin: 0 auto 16px;
}

.zip-input-group {
    display: flex;
    background: #ffffff;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.zip-input-group:focus-within {
    border-color: var(--accent);
}

.input-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    flex-grow: 1;
}

.input-with-icon i {
    color: var(--bg-dark);
}

.zip-input-group input {
    border: none;
    outline: none;
    font-size: 18px;
    width: 100%;
    color: black;
}

.zip-note {
    font-size: 13px;
    color: black;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-reminder {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 46px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 60px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    align-items: start;
}

.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(85, 43, 176, 0.1);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.check-list {
    padding: 0px;
    margin: 32px 0;
}

.check-list li {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.check-list i {
    color: var(--accent);
    margin-top: 4px;
}

.learn-more a {
    color: var(--accent);
}

.company-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.company-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.company-info {
    margin-bottom: 32px;
}

.company-info strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}

.company-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.contact-item span {
    color: var(--text-muted);
}

.contact-item a {
    color: var(--accent);
}

.btn-link {
    display: block;
    text-align: center;
    margin-top: 16px;
    color: var(--text-muted);
    text-decoration: underline;
}

.tip-box {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--card-border);
    font-size: 14px;
    color: var(--text-muted);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.step-card:hover {
    background: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(129, 34, 238, 0.171);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.step-card h3 {
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* What We Help With */
.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.help-card {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.help-icon {
    color: var(--accent);
}

.help-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.help-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.provider-disclaimer {
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 14px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

#faq-btn {
    width: 300px;
}

.faq-item {
    margin-bottom: 16px;
    border: 2px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
}

.faq-item.active {
    background: rgba(85, 43, 176, 0.1);
    border-color: rgba(85, 43, 176, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.faq-question i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-muted);
    display: none;
    animation: slideDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 16px;
        font-size: 16px;
        gap: 12px;
    }

    .faq-question i {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }

    .faq-answer {
        padding: 0 16px 18px;
        font-size: 14px;
    }

    .faq-item {
        margin-bottom: 12px;
    }
}

/* Footer */
.footer {
    padding: 100px 0 60px;
    background: #1e1b4b;
    /* Deep dark purple */
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclosure-footer {
    font-size: 14px;
    color: #94a3b8;
    /* Slate 400 */
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.disclosure-footer p {
    margin-bottom: 20px;
}

.disclosure-footer strong {
    color: #e2e8f0;
    /* Slate 200 */
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info strong {
    color: #ffffff;
    font-size: 18px;
}

.footer-info p {
    color: #94a3b8;
    margin-top: 12px;
}

.footer-info a {
    color: #a78bfa;
    /* Violet 400 */
}

.footer-info a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 40px;
    max-width: 600px;
    justify-content: flex-end;
}

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 37px 0px;
    max-width: 440px;
    width: 100%;
    position: relative;
    text-align: left;
    /* box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1); */
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 24px;
}

.modal-title {
    font-size: 28px;
}

.modal-body {
        margin: -35px 0;
    color: var(--text-muted);
}

.modal-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 24px;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.hero-container>* {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-container .badge-container {
    animation-delay: 0.1s;
}

.hero-container .hero-title {
    animation-delay: 0.2s;
}

.hero-container .hero-subtitle {
    animation-delay: 0.3s;
}

.hero-container .disclosure-box {
    animation-delay: 0.4s;
}

.hero-container .partner-link {
    animation-delay: 0.5s;
}

.hero-container .zip-lookup {
    animation-delay: 0.6s;
}

.hero-container .hero-buttons {
    animation-delay: 0.7s;
    align-items: center;
}

.hero-container .hero-reminder {
    animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .about-grid {
        grid-template-columns: none;
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .help-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-list,
    .header-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
    
    .about-grid {
        grid-template-columns: none;
        gap: 40px;
    }

    
    .cb-cookie p {
        width: 100% !important;
        font-size: 0.9rem !important;
        color: var(--cb-muted) !important;
        margin: 0px !important;
    }
    .hero-title {
        font-size: 27px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

#modal-zip{
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 37px 20px;
    max-width: 440px;
    width: 90%;
    position: relative;
    text-align: center;
}