/* PRL SaaS Factory — Sector Landing Page Styles
   Extracted from Ink App template, adapted for multi-sector use.
   Colors are injected via CSS custom properties from the layout. */



/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

a { color: inherit; text-decoration: none; }

/* Bridge: map PRL sector vars to GLYMDO landing vars */
.landing-page,
.landing-page[data-land-theme="dark"] {
    --primary: #1E40AF;
    --secondary: #F97316;
    --primary-rgb: 30, 64, 175;
    --secondary-rgb: 249, 115, 22;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --gradient: linear-gradient(135deg, #1E40AF, #F97316);
    --bg-primary: #0B1220;
    --bg-secondary: #0f172a;
    --bg-card: rgba(255,255,255,0.03);
    --border-color: rgba(255,255,255,0.06);
    --font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    --bg-glass: rgba(255,255,255,0.03);
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
}
.landing-page[data-land-theme="light"] {
    --primary: #1E3A8A;
    --secondary: #EA580C;
    --primary-rgb: 30, 58, 138;
    --secondary-rgb: 234, 88, 12;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --gradient: linear-gradient(135deg, #1E3A8A, #EA580C);
    --bg-primary: #f8f8fc;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --border-color: rgba(0,0,0,0.08);
    --bg-glass: rgba(255,255,255,0.7);
    --border: rgba(0,0,0,0.08);
    --border-hover: rgba(0,0,0,0.14);
}

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

:root {
    --primary: #1E40AF;
    --secondary: #3B82F6;
    --tertiary: #F97316;
    --gradient: linear-gradient(135deg, #1E40AF 0%, var(--secondary) 50%, #F97316 100%);
    --gradient-text: linear-gradient(135deg, #1E40AF, #F97316);
    --primary-rgb: 30, 64, 175;
    --secondary-rgb: 249, 115, 22;

    /* Dark theme (default) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: #242424;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(var(--primary-rgb),0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 40px rgba(var(--primary-rgb),0.15);
    --nav-bg: rgba(10, 10, 10, 0.8);
}

[data-land-theme="light"] {
    --bg-primary: #fafafa;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #eeeeee;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(var(--primary-rgb),0.3);
    --text-primary: #111111;
    --text-secondary: rgba(0, 0, 0, 0.65);
    --text-muted: rgba(0, 0, 0, 0.4);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 40px rgba(var(--primary-rgb),0.12);
    --nav-bg: rgba(250, 250, 250, 0.85);
}
/* Light theme glass overrides for mockup */
[data-land-theme="light"] .mockup-phone {
    background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.5), rgba(0,0,0,0.06) 35%, rgba(var(--secondary-rgb),0.45) 65%, rgba(0,0,0,0.04));
    box-shadow:
        0 2px 6px rgba(0,0,0,0.1),
        0 12px 30px rgba(0,0,0,0.12),
        0 30px 60px rgba(0,0,0,0.08),
        0 50px 100px rgba(0,0,0,0.04),
        0 20px 60px rgba(var(--primary-rgb),0.06),
        inset 0 1px 0 rgba(255,255,255,0.95),
        inset 0 -1px 0 rgba(0,0,0,0.06);
}
[data-land-theme="light"] .mockup-phone::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.95) 30%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.95) 70%, transparent);
}
[data-land-theme="light"] .mockup-phone::after {
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.03) 30%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.03) 70%, transparent);
}
[data-land-theme="light"] .mockup-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 100%);
    border-color: rgba(0,0,0,0.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.9);
}
[data-land-theme="light"] .mockup-card:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.06) 0%, rgba(255,255,255,0.7) 100%);
}
[data-land-theme="light"] .mockup-stat-box {
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 100%);
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .mockup-chart {
    background: linear-gradient(135deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.4) 100%);
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .mockup-detail {
    background: linear-gradient(170deg, rgba(245,245,245,0.95) 0%, rgba(238,238,238,0.98) 100%);
}
[data-land-theme="light"] .mockup-detail-row { border-bottom-color: rgba(0,0,0,0.05); }
[data-land-theme="light"] .mockup-detail-row:hover { background: rgba(0,0,0,0.02); }
[data-land-theme="light"] .mockup-predict-item { border-bottom-color: rgba(0,0,0,0.05); }
[data-land-theme="light"] .mockup-predict-item:hover { background: rgba(0,0,0,0.02); }
[data-land-theme="light"] .mockup-bubble.incoming {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .mockup-nav {
    background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.3) 100%);
    border-top-color: rgba(0,0,0,0.06);
}



.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    color: #fff;
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: var(--gradient),
                      linear-gradient(135deg, rgba(255,255,255,0.4), rgba(var(--primary-rgb),0.6) 50%, rgba(var(--secondary-rgb),0.5));
    box-shadow:
        0 2px 6px rgba(var(--primary-rgb),0.3),
        0 8px 24px rgba(var(--primary-rgb),0.2),
        0 0 25px rgba(var(--primary-rgb),0.06),
        inset 0 2px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.2),
        inset 1px 0 0 rgba(255,255,255,0.08),
        inset -1px 0 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255,255,255,0.05) 60%, transparent);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}
.btn-primary::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    pointer-events: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 4px 12px rgba(var(--primary-rgb),0.4),
        0 12px 32px rgba(var(--primary-rgb),0.3),
        0 0 35px rgba(var(--primary-rgb),0.1),
        inset 0 2px 0 rgba(255,255,255,0.35);
}

.btn-ghost {
    color: var(--text-primary);
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
                      linear-gradient(135deg, rgba(255,255,255,0.2), rgba(var(--primary-rgb),0.15) 50%, rgba(var(--secondary-rgb),0.12));
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    box-shadow:
        0 2px 6px rgba(0,0,0,0.12),
        0 6px 20px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.1),
        inset 1px 0 0 rgba(255,255,255,0.06),
        inset -1px 0 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.btn-ghost::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), transparent);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}
.btn-ghost::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    pointer-events: none;
}
.btn-ghost:hover {
    background-image: linear-gradient(145deg, rgba(var(--primary-rgb),0.08), rgba(var(--secondary-rgb),0.04)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.35), rgba(255,255,255,0.15) 50%, rgba(var(--secondary-rgb),0.3));
    box-shadow:
        0 4px 12px rgba(var(--primary-rgb),0.12),
        0 10px 28px rgba(0,0,0,0.1),
        0 0 25px rgba(var(--primary-rgb),0.06),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(var(--primary-rgb),0.08);
    border: 1px solid rgba(var(--primary-rgb),0.15);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s, padding 0.3s;
}
.navbar.scrolled {
    border-bottom-color: var(--border);
    padding: 0.7rem 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.25rem;
}
.nav-brand .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.nav-brand span.by-prl {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.25rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
    font-weight: 500;
}
.nav-links a:hover { color: var(--primary); }
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.lang-toggle, .theme-toggle {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.lang-toggle:hover, .theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.nav-cta {
    color: #fff;
    padding: 0.55rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: var(--gradient),
                      linear-gradient(135deg, rgba(255,255,255,0.4), rgba(var(--primary-rgb),0.6) 50%, rgba(var(--secondary-rgb),0.5));
    box-shadow:
        0 2px 8px rgba(var(--primary-rgb),0.3),
        0 6px 20px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.25),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}
.nav-cta:hover {
    box-shadow:
        0 4px 16px rgba(var(--primary-rgb),0.45),
        0 10px 30px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.3);
    transform: translateY(-1px);
}
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.25rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}
.mobile-menu-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}
.mobile-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== HERO ========== */
.hero {
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(var(--primary-rgb),0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    background: rgba(var(--primary-rgb),0.08);
    border: 1px solid rgba(var(--primary-rgb),0.2);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Hero mockup */
.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.mockup-phone {
    width: 280px;
    height: 560px;
    border-radius: 36px;
    background: var(--bg-tertiary);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    /* 4-layer depth shadow + color glow */
    box-shadow:
        0 2px 6px rgba(0,0,0,0.3),
        0 12px 30px rgba(0,0,0,0.35),
        0 30px 60px rgba(0,0,0,0.25),
        0 50px 100px rgba(0,0,0,0.15),
        /* color glow underneath */
        0 20px 60px rgba(var(--primary-rgb),0.08),
        0 40px 90px rgba(var(--secondary-rgb),0.05),
        /* bisel highlights */
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        inset 1px 0 0 rgba(255,255,255,0.05),
        inset -1px 0 0 rgba(255,255,255,0.05);
    /* Animated gradient border — more vivid */
    background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.7), rgba(255,255,255,0.15) 35%, rgba(var(--secondary-rgb),0.6) 65%, rgba(255,255,255,0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: phone-border-rotate 5s linear infinite, phone-float 4s ease-in-out infinite;
}
@keyframes phone-border-rotate {
    0%   { background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)), linear-gradient(135deg, rgba(var(--primary-rgb),0.7), rgba(255,255,255,0.15) 35%, rgba(var(--secondary-rgb),0.6) 65%, rgba(255,255,255,0.1)); }
    25%  { background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)), linear-gradient(225deg, rgba(var(--primary-rgb),0.6), rgba(255,255,255,0.18) 35%, rgba(var(--secondary-rgb),0.7) 65%, rgba(255,255,255,0.12)); }
    50%  { background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)), linear-gradient(315deg, rgba(var(--secondary-rgb),0.7), rgba(255,255,255,0.15) 35%, rgba(var(--primary-rgb),0.6) 65%, rgba(255,255,255,0.1)); }
    75%  { background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)), linear-gradient(45deg, rgba(var(--secondary-rgb),0.6), rgba(255,255,255,0.18) 35%, rgba(var(--primary-rgb),0.7) 65%, rgba(255,255,255,0.12)); }
    100% { background-image: linear-gradient(var(--bg-tertiary), var(--bg-tertiary)), linear-gradient(135deg, rgba(var(--primary-rgb),0.7), rgba(255,255,255,0.15) 35%, rgba(var(--secondary-rgb),0.6) 65%, rgba(255,255,255,0.1)); }
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
/* Studio light reflection on top — wider & brighter */
.mockup-phone::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.6) 70%, transparent);
    z-index: 30;
    pointer-events: none;
    filter: blur(0.5px);
}
/* Side edge highlights for 3D thickness — both sides */
.mockup-phone::after {
    content: '';
    position: absolute;
    top: 3%;
    bottom: 3%;
    right: -1px;
    width: 2px;
    background: linear-gradient(180deg, transparent 5%, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.06) 80%, transparent 95%);
    z-index: 30;
    pointer-events: none;
    box-shadow: -280px 0 0 0 rgba(255,255,255,0.03);
}
@keyframes liquid-shift {
    0%   { transform: translate(0, 0) rotate(0deg); }
    33%  { transform: translate(5%, -3%) rotate(1deg); }
    66%  { transform: translate(-3%, 5%) rotate(-1deg); }
    100% { transform: translate(2%, 2%) rotate(0.5deg); }
}
.mockup-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    border-radius: 0 0 18px 18px;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.mockup-notch::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.08);
}
.mockup-screen {
    padding: 2.5rem 1rem 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.mockup-header {
    text-align: center;
    margin-bottom: 0.25rem;
}
.mockup-header h3 {
    font-size: 0.85rem;
    font-weight: 700;
}
.mockup-header p {
    font-size: 0.6rem;
    color: var(--text-muted);
}
.mockup-card {
    /* Outer glass layer */
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow:
        0 2px 8px rgba(0,0,0,0.12),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -0.5px 0 rgba(0,0,0,0.1);
}
/* Inner glass layer (double glass) */
.mockup-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 11px;
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, transparent 60%, rgba(var(--primary-rgb),0.03) 100%);
    pointer-events: none;
    z-index: 0;
}
.mockup-card > * { position: relative; z-index: 1; }
.mockup-card:hover {
    border-color: rgba(var(--primary-rgb),0.35);
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.08) 0%, rgba(var(--secondary-rgb),0.04) 100%);
    transform: scale(1.03) translateY(-1px);
    box-shadow:
        0 6px 20px rgba(var(--primary-rgb),0.15),
        0 2px 8px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.12);
}
.mockup-card:active {
    transform: scale(0.97);
    transition: transform 0.1s ease;
}
.mockup-card.tapped {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.12) 0%, rgba(var(--secondary-rgb),0.06) 100%);
}
.mockup-card .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--primary-rgb),0.25);
    transform: scale(0);
    animation: mockup-ripple 0.5s ease-out forwards;
    pointer-events: none;
}
@keyframes mockup-ripple {
    to { transform: scale(3); opacity: 0; }
}
.mockup-card-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb),0.25);
}
.mockup-card-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}
.mockup-card:hover .mockup-card-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.4);
}
.mockup-card-icon i { width: 14px; height: 14px; color: #fff; }
.mockup-card-text h4 { font-size: 0.7rem; font-weight: 600; transition: color 0.2s; }
.mockup-card:hover .mockup-card-text h4 { color: var(--primary); }
.mockup-card-text p { font-size: 0.65rem; color: var(--text-muted); }
.mockup-nav {
    margin-top: auto;
    display: flex;
    justify-content: space-around;
    padding: 0.625rem 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
}
.mockup-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb),0.15), transparent);
}
.mockup-nav-item {
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mockup-nav-item:hover {
    background: rgba(var(--primary-rgb),0.08);
}
.mockup-nav-item:active {
    transform: scale(0.85);
}
.mockup-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary);
}
.mockup-nav i { width: 20px; height: 20px; color: var(--text-muted); transition: color 0.2s; }
.mockup-nav-item.active i { color: var(--primary); }
.mockup-nav-item:hover i { color: var(--secondary); }

/* Pulse animation on mockup cards */
.mockup-card-pulse {
    animation: card-pulse 2s ease-in-out infinite;
}
@keyframes card-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--primary-rgb),0); }
    50% { box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.12); }
}

/* Mockup views / screens */
.mockup-view {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.mockup-view::-webkit-scrollbar { display: none; }
.mockup-view.active {
    display: flex;
    animation: mockup-fade-in 0.35s ease;
}
@keyframes mockup-fade-in {
    from { opacity: 0; transform: translateX(12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Gallery grid */
.mockup-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}
.mockup-gallery-item {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.1);
}
.mockup-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(160deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.mockup-gallery-item i { width: 18px; height: 18px; color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
.mockup-gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.3), inset 0 1px 0 rgba(255,255,255,0.15);
    border-color: rgba(var(--primary-rgb),0.3);
}
.mockup-gallery-item:active { transform: scale(0.95); }

/* Chat unread badge */
.mockup-badge-unread {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--tertiary);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-left: 0.3rem;
    vertical-align: middle;
}

/* Stats screen */
.mockup-stats-row {
    display: flex;
    gap: 0.5rem;
}
.mockup-stat-box {
    flex: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 0.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.mockup-stat-box::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 11px;
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.mockup-stat-box:hover {
    border-color: rgba(var(--primary-rgb),0.3);
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.12), inset 0 1px 0 rgba(255,255,255,0.12);
}
.mockup-stat-box:active { transform: scale(0.97); }
.mockup-stat-num { font-size: 1rem; font-weight: 800; }
.mockup-stat-lbl { font-size: 0.5rem; color: var(--text-muted); margin-top: 0.05rem; }
.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 50px;
    padding: 0.5rem 0.25rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.mockup-chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: var(--gradient);
    min-height: 8px;
    transition: height 0.5s ease;
    cursor: pointer;
    opacity: 0.7;
}
.mockup-chart-bar:hover { opacity: 1; }

/* Mockup detail overlay */
.mockup-detail {
    display: none;
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(170deg, rgba(26,26,26,0.92) 0%, rgba(10,10,10,0.96) 100%);
    backdrop-filter: blur(30px) saturate(1.5);
    -webkit-backdrop-filter: blur(30px) saturate(1.5);
    z-index: 10;
    padding: 1rem 1.25rem;
    flex-direction: column;
    gap: 0.6rem;
    animation: mockup-detail-in 0.3s ease;
    overflow-y: auto;
}
.mockup-detail.active { display: flex; }
@keyframes mockup-detail-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mockup-detail-back {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0.25rem;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0;
    transition: opacity 0.2s;
}
.mockup-detail-back:hover { opacity: 0.7; }
.mockup-detail-back i { width: 14px; height: 14px; }
.mockup-detail-title {
    font-size: 0.9rem;
    font-weight: 700;
}
.mockup-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.45rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.7rem;
    border-radius: 6px;
    transition: background 0.2s;
}
.mockup-detail-row:hover {
    background: rgba(255,255,255,0.03);
}
.mockup-detail-row span:first-child { color: var(--text-muted); }
.mockup-detail-row span:last-child { font-weight: 600; }
.mockup-detail-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 600;
}
.mockup-detail-tag.green { background: rgba(34,197,94,0.12); color: #22c55e; }
.mockup-detail-tag.purple { background: rgba(var(--primary-rgb),0.12); color: var(--primary); }
.mockup-detail-tag.pink { background: rgba(var(--secondary-rgb),0.12); color: var(--tertiary); }

/* Chat bubble styles */
.mockup-bubble {
    max-width: 85%;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    font-size: 0.65rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
}
.mockup-bubble.incoming {
    background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    align-self: flex-start;
    border-bottom-left-radius: 3px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}
.mockup-bubble.outgoing {
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.15), rgba(var(--secondary-rgb),0.1));
    border: 1px solid rgba(var(--primary-rgb),0.2);
    align-self: flex-end;
    border-bottom-right-radius: 3px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 4px rgba(var(--primary-rgb),0.1), inset 0 1px 0 rgba(255,255,255,0.08);
}
.mockup-bubble-time {
    font-size: 0.55rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.mockup-chat-input {
    margin-top: auto;
    display: flex;
    gap: 0.4rem;
    align-items: center;
}
.mockup-chat-input-field {
    flex: 1;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    font-size: 0.65rem;
    color: var(--text-muted);
}
.mockup-chat-send {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--gradient);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
    flex-shrink: 0;
}
.mockup-chat-send:hover { transform: scale(1.1); }
.mockup-chat-send:active { transform: scale(0.9); }
.mockup-chat-send i { width: 14px; height: 14px; color: #fff; }

/* Upload animation */
.mockup-upload-progress {
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.4rem;
}
.mockup-upload-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 1.5s ease;
}

/* AI prediction detail */
.mockup-predict-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    transition: background 0.2s;
}
.mockup-predict-item:hover {
    background: rgba(255,255,255,0.03);
}
.mockup-predict-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.mockup-predict-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 100%);
    pointer-events: none;
}
.mockup-predict-icon i { width: 12px; height: 12px; color: #fff; }
.mockup-predict-text { font-size: 0.65rem; color: var(--text-secondary); }
.mockup-predict-text strong { color: var(--text-primary); font-weight: 700; }
.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb),0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ========== PROBLEM SECTION ========== */
.problem-section { padding: 6rem 0; background: var(--bg-secondary); }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.problem-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ef4444, #f97316);
    opacity: 0;
    transition: opacity 0.3s;
}
.problem-card:hover { border-color: rgba(239,68,68,0.2); transform: translateY(-4px); }
.problem-card:hover::before { opacity: 1; }
.problem-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(239,68,68,0.08);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; color: #ef4444;
}
.problem-icon i { width: 24px; height: 24px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.problem-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.problem-stat {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 0.25rem;
}

/* ========== SOLUTION SECTION ========== */
.solution-section { padding: 6rem 0; }
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}
.solution-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.solution-card:hover::before { opacity: 1; }
.solution-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.25rem; color: #fff;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.25);
}
.solution-icon::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.25), transparent);
    border-radius: 16px 16px 0 0;
}
.solution-icon i { width: 26px; height: 26px; position: relative; z-index: 1; }
.solution-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.solution-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.solution-arrow {
    font-size: 2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

/* ========== BENEFITS SECTION ========== */
.benefits-section { padding: 6rem 0; background: var(--bg-secondary); }
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s;
}
.benefit-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.benefit-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: rgba(var(--primary-rgb),0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--primary);
}
.benefit-icon i { width: 24px; height: 24px; }
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.benefit-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ========== IMPACT DATA SECTION ========== */
.impact-section { padding: 6rem 0; position: relative; overflow: hidden; }
.impact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb),0.04) 0%, transparent 70%);
    pointer-events: none;
}
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.impact-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.impact-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 19px;
    background: linear-gradient(160deg, rgba(255,255,255,0.04), transparent 60%);
    pointer-events: none;
}
.impact-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.impact-number {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.impact-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.impact-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Light overrides for new sections */
[data-land-theme="light"] .problem-card, [data-land-theme="light"] .solution-card,
[data-land-theme="light"] .benefit-card {
    background: #fff;
}
[data-land-theme="light"] .impact-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
}

@media (max-width: 1024px) {
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .problem-grid, .solution-grid, .benefits-grid, .impact-grid { grid-template-columns: 1fr; }
}

/* ========== FEATURES ========== */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}
.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.features-header .section-subtitle {
    margin: 0 auto;
}
.features-grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.features-grid::-webkit-scrollbar { display: none; }
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
    scroll-snap-align: start;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}
.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(var(--primary-rgb),0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
}
.feature-icon i { width: 24px; height: 24px; }
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.feature-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.feature-card .feature-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: gap 0.2s;
}
.feature-card:hover .feature-more { gap: 0.5rem; }
.feature-card .feature-more i { width: 14px; height: 14px; }

/* Carousel controls */
.features-carousel-wrap { position: relative; }
.features-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25rem;
}
.features-arrows {
    display: flex;
    gap: 0.5rem;
}
.features-arrow {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(var(--bg-card), var(--bg-card)),
                      linear-gradient(135deg, rgba(255,255,255,0.15), rgba(var(--primary-rgb),0.2) 50%, rgba(var(--secondary-rgb),0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.features-arrow:hover {
    background-image: linear-gradient(rgba(var(--primary-rgb),0.08), rgba(var(--secondary-rgb),0.04)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.4), rgba(255,255,255,0.15) 50%, rgba(var(--secondary-rgb),0.35));
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb),0.12), inset 0 1px 0 rgba(255,255,255,0.12);
}
.features-arrow i { width: 20px; height: 20px; }

/* Progress bar */
.features-progress {
    flex: 1;
    max-width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 1rem;
}
.features-progress-fill {
    height: 100%;
    width: 25%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Counter */
.features-counter {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    min-width: 50px;
    text-align: right;
}

@media (max-width: 640px) {
    .feature-card { min-width: 240px; max-width: 240px; }
    .feature-modal-inner { padding: 1.25rem; }
    .feature-modal-overlay { padding: 0.75rem; }
}

/* ========== FEATURE MODAL (Glass + Liquid) ========== */
.feature-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.feature-modal-overlay.active { display: flex; }
.feature-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fm-backdrop-in 0.3s ease;
}
@keyframes fm-backdrop-in { from { opacity: 0; } to { opacity: 1; } }

.feature-modal {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 85vh;
    overflow: clip;
    border-radius: 24px;
    /* Outer glass layer */
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 50%, rgba(var(--primary-rgb),0.04) 100%);
    border: 1.5px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(40px) saturate(1.5);
    -webkit-backdrop-filter: blur(40px) saturate(1.5);
    box-shadow:
        0 24px 80px rgba(0,0,0,0.4),
        0 0 60px rgba(var(--primary-rgb),0.08),
        inset 0 1px 0 rgba(255,255,255,0.1),
        inset 0 -1px 0 rgba(0,0,0,0.15);
    animation: fm-slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-modal-inner {
    overflow-y: auto;
    max-height: 85vh;
    padding: 2rem;
    position: relative;
    z-index: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.feature-modal-inner::-webkit-scrollbar { display: none; }
/* Inner glass layer (double glass) */
.feature-modal::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    background: linear-gradient(165deg, rgba(255,255,255,0.06) 0%, transparent 40%, rgba(var(--primary-rgb),0.03) 100%);
    pointer-events: none;
    z-index: 0;
}
/* Liquid glass animation layer */
.feature-modal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 25% 25%, rgba(var(--primary-rgb),0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 75%, rgba(var(--secondary-rgb),0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: liquid-shift 8s ease-in-out infinite alternate;
}
.feature-modal > .feature-modal-inner { position: relative; z-index: 1; }
@keyframes fm-slide-in {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.fm-close {
    position: sticky;
    top: 0;
    float: right;
    margin-bottom: -36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
    z-index: 2;
}
.fm-close:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb),0.08);
}
.fm-close i { width: 18px; height: 18px; }

.fm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb),0.3);
}
.fm-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}
.fm-icon i { width: 28px; height: 28px; color: #fff; }
.fm-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.fm-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Glass detail cards inside modal */
.fm-detail-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}
.fm-detail-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 13px;
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 60%, rgba(var(--primary-rgb),0.02) 100%);
    pointer-events: none;
}
.fm-detail-card:hover {
    border-color: rgba(var(--primary-rgb),0.2);
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.1), inset 0 1px 0 rgba(255,255,255,0.08);
}
.fm-detail-card > * { position: relative; z-index: 1; }
.fm-detail-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.fm-detail-title i { width: 16px; height: 16px; color: var(--primary); }
.fm-detail-text {
    font-size: 0.825rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.fm-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    padding-bottom: 0;
}
.fm-detail-card:last-of-type {
    margin-bottom: 0;
}

/* Light theme modal overrides */
[data-land-theme="light"] .feature-modal {
    background: linear-gradient(145deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.75) 50%, rgba(var(--primary-rgb),0.04) 100%);
    border-color: rgba(0,0,0,0.1);
    box-shadow: 0 24px 80px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
}
[data-land-theme="light"] .feature-modal-backdrop { background: rgba(0,0,0,0.3); }
[data-land-theme="light"] .fm-close {
    background: rgba(255,255,255,0.7);
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .fm-detail-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.5) 100%);
    border-color: rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* ========== COMPARISON TABLE ========== */
.comparison-section { padding: 6rem 0; }
.comparison-header { text-align: center; margin-bottom: 3rem; }
.comparison-header .section-subtitle { margin: 0 auto; }
.comparison-table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    position: relative;
}
.comparison-table-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, transparent, var(--bg-card));
    pointer-events: none;
    border-radius: 0 16px 16px 0;
    opacity: 1;
    transition: opacity 0.3s;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 520px;
}
.comparison-table thead th {
    padding: 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-card);
}
.comparison-table thead th:first-child { text-align: left; width: 220px; }
.comparison-table thead th:first-child,
.comparison-table tbody td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--bg-card);
}
.comparison-table thead th.ct-ink {
    background: linear-gradient(180deg, rgba(var(--primary-rgb),0.08), transparent);
    color: var(--primary);
}
.comparison-table tbody td {
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}
.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}
.comparison-table tbody td.ct-ink {
    background: rgba(var(--primary-rgb),0.03);
}
.comparison-table tbody tr:hover { background: rgba(var(--primary-rgb),0.02); }
.ct-yes { color: #22c55e; font-weight: 700; }
.ct-no { color: var(--text-muted); }
.ct-partial { color: #f59e0b; }
.ct-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-weight: 700;
}
.ct-logo i { width: 18px; height: 18px; }
.ct-logo.ct-ink-logo { color: var(--primary); }

/* ========== TRUST BADGES ========== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    border: 1px solid var(--border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}
.trust-badge i { width: 16px; height: 16px; color: #22c55e; }
[data-land-theme="light"] .trust-badge { background: rgba(255,255,255,0.8); }

/* Launch urgency banner */
.launch-banner {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.08), rgba(var(--secondary-rgb),0.05));
    border: 1px solid rgba(var(--primary-rgb),0.15);
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.launch-banner strong { color: var(--primary); }
.launch-countdown {
    display: inline-flex;
    gap: 0.5rem;
    margin-left: 0.5rem;
}
.launch-countdown-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(var(--primary-rgb),0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary);
    min-width: 36px;
}
.launch-countdown-label {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .launch-banner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
    .launch-countdown { margin-left: 0; }
}

/* ========== STICKY CTA MOBILE ========== */
.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 30%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.sticky-cta-mobile .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    .sticky-cta-mobile { display: block; }
    /* Add padding to body so sticky doesn't cover content */
    body { padding-bottom: 70px; }
    /* Move FAB above sticky */
    .contact-fab { bottom: 5.5rem; }
}
[data-land-theme="light"] .sticky-cta-mobile {
    background: linear-gradient(180deg, transparent 0%, var(--bg-primary) 30%);
}

/* ========== PRICING ========== */
.pricing {
    padding: 6rem 0;
}
.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.pricing-header .section-subtitle { margin: 0 auto; }

.pricing-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.toggle-group {
    display: flex;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
}
.toggle-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.toggle-btn.active {
    background: var(--gradient);
    color: #fff;
}
.save-badge {
    background: rgba(var(--primary-rgb),0.1);
    color: var(--primary);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    margin-left: 0.35rem;
    font-weight: 700;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(var(--primary-rgb),0.12);
}
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    padding: 0.3rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}
.pricing-plan-name {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}
.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
}
.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.pricing-billed {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.pricing-features li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-features li.disabled {
    color: var(--text-muted);
}
.pricing-features li.disabled i {
    color: var(--text-muted);
}
.pricing-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}
/* Glass effect for pricing CTAs */
.pricing-card .btn-ghost.pricing-cta {
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 50%, rgba(var(--primary-rgb),0.04) 100%);
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
                      linear-gradient(135deg, rgba(255,255,255,0.2), rgba(var(--primary-rgb),0.15) 50%, rgba(var(--secondary-rgb),0.12));
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    box-shadow:
        0 2px 6px rgba(0,0,0,0.15),
        0 8px 24px rgba(0,0,0,0.12),
        0 0 20px rgba(var(--primary-rgb),0.04),
        inset 0 1px 0 rgba(255,255,255,0.18),
        inset 0 -1px 0 rgba(0,0,0,0.12),
        inset 1px 0 0 rgba(255,255,255,0.06),
        inset -1px 0 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}
.pricing-card .btn-ghost.pricing-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), transparent);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}
.pricing-card .btn-ghost.pricing-cta::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    pointer-events: none;
}
.pricing-card .btn-ghost.pricing-cta:hover {
    background-image: linear-gradient(145deg, rgba(var(--primary-rgb),0.1), rgba(var(--secondary-rgb),0.05)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.4), rgba(255,255,255,0.15) 50%, rgba(var(--secondary-rgb),0.35));
    box-shadow:
        0 4px 12px rgba(var(--primary-rgb),0.15),
        0 12px 32px rgba(0,0,0,0.15),
        0 0 30px rgba(var(--primary-rgb),0.08),
        inset 0 1px 0 rgba(255,255,255,0.22),
        inset 0 -1px 0 rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.pricing-card .btn-primary.pricing-cta {
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: var(--gradient),
                      linear-gradient(135deg, rgba(255,255,255,0.4), rgba(var(--primary-rgb),0.6) 50%, rgba(var(--secondary-rgb),0.5));
    box-shadow:
        0 2px 6px rgba(var(--primary-rgb),0.3),
        0 8px 24px rgba(var(--primary-rgb),0.25),
        0 16px 40px rgba(0,0,0,0.15),
        0 0 30px rgba(var(--primary-rgb),0.08),
        inset 0 2px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.25),
        inset 1px 0 0 rgba(255,255,255,0.1),
        inset -1px 0 0 rgba(255,255,255,0.1);
}
.pricing-card .btn-primary.pricing-cta::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.05) 60%, transparent 100%);
}
.pricing-card .btn-primary.pricing-cta::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    pointer-events: none;
    filter: blur(0.5px);
}
.pricing-card .btn-primary.pricing-cta:hover {
    box-shadow:
        0 4px 12px rgba(var(--primary-rgb),0.4),
        0 12px 32px rgba(var(--primary-rgb),0.3),
        0 20px 50px rgba(0,0,0,0.2),
        0 0 40px rgba(var(--primary-rgb),0.12),
        inset 0 2px 0 rgba(255,255,255,0.35);
    transform: translateY(-3px);
}
[data-land-theme="light"] .pricing-card .btn-ghost.pricing-cta {
    background-image: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.3), rgba(0,0,0,0.06) 50%, rgba(var(--secondary-rgb),0.25));
    box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.98);
}
[data-land-theme="light"] .pricing-card .btn-ghost.pricing-cta::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
}
[data-land-theme="light"] .pricing-card .btn-ghost.pricing-cta:hover {
    background-image: linear-gradient(145deg, rgba(var(--primary-rgb),0.06), rgba(255,255,255,0.85)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.4), rgba(0,0,0,0.06) 50%, rgba(var(--secondary-rgb),0.35));
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonials-header .section-subtitle { margin: 0 auto; }

/* ===== AMBASSADOR CARD ===== */
.ambassador {
    margin-bottom: 3rem;
    position: relative;
}
.ambassador-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    /* Double glass */
    background: linear-gradient(145deg, rgba(212,160,23,0.06) 0%, rgba(255,255,255,0.04) 50%, rgba(var(--primary-rgb),0.03) 100%);
    border: 1.5px solid rgba(212,160,23,0.2);
    backdrop-filter: blur(40px) saturate(1.5);
    -webkit-backdrop-filter: blur(40px) saturate(1.5);
    box-shadow:
        0 16px 60px rgba(0,0,0,0.3),
        0 0 60px rgba(212,160,23,0.06),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.15);
}
.ambassador-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    background: linear-gradient(165deg, rgba(212,160,23,0.05) 0%, transparent 40%, rgba(var(--primary-rgb),0.02) 100%);
    pointer-events: none;
    z-index: 0;
}
.ambassador-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(212,160,23,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(var(--primary-rgb),0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: liquid-shift 8s ease-in-out infinite alternate;
}
.ambassador-card > * { position: relative; z-index: 1; }

.ambassador-photo-wrapper {
    position: relative;
    width: 220px;
    flex-shrink: 0;
}
.ambassador-photo {
    width: 220px;
    height: 280px;
    max-width: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(212,160,23,0.3);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 30px rgba(212,160,23,0.08);
}
.ambassador-logo {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 72px;
    height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.ambassador-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05));
    border: 1px solid rgba(212,160,23,0.3);
    color: #d4a017;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.ambassador-badge i { width: 14px; height: 14px; }
.ambassador-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}
.ambassador-name span {
    background: linear-gradient(135deg, #d4a017, #e6b422);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ambassador-role {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.ambassador-quote {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.25rem;
    border-left: 3px solid rgba(212,160,23,0.3);
}
.ambassador-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.ambassador-stat {
    display: flex;
    flex-direction: column;
}
.ambassador-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a017, #e6b422);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ambassador-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

/* Light theme ambassador */
[data-land-theme="light"] .ambassador-card {
    background: linear-gradient(145deg, rgba(212,160,23,0.06) 0%, rgba(255,255,255,0.85) 50%, rgba(var(--primary-rgb),0.02) 100%);
    box-shadow: 0 16px 60px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

@media (max-width: 900px) {
    .ambassador-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
    }
    .ambassador-photo-wrapper {
        width: 180px;
        margin: 0 auto;
    }
    .ambassador-photo { width: 180px; height: 230px; }
    .ambassador-quote { border-left: none; padding-left: 0; border-top: 3px solid rgba(212,160,23,0.3); padding-top: 1rem; }
    .ambassador-stats { justify-content: center; }
}

/* ===== AMBASSADOR VIDEO TRIGGER ===== */
.amb-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(135deg, rgba(212,160,23,0.1), rgba(212,160,23,0.03)),
                      linear-gradient(135deg, rgba(212,160,23,0.5), rgba(255,255,255,0.12) 50%, rgba(212,160,23,0.4));
    color: #d4a017;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 8px rgba(212,160,23,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.amb-video-trigger::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
    border-radius: 8px 8px 0 0;
    pointer-events: none;
}
.amb-video-trigger:hover {
    background-image: linear-gradient(135deg, rgba(212,160,23,0.15), rgba(212,160,23,0.05)),
                      linear-gradient(135deg, rgba(212,160,23,0.7), rgba(255,255,255,0.15) 50%, rgba(212,160,23,0.6));
    box-shadow: 0 4px 16px rgba(212,160,23,0.2), 0 0 20px rgba(212,160,23,0.06), inset 0 1px 0 rgba(255,255,255,0.12);
    transform: translateY(-2px);
}
.amb-video-trigger i { width: 16px; height: 16px; }

/* ===== AMBASSADOR VIDEO MODAL ===== */
.amb-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.amb-modal-overlay.active { display: flex; }
.amb-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fm-backdrop-in 0.3s ease;
}
.amb-modal {
    position: relative;
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
    overflow: clip;
    border: 2px solid transparent;
    background-image: linear-gradient(#111, #111),
                      linear-gradient(135deg, rgba(212,160,23,0.6), rgba(255,255,255,0.12) 35%, rgba(212,160,23,0.5) 65%, rgba(255,255,255,0.08));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 4px 12px rgba(0,0,0,0.4),
        0 20px 50px rgba(0,0,0,0.3),
        0 0 40px rgba(212,160,23,0.06),
        inset 0 1px 0 rgba(255,255,255,0.1);
    animation: fm-slide-in 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.amb-modal::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212,160,23,0.5), transparent);
    z-index: 10;
    pointer-events: none;
}
.amb-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    z-index: 10;
    transition: all 0.2s;
}
.amb-modal-close:hover { background: rgba(212,160,23,0.2); border-color: rgba(212,160,23,0.4); }
.amb-modal-close i { width: 18px; height: 18px; }
.amb-modal-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.amb-modal-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center top;
    border: 2px solid rgba(212,160,23,0.3);
}
.amb-modal-name {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4a017, #e6b422);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.amb-modal-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.amb-modal-video-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}
.amb-modal-video-wrap video {
    width: 100%;
    height: 100%;
    display: block;
}

[data-land-theme="light"] .amb-modal {
    background-image: linear-gradient(#f5f5f5, #f5f5f5),
                      linear-gradient(135deg, rgba(212,160,23,0.4), rgba(0,0,0,0.06) 35%, rgba(212,160,23,0.35) 65%, rgba(0,0,0,0.04));
}
[data-land-theme="light"] .amb-video-trigger {
    background-image: linear-gradient(135deg, rgba(212,160,23,0.08), rgba(212,160,23,0.02)),
                      linear-gradient(135deg, rgba(212,160,23,0.35), rgba(0,0,0,0.06) 50%, rgba(212,160,23,0.3));
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}
.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}
.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #f59e0b;
}
.testimonial-stars i { width: 16px; height: 16px; }
.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 0.9rem;
}
.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== APP PREVIEW — SECUR APP STYLE ========== */
.app-section { padding: 6rem 0; }
.web-section { padding: 6rem 0; background: var(--bg-secondary); }
.app-section-header { text-align: center; margin-bottom: 3rem; }
.app-section-header .section-subtitle { margin: 0 auto; }

/* App Preview toggle (mobile/web) */
.app-preview-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 2rem;
    padding: 4px;
    background: rgba(var(--primary-rgb),0.06);
    border-radius: 12px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.app-preview-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}
.app-preview-toggle-btn:hover { color: var(--text-primary); }
.app-preview-toggle-btn.active {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 2px 12px rgba(var(--primary-rgb),0.3);
}
.app-preview-panel { display: none; }
.app-preview-panel.active { display: block; }

/* Phone chrome */
.mockup-layout { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.phone-chrome {
    width: 300px;
    border-radius: 44px;
    border: 2px solid transparent;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    background-image: linear-gradient(#0a0a0a, #0a0a0a),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.7), rgba(255,255,255,0.15) 35%, rgba(var(--secondary-rgb),0.6) 65%, rgba(255,255,255,0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 2px 6px rgba(0,0,0,0.3),
        0 12px 30px rgba(0,0,0,0.35),
        0 30px 60px rgba(0,0,0,0.25),
        0 50px 100px rgba(0,0,0,0.15),
        0 20px 60px rgba(var(--primary-rgb),0.08),
        0 40px 90px rgba(var(--secondary-rgb),0.05),
        inset 0 1px 0 rgba(255,255,255,0.2),
        inset 0 -1px 0 rgba(0,0,0,0.4),
        inset 1px 0 0 rgba(255,255,255,0.05),
        inset -1px 0 0 rgba(255,255,255,0.05);
    animation: phone-border-rotate 5s linear infinite, phone-float 4s ease-in-out infinite;
    position: relative;
}
.phone-chrome::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.6) 70%, transparent);
    z-index: 30;
    pointer-events: none;
    filter: blur(0.5px);
}
.phone-header { height: 28px; background: #050505; display: flex; align-items: center; justify-content: center; }
.phone-pill { width: 80px; height: 8px; background: #1a1a1a; border-radius: 4px; }
.phone-content { padding: 14px; min-height: 580px; overflow-y: auto; max-height: 580px; font-size: 11px; color: var(--text-primary); scrollbar-width: none; -ms-overflow-style: none; }
.phone-content::-webkit-scrollbar { display: none; }

/* Mock tabs */
.mock-tabs { display: flex; background: rgba(255,255,255,0.03); border-radius: 10px; padding: 3px; gap: 2px; margin-bottom: 14px; }
.mock-tab { flex: 1; text-align: center; padding: 6px 4px; border-radius: 8px; font-size: 9px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-family: inherit; border: none; background: transparent; }
.mock-tab.active { background: var(--primary); color: #fff; }

/* Screen toggle */
.mk-screen { display: none; }
.mk-screen.active { display: block; animation: mk-fade 0.3s ease; }
@keyframes mk-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Mock cards */
.mock-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 10px; margin-bottom: 8px; cursor: pointer; transition: all 0.2s; }
.mock-card:hover { border-color: rgba(var(--primary-rgb),0.2); }
.mock-card-title { font-size: 10px; font-weight: 700; margin-bottom: 4px; }
.mock-card-text { font-size: 9px; color: var(--text-muted); line-height: 1.4; }
.mock-card-detail { display: none; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 9px; color: var(--text-muted); line-height: 1.5; }

/* Mock KPIs */
.mock-kpi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 12px; }
.mock-kpi { text-align: center; padding: 8px 4px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; cursor: pointer; transition: all 0.2s; }
.mock-kpi:hover { border-color: rgba(var(--primary-rgb),0.3); }
.mock-kpi-val { font-size: 16px; font-weight: 800; }
.mock-kpi-lbl { font-size: 7px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 2px; }

/* Mock buttons */
.mock-btn { display: block; width: 100%; padding: 8px; background: rgba(var(--primary-rgb),0.12); border: 1px solid rgba(var(--primary-rgb),0.3); border-radius: 8px; color: var(--secondary); font-size: 10px; font-weight: 600; text-align: center; cursor: pointer; transition: all 0.2s; font-family: inherit; margin-top: 8px; }
.mock-btn:hover { background: rgba(var(--primary-rgb),0.2); }

/* Badges */
.ink-badge { display: inline-block; padding: 2px 6px; border-radius: 4px; font-size: 7px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.ink-green { background: rgba(34,197,94,0.15); color: #22c55e; }
.ink-amber { background: rgba(245,158,11,0.15); color: #f59e0b; }
.ink-red { background: rgba(239,68,68,0.15); color: #ef4444; }
.ink-purple { background: rgba(var(--primary-rgb),0.15); color: var(--secondary); }
.ink-blue { background: rgba(59,130,246,0.15); color: #3b82f6; }

/* Side info panel */
.mockup-tab-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.mk-info-btn { background: var(--bg-glass); border: 1px solid var(--border); border-radius: 10px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-family: inherit; width: 100%; text-align: left; }
.mk-info-btn.active { background: rgba(var(--primary-rgb),0.12); border-color: rgba(var(--primary-rgb),0.3); color: var(--primary); }
.mk-info { display: none; }
.mk-info.active { display: block; }
.info-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.info-panel-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.info-panel-text { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Browser frame */
.browser-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; margin-top: 48px; }
.browser-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    background-image: linear-gradient(#0a0a0a, #0a0a0a),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.7), rgba(255,255,255,0.15) 35%, rgba(var(--secondary-rgb),0.6) 65%, rgba(255,255,255,0.1));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 2px 6px rgba(0,0,0,0.3),
        0 12px 30px rgba(0,0,0,0.3),
        0 30px 60px rgba(0,0,0,0.2),
        0 50px 100px rgba(0,0,0,0.12),
        0 15px 50px rgba(var(--primary-rgb),0.06),
        0 30px 80px rgba(var(--secondary-rgb),0.04),
        inset 0 1px 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(0,0,0,0.3);
    animation: phone-border-rotate 5s linear infinite;
}
.browser-chrome { background: #111; padding: 10px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.browser-dots { display: flex; gap: 6px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.b-dot-r { background: #ff5f57; } .b-dot-y { background: #ffbd2e; } .b-dot-g { background: #28c840; }
.browser-url { flex: 1; background: rgba(255,255,255,0.05); border-radius: 8px; padding: 5px 12px; font-size: 11px; color: var(--text-muted); font-family: monospace; }
.browser-body { display: flex; height: 520px; overflow: hidden; }
.mock-sidebar { width: 180px; background: #0d0d0d; border-right: 1px solid rgba(255,255,255,0.06); padding: 16px 12px; flex-shrink: 0; overflow-y: auto; }
.mock-sidebar-logo { font-size: 13px; font-weight: 800; margin-bottom: 16px; }
.mock-sidebar-section { font-size: 8px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; margin-top: 12px; }
.mock-nav-item { font-size: 11px; color: var(--text-muted); padding: 6px 8px; border-radius: 6px; margin-bottom: 2px; cursor: pointer; transition: all 0.2s; }
.mock-nav-item:hover { background: rgba(255,255,255,0.04); }
.mock-nav-item.active { background: rgba(var(--primary-rgb),0.12); color: var(--secondary); }
.browser-content { flex: 1; overflow-y: auto; padding: 20px; font-size: 11px; color: var(--text-primary); scrollbar-width: none; }
.browser-content::-webkit-scrollbar { display: none; }

/* Web tabs & kpis */
.web-tabs { display: flex; gap: 4px; margin-bottom: 16px; }
.web-tab { font-size: 11px; font-weight: 600; padding: 7px 14px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.04); color: var(--text-muted); cursor: pointer; font-family: inherit; transition: all 0.2s; }
.web-tab.active { background: rgba(var(--primary-rgb),0.15); border-color: rgba(var(--primary-rgb),0.3); color: var(--secondary); }
.dash-kpi-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 16px; }
.dash-kpi { text-align: center; padding: 10px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; }
.dash-kpi-val { font-size: 18px; font-weight: 800; }
.dash-kpi-lbl { font-size: 8px; color: var(--text-muted); margin-top: 2px; text-transform: uppercase; }
.dash-chart { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
.dash-chart-title { font-size: 10px; font-weight: 700; margin-bottom: 10px; color: var(--text-muted); }
.dash-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.dash-bar-label { font-size: 9px; color: var(--text-muted); width: 80px; flex-shrink: 0; }
.dash-bar { flex: 1; height: 14px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.dash-bar-fill { height: 100%; border-radius: 4px; transition: width 0.4s; }
.bar-purple { background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.bar-green { background: linear-gradient(90deg, #059669, #22c55e); }
.bar-amber { background: linear-gradient(90deg, #b45309, #f59e0b); }
.bar-pink { background: linear-gradient(90deg, #db2777, var(--secondary)); }
.dash-table { width: 100%; border-collapse: collapse; font-size: 10px; }
.dash-table th { text-align: left; padding: 6px 8px; font-size: 8px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dash-table td { padding: 6px 8px; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--text-muted); }
.dash-table tr { cursor: pointer; transition: background 0.2s; }
.dash-table tr:hover { background: rgba(var(--primary-rgb),0.04); }
.web-btn { display: inline-block; padding: 7px 14px; background: rgba(var(--primary-rgb),0.12); border: 1px solid rgba(var(--primary-rgb),0.3); border-radius: 8px; color: var(--secondary); font-size: 10px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; margin-right: 6px; margin-top: 8px; }
.web-btn:hover { background: rgba(var(--primary-rgb),0.2); }
.wk-info-btn { background: var(--bg-glass); border: 1px solid var(--border); border-radius: 10px; padding: 8px 16px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; font-family: inherit; width: 100%; text-align: left; margin-bottom: 8px; }
.wk-info-btn.active { background: rgba(var(--primary-rgb),0.12); border-color: rgba(var(--primary-rgb),0.3); color: var(--primary); }
.wk-info { display: none; } .wk-info.active { display: block; }

/* Mobile view toggle panels */
.mobile-view-panel { display: none; }
.mobile-view-panel.active { display: block; animation: mk-fade 0.35s ease; }

@media (max-width: 1024px) {
    .mockup-layout { grid-template-columns: 1fr; justify-items: center; }
    .browser-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .phone-chrome { width: 260px; }
    .phone-content { min-height: 500px; max-height: 500px; }
    .browser-body { height: 400px; }
    .mock-sidebar { width: 120px; }
}

/* ========== 3D BODY MAP ========== */
.body3d-container {
    position: relative;
    background: radial-gradient(ellipse at 50% 40%, rgba(212,160,23,0.04) 0%, rgba(0,0,0,0.3) 70%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 10px;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    overflow: hidden;
}
.body3d-container:active { cursor: grabbing; }
.body3d-wrapper {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}
.body3d-container svg { display: block; margin: 0 auto; }
.body3d-zone {
    cursor: pointer;
    transition: opacity 0.2s, filter 0.2s;
}
.body3d-zone:hover { opacity: 1 !important; filter: brightness(1.4) drop-shadow(0 0 6px currentColor); }
.body3d-zone.zone-gold { fill: #d4a017; }
.body3d-zone.zone-blue { fill: #3b82f6; }
.body3d-zone.zone-free { fill: #2a2a2a; stroke: rgba(255,255,255,0.06); stroke-width: 0.5; }
.body3d-zone.zone-gold, .body3d-zone.zone-blue {
    animation: zone-pulse 2.5s ease-in-out infinite;
}
@keyframes zone-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 0.95; }
}

/* Tooltip */
.body3d-tooltip {
    position: absolute;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(20,20,20,0.95), rgba(10,10,10,0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 9px;
    color: #e8e8e8;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 50;
    max-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.body3d-tooltip.visible { opacity: 1; }
.body3d-tooltip-title { font-weight: 700; font-size: 10px; margin-bottom: 3px; }
.body3d-tooltip-badge { display: inline-block; padding: 1px 5px; border-radius: 3px; font-size: 7px; font-weight: 700; margin-left: 4px; }
.body3d-tooltip-row { display: flex; justify-content: space-between; gap: 8px; font-size: 8px; color: #999; margin-top: 2px; }
.body3d-tooltip-row span:last-child { color: #ccc; font-weight: 600; }

/* Zoom & rotation controls */
.body3d-controls {
    position: absolute;
    top: 6px;
    right: 6px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 10;
}
.body3d-ctrl-btn {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.body3d-ctrl-btn:hover { background: rgba(212,160,23,0.15); color: #d4a017; border-color: rgba(212,160,23,0.3); }
.body3d-rotation-label {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 7px;
    color: rgba(255,255,255,0.2);
    white-space: nowrap;
}

/* Web body map adjustments */
.body3d-web { min-height: 320px; }
.body3d-web svg { max-height: 280px; }

[data-land-theme="light"] .body3d-container { background: radial-gradient(ellipse at 50% 40%, rgba(212,160,23,0.04) 0%, rgba(0,0,0,0.04) 70%); border-color: rgba(0,0,0,0.08); }
[data-land-theme="light"] .body3d-tooltip { background: rgba(255,255,255,0.95); border-color: rgba(212,160,23,0.3); color: #222; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
[data-land-theme="light"] .body3d-tooltip-row { color: #666; }
[data-land-theme="light"] .body3d-tooltip-row span:last-child { color: #333; }
[data-land-theme="light"] .body3d-zone.zone-free { fill: #ddd; stroke: rgba(0,0,0,0.08); }

/* ========== LIGHT THEME — MOCKUPS ========== */
[data-land-theme="light"] .phone-chrome {
    background-image: linear-gradient(#f5f5f5, #f5f5f5),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.3), rgba(0,0,0,0.06) 40%, rgba(var(--secondary-rgb),0.25) 60%, rgba(0,0,0,0.04));
    box-shadow:
        0 2px 8px rgba(0,0,0,0.08),
        0 16px 40px rgba(0,0,0,0.1),
        0 40px 80px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.9),
        inset 0 -1px 0 rgba(0,0,0,0.05);
}
[data-land-theme="light"] .phone-chrome::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
}
[data-land-theme="light"] .phone-header { background: #e8e8e8; }
[data-land-theme="light"] .phone-pill { background: #d0d0d0; }
[data-land-theme="light"] .phone-content { color: #111; }
[data-land-theme="light"] .mock-tabs { background: rgba(0,0,0,0.04); }
[data-land-theme="light"] .mock-tab { color: rgba(0,0,0,0.4); }
[data-land-theme="light"] .mock-tab.active { color: #fff; }
[data-land-theme="light"] .mock-card {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .mock-card:hover { border-color: rgba(var(--primary-rgb),0.25); }
[data-land-theme="light"] .mock-card-text { color: rgba(0,0,0,0.5); }
[data-land-theme="light"] .mock-card-detail { color: rgba(0,0,0,0.5); border-top-color: rgba(0,0,0,0.06); }
[data-land-theme="light"] .mock-kpi {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .mock-kpi-lbl { color: rgba(0,0,0,0.4); }
[data-land-theme="light"] .mock-btn {
    background: rgba(var(--primary-rgb),0.08);
    border-color: rgba(var(--primary-rgb),0.2);
    color: var(--primary);
}
[data-land-theme="light"] .mock-btn:hover { background: rgba(var(--primary-rgb),0.14); }
[data-land-theme="light"] .ink-badge.ink-green { background: rgba(34,197,94,0.1); }
[data-land-theme="light"] .ink-badge.ink-blue { background: rgba(59,130,246,0.1); }
[data-land-theme="light"] .ink-badge.ink-amber { background: rgba(245,158,11,0.1); }
[data-land-theme="light"] .ink-badge.ink-red { background: rgba(239,68,68,0.1); }
[data-land-theme="light"] .ink-badge.ink-purple { background: rgba(var(--primary-rgb),0.1); }
[data-land-theme="light"] .mk-info-btn {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.45);
}
[data-land-theme="light"] .mk-info-btn.active {
    background: rgba(var(--primary-rgb),0.08);
    border-color: rgba(var(--primary-rgb),0.25);
    color: var(--primary);
}
[data-land-theme="light"] .info-panel {
    background: #fff;
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .info-panel-text { color: rgba(0,0,0,0.55); }

/* Light — Browser frame */
[data-land-theme="light"] .browser-frame {
    background-image: linear-gradient(#f5f5f5, #f5f5f5),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.25), rgba(0,0,0,0.05) 40%, rgba(var(--secondary-rgb),0.2) 60%, rgba(0,0,0,0.03));
    box-shadow:
        0 2px 8px rgba(0,0,0,0.06),
        0 16px 40px rgba(0,0,0,0.08),
        0 40px 80px rgba(0,0,0,0.05),
        inset 0 1px 0 rgba(255,255,255,0.9);
}
[data-land-theme="light"] .browser-chrome {
    background: #e8e8e8;
    border-bottom-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .browser-url {
    background: rgba(0,0,0,0.05);
    color: rgba(0,0,0,0.4);
}
[data-land-theme="light"] .browser-content { color: #111; }
[data-land-theme="light"] .mock-sidebar {
    background: #efefef;
    border-right-color: rgba(0,0,0,0.06);
}
[data-land-theme="light"] .mock-sidebar-logo { color: #111; }
[data-land-theme="light"] .mock-sidebar-section { color: rgba(0,0,0,0.4); }
[data-land-theme="light"] .mock-nav-item { color: rgba(0,0,0,0.5); }
[data-land-theme="light"] .mock-nav-item:hover { background: rgba(0,0,0,0.04); }
[data-land-theme="light"] .mock-nav-item.active {
    background: rgba(var(--primary-rgb),0.08);
    color: var(--primary);
}
[data-land-theme="light"] .web-tab {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.4);
}
[data-land-theme="light"] .web-tab.active {
    background: rgba(var(--primary-rgb),0.1);
    border-color: rgba(var(--primary-rgb),0.25);
    color: var(--primary);
}
[data-land-theme="light"] .dash-kpi {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .dash-kpi-lbl { color: rgba(0,0,0,0.4); }
[data-land-theme="light"] .dash-chart {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.06);
}
[data-land-theme="light"] .dash-chart-title { color: rgba(0,0,0,0.45); }
[data-land-theme="light"] .dash-bar { background: rgba(0,0,0,0.06); }
[data-land-theme="light"] .dash-bar-label { color: rgba(0,0,0,0.5); }
[data-land-theme="light"] .dash-table th {
    color: rgba(0,0,0,0.4);
    border-bottom-color: rgba(0,0,0,0.08);
}
[data-land-theme="light"] .dash-table td {
    color: rgba(0,0,0,0.6);
    border-bottom-color: rgba(0,0,0,0.05);
}
[data-land-theme="light"] .dash-table tr:hover { background: rgba(var(--primary-rgb),0.04); }
[data-land-theme="light"] .web-btn {
    background: rgba(var(--primary-rgb),0.08);
    border-color: rgba(var(--primary-rgb),0.2);
    color: var(--primary);
}
[data-land-theme="light"] .web-btn:hover { background: rgba(var(--primary-rgb),0.14); }
[data-land-theme="light"] .wk-info-btn {
    background: rgba(0,0,0,0.03);
    border-color: rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.45);
}
[data-land-theme="light"] .wk-info-btn.active {
    background: rgba(var(--primary-rgb),0.08);
    border-color: rgba(var(--primary-rgb),0.25);
    color: var(--primary);
}

/* ========== FAQ ========== */
.faq {
    padding: 6rem 0;
}
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}
.faq-header .section-subtitle { margin: 0 auto; }
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.active { border-color: var(--border-hover); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text-primary);
    font-family: inherit;
}
.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-answer {
    max-height: 400px;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========== VIDEO PLAYER ========== */
.video-section { padding: 6rem 0; background: var(--bg-secondary); }
.video-section-header { text-align: center; margin-bottom: 3rem; }
.video-section-header .section-subtitle { margin: 0 auto; }

.video-player-outer {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    /* 3D perspective wrapper */
    perspective: 1200px;
}
.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--bg-primary), var(--bg-primary)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.8), rgba(255,255,255,0.2) 30%, rgba(var(--secondary-rgb),0.7) 70%, rgba(255,255,255,0.12));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        /* close shadow */
        0 2px 4px rgba(0,0,0,0.4),
        /* mid shadow */
        0 8px 20px rgba(0,0,0,0.35),
        /* far shadow */
        0 24px 50px rgba(0,0,0,0.25),
        /* deep shadow */
        0 40px 80px rgba(0,0,0,0.15),
        /* color glow */
        0 10px 40px rgba(var(--primary-rgb),0.1),
        0 30px 70px rgba(var(--secondary-rgb),0.06),
        /* bisel 3D */
        inset 0 2px 0 rgba(255,255,255,0.15),
        inset 0 -2px 0 rgba(0,0,0,0.4),
        inset 2px 0 0 rgba(255,255,255,0.06),
        inset -2px 0 0 rgba(255,255,255,0.06);
    animation: phone-border-rotate 5s linear infinite, video-float 5s ease-in-out infinite;
    transform-style: preserve-3d;
    transform: rotateX(2deg);
    transition: transform 0.4s ease;
}
.video-player:hover {
    transform: rotateX(0deg) scale(1.01);
}
@keyframes video-float {
    0%, 100% { transform: rotateX(2deg) translateY(0); }
    50%      { transform: rotateX(2deg) translateY(-6px); }
}
.video-player:hover {
    animation: none;
    transform: rotateX(0deg) scale(1.01);
}

/* Bottom reflection / ground shadow */
.video-player-outer::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(var(--primary-rgb),0.08) 0%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}

/* Top studio light — on outer container to avoid clipping */
.video-player-outer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: calc(50% - 340px);
    right: calc(50% - 340px);
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.5) 25%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.5) 75%, transparent 95%);
    z-index: 20;
    pointer-events: none;
    filter: blur(0.5px);
    border-radius: 20px 20px 0 0;
}

.video-player-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    background: #000;
}
.video-player-wrapper video,
.video-player-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Corner glow accents (Apple Vision Pro style) */
.video-corner-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 16;
    animation: corner-glow-pulse 3s ease-in-out infinite;
}
.video-corner-glow.tl { top: -8px; left: -8px; background: radial-gradient(circle, rgba(var(--primary-rgb),0.2) 0%, transparent 70%); }
.video-corner-glow.tr { top: -8px; right: -8px; background: radial-gradient(circle, rgba(var(--secondary-rgb),0.15) 0%, transparent 70%); animation-delay: 0.75s; }
.video-corner-glow.bl { bottom: -8px; left: -8px; background: radial-gradient(circle, rgba(var(--secondary-rgb),0.15) 0%, transparent 70%); animation-delay: 1.5s; }
.video-corner-glow.br { bottom: -8px; right: -8px; background: radial-gradient(circle, rgba(var(--primary-rgb),0.2) 0%, transparent 70%); animation-delay: 2.25s; }
@keyframes corner-glow-pulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Brand watermark on video */
.video-brand {
    position: absolute;
    top: 14px;
    left: 16px;
    z-index: 14;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.video-brand:hover { opacity: 1; }
.video-brand-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gradient);
}

/* Sound badge (CTA to unmute) */
.video-sound-badge {
    position: absolute;
    bottom: 56px;
    right: 16px;
    z-index: 14;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.2), rgba(var(--secondary-rgb),0.12));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(var(--primary-rgb),0.25);
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    animation: sound-badge-bounce 2s ease-in-out infinite;
}
.video-sound-badge:hover {
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.35), rgba(var(--secondary-rgb),0.2));
    box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.2);
    transform: scale(1.05);
}
.video-sound-badge.hidden { display: none; }
.video-sound-badge i { width: 14px; height: 14px; }
@keyframes sound-badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Poster / play overlay */
.video-poster {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease;
}
.video-poster.hidden { opacity: 0; pointer-events: none; }
.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.2), rgba(var(--secondary-rgb),0.15));
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(var(--primary-rgb),0.2);
    animation: play-pulse 2s ease-in-out infinite;
}
@keyframes play-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 0; }
}
.video-play-btn:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.35), rgba(var(--secondary-rgb),0.25));
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 0 40px rgba(var(--primary-rgb),0.2);
}
.video-play-btn i { width: 32px; height: 32px; color: #fff; margin-left: 4px; }
.video-play-label {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Custom controls bar — always visible */
.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    background: linear-gradient(transparent 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.85) 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 12;
    opacity: 0.7;
    transition: opacity 0.3s;
}
.video-player:hover .video-controls { opacity: 1; }
.vc-btn {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.vc-btn:hover {
    color: var(--primary);
    border-color: rgba(var(--primary-rgb),0.3);
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.15), rgba(var(--secondary-rgb),0.08));
    box-shadow: 0 2px 8px rgba(var(--primary-rgb),0.15), inset 0 1px 0 rgba(255,255,255,0.12);
}
.vc-btn i { width: 20px; height: 20px; }
.vc-progress {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.vc-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient);
    border-radius: 4px;
    transition: width 0.1s linear;
}
.vc-time {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.6);
    font-variant-numeric: tabular-nums;
    min-width: 70px;
    text-align: center;
}

[data-land-theme="light"] .video-player {
    background-image: linear-gradient(var(--bg-secondary), var(--bg-secondary)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.5), rgba(0,0,0,0.06) 30%, rgba(var(--secondary-rgb),0.45) 70%, rgba(0,0,0,0.04));
    box-shadow:
        0 2px 4px rgba(0,0,0,0.1),
        0 8px 20px rgba(0,0,0,0.1),
        0 24px 50px rgba(0,0,0,0.08),
        0 40px 80px rgba(0,0,0,0.04),
        0 10px 40px rgba(var(--primary-rgb),0.05),
        inset 0 2px 0 rgba(255,255,255,0.95),
        inset 0 -2px 0 rgba(0,0,0,0.06),
        inset 2px 0 0 rgba(255,255,255,0.3),
        inset -2px 0 0 rgba(255,255,255,0.3);
}
[data-land-theme="light"] .video-player-outer::before {
    background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.8) 25%, rgba(255,255,255,1) 50%, rgba(255,255,255,0.8) 75%, transparent 95%);
}
[data-land-theme="light"] .video-player-outer::after {
    background: radial-gradient(ellipse, rgba(var(--primary-rgb),0.05) 0%, transparent 70%);
}

@media (max-width: 900px) {
    .vc-btn { padding: 10px; }
    .vc-btn i { width: 22px; height: 22px; }
    .vc-progress { height: 12px; border-radius: 6px; }
    .vc-progress-fill { border-radius: 6px; }
    .video-controls { opacity: 1; }
}
@media (max-width: 640px) {
    .video-play-btn { width: 60px; height: 60px; }
    .video-play-btn i { width: 24px; height: 24px; }
}

/* ========== CONTACT FORM ========== */
.contact-section { padding: 6rem 0; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.contact-info-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.contact-info-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(var(--primary-rgb),0.08);
    border: 1px solid rgba(var(--primary-rgb),0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-detail-icon i { width: 20px; height: 20px; }
.contact-detail-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.contact-detail-value {
    font-size: 0.95rem;
    font-weight: 600;
}
.contact-detail-value a { color: var(--text-primary); transition: color 0.2s; }
.contact-detail-value a:hover { color: var(--primary); }

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
}
.contact-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.cf-group { margin-bottom: 1rem; }
.cf-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}
.cf-input, .cf-select, .cf-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb),0.1);
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--text-muted); }
.cf-select { cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem; }
.cf-textarea { resize: vertical; min-height: 100px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf-submit {
    width: 100%;
    padding: 0.875rem;
    border-radius: 12px;
    border: 2px solid transparent;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image: var(--gradient),
                      linear-gradient(135deg, rgba(255,255,255,0.4), rgba(var(--primary-rgb),0.6) 50%, rgba(var(--secondary-rgb),0.5));
    box-shadow:
        0 2px 6px rgba(var(--primary-rgb),0.3),
        0 8px 24px rgba(var(--primary-rgb),0.2),
        0 0 25px rgba(var(--primary-rgb),0.06),
        inset 0 2px 0 rgba(255,255,255,0.3),
        inset 0 -1px 0 rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.cf-submit::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.28), transparent);
    border-radius: 10px 10px 0 0;
    pointer-events: none;
}
.cf-submit::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    pointer-events: none;
}
.cf-submit:hover {
    box-shadow:
        0 4px 12px rgba(var(--primary-rgb),0.4),
        0 12px 32px rgba(var(--primary-rgb),0.3),
        0 0 35px rgba(var(--primary-rgb),0.1),
        inset 0 2px 0 rgba(255,255,255,0.35);
    transform: translateY(-2px);
}
.cf-submit:active { transform: translateY(0); }
.cf-submit i { width: 18px; height: 18px; }
.cf-success {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}
.cf-success.visible { display: block; animation: mk-fade 0.4s ease; }
.cf-success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #22c55e;
}
.cf-success-icon i { width: 28px; height: 28px; }
.cf-success-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.cf-success-text { font-size: 0.9rem; color: var(--text-secondary); }

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .cf-row { grid-template-columns: 1fr; }
}

/* ========== CTA FINAL ========== */
.cta-final {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(var(--primary-rgb),0.06) 0%, transparent 70%);
    pointer-events: none;
}
.cta-final-content {
    text-align: center;
    position: relative;
    z-index: 1;
}
.cta-final-title {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}
.cta-final-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════
   AMBASSADOR CARD
   ═══════════════════════════════════════════════════════════════════ */
.ambassador-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    background: rgba(var(--primary-rgb),0.04);
    border: 1px solid rgba(var(--primary-rgb),0.12);
    margin-bottom: 3rem;
    overflow: hidden;
}
.ambassador-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
}
.ambassador-top {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.ambassador-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.ambassador-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(var(--primary-rgb),0.1);
    color: var(--primary);
    margin-bottom: 4px;
}
.ambassador-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}
.ambassador-role {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.ambassador-quote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(var(--primary-rgb),0.3);
}
.ambassador-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.ambassador-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ambassador-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
@media (max-width: 640px) {
    .ambassador-card {
        padding: 1.5rem;
    }
    .ambassador-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========== FOOTER ========== */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}
.footer-social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.footer-social-link i { width: 18px; height: 18px; }
.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ========== CONTACT FAB ========== */
.contact-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.75rem;
}
.fab-main {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    border: 2px solid transparent;
    background-image: linear-gradient(var(--primary), var(--secondary)),
                      linear-gradient(135deg, rgba(var(--primary-rgb),0.8), rgba(var(--secondary-rgb),0.8));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow:
        0 4px 16px rgba(var(--primary-rgb),0.3),
        0 8px 32px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.fab-main::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
    border-radius: 14px 14px 0 0;
    pointer-events: none;
}
.fab-main:hover {
    transform: scale(1.08);
    box-shadow:
        0 6px 24px rgba(var(--primary-rgb),0.4),
        0 12px 40px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.25);
}
.fab-main i { width: 26px; height: 26px; transition: transform 0.3s; }
.contact-fab.open .fab-main i { transform: rotate(45deg); }

/* Pulse ring */
.fab-main::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    border: 1.5px solid rgba(var(--primary-rgb),0.3);
    animation: fab-pulse 2.5s ease-in-out infinite;
    pointer-events: none;
}
.contact-fab.open .fab-main::after { animation: none; opacity: 0; }
@keyframes fab-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0; }
}

/* Options */
.fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.contact-fab.open .fab-options {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.fab-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
}
.fab-option:hover { transform: translateX(-4px); }
.fab-option-label {
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.fab-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.fab-option-icon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}
.fab-option-icon i { width: 22px; height: 22px; position: relative; z-index: 1; }
.fab-option-icon.fab-wa { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,0.3), inset 0 1px 0 rgba(255,255,255,0.15); }
.fab-option-icon.fab-chat { background: var(--gradient); box-shadow: 0 4px 16px rgba(var(--primary-rgb),0.3), inset 0 1px 0 rgba(255,255,255,0.15); }

/* Backdrop */
.fab-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 899;
}
.contact-fab.open ~ .fab-backdrop,
.fab-backdrop.active { display: block; }

[data-land-theme="light"] .fab-option-label {
    background: rgba(255,255,255,0.85);
    border-color: rgba(0,0,0,0.08);
    color: #111;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-mockup { margin-top: 2rem; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .lang-toggle, .theme-toggle { min-height: 44px; min-width: 44px; display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 640px) {
    .hero { padding: 6rem 0 2.5rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-mockup { margin-top: 1.5rem; }
    .mockup-phone { width: 240px; height: 480px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }

    /* Reduce section padding on mobile */
    .problem-section, .solution-section, .benefits-section, .impact-section,
    .features, .comparison-section, .pricing, .testimonials, .faq,
    .cta-final, .contact-section, .video-section, .app-section { padding: 3.5rem 0; }

    /* Feature cards full width */
    .feature-card { min-width: 240px; max-width: 240px; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-grid .pricing-card:last-child { grid-column: auto; max-width: none; }
    .pricing-controls { flex-direction: column; align-items: center; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: none; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }

    /* Contact */
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }

    /* App preview phone */
    .phone-chrome { width: 100%; max-width: 300px; margin: 0 auto; }
    .phone-content { min-height: 480px; max-height: 480px; }

    /* Browser mockup hide side panel on mobile */
    .browser-layout { grid-template-columns: 1fr; gap: 24px; }
    .browser-layout > div:last-child { display: none; }
    .browser-body { height: 380px; }

    /* Mockup layout side panel */
    .mockup-layout { grid-template-columns: 1fr; gap: 24px; }
    .mockup-layout > div:last-child { display: none; }

    /* Web table responsive */
    .web-table-header, .web-table-row { grid-template-columns: 2fr 1fr 1fr 1fr; font-size: 8px; }
    .web-table-header span:nth-child(4), .web-table-row span:nth-child(4) { display: none; }

    /* Section titles */
    .section-title { font-size: clamp(1.5rem, 5vw, 2.5rem); }
}

/* Extra-small screens */
@media (max-width: 375px) {
    .container { padding: 0 1rem; }
    .hero { padding: 5.5rem 0 2rem; }
    .hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .mockup-phone { width: 220px; height: 440px; }
    .feature-card { min-width: 220px; max-width: 220px; }
    .mockup-interact-badge { font-size: 0.55rem; padding: 3px 10px; }
    .phone-chrome { max-width: 260px; }
    .phone-content { min-height: 420px; max-height: 420px; }
    .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }
    .hero-badge { font-size: 0.75rem; }
}
    </style>
    <style>
    /* Ocultar botón default de Crisp completamente */
    .crisp-client .cc-kv6t .cc-1hqb,
    .crisp-client .cc-kv6t .cc-unoo {
display: none !important;
    }

/* ========== INTERACTIVE BADGE — mockup hint ========== */
.mockup-interact-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgba(var(--primary-rgb),0.85), rgba(var(--secondary-rgb),0.75));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow:
        0 4px 20px rgba(var(--primary-rgb),0.35),
        0 0 30px rgba(var(--primary-rgb),0.15),
        inset 0 1px 0 rgba(255,255,255,0.3);
    animation: badge-glow 2s ease-in-out infinite, badge-float 3s ease-in-out infinite;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity 0.6s ease;
}
.mockup-interact-badge.hidden { opacity: 0; pointer-events: none; }
.mockup-interact-badge i { font-size: 0.75rem; animation: badge-hand 1.5s ease-in-out infinite; }

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(var(--primary-rgb),0.35), 0 0 30px rgba(var(--primary-rgb),0.15), inset 0 1px 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 4px 30px rgba(var(--primary-rgb),0.55), 0 0 50px rgba(var(--primary-rgb),0.25), 0 0 80px rgba(var(--secondary-rgb),0.1), inset 0 1px 0 rgba(255,255,255,0.4); }
}
@keyframes badge-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}
@keyframes badge-hand {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Inline variant for inside phone content */
.mockup-interact-badge--inline {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 10px;
    font-size: 8px;
    padding: 4px 10px;
    animation: badge-glow 2s ease-in-out infinite;
}
.mockup-interact-badge--inline i { font-size: 8px; }

/* Browser variant */
.mockup-interact-badge--browser {
    top: -20px;
    font-size: 0.75rem;
    padding: 8px 20px;
}

/* ========== HERO CALENDAR ========== */
.hero-cal {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 0.4rem 0.5rem;
    margin-bottom: 0.4rem;
}
.hero-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}
.hero-cal-month { font-size: 0.6rem; font-weight: 700; }
.hero-cal-arrow {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.2s;
    font-size: 0.5rem;
}
.hero-cal-arrow:hover { color: var(--primary); background: rgba(var(--primary-rgb),0.1); }
.hero-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.45rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
    text-transform: uppercase;
}
.hero-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}
.hero-cal-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    gap: 0px;
    height: 22px;
}
.hero-cal-day.empty { cursor: default; }
.hero-cal-day:not(.empty):hover {
    background: rgba(var(--primary-rgb),0.1);
    transform: scale(1.15);
}
.hero-cal-day.cal-today { color: var(--primary); font-weight: 800; }
.hero-cal-day.cal-selected {
    background: var(--gradient);
    color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(var(--primary-rgb),0.3);
}
.hero-cal-day.cal-busy { color: #f59e0b; }
.hero-cal-day.cal-full { color: #ef4444; }
.hero-cal-day.cal-free { color: #22c55e; }
.hero-cal-day.cal-closed { color: var(--text-muted); opacity: 0.4; cursor: default; }
.cal-dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: currentColor;
}
.hero-cal-appts { display: flex; flex-direction: column; gap: 0.4rem; }
.hero-cal-appts-title {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

/* ========== HERO BARBER CARDS ========== */
.hero-barber-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}
.hero-barber-card:hover { border-color: rgba(var(--primary-rgb),0.25); }
.hero-barber-card.expanded { border-color: rgba(var(--primary-rgb),0.3); background: rgba(var(--primary-rgb),0.04); }
.hero-barber-main {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem;
}
.hero-barber-info { flex: 1; min-width: 0; }
.hero-barber-info h4 { font-size: 0.7rem; font-weight: 700; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.hero-barber-info p { font-size: 0.6rem; color: var(--text-muted); }
.hero-barber-chevron {
    font-size: 0.55rem;
    color: var(--text-muted);
    transition: transform 0.3s;
    flex-shrink: 0;
}
.hero-barber-card.expanded .hero-barber-chevron { transform: rotate(180deg); color: var(--primary); }
.hero-barber-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0.6rem;
}
.hero-barber-card.expanded .hero-barber-details {
    max-height: 200px;
    padding: 0 0.6rem 0.6rem;
}
.hero-barber-stats {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.4rem;
}
.hero-barber-stats > div {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.35rem 0.2rem;
    font-size: 0.7rem;
}
.hero-barber-stats small { font-size: 0.5rem; color: var(--text-muted); }
.hero-barber-next {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

/* ========== HERO CHAT ========== */
.hero-chat-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: none;
}
.hero-chat-container::-webkit-scrollbar { display: none; }
.hero-chat-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}
.hero-chat-quick-btn {
    padding: 4px 8px;
    font-size: 0.6rem;
    font-weight: 600;
    border-radius: 100px;
    background: rgba(var(--primary-rgb),0.1);
    border: 1px solid rgba(var(--primary-rgb),0.2);
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}
.hero-chat-quick-btn:hover {
    background: rgba(var(--primary-rgb),0.2);
    transform: scale(1.05);
}
.hero-chat-quick-btn:active { transform: scale(0.95); }
.hero-chat-quick-btn i { font-size: 0.55rem; margin-right: 2px; }

/* Typing indicator */
.typing-dots { display: inline-flex; gap: 3px; align-items: center; }
.typing-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: typing-bounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* ========== PHONE BOTTOM NAV ========== */
.phone-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 8px 4px;
    background: linear-gradient(180deg, rgba(5,5,5,0.95), rgba(5,5,5,1));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 0 0 42px 42px;
}
.phone-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s;
    font-family: inherit;
    font-size: 7px;
    font-weight: 600;
    min-width: 52px;
}
.phone-nav-btn i { font-size: 14px; transition: all 0.2s; }
.phone-nav-btn.active { color: var(--primary); }
.phone-nav-btn.active i { transform: scale(1.15); }
.phone-nav-btn:hover { color: var(--secondary); background: rgba(var(--primary-rgb),0.08); }

[data-land-theme="light"] .phone-bottom-nav {
    background: linear-gradient(180deg, rgba(245,245,245,0.98), rgba(240,240,240,1));
    border-top-color: rgba(0,0,0,0.06);
}
[data-land-theme="light"] .phone-nav-btn { color: rgba(0,0,0,0.4); }
[data-land-theme="light"] .phone-nav-btn.active { color: var(--primary); }

/* ========== WEB TABLE ========== */
.web-table {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.web-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 6px 10px;
    font-size: 8px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.web-table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    padding: 8px 10px;
    font-size: 9px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    cursor: pointer;
    transition: all 0.2s;
}
.web-table-row:hover { background: rgba(var(--primary-rgb),0.04); }
.web-table-row:last-child { border-bottom: none; }
.web-table-row .mock-card-detail {
    grid-column: 1 / -1;
    margin-top: 6px;
}

[data-land-theme="light"] .web-table {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.06);
}
[data-land-theme="light"] .web-table-header {
    background: rgba(0,0,0,0.03);
    border-bottom-color: rgba(0,0,0,0.06);
    color: rgba(0,0,0,0.45);
}
[data-land-theme="light"] .web-table-row {
    border-bottom-color: rgba(0,0,0,0.04);
}
[data-land-theme="light"] .web-table-row:hover { background: rgba(var(--primary-rgb),0.04); }

/* ========== WEB CALENDAR GRID ========== */
.web-cal-grid {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
}
.web-cal-header {
    display: grid;
    grid-template-columns: 50px repeat(3, 1fr);
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.web-cal-hour {
    padding: 4px 6px;
    font-size: 8px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}
.web-cal-barber {
    padding: 6px;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
}
.web-cal-row {
    display: grid;
    grid-template-columns: 50px repeat(3, 1fr);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.web-cal-row:last-child { border-bottom: none; }
.web-cal-cell {
    padding: 4px;
    min-height: 30px;
    border-left: 1px solid rgba(255,255,255,0.04);
    transition: background 0.2s;
    cursor: pointer;
    position: relative;
}
.web-cal-cell:hover { background: rgba(var(--primary-rgb),0.06); }
.web-cal-cell.has-appt { background: rgba(var(--primary-rgb),0.04); }
.web-cal-appt {
    font-size: 7px;
    line-height: 1.4;
}
.web-cal-appt strong { font-size: 8px; display: block; }
.web-cal-cell .mock-card-detail {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px;
    min-width: 160px;
    box-shadow: var(--shadow);
}

[data-land-theme="light"] .web-cal-grid {
    background: rgba(0,0,0,0.01);
    border-color: rgba(0,0,0,0.06);
}
[data-land-theme="light"] .web-cal-header {
    background: rgba(0,0,0,0.03);
    border-bottom-color: rgba(0,0,0,0.06);
}
[data-land-theme="light"] .web-cal-row { border-bottom-color: rgba(0,0,0,0.04); }
[data-land-theme="light"] .web-cal-cell { border-left-color: rgba(0,0,0,0.04); }

/* ========== LIGHT THEME for hero barber / calendar / chat ========== */
[data-land-theme="light"] .hero-cal { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-land-theme="light"] .hero-cal-day:not(.empty):hover { background: rgba(var(--primary-rgb),0.08); }
[data-land-theme="light"] .hero-barber-card { background: rgba(0,0,0,0.02); border-color: rgba(0,0,0,0.06); }
[data-land-theme="light"] .hero-barber-card:hover { border-color: rgba(var(--primary-rgb),0.2); }
[data-land-theme="light"] .hero-barber-card.expanded { background: rgba(var(--primary-rgb),0.03); }
[data-land-theme="light"] .hero-barber-stats > div { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.06); }
[data-land-theme="light"] .hero-chat-quick-btn {
    background: rgba(var(--primary-rgb),0.08);
    border-color: rgba(var(--primary-rgb),0.15);
}

/* ========== RESPONSIVE — new components ========== */
@media (max-width: 640px) {
    .mockup-interact-badge { font-size: 0.6rem; padding: 4px 12px; }
    .mockup-interact-badge--browser { font-size: 0.6rem; padding: 5px 14px; }
    .phone-bottom-nav { border-radius: 0 0 36px 36px; }
    .phone-nav-btn { min-width: 44px; font-size: 6px; }
    .phone-nav-btn i { font-size: 12px; }
    .hero-barber-info h4 { font-size: 0.6rem; }
    .hero-barber-info p { font-size: 0.55rem; }
    .hero-cal-day { height: 18px; font-size: 0.45rem; }
    .web-cal-grid { font-size: 7px; }
    .web-cal-cell { min-height: 24px; }
}

/* ========== PSE PAYMENT BUTTON ========== */
.pricing-pse-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    margin-top: 0.5rem;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 115, 206, 0.08);
    border: 1px solid rgba(0, 115, 206, 0.25);
    color: #0073ce;
    position: relative;
    overflow: hidden;
}
.pricing-pse-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent);
    border-radius: 9px 9px 0 0;
    pointer-events: none;
}
.pricing-pse-btn:hover {
    background: rgba(0, 115, 206, 0.15);
    border-color: rgba(0, 115, 206, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 115, 206, 0.15);
}
.pricing-pse-btn:active { transform: scale(0.97); }
.pricing-pse-btn i { font-size: 1rem; }

/* PSE button in popular card */
.pricing-card.popular .pricing-pse-btn {
    background: rgba(0, 115, 206, 0.12);
    border-color: rgba(0, 115, 206, 0.3);
}

/* Light theme */
[data-land-theme="light"] .pricing-pse-btn {
    background: rgba(0, 115, 206, 0.06);
    border-color: rgba(0, 115, 206, 0.2);
    color: #005baa;
}
[data-land-theme="light"] .pricing-pse-btn:hover {
    background: rgba(0, 115, 206, 0.12);
    border-color: rgba(0, 115, 206, 0.35);
}

/* PSE modal overlay */
.pse-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.pse-modal-overlay.active { display: flex; }

.pse-modal {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.pse-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    transition: color 0.2s;
}
.pse-modal-close:hover { color: var(--text-primary); }
.pse-modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0073ce, #00a3e0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,115,206,0.3);
}
.pse-modal h3 {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.pse-modal-plan {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.pse-modal-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
.pse-modal-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
}
.pse-modal-row:not(:last-child) { border-bottom: 1px solid var(--border); }
.pse-modal-row span:first-child { color: var(--text-muted); }
.pse-modal-row span:last-child { font-weight: 700; }
.pse-modal-total {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0 0;
    font-size: 1.1rem;
    font-weight: 800;
    border-top: 2px solid var(--border);
    margin-top: 0.5rem;
}
.pse-modal-total span:last-child { color: #0073ce; }
.pse-modal-banks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.pse-modal-banks label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}
.pse-modal-banks select {
    width: 100%;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
    appearance: auto;
}
.pse-modal-banks select:focus { border-color: #0073ce; }
.pse-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #0073ce, #00a3e0);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,115,206,0.3);
    position: relative;
    overflow: hidden;
}
.pse-pay-btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
}
.pse-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,115,206,0.4);
}
.pse-pay-btn:active { transform: scale(0.97); }
.pse-modal-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.pse-modal-secure i { color: #22c55e; }

