:root {
    --primary: #3EC0AD;
    --primary-hover: #2EB09D;
    --primary-light: #E6F7F5;
    --primary-dark: #237A6E;
    
    --bg-color: #ffffff;
    --bg-light: #F4FAF9;
    --bg-dark: #0A1917;
    --bg-dark-card: #112724;
    
    --text-color: #0A1917;
    --text-muted: #4F6764;
    --text-light: #ffffff;
    --text-light-muted: #95B2AF;
    
    --border-color: #E2EFEF;
    --border-color-dark: #1F3D39;
    
    --font-main: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --border-radius-xl: 32px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 10px;
    --shadow-soft: 0 20px 40px rgba(10, 25, 23, 0.05);
    --shadow-hover: 0 30px 60px rgba(10, 25, 23, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p {
    color: var(--text-muted);
}

.subheading {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--primary-dark);
    background: var(--primary-light);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 9rem 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(62, 192, 173, 0.1);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(10, 25, 23, 0.02);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--text-color);
    letter-spacing: -0.04em;
    transition: var(--transition-fast);
}

.logo img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    opacity: 0.8;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    opacity: 1;
    color: var(--primary-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 14rem 0 10rem;
    position: relative;
    background: radial-gradient(circle at top right, rgba(62, 192, 173, 0.08) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(62, 192, 173, 0.03) 0%, transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

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

.hero h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    color: var(--text-color);
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero p {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    max-width: 600px;
    line-height: 1.6;
}

.cta-group {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    background: var(--primary);
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    border: 2px solid var(--primary);
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(62, 192, 173, 0.15);
}

.btn:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(62, 192, 173, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: none;
}

.btn-small {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}

.btn-white {
    background: var(--bg-color);
    color: var(--bg-dark);
    border-color: var(--bg-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* App Badges */
.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 0.6rem 1.4rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    border: 1px solid var(--border-color-dark);
    transition: var(--transition-fast);
}

.app-badge:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    color: var(--bg-dark);
}

.app-badge .badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-badge .badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-badge .badge-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.app-badge .badge-main {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Swipe Simulator (Interactive Phone) */
.phone-simulator-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-simulator {
    width: 320px;
    height: 640px;
    background: #000;
    border-radius: 44px;
    padding: 10px;
    box-shadow: 0 30px 100px rgba(10, 25, 23, 0.2),
                inset 0 4px 10px rgba(255, 255, 255, 0.1),
                0 0 0 4px #222;
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #090e0d;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-family: var(--font-main);
}

/* Phone Notch & Details */
.phone-notch {
    width: 130px;
    height: 25px;
    background: #000;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-camera {
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%;
}

.phone-header {
    height: 60px;
    padding: 25px 20px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.phone-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.phone-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
}

.phone-logo img {
    height: 20px;
}

.phone-area-tag {
    font-size: 0.7rem;
    background: rgba(62, 192, 173, 0.2);
    color: var(--primary);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Swipe Stack */
.phone-body {
    flex: 1;
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swipe-card {
    width: 100%;
    height: 380px;
    background: #111e1c;
    border-radius: 24px;
    border: 1px solid rgba(62, 192, 173, 0.15);
    overflow: hidden;
    position: absolute;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    cursor: grab;
    user-select: none;
    transform-origin: 50% 99%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.swipe-card:active {
    cursor: grabbing;
}

.card-image-area {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
}

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

.card-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(9, 14, 13, 0.95) 0%, rgba(9, 14, 13, 0.5) 50%, transparent 100%);
}

.card-kpis {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.card-kpi {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    color: #fff;
}

.card-kpi.accent {
    background: var(--primary);
    color: #000;
}

.card-info {
    padding: 15px;
    background: #0d1716;
}

.card-info h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.card-info p {
    font-size: 0.75rem;
    color: #95B2AF;
}

/* Swipe Actions */
.phone-actions {
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 15px;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.action-btn.dislike {
    background: #251214;
    color: #ff5768;
    border: 1px solid rgba(255, 87, 104, 0.3);
}

.action-btn.dislike:hover {
    background: #ff5768;
    color: #fff;
    transform: scale(1.1);
}

.action-btn.like {
    background: #112822;
    color: var(--primary);
    border: 1px solid rgba(62, 192, 173, 0.3);
}

.action-btn.like:hover {
    background: var(--primary);
    color: #000;
    transform: scale(1.1);
}

/* Match Screen */
.match-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 14, 13, 0.95);
    z-index: 50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.match-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.match-title {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.match-subtitle {
    font-size: 0.85rem;
    color: #95B2AF;
    margin-bottom: 2rem;
}

.match-avatars {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.match-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    overflow: hidden;
    background: #1f3d39;
    display: flex;
    align-items: center;
    justify-content: center;
}

.match-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-avatar-placeholder {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.match-chat-simulator {
    width: 100%;
    background: #112724;
    border-radius: 16px;
    padding: 15px;
    text-align: left;
    margin-bottom: 2rem;
}

.chat-bubble {
    background: #1f3d39;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    max-width: 85%;
    margin-bottom: 10px;
    line-height: 1.4;
}

.chat-bubble.right {
    background: var(--primary);
    color: #000;
    margin-left: auto;
}

.match-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.match-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.match-btn.primary {
    background: var(--primary);
    color: #000;
}

.match-btn.primary:hover {
    background: var(--primary-hover);
}

.match-btn.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.match-btn.secondary:hover {
    background: rgba(255,255,255,0.05);
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-top: 0.5rem;
    color: var(--text-color);
}

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

.feature-card {
    padding: 3.5rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(62, 192, 173, 0.2);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.feature-icon {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-light);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

/* Steps Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    position: relative;
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* App Showcase Gallery */
.app-showcase-section {
    padding: 9rem 0;
    background: var(--bg-color);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 4rem;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Premium Phone Mockup Frame */
.showcase-phone-frame {
    width: 260px;
    height: 530px;
    background: #0f1c1a;
    border: 10px solid #1c2e2a;
    border-radius: 40px;
    box-shadow: 0 25px 60px rgba(10, 25, 23, 0.15), 0 0 0 1px rgba(62, 192, 173, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
    transition: var(--transition-smooth);
}

.showcase-phone-frame .phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 18px;
    background: #1c2e2a;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.showcase-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.showcase-item:hover .showcase-phone-frame {
    transform: translateY(-10px);
    box-shadow: 0 35px 80px rgba(62, 192, 173, 0.15);
    border-color: var(--primary);
}

.showcase-item:hover .showcase-phone-frame .phone-notch {
    background: var(--primary);
}

.showcase-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.showcase-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.showcase-number {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .showcase-grid {
        gap: 2rem;
    }
    .showcase-phone-frame {
        width: 220px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Audience Section */
.audience-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.audience-box {
    padding: 4.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    background: var(--bg-color);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.audience-box:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.benefit-list {
    margin-top: 2.5rem;
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.benefit-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Vision Card */
.vision-section {
    padding: 9rem 0;
    background: var(--bg-light);
}

.vision-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    background: var(--bg-color);
    padding: 3rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.vision-image {
    width: 100%;
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vision-card:hover .vision-image img {
    transform: scale(1.03);
}

.vision-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.vision-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
}

.vision-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.05em;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    opacity: 0.6;
    font-weight: 700;
}

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

.accordion-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    margin-bottom: 1.25rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.accordion-header:hover {
    color: var(--primary-dark);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 400;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-content-inner {
    padding: 0 2rem 1.5rem;
}

.accordion-content p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(62, 192, 173, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--text-light-muted);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

/* Footer */
footer {
    padding: 5rem 0 4rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    background: var(--bg-color);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    font-size: 1.8rem;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 320px;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 2.5rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 10000;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color-dark);
    transform: translateY(200%);
    transition: var(--transition-smooth);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content p {
    color: var(--text-light-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

/* Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cta-group {
        justify-content: center;
    }
    
    .app-badges {
        justify-content: center;
    }

    .vision-card {
        gap: 3rem;
        grid-template-columns: 1fr;
    }
    
    .vision-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .nav-links {
        display: none; /* Can be replaced by hamburger drawer if needed */
    }
    
    .hero {
        padding: 10rem 0 6rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }

    .features-grid, 
    .steps-grid, 
    .audience-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .audience-box {
        padding: 2.5rem;
    }

    .vision-card {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .vision-image {
        height: 250px;
    }

    .vision-content h2 {
        font-size: 2rem;
    }

    .vision-stats {
        flex-direction: column;
        gap: 2rem;
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .cookie-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
}

/* Modal Overlay */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 23, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Content Card */
.modal-content {
    max-width: 640px;
    width: 100%;
    background: var(--bg-color);
    padding: 3.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 30px 80px rgba(10, 25, 23, 0.25);
    border: 1px solid var(--border-color);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

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

/* Close Button */
.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.close-modal:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 2.5rem 1.5rem;
    }
}
