/* ══════════════════════════════════════════════════════
   ZEONE PHOTO STUDIO — LANDING PAGE STYLES
   ══════════════════════════════════════════════════════ */

:root {
    --primary: #408A71;
    --primary-hover: #4EA882;
    --primary-dark: #285A48;
    --primary-light: rgba(64, 138, 113, 0.12);
    --primary-glow: rgba(64, 138, 113, 0.3);
    --bg-deep: #050E0C;
    --bg-base: #091413;
    --bg-card: rgba(12, 28, 24, 0.7);
    --surface: rgba(176, 228, 204, 0.06);
    --surface-hover: rgba(176, 228, 204, 0.12);
    --text-main: #ffffff;
    --text-secondary: #c8e6da;
    --text-muted: #8ab8a3;
    --border: rgba(176, 228, 204, 0.1);
    --border-bright: rgba(176, 228, 204, 0.2);
    --accent-cyan: #B0E4CC;
    --accent-amber: #F59E0B;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --gradient-hero: linear-gradient(135deg, #091413 0%, #0f2920 30%, #162f25 60%, #1a3b30 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ──────────── Scroll Animation Base ──────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ──────────── Animated Background Blobs ──────────── */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: blobFloat 20s ease-in-out infinite;
}

.bg-blobs .blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(64, 138, 113, 0.15), transparent 70%);
    top: -200px; right: -150px;
    animation-duration: 18s;
}

.bg-blobs .blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(40, 90, 72, 0.12), transparent 70%);
    top: 50%; left: -200px;
    animation-duration: 22s;
    animation-delay: -5s;
}

.bg-blobs .blob-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(64, 138, 113, 0.1), transparent 70%);
    bottom: -100px; right: 20%;
    animation-duration: 25s;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(40px, 10px) scale(1.02); }
}

/* ══════════════ NAVIGATION ══════════════ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.landing-nav.scrolled {
    background: rgba(5, 14, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border), 0 10px 40px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.nav-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 12px rgba(64, 138, 113, 0.3);
}

.nav-brand-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(64, 138, 113, 0.3);
}

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

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-main);
    background: var(--surface-hover);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 0.55rem 1.25rem !important;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: 0 2px 12px rgba(64, 138, 113, 0.3);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(64, 138, 113, 0.4) !important;
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
}

/* ══════════════ HERO SECTION ══════════════ */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 6rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

/* Subtle grid pattern overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(176, 228, 204, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(176, 228, 204, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border-bright);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease 0.2s both;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    animation: fadeInDown 0.6s ease 0.3s both;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary), #5EEAD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 480px;
    animation: fadeInDown 0.6s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInDown 0.6s ease 0.5s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: 0 4px 24px rgba(64, 138, 113, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(64, 138, 113, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text-main);
    border: 1px solid var(--border-bright);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

.btn span {
    position: relative;
    z-index: 1;
}

/* Hero visual / mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-mockup {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-mockup-card {
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(64, 138, 113, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-mockup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--primary-dark));
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dot-red { background: #EF4444; }
.mockup-dot-yellow { background: #F59E0B; }
.mockup-dot-green { background: #10B981; }

.mockup-title {
    margin-left: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.mockup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    aspect-ratio: 6/4;
}

.mockup-photo {
    background: linear-gradient(135deg, #e8f5f0, #d0ebe1);
    border-radius: 4px;
    border: 1px solid #c0d8cd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    overflow: hidden;
}

.mockup-photo::after {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px dashed rgba(64, 138, 113, 0.3);
    border-radius: 3px;
}

/* Floating elements around mockup */
.hero-float {
    position: absolute;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-bright);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    animation: float 4s ease-in-out infinite;
}

.hero-float-1 {
    top: -10px;
    right: -30px;
    color: #10B981;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 60px;
    left: -40px;
    color: var(--accent-cyan);
    animation-delay: -1.5s;
}

.hero-float-3 {
    bottom: -10px;
    right: 40px;
    color: var(--accent-amber);
    animation-delay: -3s;
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ══════════════ STATS SECTION ══════════════ */
.stats {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(64, 138, 113, 0.04), transparent);
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--border-bright);
    background: var(--surface-hover);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ══════════════ FEATURES SECTION ══════════════ */
.features {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 1rem;
    background: var(--primary-light);
    border: 1px solid rgba(64, 138, 113, 0.2);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-hover);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent, var(--primary));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    background: var(--icon-bg, var(--primary-light));
    border: 1px solid var(--icon-border, rgba(64, 138, 113, 0.15));
}

.feature-card:nth-child(1) {
    --card-accent: linear-gradient(90deg, #408A71, #5EEAD4);
    --icon-bg: rgba(64, 138, 113, 0.12);
    --icon-border: rgba(64, 138, 113, 0.2);
}

.feature-card:nth-child(2) {
    --card-accent: linear-gradient(90deg, #8B5CF6, #C084FC);
    --icon-bg: rgba(139, 92, 246, 0.12);
    --icon-border: rgba(139, 92, 246, 0.2);
}

.feature-card:nth-child(3) {
    --card-accent: linear-gradient(90deg, #3B82F6, #60A5FA);
    --icon-bg: rgba(59, 130, 246, 0.12);
    --icon-border: rgba(59, 130, 246, 0.2);
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ══════════════ HOW IT WORKS ══════════════ */
.how-it-works {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(64, 138, 113, 0.03), transparent);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

/* Connecting line between steps */
.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.67% + 20px);
    right: calc(16.67% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--primary));
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(64, 138, 113, 0.35);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

/* ══════════════ AI SHOWCASE / BEFORE-AFTER ══════════════ */
.ai-showcase {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.showcase-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.showcase-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.showcase-preview {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #0a1f1a, #162f25);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.showcase-preview-icon {
    font-size: 3.5rem;
    opacity: 0.7;
}

.showcase-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.7rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-cyan);
    border: 1px solid rgba(176, 228, 204, 0.15);
}

.showcase-info {
    padding: 1.25rem;
}

.showcase-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

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

/* ══════════════ PRICING PREVIEW ══════════════ */
.pricing-preview {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(64, 138, 113, 0.03), transparent);
}

.pricing-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-grid-4 {
    max-width: 1200px;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.price-card.featured {
    border-color: rgba(139, 92, 246, 0.4);
    border-width: 2px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(88, 28, 235, 0.03));
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
}

.price-card.featured:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.price-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #C084FC, #8B5CF6);
}

.price-popular {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 0.85rem;
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    border-radius: 0 0 8px 8px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    white-space: nowrap;
}

/* Plan icon badge */
.price-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}

.price-card:hover .price-icon {
    transform: scale(1.1);
}

.price-icon-green { background: rgba(16, 185, 129, 0.12); }
.price-icon-blue { background: rgba(59, 130, 246, 0.12); }
.price-icon-purple { background: rgba(139, 92, 246, 0.12); }
.price-icon-amber { background: rgba(245, 158, 11, 0.12); }

.price-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.price-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.25rem;
}

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

.price-value {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    text-align: left;
    flex: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.price-features li strong {
    color: #fff;
    font-weight: 700;
}

.price-features li .check {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.price-btn {
    display: block;
    width: 100%;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    margin-top: auto;
}

.price-btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-bright);
}

.price-btn-outline:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
}

.price-btn-primary {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: #fff;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.price-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 92, 246, 0.45);
}

.price-btn-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #fff;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.price-btn-blue:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

.price-btn-amber {
    background: rgba(245, 158, 11, 0.12);
    color: #fff;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.price-btn-amber:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

/* ══════════════ FAQ SECTION ══════════════ */
.faq {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-bright);
}

.faq-item.open {
    border-color: rgba(64, 138, 113, 0.3);
    background: linear-gradient(135deg, rgba(64, 138, 113, 0.04), transparent);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-cyan);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════ FINAL CTA ══════════════ */
.final-cta {
    position: relative;
    z-index: 1;
    padding: 6rem 2rem;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(64, 138, 113, 0.12), rgba(40, 90, 72, 0.06));
    border: 1px solid rgba(64, 138, 113, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent-cyan), var(--primary), transparent);
}

.cta-card h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ══════════════ FOOTER ══════════════ */
.landing-footer {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    background: rgba(5, 14, 12, 0.8);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-main);
    text-decoration: none;
}

.footer-brand-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-cyan);
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .steps-container::before {
        display: none;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-grid,
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(5, 14, 12, 0.97);
        backdrop-filter: blur(20px);
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        gap: 0.25rem;
    }

    .nav-links.open .nav-link {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: left;
    }

    .nav-toggle {
        display: block;
    }

    .hero-float-1,
    .hero-float-2 {
        display: none;
    }

    .hero-float-3 {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 1rem auto 0;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 6rem 1.25rem 4rem;
    }

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

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

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

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

    .cta-card {
        padding: 2.5rem 1.5rem;
    }

    .pricing-grid,
    .pricing-grid-4 {
        grid-template-columns: 1fr;
        max-width: 340px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .mockup-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ══════════════ COUNTER ANIMATION ══════════════ */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(176, 228, 204, 0.15);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(176, 228, 204, 0.25);
}
