/* ============================================================
   WaitlessFlow — Site.css  (Complete Modern SaaS Redesign)
   Design: Stripe / Linear / Notion inspired
   Palette: Blue #2563EB  Cyan #06B6D4  Emerald #10B981
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    --blue:        #2563EB;
    --blue-dark:   #1D4ED8;
    --blue-light:  #3B82F6;
    --blue-50:     #EFF6FF;
    --blue-100:    #DBEAFE;
    --cyan:        #06B6D4;
    --cyan-light:  #22D3EE;
    --cyan-50:     #ECFEFF;
    --emerald:     #10B981;
    --emerald-50:  #ECFDF5;
    --amber:       #F59E0B;
    --slate-900:   #0F172A;
    --slate-800:   #1E293B;
    --slate-700:   #334155;
    --slate-600:   #475569;
    --slate-500:   #64748B;
    --slate-400:   #94A3B8;
    --slate-300:   #CBD5E1;
    --slate-200:   #E2E8F0;
    --slate-100:   #F1F5F9;
    --slate-50:    #F8FAFC;
    --white:       #FFFFFF;

    --grad-blue:   linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    --grad-hero:   linear-gradient(135deg, #0F172A 0%, #1a2744 50%, #0F172A 100%);
    --grad-cta:    linear-gradient(90deg,  #2563EB 0%, #06B6D4 100%);
    --grad-card:   linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

    --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
    --shadow:      0 4px 16px rgba(0,0,0,0.08);
    --shadow-md:   0 8px 30px rgba(0,0,0,0.12);
    --shadow-lg:   0 20px 60px rgba(0,0,0,0.15);
    --shadow-blue: 0 8px 32px rgba(37,99,235,0.30);
    --shadow-glow: 0 0 60px rgba(37,99,235,0.20);

    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 106%; }   /* 110 × 0.96 = −4% from previous, +6% vs browser default */
body {
    font-family: 'Inter', 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--slate-700);
    background: var(--white);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: var(--blue); transition: var(--transition); text-decoration: none; }
a:hover { color: var(--blue-dark); text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
    margin-top: 0;
}
.gradient-text {
    background: var(--grad-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 1rem;
}
.section-title { font-size: 2.4rem; margin-bottom: 1rem; }
.section-sub   { font-size: 1.05rem; color: var(--slate-500); max-width: 580px; margin: 0 auto 3rem; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--slate-300); border-radius: 3px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary-wf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grad-cta);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
    text-decoration: none;
}
.btn-primary-wf:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37,99,235,0.40);
    color: #fff;
}
.btn-outline-wf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--slate-700);
    border: 1.5px solid var(--slate-300);
    border-radius: 8px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}
.btn-outline-wf:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-50);
}
.btn-white-wf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--slate-900);
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}
.btn-white-wf:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--blue);
}
/* Hero-specific button variants */
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--grad-cta);
    color: #fff; border: none; border-radius: 10px;
    padding: 15px 32px; font-weight: 700; font-size: 1rem;
    cursor: pointer; transition: var(--transition);
    box-shadow: 0 8px 32px rgba(37,99,235,0.45);
    text-decoration: none;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 48px rgba(37,99,235,0.55); color:#fff; }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px; padding: 15px 32px;
    font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.35); color:#fff; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar-wf {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    border: none;
    padding: 0;
    min-height: 126px;
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar-wf.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.06);
}
.navbar-wf .container { display: flex; align-items: center; height: 126px; }
.navbar-wf .navbar-brand {
    font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px;
    padding: 0; line-height: 1; flex-shrink: 0;
}
/* Logo image — navbar */
.nav-logo-link {
    padding: 8px 0 !important;            /* 8px top & bottom, no horizontal */
    display: flex; align-items: center;
    background: transparent;
    border: none;
}
.nav-logo { height: 110px; width: auto; display: block; }

/* Logo image — footer */
.footer-logo { height: 82px; width: auto; display: block; }

/* ── Nav links + gradient-underline active indicator ────────── */
.navbar-wf .navbar-nav > li { position: relative; }
.navbar-wf .navbar-nav > li > a {
    color: rgba(255,255,255,0.82);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 22px 26px;                    /* 26px horizontal = generous gap between items */
    position: relative;
    background: transparent !important;
    transition: color 0.25s;
}
/* Sliding gradient underline */
.navbar-wf .navbar-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 11px;
    left: 14px; right: 14px;
    height: 2.5px;
    border-radius: 99px;
    background: linear-gradient(90deg, #60A5FA 0%, #22D3EE 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s, box-shadow 0.28s;
    opacity: 0;
}
/* ── Hover state — dark navbar */
.navbar-wf .navbar-nav > li > a:hover { color: #fff; }
.navbar-wf .navbar-nav > li > a:hover::after {
    transform: scaleX(1); opacity: 0.65;
}
/* ── Active state — dark navbar */
.navbar-wf .navbar-nav > li.active > a { color: #fff !important; background: transparent !important; }
.navbar-wf .navbar-nav > li.active > a:hover { background: transparent !important; }
.navbar-wf .navbar-nav > li.active > a:focus { background: transparent !important; }
.navbar-wf .navbar-nav > li.active > a::after {
    transform: scaleX(1); opacity: 1;
    box-shadow: 0 0 10px rgba(96,165,250,0.65);
}
/* ── Scrolled (light) navbar — blue gradient */
.navbar-wf.scrolled .navbar-nav > li > a { color: var(--slate-600); }
.navbar-wf.scrolled .navbar-nav > li > a::after {
    background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
}
.navbar-wf.scrolled .navbar-nav > li > a:hover { color: var(--blue); }
.navbar-wf.scrolled .navbar-nav > li.active > a { color: var(--blue) !important; }
.navbar-wf.scrolled .navbar-nav > li.active > a::after {
    box-shadow: 0 0 8px rgba(37,99,235,0.4);
}
.nav-signin a {
    color: rgba(255,255,255,0.85) !important;
}
.navbar-wf.scrolled .nav-signin a { color: var(--slate-600) !important; }
.nav-cta a,
.navbar-wf .navbar-nav > li.nav-cta > a,
.navbar-wf.scrolled .navbar-nav > li.nav-cta > a {
    background: var(--grad-cta) !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 20px !important;
    margin-top: 15px;
    font-weight: 700 !important;
    box-shadow: var(--shadow-blue);
}
/* Hide the underline indicator on the CTA button */
.navbar-wf .navbar-nav > li.nav-cta > a::after { display: none !important; }
.nav-cta a:hover,
.navbar-wf .navbar-nav > li.nav-cta > a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.45) !important;
    color: #fff !important;
}
.navbar-toggle {
    border-color: rgba(255,255,255,0.4);
    margin-top: 16px;
}
.navbar-toggle .icon-bar { background: rgba(255,255,255,0.9); }
.navbar-wf.scrolled .navbar-toggle { border-color: var(--slate-300); }
.navbar-wf.scrolled .navbar-toggle .icon-bar { background: var(--slate-600); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
    background: var(--grad-hero);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 152px 0 80px;   /* 126px navbar + 26px breathing room */
}
/* Grid overlay */
.hero-grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}
/* Gradient orbs */
.hero-glow {
    position: absolute; border-radius: 50%; pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite;
}
.hero-glow-1 {
    width: 700px; height: 700px; top: -200px; left: -200px;
    background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, transparent 65%);
    animation-delay: 0s;
}
.hero-glow-2 {
    width: 600px; height: 600px; top: 50px; right: -150px;
    background: radial-gradient(circle, rgba(6,182,212,0.20) 0%, transparent 65%);
    animation-delay: -3s;
}
.hero-glow-3 {
    width: 400px; height: 400px; bottom: -100px; left: 40%;
    background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 65%);
    animation-delay: -5s;
}
@keyframes glow-pulse {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 1; }
    33%       { transform: scale(1.08) translate(20px, -20px); opacity: 0.85; }
    66%       { transform: scale(0.95) translate(-15px, 15px); opacity: 0.9; }
}
/* Hero badge */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.35);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--cyan-light);
    font-size: 0.83rem; font-weight: 600;
    margin-bottom: 1.5rem;
    cursor: default;
}
.badge-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--emerald);
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
/* Hero headline */
.hero-headline {
    color: #fff; font-size: 3.6rem; font-weight: 800;
    line-height: 1.1; letter-spacing: -1.5px;
    margin-bottom: 1.4rem;
}
.hero-headline .gradient-text {
    background: linear-gradient(90deg, #60A5FA, #22D3EE, #34D399);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
    color: rgba(255,255,255,0.7); font-size: 1.15rem;
    max-width: 480px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.5rem; }
/* Trust row */
.hero-trust { display: flex; align-items: center; gap: 14px; }
.trust-avatars { display: flex; }
.trust-avatars img {
    width: 34px; height: 34px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    object-fit: cover; margin-left: -8px;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text { font-size: 0.85rem; color: rgba(255,255,255,0.65); }
.trust-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 2px; }
.trust-text strong { color: rgba(255,255,255,0.9); }

/* ── Dashboard Mockup ──────────────────────────────────────── */
.hero-mockup {
    position: relative;
    padding: 20px 0 40px;
}
.float-notif {
    position: absolute; top: -10px; left: -20px; z-index: 10;
    background: var(--white);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    min-width: 230px;
    animation: float-y 4s ease-in-out infinite;
}
@keyframes float-y { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.notif-icon-wrap {
    width: 36px; height: 36px; border-radius: 10px;
    background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; flex-shrink: 0;
}
.notif-title { font-size: 0.8rem; font-weight: 700; color: var(--slate-900); }
.notif-sub   { font-size: 0.72rem; color: var(--slate-500); }
/* Browser chrome */
.mock-browser {
    background: var(--slate-800);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.50), 0 0 0 1px rgba(255,255,255,0.06);
    width: 100%;
}
.mock-bar {
    background: var(--slate-900);
    padding: 10px 16px;
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mock-dots { display: flex; gap: 6px; }
.dot-red, .dot-yellow, .dot-green {
    width: 10px; height: 10px; border-radius: 50%;
}
.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28CA42; }
.mock-url-bar {
    flex: 1; background: rgba(255,255,255,0.06);
    border-radius: 6px; padding: 5px 12px;
    font-size: 0.72rem; color: var(--slate-400);
    text-align: center;
}
.mock-body { display: flex; height: 340px; }
/* Screenshot variant — replaces CSS mock body */
.mock-body-screenshot {
    position: relative;      /* anchor for overlay image */
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    line-height: 0;          /* kill whitespace gap below img */
}
/* Overlay image floating on top of dashboard screenshot */
.dashboard-overlay-img {
    position: fixed;
    bottom: -10px;            /* flush with bottom edge */
    left: -6%;
    width: 76%;
    max-width: 640px;
    border-radius: 14px 14px 14px 14px;
    box-shadow: 8px -12px 40px rgba(0,0,0,0.30), 0 2px 12px rgba(0,0,0,0.18);
    border: 2px solid rgba(255,255,255,0.18);
    display: block;
    animation: float-y 5s ease-in-out infinite;
    z-index: 5;
}
/* Sidebar */
.mock-sidebar {
    width: 48px; background: var(--slate-900);
    display: flex; flex-direction: column;
    align-items: center; padding: 14px 0; gap: 8px;
    border-right: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}
.mock-logo-sm {
    width: 30px; height: 30px; border-radius: 8px;
    background: var(--grad-blue);
    color: #fff; font-size: 0.65rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px;
}
.mock-nav-item {
    width: 34px; height: 34px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--slate-500); font-size: 0.85rem;
    cursor: default; transition: var(--transition);
}
.mock-nav-item.mock-active {
    background: rgba(37,99,235,0.2);
    color: var(--blue-light);
}
/* Mock main content */
.mock-content { flex: 1; overflow: hidden; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.mock-content-header { display: flex; justify-content: space-between; align-items: center; }
.mock-content-title { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.mock-content-sub   { font-size: 0.68rem; color: var(--slate-400); margin-top: 1px; }
.mock-live-badge {
    display: flex; align-items: center; gap: 5px;
    background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.35);
    border-radius: 50px; padding: 3px 10px;
    font-size: 0.65rem; font-weight: 700; color: var(--emerald);
}
.live-dot-anim {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--emerald);
    animation: blink 1.5s ease-in-out infinite;
}
/* Mock stats */
.mock-stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mock-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px; padding: 10px;
}
.mock-stat-val { font-size: 1.3rem; font-weight: 800; color: var(--white); line-height: 1; }
.mock-stat-key { font-size: 0.62rem; color: var(--slate-400); margin-top: 3px; }
.mock-trend { font-size: 0.62rem; font-weight: 700; margin-top: 3px; }
.mock-trend.up   { color: var(--emerald); }
.mock-trend.down { color: var(--cyan); }
/* Mock queue list */
.mock-queue-list { flex: 1; overflow: hidden; }
.mock-queue-hdr {
    display: flex; justify-content: space-between;
    font-size: 0.7rem; font-weight: 700; color: var(--slate-400);
    margin-bottom: 6px; padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mock-q-row {
    display: grid; grid-template-columns: 54px 1fr 60px 60px;
    align-items: center; gap: 4px;
    padding: 7px 8px; border-radius: 6px;
    font-size: 0.7rem; margin-bottom: 3px;
    background: rgba(255,255,255,0.02);
}
.mock-q-row.serving { background: rgba(37,99,235,0.12); }
.q-token  { font-weight: 700; color: var(--blue-light); font-size: 0.68rem; }
.q-person { color: var(--slate-300); }
.q-ctr    { color: var(--slate-500); font-size: 0.65rem; }
.q-badge  { text-align: center; border-radius: 4px; padding: 2px 6px; font-size: 0.62rem; font-weight: 700; }
.badge-serving { background: rgba(37,99,235,0.25); color: var(--blue-light); }
.badge-wait    { background: rgba(100,116,139,0.2);  color: var(--slate-400); }
/* Float stat card */
.float-stat-card {
    position: absolute; bottom: 20px; right: -20px; z-index: 10;
    background: var(--white);
    border-radius: 14px; padding: 14px 18px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    animation: float-y 5s ease-in-out infinite reverse;
}
.float-stat-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--emerald-50);
    color: var(--emerald); font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.float-stat-val   { font-size: 1rem; font-weight: 800; color: var(--slate-900); }
.float-stat-label { font-size: 0.7rem; color: var(--slate-500); }

/* ── Trust Strip ───────────────────────────────────────────── */
.trust-strip {
    padding: 32px 0; background: var(--slate-50);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}
.trust-strip p { font-size: 0.78rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.trust-logos   { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; }
.trust-logo {
    font-size: 0.92rem; font-weight: 700; letter-spacing: 0.5px;
    color: var(--slate-400); padding: 6px 20px;
    border: 1.5px solid var(--slate-200); border-radius: 8px;
    transition: var(--transition);
}
.trust-logo:hover { color: var(--blue); border-color: var(--blue-100); background: var(--blue-50); }

/* ── Section Base ──────────────────────────────────────────── */
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-bg { background: var(--slate-50); }
.section-dark { background: var(--slate-900); }

/* ── Feature Cards ─────────────────────────────────────────── */
.feature-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    border-color: var(--blue-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.feature-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 1rem;
}
.icon-blue    { background: var(--blue-50);    color: var(--blue); }
.icon-cyan    { background: var(--cyan-50);    color: var(--cyan); }
.icon-emerald { background: var(--emerald-50); color: var(--emerald); }
.feature-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.9rem; color: var(--slate-500); margin: 0; }

/* ── How It Works ──────────────────────────────────────────── */
.step-wrap { position: relative; text-align: center; padding: 0 20px; }
.step-num {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--grad-blue); color: #fff;
    font-size: 1.4rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem;
    box-shadow: 0 6px 24px rgba(37,99,235,0.35);
    position: relative; z-index: 1;
}
.step-line {
    position: absolute; top: 32px; left: calc(50% + 40px);
    right: calc(-50% + 40px); height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0.35;
}
.step-icon-wrap {
    width: 80px; height: 80px; border-radius: var(--radius);
    background: var(--blue-50); border: 1px solid var(--blue-100);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.2rem; font-size: 2rem; color: var(--blue);
}

/* ── Industry Cards ────────────────────────────────────────── */
.industry-card {
    border-radius: var(--radius); overflow: hidden;
    position: relative; height: 260px;
    transition: var(--transition); cursor: default;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.industry-card:hover img { transform: scale(1.06); }
.industry-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.15) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px;
}
.industry-icon-badge {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--blue); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; margin-bottom: 8px;
}
.industry-overlay h4 { color: #fff; font-size: 1rem; margin: 0 0 3px; }
.industry-overlay p  { color: rgba(255,255,255,0.7); font-size: 0.8rem; margin: 0; }

/* ── Dashboard Showcase ────────────────────────────────────── */
.showcase-section { background: var(--slate-900); overflow: hidden; }
.showcase-browser {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
}
.showcase-browser img { display: block; width: 100%; }
.showcase-stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius);
    padding: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 16px;
}
.showcase-stat-num { font-size: 2rem; font-weight: 800; color: #fff; }
.showcase-stat-label { font-size: 0.85rem; color: var(--slate-400); margin-top: 4px; }
.showcase-stat-trend { font-size: 0.78rem; font-weight: 700; margin-top: 6px; }

/* ── Comparison Table ──────────────────────────────────────── */
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table thead tr th {
    padding: 16px 20px; font-size: 0.9rem; font-weight: 700;
    background: var(--slate-50); color: var(--slate-700);
    border-bottom: 2px solid var(--slate-200);
}
.compare-table thead tr th:first-child { border-radius: 12px 0 0 0; text-align: left; }
.compare-table thead tr th:last-child  { border-radius: 0 12px 0 0; }
.compare-table thead .col-wf { background: var(--blue); color: #fff; }
.compare-table tbody tr td {
    padding: 14px 20px; font-size: 0.9rem;
    border-bottom: 1px solid var(--slate-100);
    text-align: center; color: var(--slate-600);
}
.compare-table tbody tr td:first-child { text-align: left; font-weight: 500; color: var(--slate-800); }
.compare-table tbody tr:last-child td:first-child { border-radius: 0 0 0 12px; }
.compare-table tbody tr:last-child td:last-child  { border-radius: 0 0 12px 0; }
.compare-table tbody .col-wf { background: var(--blue-50); color: var(--blue-dark); font-weight: 600; }
.compare-table tbody tr:nth-child(even) td { background: var(--slate-50); }
.compare-table tbody tr:nth-child(even) .col-wf { background: #e0ecff; }
.check-yes { color: var(--emerald); font-size: 1.1rem; }
.check-no  { color: var(--slate-300); font-size: 1.1rem; }

/* ── Pricing Cards ─────────────────────────────────────────── */
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 36px 30px 40px;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
    border-color: var(--blue);
    box-shadow: 0 0 0 1px var(--blue), var(--shadow-blue);
}
.pricing-card.featured:hover { box-shadow: 0 0 0 1px var(--blue), 0 20px 60px rgba(37,99,235,0.30); }
.pricing-popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--grad-blue); color: #fff;
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px;
    padding: 4px 16px; border-radius: 50px;
    white-space: nowrap;
}
.pricing-tier { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--slate-500); }
.pricing-amount {
    font-size: 3.2rem; font-weight: 800;
    color: var(--slate-900); line-height: 1;
    margin: 12px 0 4px;
}
.pricing-amount sup { font-size: 1.4rem; vertical-align: top; margin-top: 12px; color: var(--slate-500); font-weight: 600; }
.pricing-amount .custom-label { font-size: 1.8rem; }
.pricing-period { font-size: 0.85rem; color: var(--slate-500); margin-bottom: 4px; }
.pricing-subtitle { font-size: 0.88rem; color: var(--slate-500); margin-bottom: 24px; }
.pricing-divider { border: none; border-top: 1px solid var(--slate-200); margin: 20px 0; }
.pricing-features { list-style: none; padding: 0; margin: 0 0 28px; flex: 1; }
.pricing-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0; font-size: 0.88rem; color: var(--slate-600);
    border-bottom: 1px solid var(--slate-100);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .pf-check { color: var(--emerald); font-size: 0.85rem; margin-top: 2px; flex-shrink: 0; }
.pricing-features li.disabled { color: var(--slate-400); }
.pricing-features li.disabled .pf-check { color: var(--slate-300); }
.annual-saving {
    display: inline-block;
    background: var(--emerald-50); color: var(--emerald);
    font-size: 0.75rem; font-weight: 700;
    padding: 2px 10px; border-radius: 50px;
    margin-left: 8px;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testi-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    height: 100%;
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 1rem; }
.testi-quote { font-size: 0.95rem; color: var(--slate-700); line-height: 1.75; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; border: 2px solid var(--blue-100);
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--slate-900); }
.testi-role { font-size: 0.78rem; color: var(--slate-500); }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-q {
    padding: 18px 22px; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 0.97rem; color: var(--slate-900);
    user-select: none; transition: var(--transition);
}
.faq-q:hover { background: var(--blue-50); color: var(--blue); }
.faq-icon {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--slate-100); color: var(--slate-500);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 0.9rem;
    transition: var(--transition);
}
.faq-item.open .faq-q  { color: var(--blue); background: var(--blue-50); }
.faq-item.open .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-a {
    display: none; padding: 0 22px 18px;
    font-size: 0.94rem; color: var(--slate-600);
    line-height: 1.75; border-top: 1px solid var(--blue-100);
    padding-top: 16px;
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
    background: var(--grad-blue);
    padding: 100px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}
.cta-band::after {
    content: ''; position: absolute;
    width: 600px; height: 600px; border-radius: 50%;
    top: -200px; right: -200px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
}
.cta-band h2 { color: #fff; font-size: 2.8rem; margin-bottom: 1rem; position: relative; }
.cta-band p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 520px; margin: 0 auto 2.2rem; position: relative; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
    background: var(--grad-hero);
    padding: 158px 0 70px;   /* 126px navbar + 32px breathing room */
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero-glow {
    position: absolute; width: 500px; height: 500px;
    top: -150px; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(37,99,235,0.25) 0%, transparent 65%);
    pointer-events: none;
}
.page-hero h1 { color: #fff; font-size: 2.8rem; margin-bottom: 1rem; }
.page-hero p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto; }
.breadcrumb-wf {
    background: transparent; padding: 0;
    margin: 1.2rem 0 0; font-size: 0.85rem;
    display: flex; justify-content: center;
}
.breadcrumb-wf li { color: rgba(255,255,255,0.5); }
.breadcrumb-wf li.active { color: var(--cyan-light); }
.breadcrumb-wf > li + li::before { color: rgba(255,255,255,0.3); }
.breadcrumb-wf a { color: rgba(255,255,255,0.7); }
.breadcrumb-wf a:hover { color: #fff; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-form .form-control {
    border: 1.5px solid var(--slate-200);
    border-radius: 8px; padding: 12px 16px;
    font-size: 0.95rem; color: var(--slate-800);
    transition: var(--transition); height: auto;
}
.contact-form .form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.10); outline: none;
}
.contact-form label { font-weight: 600; font-size: 0.85rem; color: var(--slate-700); margin-bottom: 6px; }
.contact-info-card {
    background: var(--grad-hero);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    color: rgba(255,255,255,0.85);
    height: 100%;
    position: relative; overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute;
    width: 300px; height: 300px; border-radius: 50%;
    top: -100px; right: -100px;
    background: radial-gradient(circle, rgba(37,99,235,0.4) 0%, transparent 65%);
}
.contact-info-card h3 { color: #fff; margin-bottom: 0.8rem; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; position: relative; }
.contact-detail-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1rem;
}
.contact-detail strong { display: block; color: #fff; margin-bottom: 2px; font-size: 0.9rem; }
.contact-detail span   { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ── Pricing Page Toggle ───────────────────────────────────── */
.billing-toggle-wrap {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--slate-100); border-radius: 50px;
    padding: 6px 20px;
}
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--slate-300); border-radius: 50px; transition: 0.3s;
}
.toggle-slider::before {
    content: ''; position: absolute;
    height: 18px; width: 18px; left: 3px; bottom: 3px;
    background: #fff; border-radius: 50%;
    transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
input:checked + .toggle-slider { background: var(--blue); }
input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer { background: var(--slate-900); color: rgba(255,255,255,0.6); padding: 72px 0 0; }
.footer-brand-name {
    font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px;
}
.footer-brand-desc { font-size: 0.88rem; line-height: 1.65; max-width: 270px; }
.footer-heading {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255,255,255,0.9); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--cyan-light); }
.footer-social { display: flex; gap: 8px; margin-top: 1rem; }
.footer-social a {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.88rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--blue); color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 0; margin-top: 48px;
    font-size: 0.82rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--cyan-light); }

/* ── Misc Helpers ──────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--slate-200); margin: 0; }
.tag { display: inline-block; background: var(--blue-50); color: var(--blue); border-radius: 50px; padding: 4px 14px; font-size: 0.78rem; font-weight: 600; }
.tag-emerald { background: var(--emerald-50); color: var(--emerald); }
.text-blue    { color: var(--blue)    !important; }
.text-cyan    { color: var(--cyan)    !important; }
.text-emerald { color: var(--emerald) !important; }

/* Feature check list */
.check-list { list-style: none; padding: 0; margin: 1.4rem 0; }
.check-list li {
    padding: 7px 0 7px 30px; position: relative;
    color: var(--slate-700); font-size: 0.95rem;
}
.check-list li::before {
    content: '✓'; position: absolute; left: 0;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--blue); color: #fff;
    font-size: 0.65rem; display: flex; align-items: center;
    justify-content: center; top: 10px; font-weight: 700;
}
.feature-img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
.animate-on-scroll {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s !important; }
.delay-2 { transition-delay: 0.20s !important; }
.delay-3 { transition-delay: 0.30s !important; }
.delay-4 { transition-delay: 0.40s !important; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-headline { font-size: 2.6rem; }
    .hero-mockup { margin-top: 40px; }
    .float-notif, .float-stat-card { display: none; }
    .section { padding: 70px 0; }
    .section-title { font-size: 2rem; }
    .step-line { display: none; }
    .cta-band h2 { font-size: 2.2rem; }
}
@media (max-width: 767px) {
    .hero-headline { font-size: 2rem; letter-spacing: -0.5px; }
    .hero-sub { font-size: 1rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .mock-body { height: 260px; }
    .mock-stats-row { grid-template-columns: 1fr 1fr 1fr; }
    .mock-stat-val { font-size: 1rem; }
    .page-hero h1 { font-size: 2rem; }
    .cta-band h2 { font-size: 1.8rem; }
    .cta-band .cta-actions { flex-direction: column; align-items: center; }
    .pricing-card { margin-bottom: 20px; }
    .section-title { font-size: 1.75rem; }
}

/* ══════════════════════════════════════════════════════════════
   FREE VIRAL CARD
══════════════════════════════════════════════════════════════ */
.free-viral-card {
    background: linear-gradient(135deg, #064E3B 0%, #065F46 50%, #047857 100%);
    border-radius: 20px; padding: 48px 44px; position: relative; overflow: hidden;
}
.free-viral-card::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 340px; height: 340px;
    background: radial-gradient(circle, rgba(16,185,129,.28) 0%, transparent 70%);
    pointer-events: none;
}
.free-viral-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(16,185,129,.22); border: 1px solid rgba(16,185,129,.4); color: #6EE7B7;
    font-size: .75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 18px;
}
.free-viral-price {
    font-size: 3.8rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px;
}
.free-viral-price span { font-size: 1.1rem; font-weight: 400; color: #6EE7B7; }
.free-viral-title { font-size: 1rem; font-weight: 700; color: #A7F3D0; margin-bottom: 10px; }
.free-viral-desc { color: #A7F3D0; font-size: .9rem; line-height: 1.7; margin-bottom: 26px; }
.btn-emerald-wf {
    display: inline-flex; align-items: center; gap: 8px;
    background: #10B981; color: #fff; font-size: .9rem; font-weight: 700;
    padding: 14px 26px; border-radius: 10px; text-decoration: none; transition: all .2s;
    white-space: nowrap;
}
.btn-emerald-wf:hover {
    background: #059669; color: #fff; transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(16,185,129,.4); text-decoration: none;
}
.free-feature-pill {
    display: flex; align-items: flex-start; gap: 12px;
    background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px; padding: 13px 16px; color: #fff; font-size: .86rem; font-weight: 500;
}
.free-feature-pill i { color: #34D399; font-size: .9rem; flex-shrink: 0; margin-top: 2px; }
.free-feature-pill-sub { font-size: .76rem; color: #A7F3D0; margin-top: 2px; }

/* Pricing card — Free tier accent */
.pricing-card.free-card { border-color: #10B981; box-shadow: 0 0 0 1px #10B981, 0 4px 20px rgba(16,185,129,.12); }
.pricing-card.free-card .pricing-tier { color: #10B981; }
.pricing-card.free-card .pf-check { color: #10B981 !important; }

/* ══════════════════════════════════════════════════════════════
   COMPETITOR COMPARISON STRIP
══════════════════════════════════════════════════════════════ */
.competitor-strip { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); padding: 56px 0; }
.competitor-stat-box {
    background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 28px 20px; text-align: center;
}
.competitor-stat-num { font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.competitor-stat-label { font-size: .84rem; color: #94A3B8; margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   PRICING COMPARE TABLE OVERRIDES (4-plan)
══════════════════════════════════════════════════════════════ */
.compare-table th { font-size: .8rem; padding: 13px 8px; }
.compare-table td { font-size: .79rem; padding: 10px 8px; }

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES (Privacy, Terms, Cookies)
══════════════════════════════════════════════════════════════ */
.legal-layout { display: flex; gap: 44px; align-items: flex-start; }
.legal-toc {
    position: sticky; top: 140px; width: 220px; flex-shrink: 0;
    background: var(--slate-50); border: 1px solid var(--slate-200);
    border-radius: var(--radius); padding: 22px 18px;
}
.legal-toc-heading {
    font-size: .7rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--slate-400); font-weight: 700; margin-bottom: 14px;
}
.legal-toc a {
    display: block; font-size: .83rem; color: var(--slate-600);
    padding: 6px 0; border-bottom: 1px solid var(--slate-100);
    transition: var(--transition); line-height: 1.4;
}
.legal-toc a:last-child { border-bottom: none; }
.legal-toc a:hover { color: var(--blue); padding-left: 5px; }
.legal-content { flex: 1; min-width: 0; }
.legal-meta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--blue-50); border: 1px solid var(--blue-100);
    color: var(--blue); font-size: .82rem; font-weight: 600;
    padding: 6px 16px; border-radius: 50px; margin-bottom: 36px;
}
.legal-section { margin-bottom: 44px; scroll-margin-top: 140px; }
.legal-section h2 {
    font-size: 1.2rem; color: var(--slate-900); font-weight: 700;
    border-bottom: 2px solid var(--slate-200); padding-bottom: 10px; margin-bottom: 18px;
}
.legal-section h3 { font-size: .97rem; color: var(--slate-800); font-weight: 700; margin: 22px 0 8px; }
.legal-section p  { font-size: .92rem; color: var(--slate-600); line-height: 1.85; margin-bottom: 12px; }
.legal-section ul, .legal-section ol { padding-left: 22px; margin-bottom: 14px; }
.legal-section li { font-size: .92rem; color: var(--slate-600); line-height: 1.75; margin-bottom: 6px; }
.legal-box {
    border-radius: 10px; padding: 16px 20px; margin: 20px 0;
    font-size: .9rem; line-height: 1.75;
}
.legal-box-blue   { background: var(--blue-50);    border-left: 4px solid var(--blue);    color: var(--slate-700); }
.legal-box-green  { background: var(--emerald-50); border-left: 4px solid var(--emerald); color: var(--slate-700); }
.legal-box-amber  { background: #FFFBEB;            border-left: 4px solid #F59E0B;        color: var(--slate-700); }
.cookie-table { width: 100%; border-collapse: collapse; font-size: .86rem; margin: 16px 0; border-radius: 10px; overflow: hidden; }
.cookie-table th {
    background: var(--slate-800); color: #fff; padding: 11px 14px;
    text-align: left; font-weight: 600; font-size: .79rem; letter-spacing: .5px;
}
.cookie-table td { padding: 10px 14px; border-bottom: 1px solid var(--slate-200); color: var(--slate-600); vertical-align: top; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-table tr:nth-child(even) td { background: var(--slate-50); }
.cookie-type-badge {
    display: inline-block; font-size: .72rem; font-weight: 700;
    padding: 2px 10px; border-radius: 50px;
}
.badge-essential { background: #ECFDF5; color: #059669; }
.badge-analytics  { background: #EFF6FF; color: #2563EB; }
.badge-marketing  { background: #FEF3C7; color: #D97706; }
.badge-prefs      { background: #F5F3FF; color: #7C3AED; }
@media (max-width: 991px) {
    .legal-layout { flex-direction: column; gap: 24px; }
    .legal-toc { position: static; width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   APP SCREENSHOTS SHOWCASE  (Default.aspx — features section)
══════════════════════════════════════════════════════════════ */
.app-shots-row {
    margin-top: 52px;
    margin-bottom: 16px;
}
.app-shot-col {
    margin-bottom: 32px;
}
.app-shot-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15,23,42,.10), 0 1px 4px rgba(15,23,42,.06);
    border: 1px solid var(--slate-200);
    background: #fff;
    transition: transform .28s ease, box-shadow .28s ease;
}
.app-shot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(37,99,235,.14), 0 2px 8px rgba(15,23,42,.08);
}
.app-shot-card--featured {
    border-color: rgba(37,99,235,.35);
    box-shadow: 0 8px 36px rgba(37,99,235,.18), 0 2px 6px rgba(15,23,42,.07);
    transform: translateY(-4px);
}
.app-shot-card--featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 56px rgba(37,99,235,.22), 0 2px 8px rgba(15,23,42,.08);
}
/* browser-style chrome bar */
.app-shot-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--slate-100);
    border-bottom: 1px solid var(--slate-200);
    padding: 9px 14px;
}
.app-shot-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.app-shot-chrome-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--slate-400);
    letter-spacing: .3px;
    margin-left: 6px;
}
.app-shot-img {
    width: 100%;
    height: auto;
    display: block;
}
/* caption below each card */
.app-shot-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    margin-top: 14px;
    padding: 0 6px;
}
.app-shot-caption .fa {
    font-size: 1rem;
    color: var(--blue);
    margin-bottom: 2px;
}
.app-shot-caption strong {
    font-size: .9rem;
    color: var(--slate-800);
    font-weight: 700;
}
.app-shot-caption span {
    font-size: .8rem;
    color: var(--slate-500);
    line-height: 1.45;
}
@media (max-width: 991px) {
    .app-shot-card--featured { transform: none; }
    .app-shot-card--featured:hover { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — 4-step walkthrough  (Default.aspx)
══════════════════════════════════════════════════════════════ */
.hiw-steps {
    margin-top: 60px;
}
/* individual step row */
.hiw-step {
    margin-bottom: 16px;
}
.hiw-step-img-col {
    margin-bottom: 28px;
}
.hiw-step-content-col {
    padding-top: 10px;
}

/* step number badge */
.hiw-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--grad-cta);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-blue);
}
.hiw-step-title {
    font-size: 1.35rem;
    color: var(--slate-900);
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.hiw-step-desc {
    font-size: .95rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 18px;
}
.hiw-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hiw-step-list li {
    font-size: .88rem;
    color: var(--slate-600);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hiw-step-list li .fa {
    color: var(--emerald);
    font-size: .95rem;
    flex-shrink: 0;
}

/* connector between steps */
.hiw-connector {
    display: flex;
    justify-content: center;
    margin: 8px 0 24px;
}
.hiw-connector-line {
    display: block;
    width: 2px;
    height: 48px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--cyan) 100%);
    border-radius: 2px;
    opacity: .35;
}

/* screenshot card */
.hiw-step-screen {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(15,23,42,.12), 0 1px 4px rgba(15,23,42,.06);
    border: 1px solid var(--slate-200);
    background: #fff;
    transition: transform .28s ease, box-shadow .28s ease;
}
.hiw-step-screen:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 52px rgba(37,99,235,.15), 0 2px 6px rgba(15,23,42,.07);
}
/* narrow variant (mobile-style forms) */
.hiw-step-screen--narrow {
    max-width: 380px;
    margin: 0 auto;
}
.hiw-screen-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--slate-100);
    border-bottom: 1px solid var(--slate-200);
    padding: 9px 14px;
}
.hiw-chrome-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hiw-chrome-label {
    font-size: .72rem;
    font-weight: 600;
    color: var(--slate-400);
    letter-spacing: .3px;
    margin-left: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.hiw-screen-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .hiw-step .col-md-push-7,
    .hiw-step .col-md-push-5 { left: 0; }
    .hiw-step .col-md-pull-5,
    .hiw-step .col-md-pull-7 { right: 0; }
    .hiw-step-content-col { padding-left: 15px !important; padding-right: 15px !important; }
    .hiw-step-screen--narrow { max-width: 100%; }
    .hiw-connector-line { height: 32px; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT — Heritage Timeline  (About.aspx)
══════════════════════════════════════════════════════════════ */
.about-timeline {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    padding-left: 40px;
}
/* vertical track line */
.about-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--cyan) 60%, var(--emerald) 100%);
    border-radius: 2px;
    opacity: .3;
}
.about-tl-item {
    position: relative;
    margin-bottom: 36px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
/* year label */
.about-tl-year {
    position: absolute;
    left: -40px;
    top: 8px;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--blue);
    width: 36px;
    text-align: right;
    line-height: 1.2;
}
/* dot on the track */
.about-tl-dot {
    position: absolute;
    left: -28px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--blue);
    flex-shrink: 0;
    z-index: 1;
}
.about-tl-dot--active {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37,99,235,.18);
}
/* card */
.about-tl-card {
    flex: 1;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 20px 22px;
    transition: var(--transition);
}
.about-tl-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.about-tl-card--active {
    border-color: rgba(37,99,235,.35);
    background: var(--blue-50);
}
.about-tl-card h5 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}
.about-tl-card--active h5 { color: var(--blue); }
.about-tl-card p {
    font-size: .88rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin: 0;
}
@media (max-width: 767px) {
    .about-timeline { padding-left: 52px; }
    .about-tl-year  { left: -50px; width: 44px; }
    .about-tl-dot   { left: -30px; }
}

/* ══════════════════════════════════════════════════════════════
   PRICING — Feature Matrix column header buttons
══════════════════════════════════════════════════════════════ */
.matrix-th-badge {
    display: inline-block;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255,255,255,.22);
    color: #fff;
    border-radius: 50px;
    padding: 2px 10px;
    margin-bottom: 6px;
}
.matrix-th-plan {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.matrix-th-price {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
}
.matrix-th-price span {
    font-size: .75rem;
    font-weight: 500;
    opacity: .75;
}
/* base button */
.matrix-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all .22s ease;
    white-space: nowrap;
}
/* Free column button */
.matrix-btn--free {
    background: rgba(16,185,129,.15);
    color: #6EE7B7;
    border: 1px solid rgba(16,185,129,.35);
}
.matrix-btn--free:hover {
    background: rgba(16,185,129,.28);
    color: #fff;
    transform: translateY(-2px);
}
/* Starter / Growth paid button */
.matrix-btn--paid {
    background: var(--blue-50);
    color: var(--blue);
    border: 1.5px solid var(--blue-100);
}
.matrix-btn--paid:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(37,99,235,.30);
}
/* Business (highlighted column) button */
.matrix-btn--business {
    background: #fff;
    color: var(--blue);
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.matrix-btn--business:hover {
    background: var(--blue-50);
    color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,.25);
}

/* ── Footer Visit Counter ───────────────────────────────── */
.footer-visit-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 7px 14px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50px;
    font-size: .78rem;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
}
.footer-visit-count .fa {
    color: var(--emerald);
    font-size: .82rem;
}
.footer-visit-num {
    font-weight: 700;
    font-size: .88rem;
    color: #fff;
    letter-spacing: .01em;
}
.footer-visit-label {
    color: rgba(255,255,255,.50);
}
