/* =========================================================
   WhizzMeet — Marketing Landing Page
   ========================================================= */
:root {
    --brand:        #4f46e5;
    --brand-hover:  #4338ca;
    --brand-light:  #6366f1;
    --brand-soft:   #ede9fe;
    --brand-glow:   rgba(99,102,241,.25);

    --dark:         #0a0f1e;
    --dark-2:       #0f1628;
    --dark-3:       #1a2340;
    --dark-4:       #1e2d4a;

    --surface:      #ffffff;
    --surface-2:    #f8fafc;
    --surface-3:    #f1f5f9;

    --ink:          #0f172a;
    --ink-2:        #334155;
    --ink-3:        #64748b;
    --ink-4:        #94a3b8;

    --border:       #e2e8f0;
    --border-2:     #cbd5e1;

    --green:        #10b981;
    --amber:        #f59e0b;

    --shadow:       0 4px 20px rgba(0,0,0,.08);
    --shadow-lg:    0 20px 60px rgba(0,0,0,.12);
    --shadow-brand: 0 8px 32px rgba(79,70,229,.28);

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--surface); color: var(--ink); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; }

/* ── UTILS ── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.text-center{ text-align: center; }

.section-label {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--brand-soft); color: var(--brand);
    font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 13px; border-radius: 999px; margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
    font-size: clamp(15px, 2vw, 18px); color: var(--ink-3); line-height: 1.7; max-width: 580px;
}
.section-sub.mx-auto { margin: 0 auto; }
.accent { color: var(--brand); }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 8px; justify-content: center;
    padding: 13px 24px; border-radius: 10px; font-weight: 700; font-size: 15px;
    transition: all .16s; cursor: pointer; border: none; white-space: nowrap; line-height: 1;
    font-family: inherit;
}
.btn-primary   { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-1px); box-shadow: 0 12px 40px rgba(79,70,229,.38); }
.btn-ghost     { background: transparent; color: var(--ink-2); border: 1.5px solid var(--border-2); }
.btn-ghost:hover { background: var(--surface-3); border-color: var(--ink-3); }
.btn-white     { background: #fff; color: var(--brand); font-weight: 800; box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { background: var(--brand-soft); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-lg  { padding: 16px 32px; font-size: 16px; border-radius: 12px; }

/* ── NAVBAR ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(10,15,30,.85); backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,.07);
    height: 66px; display: flex; align-items: center;
    transition: background .2s;
}
.navbar.scrolled { background: rgba(10,15,30,.97); border-bottom-color: rgba(255,255,255,.1); }
.nav-inner {
    max-width: 1160px; margin: 0 auto; padding: 0 24px;
    width: 100%; display: flex; align-items: center; gap: 32px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; color: #fff; }
.nav-brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a { color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500; padding: 7px 13px; border-radius: 7px; transition: all .12s; }
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta  { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-cta a { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); transition: color .12s; }
.nav-cta a:hover { color: #fff; }
.nav-menu { display: none; background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; padding: 8px; border-radius: 8px; }
.nav-menu:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav-drawer {
    display: none; position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
    background: rgba(10,15,30,.98); flex-direction: column; padding: 24px; gap: 6px; z-index: 99;
    border-top: 1px solid rgba(255,255,255,.07);
}
.nav-drawer.open { display: flex; }
.nav-drawer a { color: rgba(255,255,255,.8); font-size: 16px; font-weight: 600; padding: 14px 16px; border-radius: 10px; transition: all .12s; }
.nav-drawer a:hover { background: rgba(255,255,255,.06); color: #fff; }
.drawer-divider { height: 1px; background: rgba(255,255,255,.06); margin: 8px 0; }
.drawer-cta { display: flex; flex-direction: column; gap: 10px; padding-top: 8px; }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,.22) 0%, transparent 70%),
                linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
    padding: 120px 0 80px;
}
.hero-bg-grid {
    position: absolute; inset: 0; pointer-events: none; opacity: .04;
    background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-glow {
    position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 600px; pointer-events: none;
    background: radial-gradient(ellipse, rgba(99,102,241,.18) 0%, transparent 70%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(99,102,241,.15); border: 1px solid rgba(99,102,241,.3);
    color: #a5b4fc; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; margin-bottom: 24px;
}
.hero-badge .dot { width: 7px; height: 7px; background: #a5b4fc; border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 {
    font-size: clamp(36px, 5.5vw, 60px); font-weight: 900; line-height: 1.08;
    color: #fff; margin-bottom: 22px; letter-spacing: -.02em;
}
.gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #6366f1 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub  { font-size: 18px; color: #94a3b8; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-trust span { font-size: 13px; color: #64748b; display: flex; align-items: center; gap: 5px; }
.hero-trust span strong { color: #94a3b8; }

/* Hero visual — mock meeting UI */
.hero-visual { position: relative; }
.hero-card {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5);
}
.hero-card-bar {
    background: rgba(255,255,255,.04); border-bottom: 1px solid rgba(255,255,255,.07);
    padding: 12px 16px; display: flex; align-items: center; gap: 8px;
}
.hcb-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-card-body { padding: 20px; }
.meeting-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin-bottom: 14px; }
.meeting-tile {
    aspect-ratio: 16/9; border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 28px; position: relative; overflow: hidden;
}
.mt1 { background: linear-gradient(135deg,#1e1b4b,#312e81); }
.mt2 { background: linear-gradient(135deg,#14532d,#166534); }
.mt3 { background: linear-gradient(135deg,#7c2d12,#9a3412); }
.mt4 { background: linear-gradient(135deg,#1e3a5f,#1e40af); }
.tile-name { position: absolute; bottom: 6px; left: 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.85); background: rgba(0,0,0,.4); padding: 2px 7px; border-radius: 5px; }
.tile-mic  { position: absolute; bottom: 6px; right: 8px; font-size: 13px; }
.meeting-controls { display: flex; justify-content: center; gap: 10px; padding: 10px 0 4px; }
.ctrl { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }
.ctrl.red { background: rgba(239,68,68,.25); border-color: rgba(239,68,68,.3); }
.meeting-info { text-align: center; margin-top: 10px; }
.mi-name { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); }
.mi-sub  { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }

/* Floating badges */
.float-badge {
    position: absolute; background: rgba(255,255,255,.06); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12); border-radius: 12px; padding: 10px 14px;
    display: flex; align-items: center; gap: 9px; box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.fb1 { top: -18px; right: -20px; animation: float 4s ease-in-out infinite; }
.fb2 { bottom: 40px; left: -24px; animation: float 4s ease-in-out 1.5s infinite; }
.fbi { font-size: 20px; }
.fbt { font-size: 12px; font-weight: 700; color: #fff; }
.fbs { font-size: 11px; color: rgba(255,255,255,.5); }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes pulse  { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--dark-3); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); padding: 36px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-num   { font-size: clamp(28px,4vw,40px); font-weight: 900; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-num span { color: #818cf8; }
.stat-label { font-size: 13px; color: #64748b; font-weight: 500; }

/* ── FEATURES ── */
.features { background: var(--surface); }
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.feat-card {
    background: var(--surface-2); border: 1.5px solid var(--border); border-radius: 16px; padding: 28px;
    transition: all .16s;
}
.feat-card:hover { border-color: var(--brand); box-shadow: 0 8px 30px rgba(79,70,229,.1); transform: translateY(-3px); }
.feat-icon {
    width: 52px; height: 52px; border-radius: 13px; display: flex; align-items: center;
    justify-content: center; font-size: 24px; margin-bottom: 18px;
}
.ic-purple { background: #ede9fe; }
.ic-green  { background: #d1fae5; }
.ic-blue   { background: #dbeafe; }
.ic-amber  { background: #fef3c7; }
.ic-pink   { background: #fce7f3; }
.ic-teal   { background: #ccfbf1; }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { font-size: 14px; color: var(--ink-3); line-height: 1.65; }

/* ── IN-MEETING CAPABILITIES BADGES ── */
.inmeet-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 860px;
    margin: 0 auto;
}
.inmeet-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    transition: border-color .2s, background .2s, color .2s;
}
.inmeet-badge:hover {
    border-color: var(--brand);
    background: var(--brand-soft);
    color: var(--brand);
}

/* ── USE CASES ── */
.use-cases { background: var(--surface-2); }
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 48px;
}
.usecase-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 26px;
    transition: border-color .16s, box-shadow .16s, transform .16s;
}
.usecase-card:hover {
    border-color: var(--brand);
    box-shadow: 0 8px 30px rgba(79,70,229,.1);
    transform: translateY(-3px);
}
.usecase-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 9px;
}
.usecase-card p {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.7;
}

/* ── HOW IT WORKS ── */
.how { background: var(--dark-2); }
.how .section-title { color: #fff; }
.how .section-sub   { color: #94a3b8; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 52px; position: relative; }
.steps::before {
    content: ''; position: absolute; top: 32px; left: calc(16.67% + 16px); right: calc(16.67% + 16px);
    height: 2px; background: linear-gradient(90deg,var(--brand),rgba(99,102,241,.15)); pointer-events: none;
}
.step { text-align: center; padding: 0 12px; }
.step-num {
    width: 64px; height: 64px; border-radius: 50%; background: var(--brand); color: #fff;
    font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; box-shadow: 0 0 0 8px rgba(99,102,241,.12), var(--shadow-brand);
    position: relative; z-index: 1;
}
.step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.step p  { font-size: 14px; color: #64748b; line-height: 1.65; }

/* ── SECURITY ── */
.security { background: var(--surface-2); }
.security-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.security-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.sec-badge {
    background: #fff; border: 1.5px solid var(--border); border-radius: 12px; padding: 16px;
    display: flex; align-items: flex-start; gap: 12px;
}
.sec-badge .sbi { font-size: 24px; flex: none; }
.sec-badge h4 { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.sec-badge p  { font-size: 12px; color: var(--ink-3); line-height: 1.5; }
.security-visual {
    background: linear-gradient(135deg,var(--dark-2),var(--dark-3));
    border-radius: 20px; padding: 32px; border: 1px solid rgba(255,255,255,.07);
    box-shadow: var(--shadow-lg);
}
.enc-row {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
    padding: 12px 14px; border-radius: 10px; background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}
.enc-row.green { border-color: rgba(16,185,129,.2); }
.enc-row.blue  { border-color: rgba(99,102,241,.2); }
.enc-icon  { font-size: 18px; }
.enc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; }
.enc-row.green .enc-label { color: #34d399; }
.enc-row.blue  .enc-label { color: #818cf8; }
.enc-val   { font-size: 12px; color: rgba(255,255,255,.55); font-family: 'SF Mono', Consolas, monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 220px; }

/* ── PLANS ── */
.plans { background: var(--surface); }
.plans-carousel { position: relative; margin-top: 52px; display: flex; align-items: center; gap: 8px; }
.plans-grid {
    display: flex;
    gap: 24px;
    align-items: stretch;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 22px 6px;
    flex: 1 1 auto;
    scrollbar-width: none;
}
.plans-grid::-webkit-scrollbar { display: none; }
.plans-grid > .plan-card { flex: 0 0 clamp(280px, 31%, 340px); scroll-snap-align: center; }
.carousel-arrow {
    flex: none; width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid var(--border); background: var(--surface); color: var(--ink);
    display: flex; align-items: center; justify-content: center; cursor: pointer;
    transition: all .16s; box-shadow: var(--shadow); z-index: 2;
}
.carousel-arrow:hover { border-color: var(--brand); color: var(--brand); transform: scale(1.06); }
.carousel-arrow:disabled { opacity: .35; cursor: default; box-shadow: none; transform: none; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.carousel-dots button {
    width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
    background: var(--border); cursor: pointer; transition: all .16s;
}
.carousel-dots button.active { background: var(--brand); width: 24px; border-radius: 5px; }
.plan-card { border: 1.5px solid var(--border); border-radius: 18px; padding: 32px; background: var(--surface); transition: all .16s; }
.plan-card:hover { box-shadow: var(--shadow); }
.plan-card.featured { border-color: var(--brand); background: var(--dark-2); box-shadow: 0 20px 60px rgba(79,70,229,.22); transform: scale(1.03); }
.plan-badge { display: inline-block; background: var(--brand); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; margin-bottom: 16px; }
.plan-name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.plan-desc { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.plan-card.featured .plan-name { color: #fff; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,.5); }
.price-row { margin-bottom: 24px; display: flex; align-items: baseline; gap: 4px; }
.price-curr { font-size: 20px; font-weight: 700; color: var(--ink-2); }
.price-amt  { font-size: 40px; font-weight: 900; line-height: 1; }
.price-per  { font-size: 14px; color: var(--ink-3); }
.plan-card.featured .price-curr, .plan-card.featured .price-amt { color: #fff; }
.plan-card.featured .price-per  { color: rgba(255,255,255,.45); }
.plan-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.plan-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink-2); }
.plan-feats li::before { content: '✓'; color: var(--green); font-weight: 800; flex: none; margin-top: 1px; }
.plan-feats li.na::before { content: '–'; color: var(--ink-4); }
.plan-card.featured .plan-feats li { color: rgba(255,255,255,.75); }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--surface-2); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; gap: 16px; }
.testi-stars { color: #fbbf24; letter-spacing: 2px; }
.testi-text  { font-size: 15px; color: var(--ink-2); line-height: 1.7; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
    width: 42px; height: 42px; border-radius: 50%; font-size: 16px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; color: #fff; flex: none;
}
.av1 { background: linear-gradient(135deg,#6366f1,#8b5cf6); }
.av2 { background: linear-gradient(135deg,#059669,#10b981); }
.av3 { background: linear-gradient(135deg,#d97706,#f59e0b); }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12px; color: var(--ink-3); }

/* ── FAQ ── */
.faq { background: var(--surface-2); }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 48px;
}
.faq-item {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 26px;
}
.faq-item h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 9px;
}
.faq-item p {
    font-size: 14px;
    color: var(--ink-3);
    line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
    padding: 100px 0; text-align: center; position: relative; overflow: hidden;
    background: linear-gradient(135deg,var(--dark) 0%,#1e1b4b 50%,var(--dark-2) 100%);
}
.cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 800px; height: 500px; pointer-events: none;
    background: radial-gradient(ellipse, rgba(99,102,241,.2) 0%, transparent 65%);
}
.cta-section h2 { font-size: clamp(28px,4vw,48px); font-weight: 900; color: #fff; margin-bottom: 16px; line-height: 1.15; position: relative; }
.cta-section p  { font-size: 17px; color: #94a3b8; margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }
.cta-note { margin-top: 20px; font-size: 13px; color: #364060; }

/* ── FOOTER ── */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 60px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-wrap { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 17px; color: #fff; margin-bottom: 14px; }
.footer-brand-wrap img { width: 28px; height: 28px; border-radius: 7px; }
.footer-tagline { font-size: 13px; color: #4a6080; line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 36px; height: 36px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px;
    color: #64748b; transition: all .12s;
}
.social-btn:hover { background: rgba(255,255,255,.1); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #4a6080; margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a  { font-size: 14px; color: #64748b; transition: color .12s; }
.footer-col a:hover { color: #a5b4fc; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.05); padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: #2d3748; }
.footer-legal    { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a  { font-size: 13px; color: #2d3748; transition: color .12s; }
.footer-legal a:hover { color: #64748b; }

/* ── LEGACY FOOTER (.site-footer markup: login / about / privacy / whoAreYou / etc.) ── */
.site-footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,.06); padding: 40px 0 32px; }
.site-footer .container { max-width: 1128px; margin: 0 auto; padding: 0 24px; }
.site-footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.list-reset { list-style: none; margin: 0; padding: 0; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 24px; }
.footer-links a { font-size: 14px; color: #64748b; transition: color .12s; }
.footer-links a:hover { color: #a5b4fc; }
.footer-social-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.footer-social-links a { font-size: 17px; color: #64748b; display: inline-flex; align-items: center; transition: color .12s; }
.footer-social-links a:hover { color: #a5b4fc; }
.footer-social-icon { display: inline-flex; align-items: center; }
.footer-copyright { font-size: 13px; color: #4a6080; text-align: center; margin-top: 4px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner   { grid-template-columns: 1fr; text-align: center; }
    .hero-sub     { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-trust   { justify-content: center; }
    .hero-visual  { display: none; }
    .security-inner { grid-template-columns: 1fr; }
    .footer-grid  { grid-template-columns: 1fr 1fr; }
    .steps::before { display: none; }
}

@media (max-width: 768px) {
    .section      { padding: 60px 0; }
    .feat-grid    { grid-template-columns: 1fr; }
    .usecase-grid { grid-template-columns: 1fr; }
    .faq-grid     { grid-template-columns: 1fr; }
    .plans-grid > .plan-card { flex: 0 0 82%; }
    .plan-card.featured { transform: none; }
    .testi-grid   { grid-template-columns: 1fr; }
    .steps        { grid-template-columns: 1fr; gap: 24px; }
    .stats-grid   { grid-template-columns: repeat(2,1fr); }
    .stat-item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 16px 0; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .nav-links    { display: none; }
    .nav-cta      { display: none; }
    .nav-menu     { display: flex; }
    .footer-grid  { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .security-badges { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container    { padding: 0 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .cta-actions  { flex-direction: column; align-items: center; }
}
