/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
    --color-bg-primary: #09090B;
    --color-bg-secondary: #111113;
    --color-bg-tertiary: #1A1A1C;
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #A1A1AA;
    --color-text-tertiary: #71717A;
    --color-accent-primary: #FF6B6B;
    --color-accent-secondary: #4ECDC4;
    --color-accent-tertiary: #FFE66D;
    --color-accent-gradient: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #95E1D3 100%);
    --color-border: rgba(255, 255, 255, 0.1);
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    --border-radius-sm: 0.5rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* ============================================
   Navigation - SpaceX Style (Ultra Minimal)
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    height: 36px;
    line-height: 1;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .navbar .container {
        padding: 0 1.5rem;
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--color-text-primary);
    letter-spacing: 0.08em;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.logo-image {
    width: 16px;
    height: 16px;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    animation: logoPulse 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    animation: logoSpin 0.6s ease-in-out;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.logo-text {
    font-weight: 500;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-text-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-text-primary);
}

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

.nav-link.cta-nav {
    padding: 0.2rem 0.6rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.65rem;
    line-height: 1;
    margin: 0;
}

.nav-link.cta-nav::after {
    display: none;
}

.nav-link.cta-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: none;
    box-shadow: none;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        top: 36px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0.75rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 0.75rem 0;
        width: 100%;
        text-align: left;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 36px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.7);
}

.hero-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.2;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.hero-launch {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-launch-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.2rem 0.6rem;
}

.hero-launch-button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-primary);
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-launch-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        padding: 4rem 0;
    }
}

.hero-logo-container {
    margin-bottom: 3rem;
    display: flex;
    justify-content: flex-start;
}

.hero-logo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: heroLogoFloat 4s ease-in-out infinite;
    filter: brightness(1.2);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

@keyframes heroLogoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    50% {
        transform: translateY(-8px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

@media (min-width: 768px) {
    .hero-logo {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .hero-logo {
        width: 250px;
        height: 250px;
    }
}

.hero-app-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-app-name {
        font-size: 5rem;
    }
}

@media (min-width: 1024px) {
    .hero-app-name {
        font-size: 6.5rem;
    }
}

.hero-title {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.gradient-text {
    color: #FFFFFF;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #FFFFFF;
    background-clip: unset;
}

.ai-highlight {
    color: #FFA500;
    -webkit-text-fill-color: #FFA500;
}

.hero-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 400;
    border-radius: 0;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8C42 100%);
    color: #FFFFFF;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B6B 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
    }
}

.phone-mockup {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.mockup-image {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: brightness(0.9);
}

.mockup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 0;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-text-secondary);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 4rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    background: var(--color-bg-primary);
    padding: 4rem 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    text-align: center;
    border-radius: 0;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-xl);
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

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

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.testimonial-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 0;
}

.testimonial-nav:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.testimonial-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-dots {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.testimonials-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.testimonials-dots .dot.active {
    background: rgba(255, 255, 255, 0.9);
    width: 12px;
    height: 12px;
}

.testimonials-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .testimonial-content {
        padding: 3rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
}

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

.features-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.feature-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: all 0.2s ease;
    position: relative;
    overflow: visible;
    width: 100%;
}

@media (min-width: 1024px) {
    .feature-card {
        grid-template-columns: 1fr 1fr;
    }
    
    .feature-card:nth-child(even) {
        direction: rtl;
    }
    
    .feature-card:nth-child(even) > * {
        direction: ltr;
    }
}

.feature-content {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.feature-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

@media (min-width: 1024px) {
    .feature-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
}

.feature-description {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 300;
}

@media (min-width: 1024px) {
    .feature-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
}

.feature-image-wrapper {
    width: 100%;
}

.feature-image {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.2s ease;
    border: none;
}

.feature-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: brightness(0.85);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

@media (min-width: 1024px) {
    .feature-image img {
        height: 350px;
    }
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: var(--color-bg-primary);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.step-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .step-item {
        grid-template-columns: 1fr 1fr;
    }
    
    .step-item:nth-child(even) {
        direction: rtl;
    }
    
    .step-item:nth-child(even) > * {
        direction: ltr;
    }
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

.step-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    filter: brightness(0.85);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ============================================
   Highlights Section
   ============================================ */
.highlights {
    background: var(--color-bg-secondary);
}

.privacy {
    background: var(--color-bg-primary);
}

.privacy-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.privacy-header {
    max-width: 720px;
}

.privacy-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .privacy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.privacy-point h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.privacy-point p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.privacy-footnote {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.policy-body {
    background: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.policy-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(24px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.policy-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.policy-home-link {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.policy-main {
    padding: 4rem 0;
}

.policy-hero {
    padding-bottom: 2rem;
}

.policy-kicker {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.policy-hero h1 {
    font-size: 3rem;
    margin: 1rem 0;
}

.policy-subtitle {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.policy-meta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    font-size: 0.9rem;
}

.policy-meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.policy-meta-value {
    font-weight: 500;
}

.policy-section {
    padding: 1rem 0;
}

.policy-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 1.5rem;
}

.policy-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-size: 0.95rem;
}

.policy-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.policy-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.policy-footer-link {
    color: inherit;
}

.highlights-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .highlights-content {
        grid-template-columns: 1fr 1fr;
    }
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.highlight-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-gradient);
    border-radius: 50%;
    color: var(--color-text-primary);
    font-weight: 700;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.highlight-content p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

.highlights-image {
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: brightness(0.85);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing-3d-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    padding: 1.25rem;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.02);
}

.pricing-card.featured {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.03);
    transform: none;
}

.pricing-card.free-plan {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.01);
}

@media (max-width: 1023px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent-gradient);
    color: var(--color-text-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

.pricing-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.pricing-header-content > div {
    flex: 1;
    text-align: center;
}

.pricing-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 1);
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
    border-radius: 6px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    opacity: 1 !important;
    visibility: visible !important;
}

.pricing-toggle:hover {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--color-text-primary);
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.pricing-toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.pricing-card.expanded .pricing-toggle svg {
    transform: rotate(180deg);
}

.pricing-features-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.pricing-card.expanded .pricing-features-wrapper {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.pricing-name {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    letter-spacing: -0.01em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--spacing-sm);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-secondary);
}

.price-amount {
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.pricing-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 300;
    line-height: 1.4;
}

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

.pricing-btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.pricing-note {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.pricing-note p {
    font-size: 0.9375rem;
    color: var(--color-text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--color-bg-primary);
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}

.faq-question span {
    flex: 1;
    line-height: 1.5;
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-text-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
    transition: max-height 0.5s ease-in, padding 0.3s ease-in;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

@media (min-width: 768px) {
    .faq-question {
        padding: 1.75rem;
        font-size: 1.125rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.75rem 1.75rem 1.75rem;
    }
    
    .faq-answer {
        padding: 0 1.75rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

/* ============================================
   Download Section
   ============================================ */
.download {
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    z-index: 0;
}

.download-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .download-content {
        grid-template-columns: 1fr 1fr;
    }
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
    .download-buttons {
        flex-direction: row;
    }
}

.store-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    transition: all 0.2s ease;
    color: var(--color-text-primary);
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: none;
    box-shadow: none;
}

.store-button svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.store-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-button-label {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.store-button-name {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-primary);
}

.download-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 1rem;
    font-weight: 300;
}

.download-image {
    display: none;
}

@media (min-width: 1024px) {
    .download-image {
        display: block;
    }
}

.phones-showcase {
    position: relative;
    height: 600px;
}

.phone-image {
    position: absolute;
    width: 200px;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: brightness(0.9);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.phone-left {
    left: 0;
    top: 50px;
    transform: rotate(-10deg);
    z-index: 1;
}

.phone-center {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    width: 240px;
    height: 480px;
}

.phone-right {
    right: 0;
    top: 50px;
    transform: rotate(10deg);
    z-index: 1;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 3fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo .logo-image {
    width: 32px;
    height: 32px;
    animation: logoPulse 3s ease-in-out infinite;
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-top: var(--spacing-sm);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.footer-link {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--color-text-primary);
}

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

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

/* ============================================
   Animations
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   Loading States
   ============================================ */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

