/* ========== VARIABLES & RESET ========== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0f172a;
    --accent: #10b981;
    --bg-body: #ffffff;
    --bg-gray: #f8fafc;
    --text-main: #334155;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --container: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-bg { background-color: var(--bg-gray); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

.grid { display: grid; gap: 40px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--text-dark);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--text-dark);
    background-color: var(--bg-gray);
}

.btn-lg { padding: 18px 40px; font-size: 18px; }

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 14px 0;
}

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

.logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span { color: var(--primary); }

.nav-links {
    display: none;
    gap: 28px;
    align-items: center;
}

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

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

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

.mobile-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

/* HERO */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, #dbeafe 0%, #eff6ff 40%, #ffffff 100%);
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .hero h1 { font-size: 58px; }
}

/* CARDS */
.card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card h3 { margin-bottom: 12px; font-size: 20px; }
.card p { color: var(--text-light); font-size: 15px; }

/* TIMELINE */
.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 30px;
    border-left: 2px solid rgba(37, 99, 235, 0.3);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
}

/* MODULES */
.modules-list {
    background: white;
    border-radius: var(--radius);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
    overflow: hidden;
}

.module-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    padding: 28px 32px;
    border-bottom: 1px solid rgba(37, 99, 235, 0.18);
    gap: 20px;
    align-items: start;
    transition: background 0.2s ease;
}

.module-item:hover { background: rgba(37, 99, 235, 0.03); }
.module-item:last-child { border-bottom: none; }

.module-item > div:nth-child(3) { grid-column: 1 / -1; }

@media (min-width: 768px) {
    .module-item { grid-template-columns: 48px 220px 1fr; gap: 24px; }
    .module-item > div:nth-child(3) { grid-column: auto; }
}

.module-title { font-weight: 700; color: var(--text-dark); }

.module-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon-blue   { background: #dbeafe; color: #2563eb; }
.module-icon-amber  { background: #fef3c7; color: #d97706; }
.module-icon-green  { background: #dcfce7; color: #16a34a; }
.module-icon-purple { background: #ede9fe; color: #7c3aed; }
.module-icon-rose   { background: #ffe4e6; color: #e11d48; }

/* ROI */
.roi-box {
    background: var(--secondary);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    border: 2px solid rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.12);
}

.roi-stat {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

/* BEFORE / AFTER - ANIMATED TICKER */
.day-comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}

@media (min-width: 768px) {
    .day-comparison { grid-template-columns: 1fr 1fr; gap: 0; }
}

.day-card {
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.day-card.before {
    background: linear-gradient(135deg, #1a1215 0%, #2a1520 50%, #1e1018 100%);
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(248, 113, 113, 0.15);
    border-bottom: none;
}

.day-card.after {
    background: linear-gradient(135deg, #0a1a14 0%, #0d2818 50%, #081a10 100%);
    border-radius: 0 0 16px 16px;
    border: 1px solid rgba(74, 222, 128, 0.15);
    border-top: none;
}

@media (min-width: 768px) {
    .day-card.before { border-radius: 16px 0 0 16px; border-bottom: 1px solid rgba(248, 113, 113, 0.15); border-right: none; }
    .day-card.after { border-radius: 0 16px 16px 0; border-top: 1px solid rgba(74, 222, 128, 0.15); border-left: none; }
}

.day-card h3 {
    margin-bottom: 28px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.day-card.before h3 { color: #f87171; }
.day-card.after h3 { color: #4ade80; }

.day-divider {
    display: none;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.15), transparent);
    z-index: 2;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .day-divider { display: block; }
}

.ticker-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 16px;
    margin-bottom: 8px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.ticker-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.day-card.before .ticker-item {
    background: rgba(248, 113, 113, 0.06);
    border: 1px solid rgba(248, 113, 113, 0.12);
}

.day-card.before .ticker-item.visible {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.2);
}

.day-card.after .ticker-item {
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.12);
}

.day-card.after .ticker-item.visible {
    background: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.2);
}

.ticker-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    min-width: 58px;
    flex-shrink: 0;
    padding-top: 2px;
}

.day-card.before .ticker-time { color: #f87171; }
.day-card.after .ticker-time { color: #4ade80; }

.ticker-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
}

.ticker-mood {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.day-card.before .ticker-mood {
    background: rgba(248, 113, 113, 0.15);
    color: #fca5a5;
}

.day-card.after .ticker-mood {
    background: rgba(74, 222, 128, 0.15);
    color: #86efac;
}

.ticker-replay {
    display: none;
    margin-top: 16px;
    text-align: center;
}

.ticker-replay.show { display: block; }

.ticker-replay button {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.ticker-replay button:hover {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.8);
}

/* TICKER SUMMARY */
.ticker-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(74, 222, 128, 0.08) 100%);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 16px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ticker-summary.visible {
    opacity: 1;
    transform: translateY(0);
}

.ticker-summary-item {
    text-align: center;
}

.ticker-summary-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
    margin-bottom: 4px;
}

.ticker-summary-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 520px) {
    .ticker-summary {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px 16px;
    }
    .ticker-summary-number { font-size: 26px; }
    .ticker-summary-label { font-size: 11px; }
    .ticker-icon { display: none; }
    .ticker-item { gap: 10px; padding: 10px 12px; }
    .ticker-time { min-width: 44px; font-size: 12px; }
    .ticker-text { font-size: 13px; }
    .day-card { padding: 24px 18px; }
    .day-card h3 { font-size: 15px; margin-bottom: 20px; letter-spacing: 1.5px; }
    .ticker-mood { font-size: 11px; padding: 4px 12px; }
    .ticker-heading { font-size: 24px !important; }
    #transformation { padding: 50px 0 !important; }
    .blue-box { padding: 24px 20px !important; }
    .blue-box-heading { font-size: 24px !important; }
    .proof-card { padding: 24px 20px; }
    .proof-stat { gap: 10px; }
    .proof-stat .number { font-size: 20px; }
    .pricing-card { padding: 28px 20px; }
    .price { font-size: 32px; }
    .price span { font-size: 14px; }
    .features-list li { font-size: 14px; gap: 8px; }
    .btn-lg { padding: 16px 24px; font-size: 16px; }
    #tab-individual, #tab-company { padding: 12px 20px !important; font-size: 13px !important; }
    #price-custom { font-size: 24px !important; }
}

/* TICKER ICON */
.ticker-icon {
    font-size: 16px;
    min-width: 24px;
    flex-shrink: 0;
    text-align: center;
    padding-top: 1px;
}

/* INTERACTIVE DEMO */
.demo-cmd {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 100px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.demo-cmd:hover {
    background: rgba(37, 99, 235, 0.18);
    border-color: rgba(37, 99, 235, 0.4);
    color: #bfdbfe;
    transform: translateY(-1px);
}

.demo-cmd.active-cmd {
    background: rgba(37, 99, 235, 0.25);
    border-color: #2563eb;
    color: #ffffff;
}

.demo-cmd-icon { font-size: 15px; }

.demo-window {
    max-width: 680px;
    margin: 0 auto;
    background: #0c1018;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.04);
}

.demo-topbar {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    gap: 14px;
}

.demo-dots {
    display: flex;
    gap: 7px;
}

.demo-dots span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: block;
}

.demo-topbar-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #94a3b8;
    flex: 1;
}

.demo-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4ade80;
    font-weight: 500;
}

.demo-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    display: block;
    animation: demo-pulse 2s ease-in-out infinite;
}

@keyframes demo-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.demo-chat {
    padding: 24px 20px;
    min-height: 320px;
    max-height: 440px;
    overflow-y: auto;
}

@media (max-width: 520px) {
    .demo-chat { min-height: 280px; padding: 16px 14px; }

    /* Buttons: horizontal scroll on mobile */
    #demoCommands {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        padding: 0 4px 8px;
        scrollbar-width: none;
        gap: 8px !important;
    }
    #demoCommands::-webkit-scrollbar { display: none; }

    .demo-cmd {
        padding: 8px 14px;
        font-size: 12px;
        flex-shrink: 0;
    }
    .demo-cmd-icon { font-size: 13px; }

    /* Module badge smaller */
    .demo-module-pill {
        font-size: 11px;
        padding: 5px 14px;
    }

    /* Source badge */
    .demo-source { font-size: 10px; padding: 5px 8px; }

    /* Ghost style boxes */
    .demo-ghost-standard,
    .demo-ghost-custom {
        padding: 8px 10px;
        font-size: 12px;
    }

    /* Chat bubbles */
    .demo-msg-ai .demo-bubble {
        max-width: 94%;
        padding: 12px 14px;
        font-size: 13px;
    }
    .demo-msg-user .demo-bubble {
        font-size: 13px;
        padding: 10px 14px;
    }
}

.demo-welcome {
    text-align: center;
    padding: 40px 20px;
}

.demo-welcome-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.demo-welcome-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.demo-welcome-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

/* Chat messages */
.demo-msg {
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    animation: demo-msg-in 0.35s ease forwards;
}

@keyframes demo-msg-in {
    to { opacity: 1; transform: translateY(0); }
}

.demo-msg-user {
    display: flex;
    justify-content: flex-end;
}

.demo-msg-user .demo-bubble {
    background: #2563eb;
    color: #ffffff;
    border-radius: 16px 16px 4px 16px;
    padding: 12px 16px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
}

.demo-msg-ai {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.demo-msg-avatar {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.demo-msg-ai .demo-bubble {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: #cbd5e1;
    border-radius: 4px 16px 16px 16px;
    padding: 14px 18px;
    max-width: 88%;
    font-size: 14px;
    line-height: 1.7;
}

.demo-bubble strong {
    color: #e2e8f0;
    font-weight: 600;
}

.demo-bubble .demo-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 4px;
}

.demo-tag-red { background: rgba(248,113,113,0.15); color: #fca5a5; }
.demo-tag-yellow { background: rgba(250,204,21,0.15); color: #fde68a; }
.demo-tag-green { background: rgba(74,222,128,0.15); color: #86efac; }
.demo-tag-blue { background: rgba(96,165,250,0.15); color: #93c5fd; }

/* Module badge */
.demo-module-badge {
    text-align: center;
    margin-bottom: 16px;
    display: none;
}

.demo-module-badge.visible {
    display: block;
    animation: demo-msg-in 0.3s ease forwards;
}

.demo-module-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: rgba(37, 99, 235, 0.10);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 100px;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

/* Source badge */
.demo-source {
    font-size: 11px;
    color: #64748b;
    padding: 6px 10px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 2px solid rgba(37, 99, 235, 0.3);
    line-height: 1.5;
}

/* Ghost style comparison */
.demo-ghost-standard {
    opacity: 0.5;
    font-style: italic;
    padding: 10px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
    line-height: 1.6;
}

.demo-ghost-custom {
    padding: 10px 12px;
    background: rgba(37, 99, 235, 0.06);
    border-radius: 8px;
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-size: 13px;
    line-height: 1.6;
}

/* ChatGPT vs SecondBrain comparison */
.demo-compare {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.demo-compare-item {
    flex: 1;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.demo-compare-gpt {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #64748b;
}

.demo-compare-sb {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: #cbd5e1;
}

.demo-compare-label {
    font-weight: 600;
    font-size: 11px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-compare-gpt .demo-compare-label { color: #64748b; }
.demo-compare-sb .demo-compare-label { color: #60a5fa; }

.demo-compare-vs {
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 520px) {
    .demo-compare {
        flex-direction: column;
        gap: 8px;
    }
    .demo-compare-vs {
        display: none;
    }
    .demo-compare-item {
        padding: 12px 14px;
        font-size: 12px;
    }
    .demo-compare-label {
        font-size: 10px;
    }
}

.demo-typing {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.demo-typing-dots {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px 16px 16px 16px;
    padding: 14px 20px;
    display: flex;
    gap: 5px;
}

.demo-typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #475569;
    display: block;
    animation: demo-dot-bounce 1.4s ease-in-out infinite;
}

.demo-typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.demo-typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes demo-dot-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-5px); opacity: 1; }
}

.demo-progress {
    margin-top: 10px;
    background: rgba(255,255,255,0.06);
    border-radius: 6px;
    height: 6px;
    overflow: hidden;
}

.demo-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #10b981);
    border-radius: 6px;
    width: 0;
    transition: width 0.4s ease;
}

.demo-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 8px 0;
}

/* COMPARISON TABLE */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.comparison-table th {
    background: var(--bg-gray);
    font-weight: 600;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr.highlight {
    background: linear-gradient(90deg, #dbeafe, #eff6ff);
    outline: 2px solid rgba(37, 99, 235, 0.3);
    outline-offset: -1px;
}

.comparison-table tr.highlight td {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 16px;
}

.comparison-table tr.highlight td:first-child {
    border-left: 3px solid var(--primary);
}

@media (max-width: 767px) {
    .comparison-table { font-size: 13px; }
    .comparison-table th, .comparison-table td { padding: 12px 10px; }
}

/* SOCIAL PROOF */
.proof-card {
    background: white;
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
}

.proof-stat {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.proof-stat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.proof-stat .number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-width: 100px;
    line-height: 1;
}

.proof-stat span:not(.number) {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.4;
}

/* PRICING */
.pricing-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.15), 0 0 0 4px rgba(37, 99, 235, 0.05);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 20px 0;
}

.price span { font-size: 16px; font-weight: 500; color: var(--text-light); }

.features-list { margin: 30px 0; flex-grow: 1; }
.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 15px;
}

.features-list svg { 
    color: var(--accent); 
    min-width: 20px;
    margin-top: 3px;
}

/* COUNTDOWN STARTER KIT */
.sk-tile {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px 10px;
    min-width: 68px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.sk-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}
.sk-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.1;
}
.sk-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}
.sk-sep {
    font-size: 28px;
    font-weight: 700;
    color: #cbd5e1;
    align-self: center;
    padding-bottom: 14px;
    animation: sk-blink 1s ease-in-out infinite;
}
@keyframes sk-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
@keyframes sk-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* GUARANTEE */
.guarantee-box {
    display: flex;
    align-items: start;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #93c5fd;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.1);
}

@media (max-width: 767px) {
    .guarantee-box { flex-direction: column; padding: 28px 20px; }
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

/* FOOTER */
footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 40px 0;
    font-size: 14px;
}

footer a { color: #94a3b8; }
footer a:hover { color: white; }

/* ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ========== COOKIE BANNER ========== */
/* Cookie Banner */
.cb-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.cb-overlay.cb-visible { opacity: 1; pointer-events: auto; }

.cb-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.cb-banner.cb-visible { transform: translateY(0); }

.cb-inner {
    max-width: 720px;
    margin: 0 auto 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 -4px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.04);
    padding: 28px 28px 24px;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 767px) {
    .cb-inner {
        margin: 0;
        border-radius: 16px 16px 0 0;
        padding: 24px 20px 20px;
    }
}

.cb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cb-header svg { flex-shrink: 0; }

.cb-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #0f172a;
}

.cb-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cb-text a {
    color: #2563eb;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cb-text a:hover { color: #1d4ed8; }

/* Buttons - EQUAL SIZE for RODO compliance */
.cb-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

@media (max-width: 520px) {
    .cb-buttons {
        grid-template-columns: 1fr;
    }
}

.cb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
    line-height: 1.3;
}

.cb-btn-accept {
    background: #2563eb;
    color: #ffffff;
}
.cb-btn-accept:hover { background: #1d4ed8; }

.cb-btn-reject {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}
.cb-btn-reject:hover { background: #e2e8f0; }

.cb-btn-settings {
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #e2e8f0;
}
.cb-btn-settings:hover { background: #e2e8f0; }

/* Settings Panel */
.cb-settings-panel {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.cb-settings-panel.cb-open { display: block; }

.cb-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
}
.cb-option:last-child { border-bottom: none; }

.cb-option-info { flex: 1; padding-right: 16px; }

.cb-option-name {
    font-weight: 600;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 2px;
}

.cb-option-desc {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.4;
}

/* Toggle switch */
.cb-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.cb-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cb-slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.25s;
}

.cb-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: transform 0.25s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.cb-toggle input:checked + .cb-slider { background: #2563eb; }
.cb-toggle input:checked + .cb-slider::before { transform: translateX(20px); }
.cb-toggle input:disabled + .cb-slider { background: #10b981; cursor: default; opacity: 0.7; }
.cb-toggle input:disabled:checked + .cb-slider { background: #10b981; }

.cb-save-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.cb-btn-save {
    padding: 12px 28px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}
.cb-btn-save:hover { background: #1d4ed8; }

.cb-locked-label {
    font-size: 11px;
    color: #10b981;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
