/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 50%, #f59e0b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

/* Nest Animation */
.nest-animation {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
}

.nest-base {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
}

.nest-branch {
    position: absolute;
    background: #92400e;
    border-radius: 20px;
    animation: nestSway 3s ease-in-out infinite;
}

.nest-branch-1 {
    width: 60px;
    height: 8px;
    bottom: 0;
    left: 10px;
    transform-origin: left center;
    animation-delay: 0s;
}

.nest-branch-2 {
    width: 50px;
    height: 6px;
    bottom: 8px;
    left: 15px;
    transform-origin: left center;
    animation-delay: 0.5s;
}

.nest-branch-3 {
    width: 40px;
    height: 5px;
    bottom: 16px;
    left: 20px;
    transform-origin: left center;
    animation-delay: 1s;
}

/* Bird Animation */
.bird-container {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: birdFlight 4s ease-in-out infinite;
}

.bird {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 30px;
}

.bird-body {
    position: absolute;
    width: 20px;
    height: 25px;
    background: #374151;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 5px;
    left: 10px;
    animation: birdBob 2s ease-in-out infinite;
}

.bird-wing {
    position: absolute;
    width: 15px;
    height: 12px;
    background: #374151;
    border-radius: 50%;
    top: 8px;
    animation: wingFlap 0.3s ease-in-out infinite alternate;
}

.bird-wing-1 {
    left: 5px;
    transform-origin: right center;
}

.bird-wing-2 {
    right: 5px;
    transform-origin: left center;
}

.bird-beak {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid #f59e0b;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    top: 12px;
    left: 4px;
}

.bird-eye {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    top: 10px;
    left: 12px;
    animation: blink 3s infinite;
}

/* Loading Text */
.loading-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.loading-subtitle {
    font-size: 1.1rem;
    color: #b45309;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Loading Bar */
.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(146, 64, 14, 0.3);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #92400e, #f59e0b, #92400e);
    border-radius: 2px;
    animation: loadingProgress 2s ease-in-out infinite;
}

/* Loading Dots */
.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: #92400e;
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes birdFlight {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes birdBob {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

@keyframes wingFlap {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(-30deg); }
}

@keyframes blink {
    0%, 95%, 100% { opacity: 1; }
    97% { opacity: 0; }
}

@keyframes nestSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

@keyframes loadingProgress {
    0% { width: 0%; transform: translateX(-100%); }
    50% { width: 100%; transform: translateX(0%); }
    100% { width: 0%; transform: translateX(100%); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    letter-spacing: -0.01em;
}

main {
    flex: 1;
}

/* CSS Custom Properties (Variables) */
:root {
    /* Colors */
    --primary-color: #f59e0b;
    --primary-hover: #d97706;
    --secondary-color: #f97316;
    --secondary-hover: #ea580c;
    --accent-color: #fbbf24;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #fefce8;
    --bg-tertiary: #fef9e7;
    --border-color: #e5e7eb;
    --border-light: #f9fafb;
    
    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.015em;
    line-height: 1.3;
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Button Styles */
.cta-button,
.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    letter-spacing: -0.005em;
    font-family: 'Inter', sans-serif;
}

.cta-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
}

.cta-button:hover {
    background-color: var(--primary-hover);
}

/* Navigation */
.navbar {
    background-color: var(--bg-primary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.nav-logo:hover {
    opacity: 0.8;
}

.logo {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--transition-fast);
    white-space: nowrap;
}

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

.nav-links .cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.nav-links .cta-button:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: var(--space-1);
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    padding: var(--space-24) 0 var(--space-20);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    margin-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.hero-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.app-screenshot {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

/* Phone Frame Styles for Video */
.phone-frame {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #d97706, #b45309) !important;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 
        0 20px 40px rgba(217, 119, 6, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1f1611;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.app-demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.fallback-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background: #0f0c08;
    border-radius: 12px;
    z-index: 10;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    z-index: 10;
}

/* Problem/Solution Section */
.problem-solution {
    padding: var(--space-20) 0;
    background-color: var(--bg-primary);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background-color: var(--bg-secondary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: transform var(--transition-normal);
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
}

.problem-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.solution {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid #fbbf24;
}

.solution h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.solution p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

/* Magic Transformation Section */
.transformation-magic {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #fefce8 0%, #fff7ed 50%, #fefce8 100%);
    position: relative;
    overflow: hidden;
}

.transformation-magic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.transformation-demo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-bottom: var(--space-20);
    position: relative;
}

/* Before Content (Left Side) */
.content-before,
.content-after {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.content-before h3,
.content-after h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
}

.raw-content-preview {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.content-item {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    animation: overwhelm 3s ease-in-out infinite alternate;
}

.content-item:nth-child(2) {
    animation-delay: 0.5s;
}

.content-item:nth-child(3) {
    animation-delay: 1s;
}

@keyframes overwhelm {
    0% { transform: translateY(0) scale(1); box-shadow: var(--shadow-sm); }
    100% { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-md); }
}

.content-type {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.content-preview {
    position: relative;
}

.text-lines {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.line {
    height: 8px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    border-radius: var(--radius-sm);
    animation: textShimmer 2s ease-in-out infinite;
}

.line:nth-child(1) { width: 100%; }
.line:nth-child(2) { width: 95%; }
.line:nth-child(3) { width: 88%; }
.line:nth-child(4) { width: 92%; }
.line:nth-child(5) { width: 85%; }
.line:nth-child(6) { width: 90%; }
.line:nth-child(7) { width: 87%; }
.line:nth-child(8) { width: 83%; }
.line.short { width: 60%; }

.text-lines.dense .line {
    height: 6px;
    margin-bottom: 1px;
}

@keyframes textShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.scroll-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-3);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.scroll-bar {
    width: 60px;
    height: 4px;
    background: #e5e7eb;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.scroll-thumb {
    width: 20px;
    height: 100%;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    animation: scrollProgress 3s ease-in-out infinite;
}

@keyframes scrollProgress {
    0% { transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0); }
}

.video-preview {
    background: #000;
    border-radius: var(--radius-md);
    height: 80px;
    position: relative;
    overflow: hidden;
}

.video-player {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
}

.play-button {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-2);
    animation: pulse 2s ease-in-out infinite;
}

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

.video-progress {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-xs);
}

.progress-bar {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    animation: videoProgress 4s ease-in-out infinite;
}

@keyframes videoProgress {
    0% { width: 30%; }
    50% { width: 60%; }
    100% { width: 30%; }
}

.complexity-meter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-3);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.meter {
    width: 50px;
    height: 4px;
    background: #e5e7eb;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: var(--radius-full);
    animation: complexityMeter 2s ease-in-out infinite alternate;
}

.meter-fill.high {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #d97706);
    width: 85%;
}

@keyframes complexityMeter {
    0% { width: 75%; }
    100% { width: 90%; }
}

/* Transformation Arrow (Center) */
.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: var(--space-6) 0;
}

.magic-wand {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-3);
    animation: magicWand 2s ease-in-out infinite;
}

@keyframes magicWand {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(-5deg) scale(1.05); }
    75% { transform: rotate(15deg) scale(1.15); }
}

.arrow-body {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-2);
}

.arrow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.arrow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: arrowShine 2s ease-in-out infinite;
}

@keyframes arrowShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.arrow-head {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    margin-left: -2px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.processing-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--space-3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { text-shadow: 0 0 5px rgba(251, 191, 36, 0.5); }
    to { text-shadow: 0 0 15px rgba(251, 191, 36, 0.8), 0 0 25px rgba(251, 191, 36, 0.4); }
}

.transformation-particles {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 20%; 
    animation-delay: 0s;
    animation-duration: 2.5s;
}
.particle:nth-child(2) {
    left: 40%; 
    animation-delay: 0.5s;
    animation-duration: 3s;
}
.particle:nth-child(3) {
    left: 60%; 
    animation-delay: 1s;
    animation-duration: 2.8s;
}
.particle:nth-child(4) {
    left: 80%; 
    animation-delay: 1.5s;
    animation-duration: 3.2s;
}
.particle:nth-child(5) {
    left: 10%; 
    animation-delay: 2s;
    animation-duration: 2.7s;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0);
    }
    10% {
        opacity: 1;
        transform: translateY(80px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-80px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(0);
    }
}

/* After Content (Right Side) */
.structured-output {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.output-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.2);
    animation: cardAppear 0.6s ease-out;
    transition: all var(--transition-normal);
}

.output-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.output-card:nth-child(1) { animation-delay: 0.2s; }
.output-card:nth-child(2) { animation-delay: 0.4s; }
.output-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-3);
}

.card-type {
    font-weight: 600;
    color: var(--text-primary);
    font-size: var(--font-size-sm);
}

.read-time {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.card-content p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-2);
}

.expand-hint {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-style: italic;
}

.summary-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.point {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.play-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.play-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.wave-bar {
    width: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
    animation: waveAnimation 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 16px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 24px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 14px; animation-delay: 0.4s; }

@keyframes waveAnimation {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.audio-duration {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

.time-saved {
    margin-top: var(--space-6);
    text-align: center;
}

.time-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
    animation: timeBadgePulse 3s ease-in-out infinite;
}

@keyframes timeBadgePulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-lg); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-xl); }
}

.time-saved-text {
    font-weight: 500;
}

.time-amount {
    font-weight: 700;
    font-size: var(--font-size-lg);
}

/* Value Proposition */
.transformation-value {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    padding: var(--space-12);
    text-align: center;
    border: 2px solid rgba(251, 191, 36, 0.3);
    box-shadow: var(--shadow-xl);
}

.value-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

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

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
    animation: numberCount 2s ease-out;
}

@keyframes numberCount {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: 500;
}

.value-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Additional animation keyframes for transformation section */
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

@keyframes fadeInSequence {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes morphTransition {
    0% { 
        border-radius: var(--radius-lg);
        background: #fff;
    }
    50% {
        border-radius: var(--radius-2xl);
        background: linear-gradient(135deg, #fff 0%, #fefce8 100%);
    }
    100% {
        border-radius: var(--radius-lg);
        background: #fff;
    }
}

/* Enhanced interactive states */
.content-item:hover {
    animation-play-state: paused;
}

.output-card:hover {
    background: linear-gradient(135deg, #fff 0%, #fefce8 100%);
}

.magic-wand:hover {
    animation-duration: 0.5s;
    cursor: pointer;
}

/* Transformation sequence classes for JavaScript control */
.transformation-stage-1 .content-item {
    animation: overwhelm 3s ease-in-out infinite alternate;
}

.transformation-stage-2 .transformation-arrow {
    animation: magicWand 1s ease-in-out infinite;
}

.transformation-stage-3 .output-card {
    animation: cardAppear 0.6s ease-out forwards;
}

.transformation-complete .time-badge {
    animation: timeBadgePulse 3s ease-in-out infinite;
}

/* Sparkle effect for extra magic */
.transformation-arrow::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    animation: sparkle 2s ease-in-out infinite;
    animation-delay: 1s;
    pointer-events: none;
}

/* Pricing Page Styles */
.pricing-hero {
    padding: var(--space-24) 0 var(--space-16);
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.pricing-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.pricing-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

.pricing-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
}

.highlight-badge {
    background: var(--primary-color);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.pricing-plans {
    padding: var(--space-20) 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    position: relative;
    transition: var(--transition-normal);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.plan-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
}

.plan-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.plan-price {
    margin-bottom: var(--space-4);
}

.price-amount {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-left: var(--space-1);
}

.plan-description {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.plan-features {
    margin-bottom: var(--space-8);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-lg);
    text-align: left;
}

.feature-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
}

.feature-item.future {
    opacity: 0.7;
}

.feature-item.future .feature-icon {
    filter: grayscale(1);
}

.blur-text {
    filter: blur(1px);
    opacity: 0.6;
}

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

.cta-button {
    display: inline-block;
    padding: var(--space-4) var(--space-8);
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    width: 100%;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.cta-button.disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.cta-button.disabled:hover {
    transform: none;
    background: var(--text-muted);
}

.cta-note {
    margin-top: var(--space-3);
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.pricing-faq {
    padding: var(--space-20) 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.pricing-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    margin-bottom: var(--space-8);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.download-btn img {
    height: 60px;
    transition: var(--transition-normal);
}

.download-btn:hover img {
    transform: scale(1.05);
}

.pricing-guarantee {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 500;
}

.guarantee-icon {
    font-size: var(--font-size-lg);
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Video Showcase Section */
.video-showcase {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #fff 0%, #fefce8 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-12);
    align-items: start;
    margin-bottom: var(--space-16);
}

/* Video Player */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.video-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 2;
}

.video-preview-overlay:hover {
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
}

.play-button-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    animation: videoPulse 3s ease-in-out infinite;
}

@keyframes videoPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
    }
}

.video-preview-overlay:hover .play-button-large {
    transform: scale(1.1);
    animation-play-state: paused;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.7);
}

.play-icon {
    font-size: var(--font-size-3xl);
    margin-left: 8px; /* Center the play triangle */
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-info {
    text-align: center;
    max-width: 400px;
}

.video-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-info p {
    font-size: var(--font-size-lg);
    opacity: 0.9;
    margin-bottom: var(--space-4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.video-stats .stat {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Video iframe styling */
#nerdi-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-2xl);
}

/* Video Sidebar */
.video-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.video-highlights {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: var(--shadow-lg);
}

.video-highlights h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.highlight-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

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

.highlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.highlight-text {
    display: flex;
    flex-direction: column;
}

.highlight-text strong {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.highlight-text span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Video CTA */
.video-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.video-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: ctaShine 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes ctaShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.video-cta h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.video-cta p {
    opacity: 0.9;
    margin-bottom: var(--space-6);
}

.video-cta-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: var(--space-4) var(--space-6);
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.video-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-arrow {
    transition: transform var(--transition-fast);
}

.video-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.video-social-proof {
    margin-top: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    position: relative;
}

.avatar:nth-child(1) { background: linear-gradient(135deg, #ff6b6b, #ff8e53); }
.avatar:nth-child(2) { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.avatar:nth-child(3) { background: linear-gradient(135deg, #45b7d1, #96c93d); }

.avatar-count {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-left: -8px;
}

.proof-text {
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

/* Video Testimonials */
.video-testimonials {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: var(--shadow-lg);
}

.video-testimonials h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.mini-testimonial {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.mini-testimonial:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    position: absolute;
    left: -8px;
    top: -8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-avatar {
    font-size: var(--font-size-lg);
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Privacy Policy Styles */
.privacy-hero {
    padding: var(--space-24) 0 var(--space-16);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    margin-top: 80px;
    border-bottom: 1px solid var(--border-light);
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text-primary);
    font-weight: 500;
}

.privacy-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.privacy-subtitle {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-8);
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.meta-icon {
    font-size: var(--font-size-base);
}

.privacy-content {
    padding: var(--space-20) 0;
    background-color: var(--bg-primary);
}

.privacy-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-12);
    align-items: start;
}

.privacy-sidebar {
    position: sticky;
    top: 120px;
}

.toc-container {
    background: var(--bg-secondary);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    border: 1px solid var(--border-color);
}

.toc-container h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.toc-link {
    display: block;
    padding: var(--space-2) var(--space-3);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.toc-link:hover {
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.toc-link.active {
    background: rgba(251, 191, 36, 0.15);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.privacy-contact-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.privacy-contact-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.privacy-contact-card p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.contact-email {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-3);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.privacy-contact-card small {
    display: block;
    font-size: var(--font-size-xs);
    opacity: 0.8;
}

.privacy-main {
    max-width: 800px;
}

.privacy-intro {
    margin-bottom: var(--space-12);
}

.lead-text {
    font-size: var(--font-size-xl);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    padding: var(--space-6);
    background: var(--bg-tertiary);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--primary-color);
}

.privacy-section {
    margin-bottom: var(--space-16);
    scroll-margin-top: 120px;
}

.privacy-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

.subsection {
    margin-bottom: var(--space-8);
}

.subsection h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.privacy-list {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

.privacy-list li {
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    line-height: 1.6;
}

.privacy-list li::marker {
    color: var(--primary-color);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.privacy-link:hover {
    border-bottom-color: var(--primary-color);
}

.privacy-contact {
    background: var(--bg-secondary);
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    margin: var(--space-16) 0;
    border: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.contact-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.contact-details p {
    margin-bottom: var(--space-2);
}

.privacy-footer {
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.privacy-footer p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
}

.privacy-footer p:first-child {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Personalization Section */
.personalization {
    padding: var(--space-20) 0;
    background-color: var(--bg-primary);
}

.nests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-16);
}

.nest-card {
    background-color: var(--bg-secondary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.nest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.nest-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nest-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nest-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.nest-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.nest-topics {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    justify-content: center;
}

.nest-topics span {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.personalization-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid #fbbf24;
}

.personalization-cta h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.personalization-cta p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: var(--space-20) 0;
    background-color: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-12);
}

.feature-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-visual img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.feature-content {
    padding: var(--space-6);
}

.feature-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--space-8);
    align-items: center;
}

.step:nth-child(even) {
    grid-template-columns: auto 1fr auto;
}

.step:nth-child(even) .step-content {
    order: 2;
}

.step:nth-child(even) .step-visual {
    order: 3;
}

.step:nth-child(even) .step-number {
    order: 1;
}

/* Featured Step (Step 2 with GIF) */
.step-featured {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #fff7ed 50%, var(--bg-tertiary) 100%);
    padding: var(--space-12);
    border-radius: var(--radius-2xl);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.2);
    gap: var(--space-12);
    position: relative;
    overflow: hidden;
}

.step-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.step-number-featured {
    width: 80px;
    height: 80px;
    font-size: var(--font-size-2xl);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6);
    }
}

.step-content-featured h3 {
    font-size: var(--font-size-3xl);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-content-featured p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-6);
}

.feed-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.feed-feature {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: all var(--transition-normal);
}

.feed-feature:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: var(--font-size-lg);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feed-feature span:last-child {
    font-weight: 500;
    color: var(--text-primary);
}

/* Featured Step Visual */
.step-visual-featured {
    max-width: 400px;
    position: relative;
}

.feed-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.phone-frame {
    position: relative;
    background: linear-gradient(145deg, #d97706, #b45309) !important;
    border-radius: 35px;
    padding: 20px 10px;
    box-shadow: 0 25px 50px rgba(217, 119, 6, 0.3);
    transition: all var(--transition-normal);
}

.phone-frame:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 35px 70px rgba(217, 119, 6, 0.4);
}

.scrolling-feed-gif {
    width: 250px;
    height: auto;
    border-radius: 25px;
    display: block;
}

.feed-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.feed-indicator {
    display: flex;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all var(--transition-fast);
}

.indicator-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.feed-stats {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.feed-stat {
    text-align: center;
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.feed-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-value {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    font-weight: 500;
}

.feed-callouts {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    pointer-events: none;
}

.callout {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
    animation: calloutFloat 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.callout-left {
    left: -60px;
    top: 30%;
    animation-delay: 0s;
}

.callout-right {
    right: -60px;
    bottom: 30%;
    animation-delay: 2s;
}

@keyframes calloutFloat {
    0%, 100% {
        transform: translateY(0px);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.callout-icon {
    font-size: var(--font-size-lg);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callout-text {
    display: flex;
    flex-direction: column;
}

.callout-text strong {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 2px;
}

.callout-text span {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

/* Regular Steps */
.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.step-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.step-visual {
    max-width: 250px;
    width: 100%;
}

.step-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

/* Card Swiping Animation Styles */
.cards-animation-container {
    position: relative;
    width: 350px;
    height: 400px;
    margin: 0 auto;
}

.swipe-demo {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    perspective: 1000px;
}

.news-card {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%);
    border-radius: var(--radius-2xl);
    border: 2px solid rgba(251, 191, 36, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    z-index: 3;
}

.news-card.card-1 {
    animation: cardSwipe1 6s infinite;
    z-index: 5;
}

.news-card.card-2 {
    animation: cardSwipe2 6s infinite;
    z-index: 4;
}

.news-card.card-3 {
    animation: cardSwipe3 6s infinite;
    z-index: 3;
}

@keyframes cardSwipe1 {
    0%, 15% { 
        transform: translateX(-50%) translateY(0) rotateZ(0deg); 
        opacity: 1; 
        z-index: 5;
    }
    30% { 
        transform: translateX(-50%) translateY(-20px) rotateZ(-3deg); 
        opacity: 1; 
    }
    45% { 
        transform: translateX(-150%) translateY(-40px) rotateZ(-15deg); 
        opacity: 0; 
    }
    60%, 100% { 
        transform: translateX(-50%) translateY(0) rotateZ(0deg); 
        opacity: 1; 
        z-index: 3;
    }
}

@keyframes cardSwipe2 {
    0%, 30% { 
        transform: translateX(-50%) translateY(20px) rotateZ(0deg) scale(0.95); 
        opacity: 0.8; 
        z-index: 4;
    }
    45% { 
        transform: translateX(-50%) translateY(0) rotateZ(0deg) scale(1); 
        opacity: 1; 
        z-index: 5;
    }
    60% { 
        transform: translateX(-50%) translateY(-20px) rotateZ(-3deg); 
        opacity: 1; 
    }
    75% { 
        transform: translateX(-150%) translateY(-40px) rotateZ(-15deg); 
        opacity: 0; 
    }
    90%, 100% { 
        transform: translateX(-50%) translateY(20px) rotateZ(0deg) scale(0.95); 
        opacity: 0.8; 
        z-index: 4;
    }
}

@keyframes cardSwipe3 {
    0%, 60% { 
        transform: translateX(-50%) translateY(40px) rotateZ(0deg) scale(0.9); 
        opacity: 0.6; 
        z-index: 3;
    }
    75% { 
        transform: translateX(-50%) translateY(0) rotateZ(0deg) scale(1); 
        opacity: 1; 
        z-index: 5;
    }
    90% { 
        transform: translateX(-50%) translateY(-20px) rotateZ(-3deg); 
        opacity: 1; 
    }
    100% { 
        transform: translateX(-50%) translateY(40px) rotateZ(0deg) scale(0.9); 
        opacity: 0.6; 
        z-index: 3;
    }
}

.card-category {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.news-card h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.news-card p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--space-4);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.read-time {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    font-weight: 500;
}

.card-type {
    font-size: var(--font-size-xs);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.swipe-hand {
    position: absolute;
    bottom: 50px;
    right: 30px;
    z-index: 10;
    pointer-events: none;
}

.hand-icon {
    font-size: 2rem;
    animation: swipeGesture 3s infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

@keyframes swipeGesture {
    0%, 70% { 
        transform: translateX(0) rotate(0deg); 
        opacity: 0;
    }
    75% { 
        opacity: 1; 
        transform: translateX(0) rotate(-5deg);
    }
    85% { 
        opacity: 1; 
        transform: translateX(-40px) rotate(-15deg);
    }
    95% { 
        opacity: 0; 
        transform: translateX(-80px) rotate(-20deg);
    }
    100% { 
        opacity: 0; 
        transform: translateX(0) rotate(0deg);
    }
}

.swipe-indicators {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: all var(--transition-normal);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}


/* Social Proof Section */
.social-proof {
    padding: var(--space-20) 0;
    background-color: var(--bg-secondary);
}

.testimonials-container {
    margin-bottom: var(--space-16);
}

.testimonials {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: var(--space-4) 0 var(--space-8) 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.testimonials::-webkit-scrollbar {
    height: 8px;
}

.testimonials::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}

.testimonials::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.testimonials::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.testimonial {
    background-color: var(--bg-primary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: var(--space-6);
}

.testimonial-content p {
    font-size: var(--font-size-lg);
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-8);
    text-align: center;
}

.stat {
    background-color: var(--bg-primary);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.stat strong {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
}

.stat span {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
}

/* Download Section */
.download {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
}

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

.download-content h2 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.download-content > p {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    margin-bottom: var(--space-12);
}

/* Main Download Buttons */
.download-buttons-main {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.download-btn-new {
    display: block;
    transition: all var(--transition-normal);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.download-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.download-btn-new img {
    height: 60px;
    width: auto;
    display: block;
}

/* Download Flow */
.download-flow {
    display: flex;
    justify-content: center;
    gap: var(--space-8);
    margin-bottom: var(--space-16);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
}

.download-step {
    text-align: center;
    max-width: 200px;
}

.step-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
}

.download-step p {
    font-size: var(--font-size-base);
    line-height: 1.5;
    opacity: 0.95;
}

.download-step strong {
    color: white;
    font-weight: 600;
}

/* Download Alternatives */
.download-alternatives {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 700px;
    margin: 0 auto;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Quick Access QR Codes */
.quick-access {
    text-align: center;
}

.quick-access-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-4);
    opacity: 0.9;
}

.qr-codes-minimal {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
}

.qr-code-small {
    text-align: center;
}

.qr-code-small img {
    width: 80px;
    height: 80px;
    background-color: white;
    padding: var(--space-2);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2);
}

.qr-code-small span {
    display: block;
    font-size: var(--font-size-sm);
    opacity: 0.8;
    font-weight: 500;
}

/* Launch Notice */
.beta-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
}

.beta-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.beta-notice p {
    font-size: var(--font-size-base);
    opacity: 0.9;
    margin: 0;
}

/* Footer */
.footer {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    padding: var(--space-16) 0 var(--space-8);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer-logo img {
    width: 32px;
    height: 32px;
}

.footer-logo span {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section h4 {
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--space-2);
    transition: color var(--transition-fast);
}

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

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-social a:hover img {
    filter: brightness(0) invert(1);
}

.footer-social img {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

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

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: var(--font-size-sm);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Partnerships Page Styles */
.partnerships-hero {
    padding: var(--space-24) 0 var(--space-20);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    margin-top: 80px;
}

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

.partnerships-hero .hero-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.partnerships-hero .hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: var(--space-12);
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.partnership-types {
    padding: var(--space-20) 0;
    background-color: var(--bg-primary);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.partnership-card {
    background: white;
    padding: var(--space-10);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.partnership-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.1), var(--shadow-lg);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.partnership-icon {
    margin-bottom: var(--space-6);
}

.partnership-icon .icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    margin: 0 auto;
}

.partnership-card h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    text-align: center;
}

.partnership-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    text-align: center;
    line-height: 1.6;
}

.partnership-benefits {
    margin-bottom: var(--space-8);
}

.partnership-card .benefit-item,
.contact-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.partnership-card .benefit-icon,
.contact-benefits .benefit-icon {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: bold;
    flex-shrink: 0;
}

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

.success-stories {
    padding: var(--space-20) 0;
    background-color: var(--bg-secondary);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-12);
}

.story-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.story-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.story-quote {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
    font-size: var(--font-size-lg);
}

.story-author {
    margin-bottom: var(--space-6);
}

.author-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.author-info span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.story-metric {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.story-metric .metric-number {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--primary-color);
}

.story-metric .metric-label {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.partner-features {
    padding: var(--space-20) 0;
    background-color: var(--bg-primary);
}

.features-showcase {
    display: grid;
    gap: var(--space-12);
    margin-top: var(--space-12);
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-8);
    align-items: center;
}

.feature-item:nth-child(even) {
    grid-template-columns: 1fr auto;
}

.feature-item:nth-child(even) .feature-visual {
    order: 2;
}

.feature-visual {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.partner-features .feature-icon {
    font-size: var(--font-size-4xl);
}

.feature-content h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.feature-highlights {
    list-style: none;
    padding: 0;
}

.feature-highlights li {
    position: relative;
    padding-left: var(--space-6);
    margin-bottom: var(--space-2);
    color: var(--text-secondary);
}

.feature-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.partnership-process {
    padding: var(--space-20) 0;
    background-color: var(--bg-secondary);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-12);
    align-items: center;
}

.step-item {
    grid-column: span 1;
    text-align: center;
}

.step-connector {
    grid-column: span 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 var(--space-4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto var(--space-4) auto;
}

.step-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.step-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.partnership-contact {
    padding: var(--space-20) 0;
    background-color: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.contact-info h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    line-height: 1.6;
    font-size: var(--font-size-lg);
}

.contact-benefits {
    margin-bottom: var(--space-8);
}


.contact-note {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    margin-top: var(--space-4);
}

.partnership-preview {
    background: white;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.preview-header h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-6);
    text-align: center;
}

.preview-content {
    display: grid;
    gap: var(--space-4);
}

.preview-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3);
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
}

.partnership-preview .metric-title {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.partnership-preview .metric-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.preview-chart {
    display: flex;
    gap: var(--space-2);
    height: 60px;
    align-items: end;
    margin-top: var(--space-4);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-sm);
    min-height: 20px;
}

/* ===============================================
   GLASSMORPHISM PRICING SECTION
   =============================================== */

.pricing-plans-glass {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 50%, #fecaca 100%);
    overflow: hidden;
}

.pricing-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(245, 158, 11, 0.15));
    backdrop-filter: blur(40px);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(20px) rotate(240deg); }
}

.pricing-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 20px auto;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

/* Glass Card Base */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(245, 158, 11, 0.1),
        0 2px 16px rgba(249, 115, 22, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

/* Primary Plan - Main Card */
.main-card {
    transform: scale(1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.main-card:hover {
    transform: scale(1.02);
    box-shadow: 
        0 20px 40px rgba(245, 158, 11, 0.15),
        0 10px 30px rgba(249, 115, 22, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Free Badge */
.free-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 8px 24px;
    border-radius: 20px;
    z-index: 15;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.badge-text {
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    filter: blur(10px);
    opacity: 0.7;
    z-index: -1;
}

/* Plan Hero Section */
.plan-hero {
    text-align: center;
    margin-bottom: 32px;
}

.plan-icon-large {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
}

.plan-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-large {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

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

.plan-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 300px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.feature-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.feature-glass:hover::before {
    left: 100%;
}

.feature-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.feature-glass .feature-icon {
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.feature-glass span {
    font-weight: 500;
    color: var(--text-primary);
}

/* CTA Section */
.cta-section {
    text-align: center;
}

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

.glass-download-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-width: 160px;
}

.glass-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.btn-icon {
    font-size: 24px;
}

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

.btn-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.btn-platform {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 1;
}

.glass-download-btn:hover .btn-glow {
    opacity: 0.1;
}

.instant-access {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Secondary Plan - Pro Card */
.pro-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 32px;
    position: relative;
}

.pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.12);
}

.coming-soon-badge {
    position: absolute;
    top: -14px;
    right: 16px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    z-index: 15;
}

.pro-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon-medium {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
    filter: drop-shadow(0 3px 8px rgba(245, 158, 11, 0.3));
}

.pro-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pro-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pro-features {
    margin-bottom: 24px;
}

.pro-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-feature:last-child {
    border-bottom: none;
}

.feature-check {
    color: #10b981;
    font-weight: 700;
}

.feature-star {
    color: var(--primary-color);
}

.pro-feature.future {
    opacity: 0.6;
}

.blur-text {
    filter: blur(2px);
    user-select: none;
}

.glass-notify-btn {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 12px 24px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.glass-notify-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.15);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 968px) {
    .pricing-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons-glass {
        flex-direction: column;
        align-items: center;
    }
    
    .glass-download-btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .pricing-plans-glass {
        padding: 80px 0;
    }
    
    .glass-card {
        padding: 32px 24px;
    }
    
    .plan-title {
        font-size: 2rem;
    }
    
    .price-large {
        font-size: 3rem;
    }
    
    .shape {
        opacity: 0.5;
    }
}

/* ===============================================
   MODERN FEATURES SECTION
   =============================================== */

.features-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.feature-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.1);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(245, 158, 11, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-modern:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 12px 40px rgba(245, 158, 11, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: rgba(245, 158, 11, 0.2);
}

.feature-modern:hover::before {
    opacity: 1;
}

.featured-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.05));
    border: 2px solid rgba(245, 158, 11, 0.2);
    transform: scale(1.02);
}

.featured-highlight::before {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.5), rgba(249, 115, 22, 0.3), rgba(245, 158, 11, 0.5));
    opacity: 1;
}

.feature-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.2));
    transition: transform 0.3s ease;
}

.feature-modern:hover .feature-icon-large {
    transform: scale(1.1) rotate(5deg);
}

.feature-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features-modern {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .feature-modern {
        padding: 24px;
    }
    
    .featured-highlight {
        transform: none;
    }
    
    .feature-icon-large {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .feature-text h3 {
        font-size: 1.25rem;
    }
    
    .feature-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feature-modern {
        padding: 20px;
    }
    
    .feature-icon-large {
        font-size: 36px;
    }
}

/* ===============================================
   MOBILE HERO SECTION OPTIMIZATION
   =============================================== */

/* Tablet and mobile adjustments */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-16) 0 var(--space-12);
        margin-top: 70px;
    }
    
    .hero-container {
        gap: var(--space-8);
        padding: 0 var(--space-6);
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
        margin-bottom: var(--space-4);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-6);
    }
    
    .phone-mockup {
        max-width: 200px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--space-12) 0 var(--space-8);
        margin-top: 60px;
    }
    
    .hero-container {
        gap: var(--space-6);
        padding: 0 var(--space-4);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .phone-mockup {
        max-width: 160px;
    }
    
    .hero-note {
        font-size: var(--font-size-sm);
    }
    
    /* Hide sections that don't work well on mobile */
    .transformation-magic,
    .video-showcase {
        display: none;
    }
    
    /* Fix partnerships page mobile layout */
    .partner-features {
        text-align: center;
        padding: var(--space-12) 0;
    }
    
    .partner-features .section-header {
        text-align: center;
        margin-bottom: var(--space-8);
    }
    
    .partner-features .features-showcase {
        display: flex;
        flex-direction: column;
        gap: var(--space-8);
        align-items: center;
    }
    
    .partner-features .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 300px;
        grid-template-columns: none;
    }
    
    .partner-features .feature-item:nth-child(even) {
        grid-template-columns: none;
    }
    
    .partner-features .feature-item:nth-child(even) .feature-visual {
        order: 0;
    }
    
    .partner-features .feature-visual {
        width: 80px;
        height: 80px;
        margin-bottom: var(--space-4);
    }
    
    .partner-features .feature-icon {
        font-size: var(--font-size-3xl);
    }
    
    .partner-features .feature-content {
        text-align: center;
    }
    
    .partner-features .feature-content h3 {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-3);
    }
    
    .partner-features .feature-content p {
        font-size: var(--font-size-base);
        line-height: 1.6;
    }
    
    .partner-features .feature-highlights {
        text-align: center;
        margin-top: var(--space-4);
    }
    
    .partner-features .feature-highlights li {
        margin-bottom: var(--space-2);
    }
}