/* ========================================
   TOPSALE AI - Professional Redesign
   Dark Navy, Blue-Purple Gradient, Mockup-First
   ======================================== */

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

:root {
    --bg: #040608;
    --bg2: #080C12;
    --bg3: #0C1018;
    --bg-card: #0A0E16;
    --bg-card-hover: #10151F;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(255,255,255,0.12);
    --text: #F0F4F8;
    --text2: #8896A8;
    --text3: #556677;
    --accent: #2563EB;
    --accent2: #3B82F6;
    --accent-rgb: 37,99,235;
    --accent-soft: rgba(37,99,235,0.08);
    --accent-soft2: rgba(37,99,235,0.14);
    --gradient: linear-gradient(135deg, #1D4ED8, #2563EB);
    --gradient2: linear-gradient(135deg, #2563EB, #3B82F6);
    --green: #34D399;
    --green-soft: rgba(52,211,153,0.08);
    --red: #F87171;
    --gold: #FDE68A;
    --gold-soft: rgba(253,230,138,0.08);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow: 0 2px 8px rgba(0,0,0,0.5);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.6);
    --transition: 0.2s ease;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 15px;
}

.container { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
a { text-decoration: none; color: inherit; }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(4, 6, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 32px; height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 13px;
    color: white;
}

.logo-text sup { color: var(--accent2); font-size: 9px; font-weight: 600; }

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 2px 16px rgba(37,99,235,0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 24px rgba(37,99,235,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--text2);
}

.btn-ghost:hover {
    color: var(--text);
}

.btn-outline {
    background: transparent;
    color: var(--text2);
    border: 1px solid rgba(255,255,255,0.12);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--text);
    background: rgba(37,99,235,0.06);
}

.btn-xl {
    padding: 15px 36px;
    font-size: 15px;
    border-radius: var(--radius-lg);
}

.btn-full { width: 100%; }

.btn-nav { font-size: 13px; padding: 8px 16px; }

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    padding: 140px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.35;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    animation: float-glow 8s ease-in-out infinite alternate;
}

.hero-glow-1 {
    width: 600px; height: 600px;
    background: rgba(37,99,235,0.04);
    top: -200px; right: 10%;
}

.hero-glow-2 {
    width: 500px; height: 500px;
    background: rgba(37,99,235,0.03);
    bottom: -100px; left: 15%;
    animation-delay: -4s;
}

@keyframes float-glow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -20px) scale(1.1); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Hero proof badge */
.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-proof-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--accent-soft);
    border: 1px solid rgba(37,99,235,0.2);
    color: var(--accent2);
}

.hero-proof-text {
    font-size: 14px;
    color: var(--text3);
}

.hero-proof-text strong {
    color: var(--text);
    font-weight: 700;
}

/* Hero headline */
.hero-headline {
    text-align: center;
    font-size: clamp(30px, 4.2vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    z-index: 1;
}

/* Hero sub */
.hero-sub {
    text-align: center;
    font-size: 15px;
    color: var(--text3);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.2px;
}

/* Hero CTA centered */
.hero-cta-center {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 56px;
}

.hero-cta-center .btn {
    font-size: 13px;
    padding: 12px 28px;
}

/* Hero devices full width */
.hero-devices-full {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    perspective: 1200px;
}

/* Primary CTA button — Blue */
.btn-red {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 24px rgba(37,99,235,0.35);
    border: none;
    font-weight: 600;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(37,99,235,0.45);
    background: #1D4ED8;
}

/* Hero devices */
.hero-devices-full {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
    perspective: 1400px;
    max-width: 720px;
    margin: 0 auto;
}

.hero-devices {
    position: relative;
    width: 100%;
    max-width: 680px;
    padding-bottom: 16px;
    transform: rotateX(6deg) rotateY(0deg);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.hero-devices:hover {
    transform: rotateX(3deg) rotateY(0deg);
}

/* ========================================
   MACBOOK DEVICE FRAME
   ======================================== */
.device-macbook {
    position: relative;
    width: 100%;
    filter:
        drop-shadow(0 30px 60px rgba(0,0,0,0.5))
        drop-shadow(0 10px 20px rgba(0,0,0,0.3))
        drop-shadow(0 0 40px rgba(37,99,235,0.05));
}

.macbook-screen {
    background: #000;
    border: 6px solid #1c1c1e;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Subtle screen reflection */
.macbook-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, rgba(255,255,255,0.03) 0%, transparent 40%, transparent 60%, rgba(255,255,255,0.01) 100%);
    pointer-events: none;
    z-index: 10;
}

.macbook-notch {
    width: 44px;
    height: 4px;
    background: #1c1c1e;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Camera dot */
.macbook-notch::after {
    content: '';
    width: 3px; height: 3px;
    background: #0a0a0c;
    border: 1px solid #2a2a2e;
    border-radius: 50%;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
}

.macbook-content {
    padding: 0;
    font-size: 11px;
    position: relative;
    z-index: 1;
}

/* Realistic hinge / base */
.macbook-base {
    height: 10px;
    background: linear-gradient(180deg, #3a3a3e 0%, #2c2c30 30%, #262628 100%);
    border-radius: 0 0 2px 2px;
    position: relative;
    border-top: 1px solid #4a4a4e;
}

/* Lip indent */
.macbook-base::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 18%;
    height: 3px;
    background: #1c1c1e;
    border-radius: 0 0 6px 6px;
}

/* Bottom wedge */
.macbook-base::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 3%;
    right: 3%;
    height: 4px;
    background: linear-gradient(180deg, #262628, #1a1a1c);
    border-radius: 0 0 8px 8px;
}

.macbook-keyboard { display: none; }

/* MacBook inner UI */
.mb-topbar {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    background: #060A12;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 12px;
}

.mb-logo {
    font-weight: 700;
    font-size: 11px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.mb-logo-icon {
    width: 18px; height: 18px;
    background: var(--gradient);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 9px; color: white;
}

.mb-tabs {
    display: flex;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.mb-tab {
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 9px;
    color: var(--text3);
    font-weight: 500;
    cursor: default;
}

.mb-tab.active {
    background: rgba(37,99,235,0.12);
    color: var(--accent2);
}

.mb-user {
    width: 18px; height: 18px;
    background: var(--accent-soft2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 7px; font-weight: 700; color: var(--accent2);
    flex-shrink: 0;
}

.mb-body {
    display: flex;
    min-height: 180px;
}

.mb-main {
    flex: 1;
    padding: 10px 12px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.mb-header {
    margin-bottom: 8px;
}

.mb-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.mb-subtitle {
    font-size: 9px;
    color: var(--text3);
}

.mb-phases {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mb-phase {
    display: flex;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    align-items: flex-start;
}

.mb-phase.active {
    background: rgba(37,99,235,0.05);
    border-color: rgba(37,99,235,0.15);
}

.mb-phase-num {
    width: 18px; height: 18px;
    background: rgba(37,99,235,0.1);
    color: var(--accent2);
    border-radius: 5px;
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 700;
    flex-shrink: 0;
}

.mb-phase.active .mb-phase-num {
    background: var(--accent);
    color: white;
}

.mb-phase-body {
    flex: 1;
    min-width: 0;
}

.mb-phase-title {
    font-size: 10px;
    font-weight: 600;
    color: var(--text);
    display: block;
}

.mb-phase-text {
    font-size: 9px;
    color: var(--text3);
    display: block;
    line-height: 1.4;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mb-phase-tags {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.mb-tag {
    font-size: 8px;
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(255,255,255,0.05);
    color: var(--text3);
    font-weight: 500;
}

.mb-tag.green {
    background: rgba(34,197,94,0.1);
    color: var(--green);
}

/* MacBook right sidebar */
.mb-sidebar-r {
    width: 160px;
    padding: 10px;
    flex-shrink: 0;
    overflow: hidden;
}

.mb-panel-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.mb-insight {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 8px;
    color: var(--text3);
    line-height: 1.3;
}

.mb-insight strong {
    display: block;
    font-size: 9px;
    color: var(--text2);
}

.mb-insight-icon {
    width: 14px; height: 14px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 8px;
    flex-shrink: 0;
}

.mb-insight-icon.green { background: rgba(74,222,128,0.12); color: var(--green); }
.mb-insight-icon.blue { background: rgba(37,99,235,0.12); color: var(--accent2); }

.mb-metrics {
    display: flex;
    gap: 8px;
    margin: 10px 0 8px;
}

.mb-metric {
    flex: 1;
    text-align: center;
    padding: 6px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.mb-metric-val {
    font-size: 14px;
    font-weight: 800;
    display: block;
}

.mb-metric-val.green { color: var(--green); }
.mb-metric-val.blue { color: var(--accent2); }

.mb-metric span:last-child {
    font-size: 7px;
    color: var(--text3);
    display: block;
}

.mb-rt-title {
    font-size: 9px;
    font-weight: 600;
    color: var(--text2);
    margin-bottom: 6px;
}

.mb-bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mb-bar-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mb-bar-label {
    font-size: 7px;
    color: var(--text3);
    width: 48px;
    flex-shrink: 0;
}

.mb-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.mb-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1.5s ease;
}

.mb-bar-fill.green { background: var(--green); }
.mb-bar-fill.blue { background: var(--accent); }
.mb-bar-fill.purple { background: #6366F1; }

/* ========================================
   IPHONE DEVICE FRAME — Realistic
   ======================================== */
.device-iphone {
    position: absolute;
    right: -24px;
    bottom: 16px;
    width: 130px;
    background: #1c1c1e;
    border-radius: 24px;
    padding: 6px;
    box-shadow:
        0 30px 60px -10px rgba(0,0,0,0.8),
        0 10px 20px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1);
    z-index: 3;
    transform: translateZ(40px);
}

/* Side buttons */
.device-iphone::before {
    content: '';
    position: absolute;
    right: -2px;
    top: 70px;
    width: 2px;
    height: 28px;
    background: #2a2a2e;
    border-radius: 0 2px 2px 0;
}

.device-iphone::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 56px;
    width: 2px;
    height: 20px;
    background: #2a2a2e;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 24px 0 #2a2a2e, 0 48px 0 #2a2a2e;
}

.iphone-notch {
    width: 56px;
    height: 12px;
    background: #1c1c1e;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

/* Dynamic Island style */
.iphone-notch::after {
    content: '';
    width: 34px;
    height: 8px;
    background: #000;
    border-radius: 10px;
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.iphone-content {
    background: #060A12;
    border-radius: 18px;
    padding: 20px 6px 6px;
    min-height: 210px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

/* Screen reflection */
.iphone-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, rgba(255,255,255,0.04) 0%, transparent 35%);
    pointer-events: none;
    border-radius: 20px;
    z-index: 4;
}

.iphone-home-bar {
    width: 36%;
    height: 4px;
    background: rgba(255,255,255,0.25);
    border-radius: 10px;
    margin: 6px auto 2px;
}

/* iPhone inner UI */
.ip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ip-live {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 7px;
    font-weight: 700;
    color: var(--green);
    background: rgba(34,197,94,0.1);
    padding: 3px 7px;
    border-radius: 8px;
}

.ip-timer {
    font-size: 8px;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.ip-caller {
    text-align: center;
    padding: 4px 0;
}

.ip-avatar {
    width: 24px; height: 24px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 8px; font-weight: 700; color: white;
    margin: 0 auto 3px;
}

.ip-name {
    font-size: 8px;
    font-weight: 700;
    color: var(--text);
}

.ip-company {
    font-size: 6px;
    color: var(--text3);
}

.ip-detection {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.ip-badge {
    font-size: 7px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ip-badge.vorwand {
    background: rgba(239,68,68,0.15);
    color: var(--red);
}

.ip-badge.einwand {
    background: rgba(34,197,94,0.15);
    color: var(--green);
}

.ip-conf {
    font-size: 7px;
    color: var(--text3);
    font-weight: 600;
}

.ip-quote {
    font-size: 7px;
    color: var(--text2);
    font-style: italic;
    text-align: center;
    line-height: 1.3;
    padding: 0 4px;
}

.ip-strategy {
    background: rgba(37,99,235,0.06);
    border: 1px solid rgba(37,99,235,0.12);
    border-radius: 6px;
    padding: 6px;
    font-size: 6px;
    color: var(--text3);
    line-height: 1.3;
}

.ip-strategy strong {
    color: var(--accent2);
    display: block;
    margin-bottom: 2px;
    font-size: 7px;
}

.ip-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 6px 0 0;
    margin-top: auto;
}

.ip-wave .wave-bar {
    width: 2px;
    border-radius: 2px;
    background: var(--accent);
    animation: wave-anim-sm 1.2s ease-in-out infinite alternate;
    animation-delay: calc(var(--delay) * 0.1s);
}

@keyframes wave-anim-sm {
    0% { height: 4px; opacity: 0.2; }
    100% { height: 18px; opacity: 0.6; }
}

/* Trust bar */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    margin-top: 64px;
    padding: 36px 0 48px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text2);
}

.trust-bar-item strong {
    color: var(--text);
}

.trust-bar-item svg {
    color: var(--accent2);
    flex-shrink: 0;
}

.trust-bar-flags {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Responsive hero */
@media (max-width: 900px) {
    .hero { padding: 120px 0 0; }
    .hero-headline { font-size: clamp(28px, 6vw, 44px); letter-spacing: -1.5px; margin-bottom: 20px; }
    .hero-sub { font-size: 15px; margin-bottom: 32px; }
    .hero-cta-center { margin-bottom: 48px; }
    .hero-devices-full { max-width: 480px; }
    .hero-devices { max-width: 100%; transform: none !important; }
    .hero-devices:hover { transform: none !important; }
    .device-iphone { width: 110px; right: -8px; bottom: 0; transform: none; }
    .mb-sidebar-r { display: none; }
    .hero-trust-bar { gap: 24px; margin-top: 48px; }
    .hero-proof-text { font-size: 13px; }
}

/* ========================================
   PRODUCT MOCKUP - Browser Window
   ======================================== */
.hero-mockup-wrapper {
    margin-top: 0;
    padding-bottom: 0;
    position: relative;
}

.product-mockup {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: var(--bg2);
    box-shadow:
        0 24px 80px -12px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.06);
}

.product-mockup-hero {
    max-width: 1100px;
    margin: 0 auto;
}

.product-mockup-sm {
    border-radius: 14px;
}

.mockup-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
}

.mockup-browser-bar.compact {
    padding: 10px 16px;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #FACC15; }
.browser-dots span:nth-child(3) { background: #22C55E; }

.compact .browser-dots span { width: 8px; height: 8px; }

.browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--text3);
    max-width: 360px;
    margin: 0 auto;
}

.browser-url svg { color: var(--green); flex-shrink: 0; }

.browser-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
    background: var(--green-soft);
    padding: 4px 12px;
    border-radius: 100px;
}

.live-dot {
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-glow-green 2s infinite;
}

@keyframes pulse-glow-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ========================================
   APP UI - Dashboard Mockup
   ======================================== */
.mockup-app-ui {
    display: flex;
    min-height: 380px;
}

.app-sidebar {
    width: 220px;
    background: var(--bg);
    border-right: 1px solid var(--border);
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.app-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 8px 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.asb-icon {
    width: 32px; height: 32px;
    background: var(--gradient);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 13px; color: white;
}

.asb-name { font-weight: 700; font-size: 14px; display: block; }
.asb-plan { font-size: 11px; color: var(--text3); display: block; }

.app-sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.asn-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text2);
    cursor: default;
    transition: all var(--transition);
}

.asn-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.asn-item.active { background: var(--accent-soft); color: var(--accent2); }

.app-sidebar-user {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 8px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.asu-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: var(--accent2);
}

.asu-name { font-size: 13px; font-weight: 600; display: block; }
.asu-role { font-size: 11px; color: var(--text3); display: block; }

/* Main content */
.app-main {
    flex: 1;
    padding: 20px 24px;
    overflow: hidden;
}

.app-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.atb-title { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.atb-date { font-size: 12px; color: var(--text3); }

.atb-right { display: flex; align-items: center; gap: 10px; }

.atb-search {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text3);
}

.atb-btn-start {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: var(--gradient);
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    cursor: default;
}

/* KPI Cards */
.app-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.kpi-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
}

.kpi-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.kpi-label { font-size: 11px; color: var(--text3); font-weight: 500; }
.kpi-trend { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; }
.kpi-trend.up { background: var(--green-soft); color: var(--green); }
.kpi-trend.neutral { background: rgba(255,255,255,0.04); color: var(--text2); }

.kpi-value { font-size: 24px; font-weight: 800; letter-spacing: -1px; }
.kpi-value.green { color: var(--green); }
.kpi-value.blue { color: var(--accent2); }
.kpi-value.purple { color: #A78BFA; }
.kpi-value.gold { color: var(--gold); }

.kpi-sub { font-size: 11px; color: var(--text3); margin-top: 2px; }

.kpi-chart { margin-top: 8px; }
.kpi-sparkline { width: 100%; height: 32px; }
.kpi-sparkline.green { color: var(--green); }
.kpi-sparkline.blue { color: var(--accent2); }
.kpi-sparkline.gold { color: var(--gold); }

/* Panels Row */
.app-panels {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}

.app-panel-live {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.apl-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: rgba(34,197,94,0.03);
}

.apl-left { display: flex; align-items: center; gap: 12px; }
.apl-live-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--green); }
.apl-contact { font-size: 12px; color: var(--text2); }
.apl-timer { font-size: 13px; color: var(--text2); font-variant-numeric: tabular-nums; font-weight: 600; }

.apl-body { padding: 14px 16px; }

.apl-objection {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(239,68,68,0.04);
    border: 1px solid rgba(239,68,68,0.1);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.apl-obj-icon { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.apl-obj-label { font-size: 10px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.5px; }
.apl-obj-text { font-size: 13px; font-weight: 600; margin-top: 2px; }
.apl-obj-time { font-size: 10px; color: var(--text3); white-space: nowrap; margin-left: auto; }

.apl-ai-response {
    background: var(--accent-soft);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 12px 14px;
}

.apl-ai-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 6px;
}

.apl-confidence { margin-left: auto; font-size: 10px; color: var(--green); }
.apl-ai-text { font-size: 12px; color: var(--text2); line-height: 1.6; }
.apl-ai-text strong { color: var(--text); }

/* Activity Panel */
.app-panel-activity {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.apa-header {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-weight: 600;
}

.apa-list { padding: 6px 0; }

.apa-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
}

.apa-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.apa-dot.green { background: var(--green); }
.apa-dot.blue { background: var(--accent); }
.apa-dot.purple { background: #A78BFA; }
.apa-dot.gold { background: var(--gold); }

.apa-text { flex: 1; }
.apa-text > span:first-child { font-size: 12px; font-weight: 600; display: block; }
.apa-meta { font-size: 11px; color: var(--text3); display: block; margin-top: 1px; }
.apa-time { font-size: 10px; color: var(--text3); white-space: nowrap; margin-top: 2px; }

/* ========================================
   LOGOS
   ======================================== */
.logos-section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.logos-label { text-align: center; font-size: 13px; color: var(--text3); margin-bottom: 28px; }
.logos-label strong { color: var(--text2); }

.logos-scroll { overflow: hidden; }
.logos-track { display: flex; gap: 56px; animation: scroll-logos 25s linear infinite; width: max-content; }
.logo-item { font-size: 16px; font-weight: 600; color: var(--text3); white-space: nowrap; letter-spacing: -0.3px; opacity: 0.6; }
.logo-item strong { color: var(--text3); }

@keyframes scroll-logos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 88px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: var(--accent-soft);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent2);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 15px;
    color: var(--text2);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   FEATURE SHOWCASE
   ======================================== */
.feature-showcase {
    padding: 160px 0;
}

.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 88px;
    align-items: center;
    margin-bottom: 140px;
}

.showcase-block:last-child { margin-bottom: 0; }

.showcase-block.reverse {
    grid-template-columns: 1.3fr 1fr;
}

.showcase-block.reverse .showcase-text { order: 2; }
.showcase-block.reverse .showcase-mockup-col { order: 1; }

.showcase-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(255,255,255,0.12);
    opacity: 1;
    line-height: 1;
    margin-bottom: 16px;
}

.showcase-text h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.showcase-text p {
    font-size: 16px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.showcase-stats {
    display: flex;
    gap: 36px;
}

.ss-item { display: flex; flex-direction: column; }
.ss-num {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
}
.ss-label { font-size: 12px; color: var(--text3); margin-top: 2px; font-weight: 500; }

/* ========================================
   MOCKUP SCREEN CONTENTS
   ======================================== */
.mockup-screen {
    padding: 0;
}

/* --- Live Call Screen --- */
.screen-call-ui {
    padding: 16px;
}

.scu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.scu-info { display: flex; align-items: center; gap: 10px; }

.scu-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: var(--accent2);
}

.scu-name { font-size: 13px; font-weight: 600; }
.scu-meta { font-size: 11px; color: var(--text3); }

.scu-timer-wrap { display: flex; align-items: center; gap: 10px; }

.scu-live {
    display: flex; align-items: center; gap: 5px;
    font-size: 10px; font-weight: 700; color: var(--red);
    background: rgba(239,68,68,0.08);
    padding: 3px 10px;
    border-radius: 100px;
}

.scu-timer {
    font-size: 14px; font-weight: 600; color: var(--text2);
    font-variant-numeric: tabular-nums;
}

.scu-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 48px;
    margin-bottom: 14px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    padding: 0 12px;
}

.wave-bar {
    width: 3px;
    background: var(--accent);
    border-radius: 3px;
    animation: wave-anim 1.2s ease-in-out infinite alternate;
    animation-delay: calc(var(--delay) * 0.08s);
    opacity: 0.4;
}

@keyframes wave-anim {
    0% { height: 8px; opacity: 0.2; }
    100% { height: 36px; opacity: 0.6; }
}

/* Alert */
.scu-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(239,68,68,0.04);
    border: 1px solid rgba(239,68,68,0.12);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 12px;
}

.scu-alert-icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.scu-alert-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.scu-alert-label { font-size: 11px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.3px; }
.scu-alert-tag { font-size: 10px; padding: 2px 8px; background: rgba(239,68,68,0.08); color: var(--red); border-radius: 100px; font-weight: 600; }
.scu-alert-text { font-size: 14px; font-weight: 600; line-height: 1.4; }

/* AI Response */
.scu-ai {
    background: var(--accent-soft);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 14px;
}

.scu-ai-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }

.scu-ai-badge {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; color: var(--accent2);
}

.scu-ai-rate { font-size: 10px; color: var(--green); font-weight: 600; }
.scu-ai-text { font-size: 13px; color: var(--text2); line-height: 1.7; }
.scu-ai-text strong { color: var(--text); }

.scu-ai-tags { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.scu-tag { padding: 3px 10px; background: rgba(255,255,255,0.04); border-radius: 100px; font-size: 11px; color: var(--text3); font-weight: 500; }
.scu-tag.green { background: var(--green-soft); color: var(--green); }

/* --- Analytics Screen --- */
.screen-analytics-ui { padding: 16px; }

.sau-title { font-size: 14px; font-weight: 700; margin-bottom: 16px; }

.sau-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 14px;
}

.sau-chart-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}

.sau-card-title { font-size: 12px; font-weight: 600; color: var(--text2); margin-bottom: 12px; }

.sau-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sau-bar-label { font-size: 11px; color: var(--text2); width: 80px; flex-shrink: 0; }
.sau-bar { flex: 1; height: 5px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.sau-fill { height: 100%; background: var(--gradient); border-radius: 4px; }
.sau-bar-val { font-size: 11px; color: var(--text3); font-weight: 600; width: 28px; text-align: right; }

.sau-strat-list { display: flex; flex-direction: column; gap: 10px; }
.sau-strat-item {}
.sau-strat-info { display: flex; justify-content: space-between; margin-bottom: 4px; }
.sau-strat-name { font-size: 12px; color: var(--text2); }
.sau-strat-rate { font-size: 12px; font-weight: 700; }
.sau-strat-rate.green { color: var(--green); }
.sau-strat-rate.blue { color: var(--accent2); }
.sau-progress { height: 4px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.sau-progress-fill { height: 100%; border-radius: 4px; }
.sau-progress-fill.green { background: var(--green); }
.sau-progress-fill.blue { background: var(--accent); }

.sau-footer {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.sau-metric { display: flex; flex-direction: column; gap: 2px; }
.sau-metric span:last-child { font-size: 10px; color: var(--text3); }
.sau-metric-val { font-size: 13px; font-weight: 700; }
.sau-metric-val.up { color: var(--green); }

/* --- Team Screen --- */
.screen-team-ui { padding: 16px; }

.stu-title { font-size: 14px; font-weight: 700; margin-bottom: 16px; }

.stu-list { display: flex; flex-direction: column; gap: 4px; }

.stu-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background var(--transition);
}

.stu-row:hover { background: rgba(255,255,255,0.02); }
.stu-row.gold { background: rgba(250,204,21,0.04); }

.stu-rank {
    width: 20px;
    font-size: 14px;
    font-weight: 800;
    color: var(--text3);
    text-align: center;
}

.stu-row.gold .stu-rank { color: var(--gold); }
.stu-row.silver .stu-rank { color: #C0C0C0; }
.stu-row.bronze .stu-rank { color: #CD7F32; }

.stu-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 700; color: var(--accent2);
    flex-shrink: 0;
}

.stu-avatar.gold { background: var(--gold-soft); color: var(--gold); }
.stu-avatar.silver { background: rgba(192,192,192,0.1); color: #C0C0C0; }
.stu-avatar.bronze { background: rgba(205,127,50,0.1); color: #CD7F32; }

.stu-info { flex: 1; min-width: 0; }
.stu-name { font-size: 13px; font-weight: 600; display: block; }
.stu-role { font-size: 11px; color: var(--text3); display: block; }

.stu-stats { display: flex; align-items: center; gap: 12px; }
.stu-deals { font-size: 12px; color: var(--text2); }
.stu-rate { font-size: 13px; font-weight: 700; }
.stu-rate.green { color: var(--green); }

.stu-progress { width: 60px; height: 4px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.stu-fill { height: 100%; background: var(--gradient); border-radius: 4px; }

.stu-insight {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 14px;
    padding: 12px;
    background: var(--accent-soft);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text2);
    line-height: 1.5;
}

.stu-insight svg { color: var(--accent2); flex-shrink: 0; margin-top: 1px; }
.stu-insight strong { color: var(--accent2); }

/* --- AI Engine Screen --- */
.screen-ai-engine { padding: 16px; }

.sae-header { font-size: 14px; font-weight: 700; margin-bottom: 16px; }

.sae-model {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 14px;
}

.sae-model-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sae-model-name { font-size: 13px; font-weight: 700; }
.sae-model-status { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--green); }

.sae-model-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.sae-ms { text-align: center; }
.sae-ms span:first-child { font-size: 16px; font-weight: 800; display: block; color: #FFFFFF; }
.sae-ms span:last-child { font-size: 10px; color: var(--text3); display: block; margin-top: 2px; }

.sae-capabilities { display: flex; flex-direction: column; gap: 10px; }

.sae-cap span { font-size: 11px; color: var(--text2); display: block; margin-top: 4px; }

.sae-cap-bar { height: 6px; background: rgba(255,255,255,0.04); border-radius: 6px; overflow: hidden; }
.sae-cap-fill { height: 100%; background: var(--gradient); border-radius: 6px; }

/* ========================================
   RESULTS
   ======================================== */
.results-section {
    padding: 160px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.results-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.result-mega {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
}
.result-mega:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.rm-number {
    font-size: 40px; font-weight: 900; letter-spacing: -1px;
    color: #FFFFFF;
    margin-bottom: 14px;
}
.rm-bar { height: 3px; background: rgba(255,255,255,0.04); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.rm-fill { height: 100%; background: var(--gradient); border-radius: 3px; width: 0; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }

.result-mega h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.result-mega p { font-size: 13px; color: var(--text2); line-height: 1.6; }

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
    padding: 160px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
}

.step-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.step-number-badge {
    width: 36px; height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 800; color: white;
    margin: 0 auto 20px;
}

.step-mockup-mini {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 24px;
}

.smm-bar {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    background: var(--bg3);
    border-bottom: 1px solid var(--border);
}

.smm-bar span { width: 6px; height: 6px; border-radius: 50%; }
.smm-bar span:nth-child(1) { background: #EF4444; }
.smm-bar span:nth-child(2) { background: #FACC15; }
.smm-bar span:nth-child(3) { background: #22C55E; }

.smm-content { padding: 16px; min-height: 100px; }

/* Setup step */
.smm-setup { display: flex; flex-direction: column; gap: 8px; }
.smm-setup-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--text2); font-weight: 500;
    padding: 6px 10px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
}
.smm-setup-item.done { color: var(--green); }
.smm-setup-item.active { color: var(--accent2); }

.smm-spinner {
    width: 14px; height: 14px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin { 100% { transform: rotate(360deg); } }

/* Call step */
.smm-call { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.smm-call-wave { display: flex; align-items: center; gap: 3px; height: 40px; }
.smm-call-badge {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700; color: var(--green);
    background: var(--green-soft);
    padding: 4px 12px;
    border-radius: 100px;
}

/* Results step */
.smm-results { display: flex; flex-direction: column; gap: 10px; }
.smm-res-item { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.smm-res-label { font-size: 12px; color: var(--text2); }
.smm-res-val { font-size: 14px; font-weight: 700; }
.smm-res-val.green { color: var(--green); }
.smm-res-bar { height: 4px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.smm-fill { height: 100%; width: 78%; background: var(--gradient); border-radius: 4px; }

.step-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--text2); line-height: 1.6; }

/* ========================================
   PROOF TICKER
   ======================================== */
.proof-ticker {
    padding: 18px 0; overflow: hidden;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.ticker-track { display: flex; gap: 56px; animation: scroll-logos 30s linear infinite; width: max-content; }
.ticker-item { font-size: 14px; color: var(--text2); white-space: nowrap; display: flex; align-items: center; gap: 8px; }
.ticker-star { color: var(--gold); }
.ticker-check { color: var(--green); font-weight: 700; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-preview { padding: 160px 0; }

.testimonial-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card-3d {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all var(--transition);
}
.testimonial-card-3d:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.tc-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 18px; }

.testimonial-card-3d blockquote {
    font-size: 15px; color: var(--text2); line-height: 1.7;
    margin-bottom: 24px; font-style: normal;
}

.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent-soft); display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; color: var(--accent2); flex-shrink: 0;
}
.tc-author strong { font-size: 14px; display: block; }
.tc-author span { font-size: 12px; color: var(--text3); }

.tc-result {
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: 13px; font-weight: 700; color: var(--green);
}

.testimonial-cta { text-align: center; margin-top: 48px; }

/* ========================================
   AI SECTION
   ======================================== */
.ai-brain-section {
    padding: 120px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ai-brain-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.ai-brain-content .section-badge { margin-bottom: 20px; }
.ai-brain-content h2 { font-size: clamp(30px, 3.5vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 18px; }
.ai-brain-content > p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 36px; }

.ai-capabilities { display: flex; flex-direction: column; gap: 24px; }
.ai-cap { display: flex; align-items: flex-start; gap: 16px; }
.ai-cap-icon {
    width: 42px; height: 42px;
    background: var(--accent-soft);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ai-cap-icon .morphing-shape { width: 16px; height: 16px; background: var(--accent); border-radius: 4px; }
.ai-cap strong { font-size: 14px; display: block; margin-bottom: 3px; }
.ai-cap span { font-size: 13px; color: var(--text2); }

/* ========================================
   SWISS
   ======================================== */
.swiss-section { padding: 160px 0; }

.swiss-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 72px;
    text-align: center;
}

.swiss-flag-3d { margin-bottom: 28px; }

.swiss-card h2 { font-size: clamp(30px, 3.5vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 18px; }
.swiss-card > p { font-size: 16px; color: var(--text2); max-width: 600px; margin: 0 auto 36px; line-height: 1.7; }

.swiss-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.swiss-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 20px;
    background: var(--green-soft);
    border: 1px solid rgba(34,197,94,0.12);
    border-radius: 100px;
    font-size: 13px; font-weight: 600; color: var(--green);
}

/* ========================================
   CTA / DEMO FORM
   ======================================== */
.final-cta {
    padding: 160px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
}

.cta-mega {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-mega::before {
    content: "";
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-mega h2 { font-size: clamp(30px, 3.5vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.2; margin-bottom: 14px; }
.cta-content > p:first-of-type { font-size: 16px; color: var(--text2); margin-bottom: 36px; }

.cta-form {
    max-width: 480px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 12px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row-single { grid-template-columns: 1fr; }

.glass-input {
    width: 100%; padding: 13px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text); font-size: 14px; font-family: inherit;
    transition: border-color var(--transition); outline: none;
}
.glass-input:focus { border-color: var(--accent); }
.glass-input::placeholder { color: var(--text3); }

select.glass-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-note { font-size: 13px; color: var(--text3); margin-top: 8px; }

.cta-trust-row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 24px; }
.cta-trust-row span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text3); }

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 72px 0 36px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    margin-bottom: 56px;
}

.footer-brand p { font-size: 14px; color: var(--text3); margin-top: 14px; max-width: 280px; line-height: 1.6; }

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

.footer-col h4 {
    font-size: 12px; font-weight: 700; color: var(--text2);
    margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-col a { display: block; font-size: 14px; color: var(--text3); margin-bottom: 12px; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }

.footer-bottom { padding-top: 36px; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 13px; color: var(--text3); }

/* ========================================
   PAGE HERO (subpages)
   ======================================== */
.page-hero {
    padding: 180px 0 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .hero-bg { position: absolute; inset: 0; z-index: -1; }
.page-hero .hero-orb-1 { width: 500px; height: 500px; background: rgba(255,255,255,0.1); top: -200px; right: -100px; filter: blur(120px); position: absolute; border-radius: 50%; }
.page-hero .hero-orb-2 { width: 400px; height: 400px; background: rgba(255,255,255,0.07); bottom: -100px; left: -100px; filter: blur(120px); position: absolute; border-radius: 50%; }

.page-hero .section-title { font-size: clamp(36px, 5vw, 60px); }

/* ========================================
   PAGE CTA
   ======================================== */
.page-cta { padding: 120px 0; }

.page-cta .cta-mega {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 72px; text-align: center;
    position: relative;
}
.page-cta .cta-mega::before {
    content: "";
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(255,255,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.page-cta .cta-mega h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 14px; }
.page-cta .cta-mega p { color: var(--text2); margin-bottom: 32px; }

/* ========================================
   FEATURES DETAILED (features.html)
   ======================================== */
.features-detailed { padding: 80px 0 120px; }

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 100px;
}
.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.fb-badge {
    display: inline-block; padding: 5px 16px;
    background: var(--accent-soft);
    border-radius: 100px;
    font-size: 12px; font-weight: 700;
    color: var(--accent2); margin-bottom: 18px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.fb-content h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; letter-spacing: -0.5px; margin-bottom: 16px; }
.fb-content p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; }

.fb-list { list-style: none; margin-bottom: 28px; }
.fb-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text2); margin-bottom: 10px; line-height: 1.5; }
.fb-list li::before { content: ""; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-top: 7px; flex-shrink: 0; }

.fb-stats-row { display: flex; gap: 36px; }
.fb-stat { display: flex; flex-direction: column; }
.fb-stat span:first-child { font-size: 24px; font-weight: 800; color: #FFFFFF; }
.fb-stat span:last-child { font-size: 12px; color: var(--text3); }

.fb-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    min-height: 300px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}

/* Demos */
.ai-response-demo { width: 100%; }
.ard-header { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--accent2); margin-bottom: 18px; }
.typing-text { font-size: 14px; color: var(--text2); line-height: 1.7; }
.typing-text strong { color: var(--text); }
.ard-tags { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.tag { padding: 5px 14px; background: rgba(255,255,255,0.04); border-radius: 100px; font-size: 12px; color: var(--text2); font-weight: 500; }
.tag-green { background: var(--green-soft); color: var(--green); }

.mini-dashboard { width: 100%; }
.md-header { font-size: 15px; font-weight: 700; margin-bottom: 24px; }
.md-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; font-size: 13px; }
.md-bar-row > span:first-child { width: 90px; color: var(--text2); font-weight: 500; }
.md-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.04); border-radius: 6px; overflow: hidden; }
.md-fill { height: 100%; background: var(--gradient); border-radius: 6px; }
.md-bar-row > span:last-child { width: 32px; text-align: right; color: var(--text3); font-weight: 600; }
.md-footer { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text2); }
.md-up { color: var(--green); font-weight: 700; }

.team-leaderboard { width: 100%; }
.tl-header { font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.tl-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.tl-row:last-child { border-bottom: none; }
.tl-rank { width: 24px; text-align: center; font-size: 14px; font-weight: 800; color: var(--text3); }
.tl-row.gold .tl-rank { color: var(--gold); }
.tl-row.silver .tl-rank { color: #C0C0C0; }
.tl-row.bronze .tl-rank { color: #CD7F32; }
.tl-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--accent2); }
.tl-name { flex: 1; font-size: 14px; font-weight: 600; }
.tl-rate { font-size: 15px; font-weight: 700; color: var(--green); width: 40px; text-align: right; }
.tl-bar { width: 80px; height: 4px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.tl-bar > div { height: 100%; background: var(--green); border-radius: 4px; }

.screen-ai-demo { display: flex; align-items: center; gap: 16px; width: 100%; }
.sad-window { flex: 1; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.sad-topbar { padding: 8px 14px; font-size: 11px; font-weight: 600; color: var(--text3); background: var(--bg3); border-bottom: 1px solid var(--border); }
.sad-content { padding: 14px; }
.sad-field { font-size: 12px; color: var(--text2); margin-bottom: 8px; }
.sad-field span { color: var(--text3); }
.sad-arrow { font-size: 20px; color: var(--accent2); flex-shrink: 0; }
.sad-insight { flex: 1; background: var(--accent-soft); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 16px; }
.sad-insight-header { font-size: 11px; font-weight: 700; color: var(--accent2); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.sad-insight-text { font-size: 12px; color: var(--text2); line-height: 1.6; }

.integration-logos { display: flex; gap: 10px; flex-wrap: wrap; }
.int-logo { padding: 8px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--text2); }

.wave-visualizer { display: flex; align-items: center; justify-content: center; gap: 3px; height: 80px; }
.wave-visualizer.large .wave-bar { width: 4px; }

.detection-popup {
    display: flex; align-items: center; gap: 8px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px; padding: 10px 16px;
    font-size: 13px; font-weight: 600; color: var(--accent2);
    margin-top: 16px; width: fit-content;
}
.detection-popup.visible-always {
    position: absolute; top: 20px; right: 20px; margin-top: 0;
    animation: fade-pulse 3s ease-in-out infinite;
}
@keyframes fade-pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ========================================
   PRICING
   ======================================== */
.pricing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 36px; }
.toggle-label { font-size: 14px; color: var(--text3); font-weight: 500; cursor: pointer; transition: color var(--transition); }
.toggle-label.active { color: var(--text); }
.save-badge { background: var(--green-soft); color: var(--green); padding: 2px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.toggle-switch { width: 44px; height: 24px; background: var(--bg3); border: 1px solid var(--border); border-radius: 100px; position: relative; cursor: pointer; transition: all var(--transition); }
.toggle-knob { width: 18px; height: 18px; background: white; border-radius: 50%; position: absolute; top: 2px; left: 2px; transition: transform var(--transition); }
.toggle-switch.active { background: var(--accent); border-color: var(--accent); }
.toggle-switch.active .toggle-knob { transform: translateX(20px); }

.pricing-section { padding: 0 0 120px; margin-top: -20px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition);
    position: relative;
}
.pricing-card:hover { border-color: var(--border-hover); }

.pricing-card-featured {
    border-color: rgba(255,255,255,0.3);
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, var(--bg-card) 50%);
}
.pricing-card-featured:hover { border-color: rgba(255,255,255,0.5); }

.pc-popular {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    padding: 5px 20px;
    background: var(--accent);
    color: white; font-size: 11px; font-weight: 700;
    border-radius: 100px; white-space: nowrap;
}

.pc-header { margin-bottom: 28px; }
.pc-name { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.pc-desc { font-size: 14px; color: var(--text3); }

.pc-price { margin-bottom: 28px; }
.pc-currency { font-size: 16px; font-weight: 600; color: var(--text2); vertical-align: top; }
.pc-amount { font-size: 52px; font-weight: 900; letter-spacing: -2px; }
.pc-amount-custom { font-size: 34px; font-weight: 800; }
.pc-period { font-size: 13px; color: var(--text3); display: block; margin-top: 4px; }
.pc-users { font-size: 14px; color: var(--text2); margin-top: 4px; margin-bottom: 20px; }

.pc-features { list-style: none; margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.pc-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-bottom: 14px; color: var(--text2); }
.pc-features li.excluded { color: var(--text3); opacity: 0.5; }

.roi-section { margin-top: 72px; }
.roi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 56px; }
.roi-card h3 { font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 40px; letter-spacing: -0.3px; }

.roi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-bottom: 44px; }
.roi-input-group label { display: block; font-size: 13px; color: var(--text2); margin-bottom: 14px; font-weight: 500; }

.roi-slider { width: 100%; height: 4px; -webkit-appearance: none; appearance: none; background: rgba(255,255,255,0.06); border-radius: 4px; outline: none; }
.roi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--bg); box-shadow: 0 0 0 3px var(--accent-soft); }

.roi-value { display: block; margin-top: 10px; font-size: 20px; font-weight: 800; color: #FFFFFF; }

.roi-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-top: 36px; border-top: 1px solid var(--border); }
.roi-result { text-align: center; }
.roi-result-label { font-size: 13px; color: var(--text3); margin-bottom: 10px; font-weight: 500; }
.roi-result-number { font-size: 30px; font-weight: 900; letter-spacing: -1px; }

/* ========================================
   REVIEWS
   ======================================== */
.rating-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    display: inline-flex; gap: 48px;
    padding: 32px 56px; margin-top: 36px;
    align-items: center;
}
.mega-rating { font-size: 52px; font-weight: 900; letter-spacing: -2px; }
.rating-stars-large { color: var(--gold); font-size: 18px; letter-spacing: 3px; }

.rating-bars { min-width: 200px; }
.rb-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 12px; color: var(--text3); }
.rb-row span:first-child { width: 24px; }
.rb-row span:last-child { width: 28px; text-align: right; }
.rb-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.04); border-radius: 4px; overflow: hidden; }
.rb-fill { height: 100%; background: var(--gold); border-radius: 4px; }

.reviews-section { padding: 80px 0 120px; }
.reviews-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}
.review-card:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.rc-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.rc-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.review-card p { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; }
.rc-result { display: inline-block; padding: 5px 16px; background: var(--green-soft); border-radius: 100px; font-size: 12px; font-weight: 700; color: var(--green); margin-bottom: 18px; }

.rc-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); }
.rc-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-soft); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--accent2); flex-shrink: 0; }
.rc-author strong { font-size: 13px; display: block; }

/* ========================================
   FAQ
   ======================================== */
.faq-page-section { padding: 60px 0 120px; }

.faq-category { margin-bottom: 56px; }
.faq-category:last-child { margin-bottom: 0; }

.faq-cat-title {
    font-size: 18px; font-weight: 700; margin-bottom: 18px;
    padding-bottom: 14px; border-bottom: 1px solid var(--border);
    color: var(--text2);
}

.faq-list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--border-hover); }
.faq-item.active { border-color: rgba(255,255,255,0.2); }

.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    background: none; border: none; color: var(--text);
    font-size: 15px; font-weight: 600;
    cursor: pointer; text-align: left; font-family: inherit;
}
.faq-question svg { flex-shrink: 0; color: var(--text3); transition: transform var(--transition); }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--accent2); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text2); line-height: 1.7; }

.faq-contact { padding: 0 0 120px; }
.faq-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 64px; text-align: center;
}
.faq-contact-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 14px; }
.faq-contact-card p { color: var(--text2); margin-bottom: 32px; }

/* ========================================
   STORY / PROBLEM SECTION
   ======================================== */
.story-section { padding: 160px 0 120px; }
.story-block { text-align: center; }
.story-problems { display: flex; flex-direction: column; gap: 24px; margin-top: 56px; text-align: left; }

.story-problem {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: grid;
    grid-template-columns: 48px 1fr 160px;
    gap: 20px;
    align-items: start;
    transition: border-color var(--transition);
}
.story-problem:hover { border-color: rgba(239,68,68,0.2); }
.sp-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-icon.red { background: rgba(239,68,68,0.1); color: var(--red); }
.sp-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.sp-content p { font-size: 14px; color: var(--text2); line-height: 1.7; }
.sp-stat { text-align: right; }
.sp-stat-num { font-size: 36px; font-weight: 900; color: var(--red); display: block; letter-spacing: -1px; }
.sp-stat-label { font-size: 12px; color: var(--text3); line-height: 1.4; }

.story-arrow { display: flex; align-items: center; gap: 24px; margin-top: 48px; justify-content: center; }
.story-arrow-line { flex: 1; max-width: 160px; height: 1px; background: var(--gradient); }
.story-arrow-text { font-size: 16px; font-weight: 700; color: var(--accent2); white-space: nowrap; }

/* ========================================
   SCRIPT BUILDER MOCKUP
   ======================================== */
.app-script-builder { display: grid; grid-template-columns: 1fr 280px; gap: 16px; padding: 16px; }
.script-phases { display: flex; flex-direction: column; gap: 8px; }
.script-phase-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex; gap: 12px;
    transition: all var(--transition);
}
.script-phase-card.active { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.2); }
.spc-number { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.script-phase-card.active .spc-number { background: var(--accent); color: white; }
.spc-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.spc-text { font-size: 11px; color: var(--text2); line-height: 1.5; }
.spc-tags { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.spc-tag { font-size: 10px; padding: 2px 8px; border-radius: 100px; background: rgba(255,255,255,0.04); color: var(--text3); }
.spc-tag.green { background: var(--green-soft); color: var(--green); }

.script-ai-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 16px;
}
.sap-header { font-size: 12px; font-weight: 700; color: var(--accent2); display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.sap-suggestions { display: flex; flex-direction: column; gap: 10px; }
.sap-suggestion { display: flex; gap: 8px; font-size: 11px; line-height: 1.5; }
.sap-suggestion strong { display: block; color: var(--text); margin-bottom: 2px; }
.sap-suggestion span { color: var(--text2); }
.sap-icon { width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 10px; }
.sap-icon.green { background: var(--green-soft); color: var(--green); }
.sap-icon.blue { background: var(--accent-soft); color: var(--accent); }
.sap-icon.gold { background: var(--gold-soft); color: var(--gold); }
.sap-metrics { display: flex; gap: 16px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); }
.sap-metric { text-align: center; flex: 1; }
.sap-val { font-size: 20px; font-weight: 800; display: block; }
.sap-val.green { color: var(--green); }
.sap-val.blue { color: var(--accent); }
.sap-metric span:last-child { font-size: 10px; color: var(--text3); }

/* ========================================
   SCRIPT BUILDER IN SHOWCASE MOCKUP
   ======================================== */
.screen-script-builder { padding: 12px; }
.ssb-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.ssb-tabs { display: flex; gap: 4px; }
.ssb-tab { font-size: 10px; padding: 4px 10px; border-radius: 6px; color: var(--text3); cursor: pointer; }
.ssb-tab.active { background: var(--accent); color: white; font-weight: 600; }
.ssb-product { font-size: 9px; color: var(--text3); background: rgba(255,255,255,0.04); padding: 4px 10px; border-radius: 6px; }

.ssb-phases { display: flex; flex-direction: column; gap: 6px; }
.ssb-phase { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.ssb-phase.active { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }
.ssb-phase-head { display: flex; align-items: center; gap: 8px; }
.ssb-phase-num { width: 20px; height: 20px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ssb-phase.active .ssb-phase-num { background: var(--accent); color: white; }
.ssb-phase-name { font-size: 11px; font-weight: 600; flex: 1; }
.ssb-phase-score { font-size: 10px; font-weight: 700; }
.ssb-phase-score.green { color: var(--green); }
.ssb-phase-score.blue { color: var(--accent); }
.ssb-phase-body { font-size: 10px; color: var(--text2); line-height: 1.5; margin-top: 8px; padding-left: 28px; }
.ssb-ai-hint { font-size: 10px; color: var(--accent2); display: flex; align-items: center; gap: 6px; margin-top: 10px; padding: 8px 10px; background: rgba(255,255,255,0.04); border-radius: 6px; }

/* ========================================
   OBJECTION UI (VORWAND VS EINWAND)
   ======================================== */
.screen-objection-ui { padding: 12px; }
.sou-live-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.sou-live { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.sou-timer { font-size: 13px; font-weight: 700; font-variant-numeric: tabular-nums; color: var(--accent); }

.sou-detection { border-radius: 8px; padding: 12px; margin-bottom: 8px; }
.sou-detection.vorwand { background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.15); }
.sou-detection.einwand { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.15); }

.sou-det-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.sou-det-badge { font-size: 9px; font-weight: 800; letter-spacing: 1px; padding: 3px 10px; border-radius: 100px; }
.sou-det-badge.vorwand { background: rgba(239,68,68,0.12); color: var(--red); }
.sou-det-badge.einwand { background: rgba(255,255,255,0.12); color: var(--accent); }
.sou-det-confidence { font-size: 9px; color: var(--text3); }
.sou-det-quote { font-size: 11px; font-style: italic; color: var(--text2); margin-bottom: 8px; }
.sou-det-analysis { display: flex; flex-direction: column; gap: 6px; }
.sou-why, .sou-strategy { font-size: 10px; line-height: 1.5; }
.sou-why strong, .sou-strategy strong { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.sou-why strong { color: var(--text3); }
.sou-strategy strong { color: var(--green); }
.sou-why span, .sou-strategy span { color: var(--text2); }

/* ========================================
   PERSON ANALYSIS MOCKUP
   ======================================== */
.screen-person-analysis { padding: 12px; }

.spa-profile { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.spa-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.spa-info { flex: 1; }
.spa-name { font-size: 14px; font-weight: 700; display: block; }
.spa-role { font-size: 11px; color: var(--text2); display: block; }
.spa-company-meta { font-size: 9px; color: var(--text3); margin-top: 2px; }

.spa-score { text-align: center; }
.spa-score-ring { width: 48px; height: 48px; border-radius: 50%; border: 3px solid var(--green); display: flex; align-items: center; justify-content: center; }
.spa-score-num { font-size: 16px; font-weight: 800; color: var(--green); }
.spa-score-label { font-size: 8px; color: var(--text3); display: block; margin-top: 2px; }

.spa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.spa-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 8px; padding: 12px; }
.spa-card-title { font-size: 10px; font-weight: 700; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }

.spa-traits { display: flex; flex-direction: column; gap: 8px; }
.spa-trait { display: flex; flex-direction: column; gap: 2px; }
.spa-trait-name { font-size: 9px; color: var(--text3); }
.spa-trait-val { font-size: 11px; font-weight: 600; }
.spa-trait-val.blue { color: var(--accent); }
.spa-trait-val.red { color: var(--red); }

.spa-recommendations { display: flex; flex-direction: column; gap: 6px; }
.spa-rec { display: flex; align-items: start; gap: 6px; font-size: 10px; color: var(--text2); line-height: 1.4; }
.spa-rec-icon { font-size: 10px; flex-shrink: 0; margin-top: 1px; }
.spa-rec-icon.green { color: var(--green); }
.spa-rec-icon.red { color: var(--red); }
.spa-rec-icon.blue { color: var(--accent); }

/* ========================================
   CASE STUDIES
   ======================================== */
.case-studies-section { padding: 160px 0 120px; }

.case-studies-grid { display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }

.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all var(--transition);
}
.case-study-card:hover { border-color: var(--border-hover); }
.case-study-card.featured { border-color: rgba(255,255,255,0.2); background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.03)); }

.cs-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cs-company { display: flex; align-items: center; gap: 14px; }
.cs-logo { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); font-size: 15px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cs-name { font-size: 17px; font-weight: 700; }
.cs-meta { font-size: 12px; color: var(--text3); margin-top: 2px; }
.cs-result-badge { background: var(--green-soft); color: var(--green); font-size: 13px; font-weight: 800; padding: 8px 18px; border-radius: 100px; white-space: nowrap; }

.cs-challenge { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; padding: 16px; background: rgba(255,255,255,0.02); border-radius: var(--radius); border: 1px solid var(--border); }
.cs-challenge strong { color: var(--text); }

.cs-metrics { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.cs-metric { display: flex; flex-direction: column; gap: 6px; }
.cs-metric-label { font-size: 12px; font-weight: 600; color: var(--text3); }
.cs-metric-row { display: flex; align-items: center; gap: 16px; }
.cs-metric-before, .cs-metric-after { display: flex; align-items: baseline; gap: 8px; }
.cs-metric-val { font-size: 20px; font-weight: 800; }
.cs-metric-val.green { color: var(--green); }
.cs-metric-tag { font-size: 10px; padding: 2px 8px; border-radius: 100px; background: rgba(255,255,255,0.04); color: var(--text3); }
.cs-metric-tag.green { background: var(--green-soft); color: var(--green); }
.cs-metric-arrow { font-size: 16px; color: var(--text3); }

.cs-quote { margin-bottom: 20px; padding: 16px 20px; border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; background: rgba(255,255,255,0.03); }
.cs-quote blockquote { font-size: 14px; color: var(--text2); line-height: 1.7; font-style: italic; }
.cs-author { font-size: 12px; color: var(--text3); margin-top: 8px; }

.cs-total { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: var(--green-soft); border-radius: var(--radius); }
.cs-total-label { font-size: 14px; font-weight: 600; color: var(--green); }
.cs-total-val { font-size: 24px; font-weight: 900; color: var(--green); }

/* Case Study Aggregate */
.cs-aggregate {
    margin-top: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
}
.cs-agg-title { font-size: 14px; font-weight: 600; color: var(--text3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 32px; }
.cs-agg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.cs-agg-num { font-size: 42px; font-weight: 900; color: #FFFFFF; display: block; letter-spacing: -1px; }
.cs-agg-label { font-size: 13px; color: var(--text2); margin-top: 4px; display: block; }

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .showcase-block { grid-template-columns: 1fr; gap: 40px; }
    .showcase-block.reverse .showcase-text { order: 1; }
    .showcase-block.reverse .showcase-mockup-col { order: 2; }
    .results-mega-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-showcase { grid-template-columns: repeat(2, 1fr); }
    .testimonial-showcase > :last-child { display: none; }
    .ai-brain-layout { grid-template-columns: 1fr; gap: 48px; }
    .feature-block { grid-template-columns: 1fr; gap: 36px; }
    .feature-block.reverse { direction: ltr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .roi-grid { grid-template-columns: 1fr; }
    .roi-results { grid-template-columns: 1fr; gap: 16px; }
    .reviews-masonry { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .app-kpi-row { grid-template-columns: repeat(2, 1fr); }
    .app-panels { grid-template-columns: 1fr; }
    .story-problem { grid-template-columns: 48px 1fr; }
    .sp-stat { grid-column: 1 / -1; text-align: left; display: flex; gap: 8px; align-items: baseline; }
    .cs-agg-grid { grid-template-columns: repeat(2, 1fr); }
    .app-script-builder { grid-template-columns: 1fr; }
    .spa-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-links {
        display: none; position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--bg); flex-direction: column;
        align-items: center; justify-content: center;
        gap: 32px; z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-links a { font-size: 22px; font-weight: 600; }
    .mobile-menu-btn { display: flex; z-index: 1001; }
    .btn-nav { display: none; }

    .hero { padding: 110px 0 0; }
    .hero-headline { font-size: clamp(24px, 6vw, 36px); letter-spacing: -1px; margin-bottom: 16px; }
    .hero-sub { font-size: 14px; }
    .hero-trust-bar { flex-direction: column; align-items: center; gap: 16px; }
    .hero-devices { transform: none !important; max-width: 100%; }
    .hero-proof { flex-direction: column; gap: 8px; }
    .app-sidebar { display: none; }
    .app-kpi-row { grid-template-columns: 1fr 1fr; }
    .mockup-app-ui { min-height: 360px; }
    .results-mega-grid { grid-template-columns: 1fr; }
    .testimonial-showcase { grid-template-columns: 1fr; }
    .testimonial-showcase > :last-child { display: block; }
    .footer-top { grid-template-columns: 1fr; gap: 44px; }
    .footer-links { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .rating-summary { flex-direction: column; gap: 24px; padding: 28px 36px; }
    .reviews-masonry { grid-template-columns: 1fr; }
    .swiss-card { padding: 44px 28px; }
    .cta-mega { padding: 44px 28px; }
    .roi-card { padding: 36px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .screen-ai-demo { flex-direction: column; }
    .sad-arrow { transform: rotate(90deg); }
    .cta-trust-row { flex-direction: column; align-items: center; gap: 8px; }
    .sau-grid { grid-template-columns: 1fr; }
    .sau-footer { flex-direction: column; gap: 8px; }
    .showcase-stats { gap: 24px; }
    .story-problem { grid-template-columns: 1fr; text-align: center; }
    .sp-icon { margin: 0 auto; }
    .sp-stat { justify-content: center; }
    .cs-header { flex-direction: column; gap: 12px; align-items: flex-start; }
    .cs-metric-row { flex-wrap: wrap; }
    .cs-agg-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .cs-agg-num { font-size: 32px; }
}

@media (max-width: 480px) {
    .hero-cta-center { flex-direction: column; }
    .hero-cta-center .btn { width: 100%; }
    .device-iphone { display: none; }
    .footer-links { grid-template-columns: 1fr; gap: 28px; }
    .swiss-badges { flex-direction: column; align-items: center; }
    .showcase-stats { flex-direction: column; gap: 12px; }
    .fb-stats-row { flex-direction: column; gap: 14px; }
    .page-hero { padding: 150px 0 56px; }
    .app-kpi-row { grid-template-columns: 1fr; }
}
