/* ═══════════════════════════════════════════════════════
   QUALITY WEBS × KEKA — WEBINAR LANDING PAGE
   Complete Modern SaaS Theme
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────── */
:root {
    --primary:       #4f46e5;
    --primary-light: #818cf8;
    --primary-dark:  #3730a3;
    --secondary:     #06b6d4;
    --accent:        #f43f5e;
    --success:       #10b981;
    --warning:       #f59e0b;

    --bg-main:  #ffffff;
    --bg-light: #f8fafc;
    --bg-dark:  #0f172a;

    --text-main:  #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;

    --border:  #e2e8f0;

    --section-y:   5rem;
    --radius:      16px;
    --radius-sm:   8px;
    --radius-full: 9999px;

    --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.12), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 40px -8px rgb(0 0 0 / 0.18);
    --shadow-glow: 0 0 25px 0 rgba(79, 70, 229, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-main);
    background: var(--bg-main);
    line-height: 1.65;
    overflow-x: hidden;
}

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

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); margin-bottom: 1.25rem; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: 1.375rem; margin-bottom: 0.5rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { margin-bottom: 1rem; }

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-primary  { color: var(--primary); }
.text-white    { color: #fff; }
.text-muted    { color: var(--text-muted); }
.text-red      { color: var(--accent); }
.font-bold     { font-weight: 700; }
.text-center   { text-align: center; }
.mb-4          { margin-bottom: 1rem; }
.mb-6          { margin-bottom: 1.5rem; }

/* ── Layout ─────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container-narrow { max-width: 800px; }
.section       { padding: var(--section-y) 0; }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.bg-light   { background-color: var(--bg-light); }
.bg-dark    { background-color: var(--bg-dark); }
.bg-primary { background-color: var(--primary); }

.grid   { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.row         { display: flex; flex-wrap: wrap; gap: 3rem; }
.col-6       { flex: 1 1 380px; }
.align-center { align-items: center; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.p-12 { padding: 3rem; }
.w-full { width: 100%; }

/* ── Section Tag ─────────────────────────────────── */
.section-tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: #e0e7ff;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}
.section-tag.light {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #6366f1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm   { padding: 0.5rem 1.2rem; font-size: 0.875rem; }
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    border-radius: var(--radius-full);
}

.glow-effect {
    animation: glowPulse 2.5s infinite;
}
@keyframes glowPulse {
    0%   { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.5); }
    70%  { box-shadow: 0 0 0 18px rgba(79, 70, 229, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
}

/* ── Navbar ──────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1;
    color: var(--text-main);
}
.logo-text span { color: var(--primary); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--primary); }

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* ── Mobile Menu ─────────────────────────────────── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}
.mobile-nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
    padding: 9rem 0 5rem;
    background: radial-gradient(ellipse at 80% 20%, #e0e7ff 0%, #f0f9ff 40%, #fff 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Animated particles */
.hero-bg-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-bg-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
}
.hero-bg-particles span:nth-child(1)  { width: 400px; height: 400px; left: -10%; top: -10%; background: radial-gradient(circle, rgba(79,70,229,0.08) 0%, transparent 70%); animation-duration: 20s; animation-delay: 0s; opacity:1; }
.hero-bg-particles span:nth-child(2)  { width: 300px; height: 300px; right: 5%; top: 20%; background: radial-gradient(circle, rgba(6,182,212,0.07) 0%, transparent 70%); animation-duration: 15s; animation-delay: -5s; opacity:1; }
.hero-bg-particles span:nth-child(3)  { width: 200px; height: 200px; left: 30%; bottom: -5%; background: radial-gradient(circle, rgba(79,70,229,0.06) 0%, transparent 70%); animation-duration: 18s; animation-delay: -10s; opacity:1; }
.hero-bg-particles span:nth-child(4)  { width: 12px; height: 12px; left: 20%; top: 30%; background: var(--primary); animation-duration: 8s; animation-delay: -2s; opacity: 0.15; }
.hero-bg-particles span:nth-child(5)  { width: 8px;  height: 8px;  left: 70%; top: 60%; background: var(--secondary); animation-duration: 12s; animation-delay: -4s; opacity: 0.2; }
.hero-bg-particles span:nth-child(6)  { width: 10px; height: 10px; left: 50%; top: 20%; background: var(--primary-light); animation-duration: 10s; animation-delay: -7s; opacity: 0.15; }
.hero-bg-particles span:nth-child(7)  { width: 6px;  height: 6px;  left: 80%; top: 40%; background: var(--accent); animation-duration: 9s; animation-delay: -3s; opacity: 0.2; }
.hero-bg-particles span:nth-child(8)  { width: 14px; height: 14px; left: 10%; top: 70%; background: var(--secondary); animation-duration: 14s; animation-delay: -6s; opacity: 0.1; }
.hero-bg-particles span:nth-child(9)  { width: 7px;  height: 7px;  left: 60%; top: 80%; background: var(--primary); animation-duration: 11s; animation-delay: -1s; opacity: 0.15; }
.hero-bg-particles span:nth-child(10) { width: 9px;  height: 9px;  left: 40%; top: 50%; background: var(--warning); animation-duration: 16s; animation-delay: -8s; opacity: 0.15; }

@keyframes floatParticle {
    0%   { transform: translateY(0px) rotate(0deg); }
    50%  { transform: translateY(-30px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { flex: 1 1 480px; }
.hero-visual  { flex: 1 1 400px; }

.badge {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    background: linear-gradient(135deg, #fee2e2, #fef3c7);
    color: #92400e;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid #fed7aa;
}

.subheadline {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}
.subheadline strong { color: var(--text-main); }

/* ── Hero Benefits ───────────────────────────────── */
.hero-benefits {
    list-style: none;
    margin-bottom: 2rem;
}
.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.65rem;
    font-weight: 500;
    font-size: 1rem;
}
.check-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ── Webinar Details Box ─────────────────────────── */
.webinar-details-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    background: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    margin-bottom: 1.75rem;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.detail-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.detail-item small {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.detail-item strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
}

/* ── Countdown ───────────────────────────────────── */
.countdown-wrapper {
    margin-bottom: 1rem;
}
.countdown-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.countdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-dark);
    color: #fff;
    border-radius: var(--radius-sm);
    padding: 0.6rem 1rem;
    min-width: 58px;
}
.countdown-unit span {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.countdown-unit small {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-top: 0.2rem;
}
.countdown-sep {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}
.countdown-live {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
    animation: pulseLive 1s infinite;
}
@keyframes pulseLive {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ── Hero Scroll Hint ────────────────────────────── */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
}
.scroll-arrow {
    font-size: 1.25rem;
    animation: bounceDown 1.5s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ── Registration Form Card ──────────────────────── */
.form-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.form-header h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.form-header p  { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.75rem; }

/* ── Seats Bar ───────────────────────────────────── */
.seats-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.seats-fill {
    height: 100%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--accent), #fb923c);
    transition: width 1s ease;
}
.seats-label {
    display: block;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* ── Form Styles ─────────────────────────────────── */
.reg-form { margin-top: 1.25rem; }

.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--text-main);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}
.form-group input::placeholder { color: #cbd5e1; }

.phone-input {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.phone-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}
.phone-prefix {
    padding: 0.65rem 0.75rem;
    background: var(--bg-light);
    border-right: 1.5px solid var(--border);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    color: var(--text-main);
}
.phone-input input {
    flex: 1;
    border: none !important;
    box-shadow: none !important;
    padding-left: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    margin-bottom: 0;
}

/* ── Form Success ─────────────────────────────────── */
.form-success {
    text-align: center;
    padding: 2rem 1rem;
}
.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.form-success h3 { color: var(--success); }
.form-success p { color: var(--text-muted); }

/* ── Trust Bar ───────────────────────────────────── */
.trust-bar {
    background: var(--bg-dark);
    padding: 2rem 0;
    border-bottom: 1px solid #1e293b;
}
.trust-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 3rem;
}
.trust-number {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.trust-label {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: 0.25rem;
    font-weight: 500;
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: #1e293b;
}

/* ── Cards ───────────────────────────────────────── */
.card {
    background: #fff;
    padding: 2.25rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-up:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}
.bg-red      { background: #fee2e2; }
.bg-primary  { background: #e0e7ff; }

/* ── Problem Cards ───────────────────────────────── */
.problem-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

/* ── Solution Stats ──────────────────────────────── */
.solution-desc {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 1rem;
}
.stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.stat-item { text-align: center; padding: 1rem 3rem; }
.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
}
.stat-item p { color: #94a3b8; font-size: 0.9rem; margin: 0; }
.stat-divider { width: 1px; height: 60px; background: #1e293b; }

/* ── Feature Tabs ─────────────────────────────────── */
.features-tabs {
    margin-top: 2rem;
}
.tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}
.tab-btn {
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.tab-pane-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 3rem;
    border: 1px solid var(--border);
}
.tab-text { flex: 1 1 320px; }
.tab-text h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.tab-text p  { color: var(--text-muted); margin-bottom: 1.25rem; }

.tab-list {
    list-style: none;
    margin-bottom: 0;
}
.tab-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9375rem;
    color: var(--text-main);
    margin-bottom: 0.65rem;
    font-weight: 500;
}
.tab-list li::before {
    content: '→';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.tab-visual { flex: 1 1 320px; }

/* ── Feature Mockups ─────────────────────────────── */
.feature-mockup {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}
.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}
.mockup-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.mockup-dot.red    { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green  { background: #10b981; }
.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 0.5rem;
}
.mockup-body { padding: 1.25rem; }

.mockup-stat-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.mockup-stat {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.mockup-stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
}
.mockup-stat.green strong { color: var(--success); }

.mockup-progress-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.mockup-bar {
    flex: 1;
    height: 6px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
}
.mockup-bar div {
    height: 100%;
    border-radius: var(--radius-full);
}

.mockup-cta-row { margin-top: 1rem; }
.mockup-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Attendance mockup */
.mockup-attendance-grid {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.att-item {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}
.att-item.present { background: #dcfce7; color: #166534; }
.att-item.leave   { background: #fef9c3; color: #854d0e; }
.att-item.late    { background: #fee2e2; color: #991b1b; }
.att-item strong  { display: block; font-size: 1.5rem; line-height: 1.2; }

.mockup-emp-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--bg-light);
    font-size: 0.8rem;
}
.emp-avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}
.mockup-emp-row span:nth-child(2) { flex: 1; font-weight: 500; }
.status-badge {
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
}
.status-badge.present { background: #dcfce7; color: #166534; }
.status-badge.leave   { background: #fef9c3; color: #854d0e; }
.status-badge.late    { background: #fee2e2; color: #991b1b; }

/* OKR mockup */
.okr-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}
.okr-item span:first-child { min-width: 130px; color: var(--text-muted); font-weight: 500; }
.okr-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
}
.okr-bar div { height: 100%; border-radius: var(--radius-full); }
.okr-item span:last-child { font-weight: 700; font-size: 0.75rem; width: 32px; text-align: right; }

/* Pipeline mockup */
.pipeline-cols { display: flex; gap: 0.5rem; }
.pipeline-col { flex: 1; }
.pipeline-col-header {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.pipeline-col-header span { display: block; font-size: 1.25rem; color: var(--text-main); }
.pipeline-card {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 0.5rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
    border-left: 3px solid var(--border);
}
.pipeline-card.selected { border-left-color: var(--primary); background: #e0e7ff; }
.pipeline-card.green    { border-left-color: var(--success); background: #dcfce7; }

/* Expense mockup */
.expense-summary {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.expense-summary > div {
    flex: 1;
    background: var(--bg-light);
    border-radius: 8px;
    padding: 0.6rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
}
.expense-summary > div strong { display: block; font-size: 0.9rem; color: var(--text-main); }
.expense-summary > div.green strong { color: var(--success); }
.expense-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--bg-light);
}
.expense-row span:first-child { flex: 1; }
.badge-approved {
    background: #dcfce7;
    color: #166534;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
}
.badge-pending {
    background: #fef9c3;
    color: #854d0e;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
}

/* Feed mockup */
.feed-item {
    font-size: 0.8rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--bg-light);
    color: var(--text-main);
    line-height: 1.4;
}
.feed-hearts { color: var(--accent); font-weight: 700; }
.pulse-card {
    margin-top: 0.75rem;
    background: #e0e7ff;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.8rem;
}

/* ── Authority Section ───────────────────────────── */
.authority-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}
.authority-content { flex: 1 1 400px; }
.authority-visual  { flex: 1 1 380px; }

.check-list { list-style: none; }
.check-list li {
    padding-left: 2.25rem;
    position: relative;
    margin-bottom: 1.1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1em;
    background: var(--primary);
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
}

.authority-cta .stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-right: 0.5rem;
}
.authority-trust {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── QW Visual Card ──────────────────────────────── */
.qw-visual-card {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    border-radius: var(--radius);
    padding: 2.25rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.qw-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79,70,229,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.qw-badge {
    display: inline-block;
    background: rgba(79,70,229,0.3);
    border: 1px solid rgba(129,140,248,0.4);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}
.qw-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.qw-stat {
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 1rem 1.25rem;
}
.qw-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.qw-stat-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}
.qw-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.qw-tag {
    padding: 0.25rem 0.6rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    color: #cbd5e1;
}
.qw-tagline {
    font-size: 0.875rem;
    font-style: italic;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    margin: 0;
}

/* ── Agenda / Audience Section ───────────────────── */
.agenda-timeline { margin-top: 1.5rem; }
.timeline-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--secondary);
    transition: background 0.2s;
}
.timeline-item:hover { background: rgba(255,255,255,0.15); }
.timeline-item .time {
    font-weight: 800;
    color: var(--secondary);
    min-width: 80px;
    font-size: 0.875rem;
    padding-top: 2px;
}
.timeline-item .content strong { display: block; margin-bottom: 0.2rem; }
.timeline-item .content p { font-size: 0.875rem; opacity: 0.8; margin: 0; }

.glass-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 2.5rem;
    border-radius: var(--radius);
}

.audience-list { list-style: none; }
.audience-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.audience-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.audience-list strong { display: block; margin-bottom: 0.15rem; }
.audience-list p {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79,70,229,0.15), var(--shadow-lg);
}
.testimonial-featured-badge {
    position: absolute;
    top: -12px;
    left: 1.5rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}
.stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 0.75rem; }
.quote {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.author-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
}
.author strong { display: block; font-size: 0.9375rem; }
.author span { display: block; font-size: 0.75rem; color: var(--text-muted); }

.proof-numbers {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary), #6366f1);
    border-radius: var(--radius);
    color: #fff;
}
.proof-number > span {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}
.proof-number p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0.5rem auto 0;
    max-width: 500px;
}

/* ── Final CTA ───────────────────────────────────── */
.final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(79,70,229,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(6,182,212,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}
.final-cta-text { flex: 1 1 380px; }
.sub-cta {
    font-size: 1.0625rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.sub-cta strong { color: #fff; }

.final-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.final-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #e2e8f0;
    font-weight: 500;
}
.final-benefit span {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--success);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
    flex-shrink: 0;
}

.registration-container {
    flex: 1 1 440px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    max-width: 520px;
}
.registration-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.registration-container h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
.scarcity-text {
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
    background: #09111f;
    color: #475569;
    padding: 3rem 0 1.5rem;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2.5rem;
}
.footer-brand { flex: 2 1 280px; }
.footer-brand .logo-text { color: #fff; margin-bottom: 0.75rem; font-size: 1.1rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; }

.footer-links-group {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links-group strong { color: #fff; font-size: 0.875rem; margin-bottom: 0.25rem; }
.footer-links-group a { font-size: 0.875rem; transition: color 0.2s; }
.footer-links-group a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.8125rem;
}
.footer-bottom p { margin-bottom: 0.25rem; }

/* ── Back to Top ─────────────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-to-top:hover { background: var(--primary-dark); }

/* ── Glass Card ──────────────────────────────────── */
.glass-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

/* ── Scroll Reveal ───────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
    .tab-pane-inner { flex-direction: column; }
    .tab-visual { width: 100%; }
}

@media (max-width: 768px) {
    :root { --section-y: 3.5rem; }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }

    .nav-links { display: none; }
    .hamburger { display: block; }
    .navbar { padding: 1rem 0; }

    .hero { padding: 7rem 0 4rem; min-height: auto; }
    .hero-container { gap: 2.5rem; }
    .hero-scroll-hint { display: none; }

    .countdown { flex-wrap: wrap; gap: 0.35rem; }
    .countdown-unit { min-width: 48px; padding: 0.5rem 0.75rem; }
    .countdown-unit span { font-size: 1.4rem; }

    .trust-stats { flex-direction: column; gap: 1.5rem; }
    .trust-item { padding: 0 1rem; }
    .trust-divider { width: 40px; height: 1px; }

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

    .tab-pane-inner { padding: 1.5rem; }
    .tab-nav { gap: 0.35rem; }
    .tab-btn { padding: 0.5rem 0.9rem; font-size: 0.8rem; }

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

    .final-cta-inner { gap: 2.5rem; }
    .registration-container { max-width: 100%; }

    .stats-row { flex-direction: column; gap: 1.5rem; }
    .stat-divider { width: 40px; height: 1px; }
    .stat-item { padding: 0.5rem 1rem; }

    .authority-grid { gap: 2.5rem; }
    .row { gap: 2rem; }

    .testimonials-grid { grid-template-columns: 1fr; }

    .footer-inner { gap: 2rem; }

    .back-to-top { bottom: 1rem; right: 1rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.875rem; }
    .webinar-details-box { flex-direction: column; gap: 0.75rem; }
    .mockup-stat-row { flex-direction: column; }
    .pipeline-cols { flex-direction: column; }
    .qw-stats-grid { grid-template-columns: 1fr; }
}

/* ── Navbar Real Logos ────────────────────────────── */
.logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-logo-keka {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}
.nav-logo-pipe {
    display: block;
    width: 1.5px;
    height: 28px;
    background: #cbd5e1;
    border-radius: 2px;
    flex-shrink: 0;
}
.nav-logo-qw-group {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.nav-logo-qw {
    height: 26px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    display: block;
    flex-shrink: 0;
}
.nav-logo-qw-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--text-main);
    white-space: nowrap;
    line-height: 1;
}
/* old sep no longer used */
.nav-logo-sep { display: none; }

/* ── Hero Card: Reg Perks + Speakers Mini ─────────── */
.hero-reg-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.hero-perk {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-light);
    padding: 0.4rem 0.65rem;
    border-radius: 6px;
    border: 1px solid var(--border);
}

.hero-reg-btn {
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
}

.hero-speakers-mini {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}
.speakers-mini-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.speakers-mini-row {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.speaker-mini-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.speaker-mini-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--border);
    flex-shrink: 0;
}
.speaker-mini-item strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}
.speaker-mini-item span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ── Speakers Section ─────────────────────────────── */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}
.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}
.speaker-card.featured-speaker {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79,70,229,0.15), var(--shadow-lg);
}

.speaker-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    z-index: 2;
}

.speaker-photo-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff, #f0f9ff);
}
.speaker-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}
.speaker-card:hover .speaker-photo {
    transform: scale(1.04);
}

.speaker-company-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 0.4rem 0.65rem;
    display: flex;
    align-items: center;
}

.speaker-info {
    padding: 1.5rem;
}
.speaker-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem;
    color: var(--text-main);
}
.speaker-designation {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.1rem;
}
.speaker-company {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0;
}
.speaker-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}
.speaker-bio {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.speaker-speaks-on {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
}
.speaks-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 0.25rem;
}
.speaks-tag {
    padding: 0.25rem 0.6rem;
    background: #e0e7ff;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}

/* ── Final CTA perks list ─────────────────────────── */
.final-reg-perks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.final-reg-perk {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}
.final-reg-perk:last-child { border-bottom: none; }

.final-reg-btn {
    font-size: 1.0625rem;
}

.final-speakers-row {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

/* ── Responsive Speakers ──────────────────────────── */
@media (max-width: 768px) {
    .speakers-grid { grid-template-columns: 1fr; }
    .speaker-photo-wrap { height: 280px; }
    .hero-reg-perks { grid-template-columns: 1fr; }
    .nav-logo-keka { height: 22px; }
    .nav-logo-qw { height: 20px; }
    .nav-logo-qw-text { font-size: 0.65rem; }
    .nav-logo-pipe { height: 22px; }
}

