/* ==========================================
   CSS Reset & Base Styles
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0071e3;
    --primary-dark: #0077ED;
    --primary-light: #2997ff;
    --secondary-color: #30d158;
    --accent-color: #ff9f0a;
    --text-white: #f5f5f7;
    --text-light: #a1a1a6;
    --text-medium: #86868b;
    --bg-black: #000000;
    --bg-dark: #161617;
    --bg-darker: #0a0a0a;
    --bg-card: #1d1d1f;
    --border-color: #2d2d2f;
    --success-green: #30d158;
    --error-red: #ff453a;
    --shadow-sm: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 32px 0 rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 24px 48px 0 rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
    background-color: var(--bg-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
}

p {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-icon {
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.nav-links a:hover {
    color: var(--text-white);
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
    background-color: var(--primary-color);
    color: white !important;
    padding: 12px 28px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 0.9375rem;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

.btn-large {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 48px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.btn-large:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

.btn-white {
    background-color: white;
    color: var(--bg-black);
}

.btn-white:hover {
    background-color: #e8e8ed;
    color: var(--bg-black);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-darker) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 20px;
    color: var(--text-white);
    line-height: 1.05;
    font-size: 3.25rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 56px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Phone Mockup */
.phone-mockup {
    max-width: 320px;
    margin: 0 auto;
    position: relative;
}

.phone-screen {
    background: var(--bg-card);
    border-radius: 48px;
    padding: 16px;
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.1),
                0 30px 60px rgba(0, 0, 0, 0.8);
    position: relative;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: var(--bg-black);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 36px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.app-screenshot.active {
    opacity: 1;
}

.app-screenshot:first-child {
    position: relative;
}

.app-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 36px;
    background: var(--bg-darker);
}

.screenshot-placeholder {
    aspect-ratio: 9/19.5;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 1rem;
    padding: 40px;
    text-align: center;
}

.screenshot-placeholder p {
    color: var(--text-light);
    margin: 12px 0;
    font-size: 1.5rem;
}

.screenshot-placeholder small {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* ==========================================
   Problem/Solution Section
   ========================================== */
.problem-solution {
    padding: 120px 0;
    background: var(--bg-dark);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-intro h2 {
    margin-bottom: 20px;
}

.section-intro p {
    font-size: 1.25rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.comparison-card {
    padding: 48px;
    border-radius: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

.comparison-card.problem {
    background: rgba(255, 69, 58, 0.05);
    border: 1px solid rgba(255, 69, 58, 0.2);
}

.comparison-card.solution {
    background: rgba(48, 209, 88, 0.05);
    border: 1px solid rgba(48, 209, 88, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-icon-image {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: block;
    border-radius: 16px;
}

.comparison-card h3 {
    margin-bottom: 24px;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
    font-size: 1.0625rem;
}

.comparison-card.problem li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: var(--error-red);
    font-weight: 700;
    font-size: 1.5rem;
}

.comparison-card.solution li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
    font-size: 1.5rem;
}

.problem-callout {
    max-width: 900px;
    margin: 60px auto 0;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 113, 227, 0.3);
    text-align: center;
}

.problem-callout p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-white);
    margin: 0;
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-black);
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.step-card {
    background: var(--bg-card);
    padding: 48px 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 28px;
}

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

.step-card p {
    font-size: 1.0625rem;
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    padding: 120px 0;
    background: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 40px 36px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.feature-card p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ==========================================
   Pricing Comparison Section (Table)
   ========================================== */
.pricing-comparison {
    padding: 120px 0;
    background: var(--bg-dark);
}

.comparison-table-wrapper {
    max-width: 900px;
    margin: 80px auto 0;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Table Header with Badges */
.comparison-table thead tr {
    background: var(--bg-darker);
}

.comparison-table th {
    padding: 0;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th.feature-column {
    width: 50%;
    background: transparent;
    padding: 40px 24px 32px;
}

.feature-column-header {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: left;
}

.comparison-table th.plan-column {
    width: 25%;
    padding: 40px 24px 32px;
}

.comparison-table th.free-column {
    background: rgba(100, 100, 100, 0.1);
}

.comparison-table th.premium-column {
    background: linear-gradient(180deg, rgba(0, 113, 227, 0.2) 0%, rgba(0, 113, 227, 0.05) 100%);
}

/* Plan Badges */
.plan-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.badge-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plan-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-medium);
}

.plan-trial {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 16px;
    background: var(--success-green);
    color: var(--bg-black);
    border-radius: 980px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Table Body - Alternating Rows */
.comparison-table tbody tr.row-even {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tbody tr.row-odd {
    background: transparent;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 113, 227, 0.08) !important;
}

.comparison-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.feature-name {
    font-size: 1rem;
    color: var(--text-light);
    text-align: left;
    line-height: 1.5;
}

.feature-name strong {
    color: var(--text-white);
    font-weight: 600;
}

.check-cell {
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.check-cell.premium-cell {
    border-left: 1px solid rgba(0, 113, 227, 0.2);
    background: rgba(0, 113, 227, 0.03);
}

/* Checkmarks and X marks */
.checkmark {
    font-size: 1.75rem;
    color: var(--success-green);
    font-weight: 700;
    line-height: 1;
}

.premium-cell .checkmark {
    color: var(--success-green);
}

.xmark {
    font-size: 1.75rem;
    color: #ff453a;
    font-weight: 700;
    line-height: 1;
    opacity: 0.6;
}

/* Table Footer */
.comparison-table tfoot td {
    padding: 32px 24px;
    border-bottom: none;
    background: var(--bg-darker);
    border-top: 2px solid var(--border-color);
}

.cta-cell {
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-cell.premium-cell {
    border-left: 1px solid rgba(0, 113, 227, 0.2);
    background: linear-gradient(180deg, rgba(0, 113, 227, 0.08) 0%, var(--bg-darker) 100%);
}

.table-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.table-btn.btn-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    background: transparent;
}

.table-btn.btn-outline:hover {
    border-color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.table-btn.btn-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
}

.table-btn.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 113, 227, 0.5);
}

.pricing-note {
    max-width: 800px;
    margin: 48px auto 0;
    text-align: center;
    padding: 28px 32px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.pricing-note p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.pricing-note strong {
    color: var(--text-white);
}

.table-scroll-hint {
    display: none;
    text-align: center;
    font-size: 0.875rem;
    color: var(--primary-light);
    padding: 12px;
    margin: 20px auto 10px;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 8px;
    max-width: 600px;
    font-weight: 500;
}

/* Responsive Table */
@media (max-width: 768px) {
    .comparison-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table {
        min-width: 650px;
    }
    
    .comparison-table th.plan-column {
        padding: 32px 16px 24px;
    }
    
    .comparison-table td {
        padding: 16px 12px;
    }
    
    .feature-name {
        font-size: 0.9375rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .badge-icon {
        font-size: 2rem;
    }
}

/* ==========================================
   Screenshots Showcase Section
   ========================================== */
.screenshots-showcase {
    padding: 120px 0;
    background: var(--bg-black);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 80px;
}

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

.screenshot-item img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 32px;
    margin-bottom: 28px;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.screenshot-item img:hover {
    transform: translateY(-8px) scale(1.03);
}

.screenshot-item h3 {
    margin-bottom: 12px;
    font-size: 1.375rem;
}

.screenshot-item p {
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ==========================================
   States Section
   ========================================== */
.states {
    padding: 80px 0;
    background: var(--bg-dark);
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.state-card {
    background: var(--bg-card);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 113, 227, 0.3);
    transition: all 0.3s ease;
}

.state-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 113, 227, 0.6);
    background: rgba(0, 113, 227, 0.05);
}

.state-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.15) 0%, rgba(41, 151, 255, 0.08) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-light);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.state-card:hover .state-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 113, 227, 0.5);
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.25) 0%, rgba(41, 151, 255, 0.15) 100%);
}

.state-card h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.states-coming-soon {
    text-align: center;
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
}

/* ==========================================
   Social Proof Section
   ========================================== */
.social-proof {
    padding: 100px 0;
    background: var(--bg-black);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 56px;
}

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

.proof-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.proof-label {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: 120px 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    padding: 40px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item h3 {
    margin-bottom: 16px;
    font-size: 1.375rem;
    font-weight: 600;
}

.faq-item p {
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    padding: 120px 0;
    background: var(--bg-black);
    border-top: 1px solid var(--border-color);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.contact-item {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.contact-item h3 {
    margin-bottom: 16px;
    font-size: 1.375rem;
}

.contact-item p {
    font-size: 1.0625rem;
    line-height: 1.7;
}

.contact-item a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    margin-top: 12px;
    font-size: 0.9375rem;
    color: var(--text-medium);
    font-style: italic;
}

/* ==========================================
   App Store Badge
   ========================================== */
.app-store-badge {
    height: 60px;
    width: auto;
    transition: transform 0.2s ease;
}

.app-store-badge:hover {
    transform: scale(1.05);
}

/* ==========================================
   Download CTA Section
   ========================================== */
.download-cta {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse at center, rgba(0, 113, 227, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 3rem;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.375rem;
    margin-bottom: 40px;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9375rem;
    color: var(--text-medium);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-darker);
    color: var(--text-light);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-medium);
    margin-top: 20px;
    font-size: 1.0625rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.footer-column h4 {
    color: var(--text-white);
    margin-bottom: 20px;
    font-size: 1.0625rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--text-medium);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-medium);
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.parent-company-link {
    color: var(--text-white) !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.parent-company-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.disclaimer {
    font-style: italic;
    color: var(--text-medium);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Mobile Navigation */
    .navbar {
        position: static;
        padding: 12px 0;
    }

    .nav-content {
        justify-content: center;
    }

    .logo-image {
        height: 40px;
    }

    .nav-links {
        display: none;
    }

    .table-scroll-hint {
        display: block;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .comparison-grid,
    .steps-grid,
    .features-grid,
    .states-grid,
    .proof-grid,
    .faq-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .app-store-badge {
        height: 50px;
    }

}

@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h1 {
        font-size: 3.25rem;
    }
}
