/* ===== CHATBRIDGE - WEBSITE STYLES ===== */

/* === CSS VARIABELEN === */
:root {
    --bg-primary: #0a0a1a;
    --bg-secondary: #0f0f2a;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.08);
    --accent-green: #25D366;
    --accent-green-dark: #128C7E;
    --accent-blue: #4f46e5;
    --accent-blue-light: #818cf8;
    --accent-purple: #7c3aed;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.18);
    --glow-green: 0 0 40px rgba(37, 211, 102, 0.3);
    --glow-blue: 0 0 40px rgba(79, 70, 229, 0.3);
    --radius: 16px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', 'DM Sans', system-ui, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* === CANVAS PARTICLES === */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* === RUIS/OVERLAY === */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(37,211,102,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(79,70,229,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

/* === FONT AWESOME ICON HELPERS === */
.icon-box-sm {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.fa-icon-green  { color: var(--accent-green); }
.fa-icon-blue   { color: var(--accent-blue-light); }
.fa-icon-yellow { color: #eab308; }
.fa-icon-purple { color: #a855f7; }
.fa-icon-pink   { color: #ec4899; }
.fa-icon-cyan   { color: #06b6d4; }

.nav-logo span {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover { color: var(--text-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--text-primary); }

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* === KNOPPEN === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-green), #1db954);
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-outline-green {
    background: transparent;
    color: var(--accent-green);
    border: 1.5px solid var(--accent-green);
}

.btn-outline-green:hover {
    background: var(--accent-green);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--glow-green);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 0.65rem 1rem;
}

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

/* === HAMBURGER MENU === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,26,0.97);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.open { transform: translateX(0); display: flex; }

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: var(--transition);
}

.mobile-nav a:hover { color: var(--accent-green); }

/* === SECTIES === */
section { position: relative; z-index: 1; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding { padding: 6rem 0; }
.section-padding-sm { padding: 4rem 0; }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(37,211,102,0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 6s ease-in-out infinite;
}

.hero-bg-glow-2 {
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease;
}

.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-stat { }
.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-phone-mockup {
    position: relative;
    z-index: 2;
}

.hero-phone-mockup img {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 40px 80px rgba(37,211,102,0.2));
    animation: float 4s ease-in-out infinite;
}

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

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    padding: 0.75rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    animation: floatCard 5s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 15%; left: -10%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 20%; right: -5%;
    animation-delay: 1.5s;
}

.hero-floating-card.card-3 {
    bottom: 5%; left: 5%;
    animation-delay: 0.8s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.card-icon {
    font-size: 1.4rem;
}

/* === BRANDS / CLIENTS === */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-label {
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.brands-track {
    overflow: hidden;
    position: relative;
}

.brands-track::before,
.brands-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
}

.brands-track::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.brands-track::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.brands-slide {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: slideLeft 20s linear infinite;
    width: max-content;
}

.brands-slide img {
    height: 44px !important;
    opacity: 0.85;
}

.brands-slide span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
    letter-spacing: 1px;
    white-space: nowrap;
}

@keyframes slideLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* === HOE HET WERKT (steps) === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

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

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,211,102,0.05), rgba(79,70,229,0.05));
    opacity: 0;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.step-number {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* === FEATURES === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-icon.green { background: rgba(37,211,102,0.15); }
.feature-icon.blue { background: rgba(79,70,229,0.15); }
.feature-icon.yellow { background: rgba(234,179,8,0.15); }
.feature-icon.purple { background: rgba(168,85,247,0.15); }
.feature-icon.pink { background: rgba(236,72,153,0.15); }
.feature-icon.cyan { background: rgba(6,182,212,0.15); }

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* === DEMO SECTIE === */
.demo-section {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.demo-container {
    text-align: center;
}

.demo-screen {
    background: #0d0d1a;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 3rem;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.demo-screen-bar {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-dot { width: 12px; height: 12px; border-radius: 50%; }
.demo-dot.red { background: #ff5f57; }
.demo-dot.yellow { background: #febc2e; }
.demo-dot.green { background: #28c840; }

.demo-stream-ticker {
    background: #1a1a2e;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.demo-stream-badge {
    background: linear-gradient(135deg, var(--accent-green), #1db954);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-ticker-wrap { flex: 1; overflow: hidden; }

.demo-ticker {
    display: flex;
    gap: 3rem;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

.demo-ticker span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.demo-ticker .name {
    color: var(--accent-green);
    font-weight: 600;
}

@keyframes ticker {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

.demo-dashboard {
    padding: 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    min-height: 300px;
}

.demo-msg-list { display: flex; flex-direction: column; gap: 0.75rem; }

.demo-msg {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    animation: slideInMsg 0.5s ease forwards;
    opacity: 0;
}

.demo-msg:nth-child(1) { animation-delay: 0.5s; }
.demo-msg:nth-child(2) { animation-delay: 1s; }
.demo-msg:nth-child(3) { animation-delay: 1.5s; }
.demo-msg:nth-child(4) { animation-delay: 2s; }

@keyframes slideInMsg {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.demo-msg-info { flex: 1; }
.demo-msg-sender { font-size: 0.8rem; font-weight: 700; color: var(--accent-green); }
.demo-msg-text { font-size: 0.9rem; color: var(--text-secondary); }

.demo-msg-btns { display: flex; gap: 0.5rem; }

.demo-btn-approve {
    background: rgba(37,211,102,0.15);
    color: var(--accent-green);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.demo-btn-approve:hover { background: var(--accent-green); color: #fff; }

.demo-btn-decline {
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.demo-btn-decline:hover { background: rgba(239,68,68,0.3); }

.demo-btn-approve:disabled,
.demo-btn-decline:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.demo-all-done {
    text-align: center;
    padding: 2rem 1rem;
    color: #25D366;
    animation: fadeIn 0.4s ease;
}

.demo-all-done i { font-size: 2rem; display: block; margin-bottom: 0.5rem; }

.demo-reset-btn {
    background: rgba(37,211,102,0.15);
    color: #25D366;
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 8px;
    padding: 0.45rem 1rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-body);
}

.demo-reset-btn:hover { background: rgba(37,211,102,0.28); }

/* Brand logo cards */
.brand-logo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 10px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s;
}
.brand-logo-card:hover { background: rgba(255,255,255,0.08); }

.demo-stats-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-stat-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}

.demo-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-green);
}

.demo-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* === PRICING === */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}

.toggle-label.active { color: var(--text-primary); }

.toggle-switch {
    position: relative;
    width: 56px; height: 28px;
    cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(28px);
}

.save-badge {
    background: rgba(37,211,102,0.15);
    color: var(--accent-green);
    border: 1px solid rgba(37,211,102,0.3);
    border-radius: 50px;
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.pricing-card.popular {
    border-color: rgba(37,211,102,0.4);
    background: rgba(37,211,102,0.04);
    transform: scale(1.05);
}

.pricing-card.popular::before {
    background: linear-gradient(90deg, var(--accent-green), var(--accent-blue));
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.pricing-card.popular:hover { transform: scale(1.05) translateY(-4px); }

.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-price .currency { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-price .amount { font-size: 3.5rem; font-weight: 900; line-height: 1; }
.pricing-price .period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0.5rem; }

.pricing-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.pricing-feature .check {
    color: var(--accent-green);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-feature .cross {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-feature.disabled { color: var(--text-muted); }

.pricing-btn { width: 100%; text-align: center; }

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    background: rgba(79,70,229,0.1);
    border: 1px solid rgba(79,70,229,0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-blue-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.testimonial-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 1rem; }

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

.testimonial-name { font-size: 0.9rem; font-weight: 700; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* === CTA === */
.cta-section {
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-blob {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulseGlow 5s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

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

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-note span { display: flex; align-items: center; gap: 0.35rem; }

/* === FOOTER === */
.footer {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-socials { display: flex; gap: 0.75rem; }

.social-link {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.social-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--text-primary); padding-left: 4px; }

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-bottom-text a {
    color: var(--accent-green);
}

/* === HOW PAGE SPECIFIEK === */
.how-hero {
    padding-top: 120px;
    padding-bottom: 4rem;
}

.step-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.step-detail:nth-child(even) { direction: rtl; }
.step-detail:nth-child(even) > * { direction: ltr; }
.step-detail:last-child { border-bottom: none; }

.step-detail-num {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, rgba(37,211,102,0.3), rgba(79,70,229,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.step-detail-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.step-detail-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.step-detail-features { display: flex; flex-direction: column; gap: 0.5rem; }

.step-detail-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.step-detail-feature::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
}

.step-visual {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.step-visual-icon {
    font-size: 6rem;
    opacity: 0.8;
    animation: float 4s ease-in-out infinite;
}

/* Mockup phone in steps */
.step-qr-mockup {
    text-align: center;
}

.step-qr-box {
    width: 180px; height: 180px;
    background: #fff;
    border-radius: 12px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3));
}

/* === FAQ === */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: var(--transition);
}

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

.faq-chevron {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

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

/* === CONTACT PAGE === */
.contact-hero {
    padding-top: 140px;
    padding-bottom: 2rem;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(37,211,102,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-info-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.contact-info-text { font-size: 0.9rem; color: var(--text-secondary); }
.contact-info-text a { color: var(--accent-green); }

/* === CONTACT FORM === */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent-green);
    background: rgba(37,211,102,0.04);
    box-shadow: 0 0 0 3px rgba(37,211,102,0.1);
}

.form-control::placeholder { color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-select option { background: #1a1a2e; color: var(--text-primary); }

.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 0.5rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: none;
}

.alert-success {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    color: var(--accent-green);
    display: block;
}

.alert-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    color: #ef4444;
    display: block;
}

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

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

/* === DIVIDER === */
.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    margin: 0;
    opacity: 0.5;
}

/* === AI REPLY GRID === */
.ai-reply-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 2rem; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .step-detail { grid-template-columns: 1fr; }
    .step-detail:nth-child(even) { direction: ltr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons { display: none; }
    .hamburger { display: flex; }
    .steps-grid { grid-template-columns: 1fr; }
    .steps-grid::before { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .demo-dashboard { grid-template-columns: 1fr; }
    .demo-stats-panel { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .hero-floating-card { display: none; }
    .ai-reply-grid { grid-template-columns: 1fr; gap: 0; }
    .ai-reply-btn { margin-bottom: 3rem !important; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section-padding { padding: 4rem 0; }
    .pricing-card { padding: 1.75rem 1.25rem; }
    .contact-form-card { padding: 1.75rem 1.25rem; }
}
