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

:root {
    /* Midnight Bloom Color System */
    --navy-deep: #2a3d5e;
    --navy-medium: #3d5475;
    --navy-slate: #526b8c;
    --dusty-rose: #d4a59e;
    --dusty-rose-deep: #c49590;
    --rose-gold: #e8c9b8;
    --rose-gold-deep: #d4b09e;
    --bg-warm: #f5f3f0;
    --bg-cream: #ebe7e0;
    --text-navy: #1f2d42;
    --text-medium: #3d4a5c;
    --text-tertiary: #526b8c;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    color: var(--text-navy);
    background: var(--bg-warm);
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 110%; /* 10% increase across all text */
}

/* Gradient Background - Midnight Bloom (Navy + Rose Gold) */
.gradient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse 120% 40% at 50% 0%, var(--navy-deep) 0%, var(--navy-medium) 15%, var(--navy-slate) 25%, transparent 45%),
        radial-gradient(ellipse 140% 50% at 50% 5%, var(--dusty-rose) 0%, var(--rose-gold) 15%, var(--rose-gold-deep) 20%, transparent 50%),
        radial-gradient(ellipse 160% 55% at 50% 10%, var(--dusty-rose) 0%, transparent 40%),
        linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 30%, #ffffff 70%, #ffffff 100%);
}

/* Header */
.header {
    position: relative;
    z-index: 10;
    background: transparent;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-deep);
    font-family: 'DM Sans', sans-serif;
    letter-spacing: -0.04em;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-link {
    color: var(--text-navy);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

.header-link:hover {
    color: var(--dusty-rose);
}

/* Hero Section - Single Column Centered */
.hero {
    position: relative;
    z-index: 10;
    padding: 4rem 2rem 6rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Main Title */
.main-title {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.title-line-1 {
    font-size: 3.9rem;
    font-weight: 400;
    color: var(--text-navy);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-text-main {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.04em;
}

.hero-text-light {
    font-weight: 300;
}

.logo-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1e3a5f;
    padding: 0.06em 0.08em;
    border-radius: 22.37%;
    vertical-align: middle;
    position: relative;
    top: -0.09em;
    margin: 0 -0.12em 0 0.1em;
    height: 0.7em;
}

.inline-logo {
    height: 0.52em;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    position: relative;
    left: 0em;
    top: 0em;
}

.hero-text-sub {
    font-size: 2.275rem;
    font-weight: 400;
    color: var(--text-medium);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.hero-subheadline {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-medium);
    max-width: 550px;
    margin: 0.75rem auto 1.5rem;
    line-height: 1.5;
    text-align: center;
}

/* Inline Form */
.inline-form {
    display: flex;
    gap: 0.65rem;
    max-width: 520px;
    margin: 0 auto 0.75rem;
    justify-content: center;
}

.inline-input {
    flex: 1;
    padding: 0.975rem 1.3rem;
    font-size: 1.22rem;
    border: 1px solid var(--bg-cream);
    border-radius: 1.3rem;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.inline-input:focus {
    outline: none;
    border-color: var(--dusty-rose);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(212, 165, 158, 0.15);
}

.inline-input::placeholder {
    color: var(--text-tertiary);
}

.inline-btn {
    padding: 0.975rem 1.95rem;
    font-size: 1.22rem;
    font-weight: 500;
    background: var(--navy-deep);
    color: #FFFFFF;
    border: none;
    border-radius: 1.3rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 61, 94, 0.2);
}

.inline-btn:hover {
    background: var(--navy-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 61, 94, 0.25);
}

.form-subtext {
    font-size: 1.1375rem;
    color: var(--text-tertiary);
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Feature Card/Mockup - Search Demo */
.feature-card {
    margin: 0 auto 3rem;
    max-width: 580px;
}

.search-demo {
    background: #2d3137;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    min-height: 280px;
    position: relative;
    overflow: visible;
}

.search-container {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.search-bar {
    background: #3c4043;
    border-radius: 1.5rem;
    padding: 0.875rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: none;
    position: relative;
    border: 1px solid #5f6368;
    transition: border-radius 0.3s ease, background 0.2s ease;
}

.search-bar.dropdown-active {
    border-radius: 1.5rem 1.5rem 0 0;
}

.search-bar:hover {
    background: #3f4347;
    border-color: #5f6368;
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #9aa0a6;
    flex-shrink: 0;
}

.search-text-container {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 24px;
}

.search-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #e8eaed;
    white-space: nowrap;
}

.search-text:empty::before {
    content: '';
    color: #9aa0a6;
    font-weight: 400;
}

.typing-cursor {
    width: 1px;
    height: 20px;
    background: #8ab4f8;
    animation: blink 1s infinite;
    margin-left: 2px;
    display: inline-block;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    background: #3c4043;
    border-radius: 0 0 1.5rem 1.5rem;
    margin-top: -0.5rem;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    border: 1px solid #5f6368;
    border-top: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s ease,
                padding 0.6s ease;
    pointer-events: none;
}

.autocomplete-dropdown.show {
    max-height: 300px;
    opacity: 1;
    padding: 0.75rem 0 0.5rem;
    pointer-events: auto;
}

.autocomplete-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem 0.75rem 1.25rem;
    transition: background 0.1s ease;
    cursor: pointer;
    position: relative;
    text-align: left;
}

.autocomplete-item:hover {
    background: #48494d;
}

.autocomplete-icon {
    width: 18px;
    height: 18px;
    color: #9aa0a6;
    flex-shrink: 0;
}

.autocomplete-icon.clock-icon {
    color: #8ab4f8;
}

.autocomplete-text {
    font-size: 0.9375rem;
    color: #e8eaed;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.5;
    flex: 1;
    font-weight: 400;
    text-align: left;
}

/* Problem Agitation Section */
.problem-section {
    max-width: 900px;
    margin: 4rem auto;
    text-align: center;
    padding: 0 1rem;
}

.problem-header {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
    border: 1px solid rgba(200, 180, 170, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.problem-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.problem-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.problem-closing {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .problem-cards {
        grid-template-columns: 1fr;
    }

    .problem-header {
        font-size: 1.5rem;
    }

    .problem-closing {
        font-size: 1.1rem;
    }
}

/* Email CTA Section */
.email-cta-section {
    max-width: 520px;
    margin: 3rem auto;
    text-align: center;
}

.email-cta-section .form-subtext {
    margin-bottom: 0;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Solution Intro Section */
.solution-section {
    max-width: 950px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(200, 180, 170, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.solution-content {
    text-align: left;
}

.solution-header {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.solution-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-highlight {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
}

.solution-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 220px;
    height: 450px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.demo-video,
.demo-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* Desktop: show video, hide gif */
.demo-video {
    display: block;
}

.demo-gif {
    display: none;
}

/* Mobile: hide video, show gif (video autoplay unreliable) */
@media (max-width: 768px) {
    .demo-video {
        display: none;
    }

    .demo-gif {
        display: block;
    }
}

@media (max-width: 768px) {
    .solution-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        margin: 0 1rem 3rem;
        text-align: center;
    }

    .solution-content {
        text-align: center;
        order: 1;
    }

    .solution-demo {
        order: 2;
    }

    .solution-header {
        font-size: 1.4rem;
    }

    .solution-text,
    .solution-highlight {
        font-size: 1rem;
    }

    .phone-frame {
        width: 180px;
        height: 370px;
    }
}

/* How It Works Section */
.how-it-works-section {
    max-width: 950px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(200, 180, 170, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.how-demo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.how-content {
    text-align: left;
}

.how-header {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.how-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
}

.step-circle {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 3px solid var(--dusty-rose, #c4a4a0);
    background: transparent;
    color: var(--dusty-rose, #c4a4a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: background-color 0.6s ease, color 0.6s ease;
}

.step-circle.filled {
    background: var(--dusty-rose, #c4a4a0);
    color: white;
}

.step-line {
    width: 3px;
    background: var(--dusty-rose, #c4a4a0);
    margin-top: 0;
    flex-grow: 1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.8s ease;
}

.step-line.animate {
    transform: scaleY(1);
}

.step-text {
    padding-bottom: 2rem;
}

.step-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.step-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.5;
}

.how-step:last-child .step-text {
    padding-bottom: 0;
}

/* Meet the Scholar Section */
.scholar-section {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    text-align: center;
}

.scholar-header {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.scholar-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(200, 180, 170, 0.2);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    text-align: left;
}

.scholar-image {
    width: 200px;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.scholar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scholar-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.scholar-title {
    font-size: 1rem;
    color: var(--dusty-rose, #c4a4a0);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.scholar-bio {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.scholar-bio:last-of-type {
    margin-bottom: 1.5rem;
}

.scholar-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.scholar-badge {
    background: var(--dusty-rose, #c4a4a0);
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
}

@media (max-width: 768px) {
    .scholar-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .scholar-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .scholar-header {
        font-size: 1.5rem;
    }

    .scholar-badges {
        justify-content: center;
    }
}

/* Pricing Section */
.pricing-section {
    max-width: 950px;
    margin: 4rem auto;
    padding: 0 1rem;
    text-align: center;
}

.pricing-header {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 2px solid var(--dusty-rose);
    box-shadow: 0 20px 60px rgba(212, 165, 158, 0.2);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
}

.pricing-left {
    display: flex;
    flex-direction: column;
}

.pricing-right {
    display: flex;
    flex-direction: column;
}

.pricing-features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-navy);
    margin-bottom: 1rem;
}

.pricing-tier-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--dusty-rose) 0%, var(--dusty-rose-deep) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.pricing-main {
    margin-bottom: 1.5rem;
}

.pricing-original {
    margin-bottom: 0.5rem;
}

.pricing-original .strikethrough {
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.pricing-current {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    color: var(--navy-deep);
    line-height: 1;
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-weight: 500;
    line-height: 1.4;
}

.pricing-urgency {
    background: rgba(255, 240, 240, 0.8);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.urgency-bar {
    width: 100%;
    height: 8px;
    background: #fde8e8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.urgency-progress {
    height: 100%;
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.urgency-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #dc2626;
    margin: 0;
}

.pricing-next-tier {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: var(--bg-warm);
    border-radius: 0.5rem;
}

.pricing-next-tier strong {
    color: var(--text-navy);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.9375rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--bg-cream);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    flex-shrink: 0;
}

.pricing-math {
    background: var(--bg-warm);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.math-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin: 0 0 0.5rem 0;
}

.math-highlight {
    font-size: 1rem;
    color: var(--navy-deep);
    margin: 0;
    font-weight: 500;
}

.pricing-cta {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--navy-deep);
    color: white;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 61, 94, 0.25);
}

.pricing-cta:hover {
    background: var(--navy-medium);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(42, 61, 94, 0.3);
}

.pricing-limited {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
    font-style: italic;
}

/* Guarantee Section */
.guarantee-section {
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 244, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.guarantee-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 0.75rem;
}

.guarantee-text {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.guarantee-highlight {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.guarantee-subtext {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-header {
        font-size: 1.5rem;
    }

    .pricing-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .pricing-left {
        align-items: center;
    }

    .pricing-right {
        text-align: left;
    }

    .price-value {
        font-size: 3rem;
    }

    .price-period {
        font-size: 1rem;
    }

    .pricing-cta {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.faq-header {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-navy);
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(200, 180, 170, 0.2);
    padding: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    border: 1px solid rgba(200, 180, 170, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--dusty-rose);
    background: rgba(255, 255, 255, 0.65);
}

.faq-item[open] {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-navy);
    cursor: pointer;
    list-style: none;
    gap: 1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--dusty-rose);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    text-align: left;
}

@media (max-width: 768px) {
    .faq-header {
        font-size: 1.5rem;
    }

    .faq-card {
        padding: 1.25rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        text-align: left;
    }

    .faq-answer {
        padding: 0 1.25rem 1rem;
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .how-it-works-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        margin: 0 1rem 3rem;
    }

    .how-demo {
        order: 1;
    }

    .how-content {
        order: 2;
        text-align: center;
    }

    .how-header {
        font-size: 1.4rem;
    }

    .how-step {
        text-align: left;
    }
}

/* Description Section */
.description-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.description-title {
    font-size: 2.275rem;
    font-weight: 700;
    color: var(--text-navy);
    line-height: 1.4;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.description-text {
    font-size: 1.22rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Key Takeaways - Horizontal Carousel */
.key-takeaways {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 2.5rem 0 3rem;
    padding: 0 2rem 1.5rem 2rem;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    justify-content: center;
}

.key-takeaways::-webkit-scrollbar {
    display: none;
}

.takeaway-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 2px solid var(--bg-cream);
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(42, 61, 94, 0.08);
}

.takeaway-item:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 24px rgba(212, 165, 158, 0.15);
    transform: translateY(-4px);
    border-color: var(--dusty-rose);
}

.takeaway-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.takeaway-heading {
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--text-navy);
    font-weight: 700;
    margin: 0;
}

.takeaway-subtext {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-medium);
    font-weight: 400;
    margin: 0;
}

.takeaway-icon {
    width: 32px;
    height: 32px;
    color: var(--dusty-rose);
    flex-shrink: 0;
}

/* Feature Badges - Single Row */
.feature-badges {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 100%;
    margin: 0 auto;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    border: 1px solid var(--bg-cream);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.badge:hover {
    background: #FFFFFF;
    box-shadow: 0 2px 12px rgba(42, 61, 94, 0.08);
    transform: translateY(-2px);
}

.badge-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 0.875rem;
    height: 0.875rem;
}

.badge-icon.blue {
    background: var(--navy-deep);
    color: #FFFFFF;
}

.badge-icon.orange {
    background: var(--dusty-rose);
    color: #FFFFFF;
}

.badge-icon.purple {
    background: var(--navy-slate);
    color: #FFFFFF;
}

.badge-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-navy);
    line-height: 1.4;
}

/* Footer */
.footer {
    position: relative;
    z-index: 10;
    margin-top: 6rem;
    padding: 2rem;
    border-top: 1px solid var(--bg-cream);
}

.footer-text {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-links {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-top: 0.75rem;
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-secondary);
    text-decoration: underline;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 61, 94, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #FFFFFF;
    border-radius: 1.5rem;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: var(--text-tertiary);
    cursor: pointer;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    background: var(--bg-cream);
    color: var(--text-navy);
}

.modal-close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.modal-content {
    padding: 2.5rem 2rem 2rem;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    text-align: center;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-navy);
    margin-left: 0.25rem;
}

.form-input {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    border: 1px solid var(--bg-cream);
    border-radius: 0.75rem;
    background: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-navy);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--dusty-rose);
    box-shadow: 0 0 0 3px rgba(212, 165, 158, 0.1);
}

.form-input:read-only {
    background: var(--bg-warm);
    color: var(--text-tertiary);
    cursor: not-allowed;
}

.form-input::placeholder {
    color: var(--text-tertiary);
}

.modal-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: var(--navy-deep);
    color: #FFFFFF;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 61, 94, 0.2);
    margin-top: 0.5rem;
}

.modal-btn:hover {
    background: var(--navy-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 61, 94, 0.25);
}

.modal-btn:active {
    transform: translateY(0);
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Urgency Message */
.urgency-message {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border: 1px solid #ffcccc;
    border-radius: 0.75rem;
    padding: 0.875rem 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #c53030;
    text-align: center;
}

/* Price Display */
.price-display {
    background: var(--bg-warm);
    border: 1px solid var(--bg-cream);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0rem;
}

.price-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-navy);
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-deep);
}

.price-comparison {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-align: left;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Loading Indicator */
.loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-warm);
    border-radius: 0.75rem;
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--bg-cream);
    border-top-color: var(--navy-deep);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    padding: 0.875rem 1rem;
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 0.75rem;
    color: #c33;
    font-size: 0.875rem;
    text-align: center;
}

/* Secure Badge */
.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
}

.secure-badge svg {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem 4rem;
    }

    .title-line-1 {
        font-size: 2.9rem;
    }

    .logo-box {
        height: 0.7em;
        padding: 0.06em 0.08em;
        top: -0.09em;
        margin: 0 -0.12em 0 0.1em;
    }

    .inline-logo {
        height: 0.52em;
    }

    .hero-text-sub {
        font-size: 1.25rem;
    }

    .inline-form {
        flex-direction: column;
        max-width: 100%;
        gap: 0.75rem;
    }

    .inline-input {
        width: 100%;
    }

    .inline-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .feature-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .key-takeaways {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .takeaway-item {
        min-width: 260px;
        max-width: 260px;
        padding: 1.75rem 1.5rem;
        gap: 1rem;
    }

    .takeaway-heading {
        font-size: 1.0625rem;
    }

    .takeaway-subtext {
        font-size: 0.875rem;
    }

    .takeaway-icon {
        width: 28px;
        height: 28px;
    }

    .description-title {
        font-size: 1.375rem;
        line-height: 1.3;
    }

    .header-content {
        padding: 1.25rem 1.5rem;
    }

    .header-links {
        gap: 1.5rem;
    }

    /* Modal optimizations */
    .modal-container {
        max-width: 95%;
        margin: 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-btn {
        font-size: 0.9375rem;
    }

    .price-amount {
        font-size: 1.25rem;
    }

    /* Search demo */
    .search-demo {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }

    .search-bar {
        padding: 0.75rem 1rem;
    }

    .search-text {
        font-size: 0.9375rem;
    }

    .autocomplete-text {
        font-size: 0.875rem;
    }

    /* Remove old takeaway styles - handled by main media query */
}

@media (max-width: 480px) {
    .title-line-1 {
        font-size: 2.6rem;
    }

    .logo-box {
        height: 0.7em;
        padding: 0.06em 0.08em;
        top: -0.09em;
        margin: 0 -0.12em 0 0.1em;
    }

    .inline-logo {
        height: 0.52em;
    }

    .hero-text-sub {
        font-size: 1.125rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .card-mockup {
        padding: 2rem 1.5rem;
        min-height: 280px;
    }

    .feature-badges {
        gap: 0.75rem;
    }

    .badge {
        padding: 0.625rem 0.875rem;
    }

    .badge-text {
        font-size: 0.8125rem;
    }

    .takeaway-item {
        min-width: 240px;
        max-width: 240px;
        padding: 1.5rem 1.25rem;
        gap: 1rem;
    }

    .takeaway-heading {
        font-size: 1rem;
    }

    .takeaway-subtext {
        font-size: 0.8125rem;
    }

    .takeaway-icon {
        width: 26px;
        height: 26px;
    }

    .description-text {
        font-size: 0.875rem;
    }

    .description-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    /* Modal mobile optimizations */
    .modal-content {
        padding: 1.5rem 1rem 1rem;
    }

    .modal-title {
        font-size: 1.375rem;
    }

    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .inline-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Search demo smaller screens */
    .search-demo {
        padding: 1.5rem 1rem;
        min-height: 220px;
    }

    .autocomplete-dropdown.show {
        max-height: 250px;
    }

    .header-link {
        font-size: 0.875rem;
    }

    /* Remove old takeaway styles - handled by other media queries */
}

/* App Mockup Section */
.app-mockup-section {
    width: 100%;
    max-width: 900px;
    margin: -80px auto 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.app-mockup-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Make feature card on top of mockup */
.feature-card {
    position: relative;
    z-index: 10;
    margin-top: -200px;
}

@media (max-width: 768px) {
    .app-mockup-section {
        margin: 0 auto;
        padding: 0 15px;
    }

    .app-mockup-image {
        border-radius: 12px;
    }

    .feature-card {
        margin-top: -120px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        margin-top: -90px;
    }
}

/* Countdown Banner */
.countdown-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-medium) 100%);
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 12px rgba(42, 61, 94, 0.3);
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.countdown-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.01em;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 48px;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.125rem;
}

.countdown-separator {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dusty-rose);
    margin: 0 0.125rem;
    margin-bottom: 0.75rem;
}

.countdown-cta {
    display: inline-block;
    background: var(--dusty-rose);
    color: #ffffff;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.countdown-cta:hover {
    background: var(--dusty-rose-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 165, 158, 0.4);
}

/* Add padding to body to account for fixed banner */
body {
    padding-top: 60px;
}

/* Banner expired state */
.countdown-banner.expired {
    display: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .countdown-banner {
        padding: 0.625rem 0.75rem;
    }

    .countdown-content {
        gap: 0.75rem;
    }

    .countdown-text {
        font-size: 0.8125rem;
        text-align: center;
        width: 100%;
    }

    .countdown-unit {
        min-width: 40px;
    }

    .countdown-number {
        font-size: 1.25rem;
    }

    .countdown-label {
        font-size: 0.5625rem;
    }

    .countdown-separator {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .countdown-cta {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    body {
        padding-top: 90px;
    }
}

@media (max-width: 480px) {
    .countdown-content {
        gap: 0.5rem;
    }

    .countdown-text {
        font-size: 0.75rem;
    }

    .countdown-unit {
        min-width: 36px;
    }

    .countdown-number {
        font-size: 1.125rem;
    }

    body {
        padding-top: 95px;
    }
}
