/* ============================================================
   KitchenERP — style.css v5
   Design: Clean Corporate Light
   Font: Inter (300–900)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --white:      #FFFFFF;
  --bg:         #F8F7F4;
  --bg-cream:   #F2EFE9;
  --bg-dark:    #1C1B19;
  --surface:    #FFFFFF;
  --s2:         #F5F3EF;

  --orange:     #C8501A;
  --orange-dk:  #A83E12;
  --orange-lt:  rgba(200,80,26,.09);
  --orange-bd:  rgba(200,80,26,.22);

  --ink:        #1C1B19;
  --ink-md:     #3A3835;
  --ink-muted:  #78756E;
  --ink-light:  #AEAAA2;

  --border:     #E5E2DB;
  --border-md:  #CCC9C1;

  --ff-head:    'Inter', system-ui, -apple-system, sans-serif;
  --ff-body:    'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 4px; --r-md: 8px; --r-lg: 14px; --r-xl: 24px;
  --sh-xs: 0 1px 4px rgba(0,0,0,.05);
  --sh-sm: 0 2px 12px rgba(0,0,0,.07);
  --sh-md: 0 6px 32px rgba(0,0,0,.09);
  --sh-lg: 0 20px 64px rgba(0,0,0,.11);
  --t: .22s; --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:hidden;max-width:100%;touch-action:pan-y}
body{background:var(--bg);color:var(--ink);font-family:var(--ff-body);font-size:16px;line-height:1.65;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden;max-width:100%;touch-action:pan-y}
img{max-width:100%;height:auto;display:block}
a{color:var(--orange);text-decoration:none;transition:color var(--t) var(--ease)}
a:hover{color:var(--orange-dk)}
h1,h2,h3,h4,h5{font-family:var(--ff-head);color:var(--ink);line-height:1.12;letter-spacing:-.025em;font-weight:700}
p{color:var(--ink-muted)}

/* Utilities */
.bg-cream{background:var(--bg-cream)}
.bg-dark{background:var(--bg-dark)}
.bg-white{background:var(--white)}
.text-orange{color:var(--orange)!important}
.section-pad{padding:60px 0}
.section-pad-sm{padding:64px 0}

.eyebrow{display:inline-flex;align-items:center;gap:10px;font-family:var(--ff-body);font-size:.72rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--orange);margin-bottom:14px}
.eyebrow::before{content:'';width:22px;height:2px;background:var(--orange);border-radius:2px;flex-shrink:0}
.eyebrow.center{justify-content:center}
.eyebrow.center::before,.eyebrow.center::after{display:none}

.section-title{font-size:clamp(1.95rem,3.4vw,2.85rem);font-weight:800;color:var(--ink);margin-bottom:16px;line-height:1.1;letter-spacing:-.03em}
.section-sub{font-size:1.05rem;color:var(--ink-muted);max-width:560px;line-height:1.75;font-weight:400}

/* ── BUTTONS ── */
.btn-primary{display:inline-flex;align-items:center;gap:8px;background:var(--orange);color:#fff;font-family:var(--ff-body);font-size:.9rem;font-weight:600;padding:13px 26px;border-radius:var(--r-md);border:none;cursor:pointer;text-decoration:none;letter-spacing:.01em;transition:background var(--t),transform var(--t),box-shadow var(--t);white-space:nowrap}
.btn-primary:hover{background:var(--orange-dk);color:#fff;transform:translateY(-1px);box-shadow:0 6px 20px rgba(200,80,26,.3)}
.btn-outline{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--ink);font-family:var(--ff-body);font-size:.9rem;font-weight:600;padding:12px 26px;border-radius:var(--r-md);border:1.5px solid var(--border-md);cursor:pointer;text-decoration:none;transition:all var(--t);white-space:nowrap}
.btn-outline:hover{border-color:var(--ink);color:var(--ink);transform:translateY(-1px)}
.btn-white{display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--ink);font-family:var(--ff-body);font-size:.9rem;font-weight:700;padding:13px 26px;border-radius:var(--r-md);border:none;cursor:pointer;text-decoration:none;transition:all var(--t);white-space:nowrap}
.btn-white:hover{background:var(--bg-cream);color:var(--ink);transform:translateY(-1px)}
.btn-ghost-w{display:inline-flex;align-items:center;gap:8px;background:transparent;color:rgba(255,255,255,.8);font-family:var(--ff-body);font-size:.9rem;font-weight:600;padding:12px 26px;border-radius:var(--r-md);border:1.5px solid rgba(255,255,255,.3);cursor:pointer;text-decoration:none;transition:all var(--t);white-space:nowrap}
.btn-ghost-w:hover{color:#fff;border-color:rgba(255,255,255,.7)}
.btn-nav{font-family:var(--ff-body);font-size:.875rem;font-weight:700;color:#fff;background:var(--orange);border:none;padding:9px 20px;border-radius:var(--r-md);cursor:pointer;text-decoration:none;transition:background var(--t);white-space:nowrap}
.btn-nav:hover{background:var(--orange-dk);color:#fff}

/* ── SITE ALERT BANNER ── */
.site-alert{width:100%;padding:11px 0;position:relative;z-index:1100;overflow:hidden;transition:max-height .4s var(--ease),opacity .35s var(--ease),padding .35s var(--ease)}
.site-alert.hiding{max-height:0!important;opacity:0;padding:0}
.site-alert-inner{display:flex;align-items:center;gap:12px;min-height:0}
.site-alert-icon{width:28px;height:28px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.site-alert-icon svg{width:14px;height:14px;stroke-width:2.5;flex-shrink:0}
.site-alert-msg{flex:1;font-size:.83rem;font-weight:500;line-height:1.45;margin:0;color:inherit}
.site-alert-msg a{color:inherit;text-decoration:underline;font-weight:700}
.site-alert-msg a:hover{opacity:.75}
.site-alert-close{width:28px;height:28px;border:none;background:transparent;display:flex;align-items:center;justify-content:center;border-radius:var(--r-sm);cursor:pointer;opacity:.65;flex-shrink:0;transition:opacity var(--t),background var(--t);padding:0}
.site-alert-close:hover{opacity:1;background:rgba(0,0,0,.08)}
.site-alert-close svg{width:14px;height:14px;stroke-width:2.5;stroke:currentColor}
/* Types */
.site-alert--info{background:#1D4ED8;color:#fff}
.site-alert--info .site-alert-icon{background:rgba(255,255,255,.18)}
.site-alert--info .site-alert-icon svg{stroke:#fff}
.site-alert--warning{background:#C8501A;color:#fff}
.site-alert--warning .site-alert-icon{background:rgba(255,255,255,.18)}
.site-alert--warning .site-alert-icon svg{stroke:#fff}
.site-alert--success{background:#16A34A;color:#fff}
.site-alert--success .site-alert-icon{background:rgba(255,255,255,.18)}
.site-alert--success .site-alert-icon svg{stroke:#fff}
.site-alert--danger{background:#DC2626;color:#fff}
.site-alert--danger .site-alert-icon{background:rgba(255,255,255,.18)}
.site-alert--danger .site-alert-icon svg{stroke:#fff}
.site-alert--soft-warning{background:#FEF3C7;color:#92400E;border-bottom:1px solid #FDE68A}
.site-alert--soft-warning .site-alert-icon{background:rgba(146,64,14,.12)}
.site-alert--soft-warning .site-alert-icon svg{stroke:#92400E}
.site-alert--soft-warning .site-alert-close{color:#92400E}
.site-alert--soft-info{background:#EFF6FF;color:#1E40AF;border-bottom:1px solid #BFDBFE}
.site-alert--soft-info .site-alert-icon{background:rgba(30,64,175,.1)}
.site-alert--soft-info .site-alert-icon svg{stroke:#1E40AF}
.site-alert--soft-info .site-alert-close{color:#1E40AF}

/* ── NAVBAR ── */
.navbar-k{background:rgba(248,247,244,.96);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:1000;transition:box-shadow var(--t)}
.navbar-k.scrolled{box-shadow:var(--sh-sm)}
.navbar-k .container{min-height:68px;display:flex;align-items:center}
.brand-wrap{display:flex;align-items:center;gap:10px;text-decoration:none}
.brand-sq{width:34px;height:34px;background:var(--orange);border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.brand-sq svg{width:18px;height:18px;stroke:#fff}
.brand-text{font-family:var(--ff-head);font-size:1.1rem;font-weight:800;color:var(--ink);letter-spacing:-.02em}
.brand-text span{color:var(--orange)}
.navbar-k .nav-link{font-family:var(--ff-body);font-size:.84rem;font-weight:500;color:var(--ink-muted);padding:6px 13px!important;border-radius:var(--r-sm);transition:all var(--t)}
.navbar-k .nav-link:hover{color:var(--ink);background:var(--bg-cream)}
.navbar-k .nav-link.active{color:var(--orange)}
.navbar-toggler{border:1.5px solid var(--border-md);border-radius:var(--r-sm);padding:7px 11px;background:transparent;transition:background var(--t),border-color var(--t)}
.navbar-toggler:focus{box-shadow:none;outline:none}
.navbar-toggler[aria-expanded="true"]{background:var(--orange-lt);border-color:var(--orange-bd)}
.navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231C1B19' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}

/* ── NAVBAR MOBILE ── */
@media(max-width:991px){
  .navbar-k .navbar-collapse{
    background:var(--white);
    border-top:1px solid var(--border);
    border-radius:0 0 var(--r-lg) var(--r-lg);
    box-shadow:0 12px 40px rgba(0,0,0,.10);
    margin:0 -12px;
    padding:16px 20px 20px;
  }
  .navbar-k .navbar-nav{
    gap:2px;
    margin-bottom:16px;
  }
  .navbar-k .nav-link{
    font-size:.92rem!important;
    font-weight:500;
    color:var(--ink-md)!important;
    padding:11px 14px!important;
    border-radius:var(--r-md);
    border-left:2px solid transparent;
    transition:all var(--t);
  }
  .navbar-k .nav-link:hover{
    background:var(--bg-cream)!important;
    color:var(--ink)!important;
    border-left-color:var(--border-md);
  }
  .navbar-k .nav-link.active{
    color:var(--orange)!important;
    background:var(--orange-lt)!important;
    border-left-color:var(--orange);
    font-weight:600;
  }
  .navbar-k .btn-nav{
    display:block;
    width:100%;
    text-align:center;
    padding:13px 20px;
    font-size:.9rem;
    border-radius:var(--r-md);
    background:var(--orange);
    color:#fff!important;
    font-weight:700;
    letter-spacing:.01em;
    box-shadow:0 4px 16px rgba(200,80,26,.28);
  }
  .navbar-k .btn-nav:hover{background:var(--orange-dk)}
}

/* ── HERO ── */
.hero{background:var(--white);padding:88px 0 72px;position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-100px;right:-100px;width:550px;height:550px;border-radius:50%;background:radial-gradient(ellipse,rgba(200,80,26,.07) 0%,transparent 70%);pointer-events:none}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:var(--orange-lt);border:1px solid var(--orange-bd);color:var(--orange);font-family:var(--ff-body);font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.13em;padding:6px 14px;border-radius:99px;margin-bottom:22px}
.hero-eyebrow .pulse{width:7px;height:7px;border-radius:50%;background:var(--orange);animation:pulse 2s ease-in-out infinite}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(200,80,26,.5)}50%{box-shadow:0 0 0 5px rgba(200,80,26,0)}}
.hero h1{font-size:clamp(2.7rem,5.2vw,3.5rem);font-weight:900;line-height:1.05;letter-spacing:-.04em;color:var(--ink);margin-bottom:22px}
.hero h1 em{font-style:normal;color:var(--orange);font-weight:900}
.hero-lead{font-size:1.1rem;color:var(--ink-muted);line-height:1.75;font-weight:400;max-width:460px;margin-bottom:34px}
.hero-cta-row{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:36px}
.hero-trust{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.hero-trust-item{display:flex;align-items:center;gap:6px;font-size:.78rem;color:var(--ink-light);font-weight:600}
.hero-trust-item svg{width:13px;height:13px;stroke:var(--orange)}

/* Dashboard */
.dash-wrap{position:relative;padding:20px 28px 20px 0}
.hero-dashboard{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);box-shadow:var(--sh-lg);overflow:hidden}
.dash-topbar{background:var(--bg);border-bottom:1px solid var(--border);padding:11px 18px;display:flex;align-items:center;gap:7px}
.dash-dot{width:10px;height:10px;border-radius:50%}
.dd-r{background:#FF5F57}.dd-y{background:#FFBD2E}.dd-g{background:#28C840}
.dash-titlebar{font-family:var(--ff-body);font-size:.73rem;font-weight:600;color:var(--ink-light);margin-left:6px;letter-spacing:.04em}
.dash-body{padding:18px}
.dash-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-bottom:14px}
.ds{background:var(--bg);border:1px solid var(--border);border-radius:var(--r-md);padding:11px 13px}
.ds-lbl{font-size:.67rem;font-weight:700;text-transform:uppercase;letter-spacing:.09em;color:var(--ink-light);margin-bottom:4px}
.ds-val{font-family:var(--ff-head);font-size:1.5rem;font-weight:700;color:var(--ink);line-height:1}
.ds-val.c-o{color:var(--orange)}
.dash-chart{background:var(--bg);border:1px solid var(--border);border-radius:var(--r-md);padding:12px 12px 0;height:86px;display:flex;align-items:flex-end;gap:6px;margin-bottom:13px}
.db{flex:1;border-radius:3px 3px 0 0;background:var(--border);height:0;transition:height .9s cubic-bezier(.34,1.56,.64,1)}
.db.hi{background:var(--orange)}
.dash-table{display:flex;flex-direction:column;gap:6px}
.dr{display:flex;align-items:center;justify-content:space-between;background:var(--bg);border:1px solid var(--border);border-radius:var(--r-md);padding:8px 12px;font-size:.74rem}
.dr-id{font-weight:700;color:var(--ink)}
.dr-name{color:var(--ink-muted)}
.dr-s{font-size:.64rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;padding:2px 8px;border-radius:99px}
.s-paid{background:rgba(34,197,94,.1);color:#16a34a}
.s-ship{background:rgba(59,130,246,.1);color:#2563eb}
.s-pend{background:rgba(200,80,26,.1);color:var(--orange)}

/* Float badges */
.fbadge{position:absolute;background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:9px 14px;box-shadow:var(--sh-md);display:flex;align-items:center;gap:9px;z-index:2}
.fbadge.tr{top:0;right:0}
.fbadge.bl{bottom:8px;left:0}
.fbadge-icon{width:30px;height:30px;border-radius:var(--r-sm);background:var(--orange-lt);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.fbadge-icon svg{width:14px;height:14px;stroke:var(--orange)}
.fbadge strong{display:block;font-size:.8rem;font-weight:700;color:var(--ink);line-height:1.1}
.fbadge span{font-size:.68rem;color:var(--ink-muted)}

/* ── MARQUEE ── */
.marquee-wrap{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--bg-cream);overflow:hidden;white-space:nowrap}
.mq-inner{display:flex;align-items:center;animation:marquee 26s linear infinite;width:max-content}
.mq-inner:hover{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.mq-item{display:inline-flex;align-items:center;gap:7px;padding:13px 28px;font-size:.8rem;font-weight:600;color:var(--ink-muted);letter-spacing:.03em;border-right:1px solid var(--border)}
.mq-item svg{width:14px;height:14px;stroke:var(--ink-light);flex-shrink:0}

/* ── STATS ── */
.stats-band{padding:36px 0;border-bottom:1px solid var(--border);background:var(--white)}
.stat-b{text-align:center;padding:12px 24px}
.stat-num{font-family:var(--ff-head);font-size:clamp(3rem,5.5vw,4.4rem);font-weight:900;color:var(--orange);line-height:1;letter-spacing:-.05em;margin-bottom:10px;display:flex;align-items:baseline;justify-content:center;gap:1px}
.stat-num span{color:var(--orange)}
.stat-num .stat-unit{color:var(--ink);font-style:normal}
.stat-lbl{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.15em;color:var(--ink-light)}

/* ── FEATURE TABS ── */
.ftabs{display:flex;gap:4px;border-bottom:1px solid var(--border);margin-bottom:52px;overflow-x:auto;scrollbar-width:none}
.ftabs::-webkit-scrollbar{display:none}
.ftab{font-family:var(--ff-body);font-size:.875rem;font-weight:600;color:var(--ink-muted);padding:14px 20px;border:none;background:transparent;cursor:pointer;white-space:nowrap;border-bottom:2px solid transparent;margin-bottom:-1px;transition:all var(--t)}
.ftab:hover{color:var(--ink)}
.ftab.active{color:var(--orange);border-bottom-color:var(--orange)}
.fpanel{display:none}
.fpanel.active{display:block}
.fp-num{font-family:var(--ff-body);font-size:.72rem;font-weight:700;color:var(--orange);text-transform:uppercase;letter-spacing:.12em;margin-bottom:8px}
.fp-title{font-size:clamp(1.5rem,2.5vw,2.1rem);font-weight:800;color:var(--ink);margin-bottom:14px;line-height:1.12;letter-spacing:-.025em}
.fp-desc{font-size:1rem;color:var(--ink-muted);line-height:1.75;font-weight:300;margin-bottom:24px}
.fp-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:9px;margin-bottom:28px}
.fp-list li{display:flex;align-items:flex-start;gap:9px;font-size:.9rem;color:var(--ink-md);line-height:1.5}
.fp-list li svg{width:15px;height:15px;stroke:var(--orange);flex-shrink:0;margin-top:2px}
.fp-visual{background:var(--bg-cream);border:1px solid var(--border);border-radius:var(--r-xl);min-height:320px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:36px;position:relative;overflow:hidden}
.fp-visual::before{content:'';position:absolute;bottom:-40px;right:-40px;width:180px;height:180px;border-radius:50%;background:rgba(200,80,26,.04)}
/* ── FP-VISUAL with real image ── */
.fp-img{padding:0;background:transparent;border-color:transparent}
.fp-img::before{display:none!important}
.fp-img img{width:100%;height:100%;min-height:320px;object-fit:cover;display:block;transition:transform .5s var(--ease)}
.fp-img:hover img{transform:scale(1.04)}
.fp-img .fp-badge{z-index:2;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);box-shadow:0 4px 16px rgba(0,0,0,.1)}
.fp-visual-icon{width:64px;height:64px;border-radius:var(--r-lg);background:var(--white);border:1px solid var(--border);box-shadow:var(--sh-sm);display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
.fp-visual-icon svg{width:28px;height:28px;stroke:var(--orange)}
.fp-visual-label{font-family:var(--ff-head);font-size:1.1rem;font-weight:700;color:var(--ink);margin-bottom:5px}
.fp-visual-sub{font-size:.8rem;color:var(--ink-muted)}
.fp-badge{position:absolute;background:var(--white);border:1px solid var(--border);border-radius:var(--r-md);padding:7px 12px;box-shadow:var(--sh-xs);display:flex;align-items:center;gap:6px;font-size:.73rem;font-weight:600;color:var(--ink)}
.fp-badge.tl{top:18px;left:18px}.fp-badge.tr{top:18px;right:18px}
.fp-badge.bl{bottom:18px;left:18px}.fp-badge.br{bottom:18px;right:18px}
.dot-g{width:6px;height:6px;border-radius:50%;background:#22c55e;display:inline-block}
.dot-o{width:6px;height:6px;border-radius:50%;background:var(--orange);display:inline-block}
.dot-b{width:6px;height:6px;border-radius:50%;background:#3b82f6;display:inline-block}

/* ── VIDEO ── */
.video-wrap{border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--sh-lg);aspect-ratio:16/9;background:var(--bg-dark)}
.video-wrap iframe{width:100%;height:100%;border:none;display:block}

/* ── PHONE MOCKUP ── */
.phone-mock{background:var(--bg-dark);border-radius:40px;padding:14px;box-shadow:var(--sh-lg);max-width:256px;margin:0 auto;border:5px solid #2A2926}
.phone-screen{background:var(--bg);border-radius:28px;padding:14px;min-height:420px;overflow:hidden}
.phone-notch{width:76px;height:7px;background:#2A2926;border-radius:99px;margin:0 auto 14px}
.phone-header{background:var(--orange);color:#fff;font-size:.7rem;font-weight:700;padding:9px 12px;border-radius:var(--r-md);margin-bottom:10px}
.phone-task{background:var(--white);border:1px solid var(--border);border-radius:var(--r-md);padding:9px 11px;margin-bottom:7px;font-size:.71rem}
.phone-task-title{font-weight:700;color:var(--ink);margin-bottom:1px}
.phone-task-meta{color:var(--ink-muted)}
.phone-task.done{opacity:.55}
.phone-task.done .phone-task-title{text-decoration:line-through}

/* ── WHY CARDS ── */
.why-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:26px;transition:transform var(--t),box-shadow var(--t);height:100%}
.why-card:hover{transform:translateY(-4px);box-shadow:var(--sh-md)}
.why-icon{width:42px;height:42px;border-radius:var(--r-md);background:var(--orange-lt);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.why-icon svg{width:19px;height:19px;stroke:var(--orange)}
.why-card h4{font-size:1.05rem;font-weight:700;color:var(--ink);margin-bottom:8px}
.why-card p{font-size:.875rem;color:var(--ink-muted);line-height:1.65;font-weight:300}

/* ── PAGE PREVIEWS (homepage sections) ── */
.page-preview{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;transition:transform var(--t),box-shadow var(--t)}
.page-preview:hover{transform:translateY(-4px);box-shadow:var(--sh-md)}
.page-preview-head{padding:28px 28px 20px;border-bottom:1px solid var(--border);background:#fff}
.page-preview-icon{width:44px;height:44px;border-radius:var(--r-md);background:var(--orange-lt);display:flex;align-items:center;justify-content:center;margin-bottom:14px}
.page-preview-icon svg{width:20px;height:20px;stroke:var(--orange)}
.page-preview-head h3{font-size:1.15rem;font-weight:700;color:var(--ink);margin-bottom:6px}
.page-preview-head p{font-size:.875rem;color:var(--ink-muted);font-weight:300;line-height:1.6}
.page-preview-body{padding:20px 28px 24px}
.preview-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px;margin-bottom:20px}
.preview-list li{display:flex;align-items:center;gap:8px;font-size:.85rem;color:var(--ink-md)}
.preview-list li svg{width:13px;height:13px;stroke:var(--orange);flex-shrink:0}

/* ── TESTIMONIALS ── */
.testi-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:30px;height:100%;transition:transform var(--t),box-shadow var(--t)}
.testi-card:hover{transform:translateY(-3px);box-shadow:var(--sh-md)}
.testi-quote{font-family:var(--ff-head);font-size:.975rem;font-style:normal;font-weight:400;color:var(--ink-md);line-height:1.75;margin-bottom:22px}
.testi-quote::before{content:'\201C';font-size:2.8rem;color:var(--orange);line-height:0;vertical-align:-.45em;margin-right:2px;font-style:normal}
.testi-author{display:flex;align-items:center;gap:12px}
.testi-av{width:38px;height:38px;border-radius:50%;background:var(--orange-lt);display:flex;align-items:center;justify-content:center;font-family:var(--ff-head);font-size:.9rem;font-weight:700;color:var(--orange);flex-shrink:0}
.testi-name{font-size:.875rem;font-weight:700;color:var(--ink);margin-bottom:1px}
.testi-role{font-size:.74rem;color:var(--ink-muted)}

/* ── PRICING CARDS ── */
.price-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:32px 26px;position:relative;transition:transform var(--t),box-shadow var(--t);height:100%;display:flex;flex-direction:column}
.price-card:hover{transform:translateY(-4px);box-shadow:var(--sh-md)}
.price-card.pop{border-color:var(--orange);border-width:2px;box-shadow:0 0 0 4px rgba(200,80,26,.06)}
.pop-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--orange);color:#fff;font-size:.66rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;padding:4px 14px;border-radius:99px;white-space:nowrap}
.plan-name{font-family:var(--ff-head);font-size:1.2rem;font-weight:800;color:var(--ink);margin-bottom:2px;letter-spacing:-.02em}
.plan-sub{font-size:.73rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--ink-light);margin-bottom:18px}
.plan-price-amt{font-family:var(--ff-head);font-size:2.6rem;font-weight:800;color:var(--ink);letter-spacing:-.04em;line-height:1}
.plan-price-per{font-size:.88rem;color:var(--ink-muted)}
.plan-setup{font-size:.78rem;color:var(--ink-muted);margin-bottom:20px}
.plan-setup strong{color:var(--ink);font-weight:700}
.plan-divider{height:1px;background:var(--border);margin-bottom:20px}
.check-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px}
.check-list li{display:flex;align-items:flex-start;gap:8px;font-size:.86rem;color:var(--ink-md)}
.check-list li svg{width:14px;height:14px;stroke:var(--orange);flex-shrink:0;margin-top:2px}
.check-list li.off{color:var(--ink-light)}
.check-list li.off svg{stroke:var(--border-md)}
.price-cta{margin-top:auto;padding-top:22px}

/* ── INTEGRATION CARDS ── */
.int-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:26px;position:relative;overflow:hidden;transition:transform var(--t),box-shadow var(--t);height:100%}
.int-card:hover{transform:translateY(-3px);box-shadow:var(--sh-md)}
.int-card::after{content:'';position:absolute;bottom:0;left:0;width:0;height:3px;background:var(--orange);transition:width .3s var(--ease)}
.int-card:hover::after{width:100%}
.int-logo{width:48px;height:48px;border-radius:var(--r-md);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.88rem;margin-bottom:13px}
.int-logo svg{width:22px;height:22px}
.int-logo.d2020{background:var(--bg-dark);color:#fff;font-family:var(--ff-head);font-size:.95rem}
.int-logo.stax{background:rgba(200,80,26,.1)}.int-logo.stax svg{stroke:var(--orange)}
.int-logo.qbo{background:rgba(34,197,94,.1)}.int-logo.qbo svg{stroke:#16a34a}
.int-logo.qbd{background:rgba(34,197,94,.08)}.int-logo.qbd svg{stroke:#16a34a}
.int-logo.fb{background:rgba(59,130,246,.1)}.int-logo.fb svg{stroke:#2563eb}
.int-logo.gg{background:rgba(220,38,38,.1)}.int-logo.gg svg{stroke:#dc2626}
.int-tag{display:inline-block;background:var(--bg-cream);border:1px solid var(--border);color:var(--ink-muted);font-size:.67rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:3px 9px;border-radius:99px;margin-bottom:9px}
.int-name{font-size:1.05rem;font-weight:700;color:var(--ink);margin-bottom:9px}

/* ── AUDIENCE CARDS ── */
.aud-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;transition:transform var(--t),box-shadow var(--t);height:100%}
.aud-card:hover{transform:translateY(-4px);box-shadow:var(--sh-md)}
.aud-head{padding:26px 26px 20px;border-bottom:1px solid var(--border);background:var(--bg-cream)}
.aud-head-icon{width:42px;height:42px;border-radius:var(--r-md);background:var(--orange-lt);display:flex;align-items:center;justify-content:center;margin-bottom:13px}
.aud-head-icon svg{width:19px;height:19px;stroke:var(--orange)}
.aud-head h3{font-size:1.15rem;font-weight:700;color:var(--ink);margin-bottom:7px}
.aud-head p{font-size:.875rem;color:var(--ink-muted);font-weight:300;line-height:1.6}
.aud-body{padding:22px 26px 26px}
.aud-list{list-style:none;padding:0;display:flex;flex-direction:column;gap:9px;margin-bottom:22px}
.aud-list li{display:flex;align-items:flex-start;gap:9px;font-size:.875rem;color:var(--ink-md)}
.aud-list li svg{width:13px;height:13px;stroke:var(--orange);flex-shrink:0;margin-top:3px}

/* ── FAQ ACCORDION ── */
.faq-item{border-bottom:1px solid var(--border)}
.faq-item:first-child{border-top:1px solid var(--border)}
.faq-q{width:100%;background:none;border:none;text-align:left;cursor:pointer;padding:18px 0;display:flex;align-items:center;justify-content:space-between;gap:14px;font-family:var(--ff-body);font-size:.95rem;font-weight:600;color:var(--ink);transition:color var(--t)}
.faq-q:hover{color:var(--orange)}
.faq-q svg{width:18px;height:18px;stroke:var(--ink-muted);flex-shrink:0;transition:transform var(--t),stroke var(--t)}
.faq-item.open .faq-q{color:var(--orange)}
.faq-item.open .faq-q svg{transform:rotate(45deg);stroke:var(--orange)}
.faq-a{overflow:hidden;max-height:0;transition:max-height .35s var(--ease)}
.faq-a p{font-size:.9rem;color:var(--ink-muted);line-height:1.75;font-weight:300;padding-bottom:18px}
.faq-item.open .faq-a{max-height:300px}

/* ── BLOG CARDS ── */
.blog-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);overflow:hidden;transition:transform var(--t),box-shadow var(--t),border-color var(--t);height:100%;display:flex;flex-direction:column}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--sh-md);border-color:var(--orange)}
.blog-card-img{height:152px;background:var(--bg-cream);display:flex;align-items:center;justify-content:center}
.blog-card-img svg{width:36px;height:36px;stroke:var(--border-md)}
.blog-card-body{padding:20px;flex:1;display:flex;flex-direction:column}
.blog-cat{display:inline-block;background:var(--orange-lt);border:1px solid var(--orange-bd);color:var(--orange);font-size:.67rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;padding:2px 9px;border-radius:99px;margin-bottom:9px}
.blog-meta-row{display:flex;gap:10px;align-items:center;margin-bottom:8px;font-size:.74rem;color:var(--ink-light)}
.blog-card-title{font-family:var(--ff-head);font-size:.975rem;font-weight:700;color:var(--ink);margin-bottom:8px;line-height:1.4;flex:1;letter-spacing:-.01em}
.blog-excerpt{font-size:.84rem;color:var(--ink-muted);font-weight:300;line-height:1.65;margin-bottom:12px}
.blog-link{display:inline-flex;align-items:center;gap:5px;color:var(--orange);font-size:.8rem;font-weight:700;text-decoration:none;transition:gap var(--t)}
.blog-link:hover{gap:9px;color:var(--orange-dk)}
.blog-filter-bar{display:flex;gap:8px;flex-wrap:wrap}
.bfbtn{background:var(--white);border:1.5px solid var(--border);color:var(--ink-muted);border-radius:99px;padding:6px 16px;font-family:var(--ff-body);font-size:.8rem;font-weight:600;cursor:pointer;transition:all var(--t)}
.bfbtn:hover{border-color:var(--orange);color:var(--orange)}
.bfbtn.active{background:var(--orange);border-color:var(--orange);color:#fff}
.blog-sidebar-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:22px;margin-bottom:20px}
.blog-sidebar-card h5{font-size:1rem;font-weight:700;color:var(--ink);margin-bottom:14px}
.blog-page-btn{background:var(--white);border:1.5px solid var(--border);color:var(--ink-muted);border-radius:var(--r-md);padding:7px 14px;font-family:var(--ff-body);font-size:.84rem;font-weight:600;cursor:pointer;transition:all var(--t);display:inline-flex;align-items:center;gap:5px}
.blog-page-btn:hover{border-color:var(--orange);color:var(--orange)}
.blog-page-btn.active{background:var(--orange);border-color:var(--orange);color:#fff}

/* ── PAGE HERO (inner pages) ── */
.page-hero{background:var(--bg-cream);border-bottom:1px solid var(--border);padding:52px 0 64px;position:relative;overflow:hidden}
.page-hero::after{content:'';position:absolute;top:0;right:0;width:36%;height:100%;background:linear-gradient(135deg,transparent 55%,rgba(200,80,26,.04));pointer-events:none}
.page-hero-ey{font-family:var(--ff-body);font-size:.72rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--orange);display:flex;align-items:center;gap:10px;margin-bottom:14px}
.page-hero-ey::before{content:'';width:22px;height:2px;background:var(--orange)}
.page-hero h1{font-size:clamp(2.4rem,4.5vw,3.4rem);font-weight:800;letter-spacing:-.035em;color:var(--ink);margin-bottom:14px;line-height:1.07}
.page-hero h1 em{font-style:normal;color:var(--orange);font-weight:800}
.page-hero h1 span.text-brand{color:var(--orange);font-weight:800}
.page-hero p{font-size:1.05rem;color:var(--ink-muted);max-width:580px;line-height:1.75;font-weight:400}
.breadcrumb-k{display:flex;align-items:center;gap:8px;font-size:.78rem;color:var(--ink-light);margin-bottom:16px;flex-wrap:wrap}
.breadcrumb-k a{color:var(--ink-light);text-decoration:none;transition:color var(--t)}
.breadcrumb-k a:hover{color:var(--orange)}
.breadcrumb-k svg{width:12px;height:12px;stroke:var(--border-md);flex-shrink:0}

/* ── BLOG FEATURED POST ── */
.blog-featured{background:var(--white);border:1px solid var(--border);border-radius:var(--r-xl);overflow:hidden;box-shadow:var(--sh-sm);transition:transform var(--t),box-shadow var(--t)}
.blog-featured:hover{transform:translateY(-3px);box-shadow:var(--sh-md)}
.blog-featured-image{min-height:300px;background:var(--bg-cream);display:flex;align-items:center;justify-content:center;height:100%}
.blog-featured-placeholder{display:flex;align-items:center;justify-content:center;width:100%;height:100%;min-height:300px}
.blog-featured-placeholder svg{width:64px;height:64px;stroke:var(--border-md)}
.blog-featured-content{padding:40px 44px}
.blog-read-more{display:inline-flex;align-items:center;gap:6px;color:var(--orange);font-size:.84rem;font-weight:700;text-decoration:none;transition:gap var(--t)}
.blog-read-more:hover{gap:10px;color:var(--orange-dk)}

/* ── CTA BAND ── */
.cta-band{background:var(--bg-dark);padding:76px 0;position:relative;overflow:hidden}
.cta-band::before{content:'';position:absolute;top:-80px;right:-80px;width:300px;height:300px;border-radius:50%;background:rgba(200,80,26,.1);pointer-events:none}
.cta-band .section-title{color:#fff}
.cta-band .section-sub{color:rgba(255,255,255,.55)}

/* ── DEMO FORM CARD ── */
.demo-form-card{background:var(--white);border-radius:var(--r-xl);padding:38px;box-shadow:var(--sh-lg)}
.demo-form-title{font-family:var(--ff-head);font-size:1.3rem;font-weight:800;color:var(--ink);margin-bottom:5px;letter-spacing:-.02em}
.form-lbl{font-size:.78rem;font-weight:700;color:var(--ink-md);display:block;margin-bottom:5px;letter-spacing:.01em}
.form-lbl span{color:var(--orange)}
.form-ctrl{background:var(--bg)!important;border:1.5px solid var(--border)!important;border-radius:var(--r-md)!important;color:var(--ink)!important;font-family:var(--ff-body);font-size:.9rem;padding:10px 13px;transition:border-color var(--t),box-shadow var(--t)}
.form-ctrl:focus{background:var(--white)!important;border-color:var(--orange)!important;box-shadow:0 0 0 3px rgba(200,80,26,.1)!important;outline:none}
.form-ctrl::placeholder{color:var(--ink-light)}
.form-select.form-ctrl{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2378756E' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e")!important;background-repeat:no-repeat!important;background-position:right 12px center!important;background-size:14px!important}
.form-select.form-ctrl option{background:var(--white);color:var(--ink)}
.form-note{font-size:.74rem;color:var(--ink-light);margin-top:7px}
.form-success{display:flex;align-items:flex-start;gap:12px;background:rgba(34,197,94,.06);border:1px solid rgba(34,197,94,.2);border-radius:var(--r-md);padding:14px 18px;margin-top:14px}
.form-success svg{width:19px;height:19px;min-width:19px;stroke:#16a34a;margin-top:2px}
.form-success strong{color:#16a34a;font-size:.88rem;display:block;margin-bottom:2px}
.form-success p{color:var(--ink-muted);font-size:.83rem;margin:0}

/* Contact info */
.ci-item{display:flex;gap:13px;align-items:flex-start;margin-bottom:20px}
.ci-icon{width:38px;height:38px;min-width:38px;border-radius:var(--r-md);background:var(--orange-lt);border:1px solid var(--orange-bd);display:flex;align-items:center;justify-content:center}
.ci-icon svg{width:17px;height:17px;stroke:var(--orange)}
.ci-label{font-size:.69rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--orange);margin:0 0 2px}
.ci-value{font-size:.9rem;color:var(--ink-md);line-height:1.55}
.ci-value a{color:var(--ink-md);transition:color var(--t)}
.ci-value a:hover{color:var(--orange)}
.map-placeholder{margin-top:18px;background:var(--bg-cream);border:1px solid var(--border);border-radius:var(--r-lg);height:170px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:7px;color:var(--ink-muted);font-size:.83rem}
.map-placeholder svg{width:28px;height:28px;stroke:var(--orange);opacity:.6}

/* ── FOOTER ── */
.footer{background:#2a2a29;padding:68px 0 0}
.footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:14px;text-decoration:none}
.footer-sq{width:28px;height:28px;background:var(--orange);border-radius:var(--r-sm);display:flex;align-items:center;justify-content:center}
.footer-sq svg{width:14px;height:14px;stroke:#fff}
.footer-brand-name{font-family:var(--ff-head);font-size:1rem;font-weight:800;color:#fff;letter-spacing:-.02em}
.footer-brand-name span{color:var(--orange)}
.footer-tagline{font-size:.84rem;color:rgba(255,255,255,.4);line-height:1.65;font-weight:300}
.footer-heading{font-size:.69rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;color:rgba(255,255,255,.35);margin-bottom:13px}
.footer-links{list-style:none;padding:0;display:flex;flex-direction:column;gap:9px}
.footer-links a{font-size:.875rem;color:rgba(255,255,255,.55);text-decoration:none;transition:color var(--t)}
.footer-links a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding:20px 0;margin-top:48px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px}
.footer-bottom p{font-size:.77rem;color:rgba(255,255,255,.25);margin:0}
.footer-powered-inline{font-size:.77rem;color:rgba(255,255,255,.25);margin:0}
.footer-powered-inline a{color:rgba(255,255,255,.35);text-decoration:none;transition:color var(--t)}
.footer-powered-inline a:hover{color:rgba(255,255,255,.65)}
.footer-bottom a{font-size:.77rem;color:rgba(255,255,255,.25);text-decoration:none}
.footer-bottom a:hover{color:rgba(255,255,255,.6)}

/* ── SCROLL REVEAL ── */
.reveal{opacity:0;transform:translateY(20px);transition:opacity .5s var(--ease),transform .5s var(--ease)}
.reveal.in{opacity:1;transform:translateY(0)}

/* ── COMPARISON TABLE ── */
.cmp-table{width:100%;border-collapse:separate;border-spacing:0;font-size:.875rem}
.cmp-table th{padding:14px 18px;font-family:var(--ff-body);font-weight:700;font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:var(--ink-muted);background:var(--bg-cream);border-bottom:1px solid var(--border);text-align:center}
.cmp-table th:first-child{text-align:left}
.cmp-table th.pop-col{color:var(--orange)}
.cmp-table td{padding:12px 18px;border-bottom:1px solid var(--border);text-align:center;color:var(--ink-md)}
.cmp-table td:first-child{text-align:left;font-weight:600;color:var(--ink)}
.cmp-table td.pop-col{background:rgba(200,80,26,.03)}
.cmp-icon-yes{color:var(--orange);font-size:1rem}
.cmp-icon-no{color:var(--border-md);font-size:1rem}

/* ── IMAGE CARD (top-overlay style) ── */
.fp-img-card{position:relative;border-radius:var(--r-xl);overflow:hidden;display:block;line-height:0}
.fp-img-card img{width:100%;height:400px;object-fit:cover;object-position:center;display:block;transition:transform .5s var(--ease);line-height:0}
.fp-img-card:hover img{transform:scale(1.04)}
.fp-card-top{position:absolute;top:0;left:0;right:0;padding:18px 22px;background:linear-gradient(180deg,rgba(20,18,15,.78) 0%,rgba(20,18,15,0) 100%);display:flex;align-items:center;gap:12px;z-index:2}
.fp-card-title{color:#fff;font-size:.95rem;font-weight:700;letter-spacing:-.01em;flex:1;line-height:1.3}
.fp-card-badge{display:inline-flex;align-items:center;background:var(--orange);color:#fff;font-size:.68rem;font-weight:700;padding:4px 12px;border-radius:99px;letter-spacing:.04em;white-space:nowrap;flex-shrink:0}
.fp-card-status{position:absolute;bottom:18px;left:18px;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border-radius:var(--r-md);padding:7px 14px;font-size:.73rem;font-weight:600;color:var(--ink);display:inline-flex;align-items:center;gap:6px;box-shadow:0 4px 16px rgba(0,0,0,.12);z-index:2;line-height:1.4}

/* ── FEATURES GRID (homepage compact cards) ── */
.feat-card{background:#fff;border:1px solid var(--border);border-radius:var(--r-xl);padding:28px 26px 24px;display:flex;flex-direction:column;gap:14px;transition:box-shadow .25s var(--ease),transform .25s var(--ease)}
.feat-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.09);transform:translateY(-3px)}
.feat-icon{width:46px;height:46px;border-radius:12px;background:rgba(200,80,26,.1);display:flex;align-items:center;justify-content:center;flex-shrink:0}
.feat-icon svg{width:22px;height:22px;stroke:var(--orange)}
.feat-title{font-size:1.05rem;font-weight:700;color:var(--ink);letter-spacing:-.02em;margin:0}
.feat-desc{font-size:.875rem;line-height:1.65;color:var(--ink-muted);margin:0;flex:1}
.feat-link{display:inline-flex;align-items:center;gap:6px;font-size:.82rem;font-weight:700;color:var(--orange);text-decoration:none;letter-spacing:.01em;margin-top:4px;transition:gap .2s var(--ease)}
.feat-link:hover{gap:10px;color:var(--orange)}
.feat-link svg{width:14px;height:14px;stroke:var(--orange);flex-shrink:0;transition:transform .2s var(--ease)}
.feat-link:hover svg{transform:translateX(3px)}

/* ── RESPONSIVE ── */
@media(max-width:991px){
  .hero{padding:60px 0 50px}
  .fbadge{display:none}
  .dash-wrap{padding:0;margin-top:28px}
  .ftab{padding:12px 14px;font-size:.8rem}
}
@media(max-width:767px){
  .section-pad{padding:45px 0}
  .demo-form-card{padding:22px 16px}
  .dash-stats{grid-template-columns:repeat(3,1fr)}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation:none!important;transition:none!important}}

/* ── reCAPTCHA badge gizle ── */
.grecaptcha-badge{visibility:hidden!important}


/* ── 404 PAGE SPECIFIC ── */
.err-section {
    min-height: calc(100vh - 68px - 260px);
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
}

    .err-section::before {
        content: '';
        position: absolute;
        top: -120px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(200,80,26,.06) 0%, transparent 70%);
        pointer-events: none;
    }

/* Big 404 number */
.err-code {
    font-family: var(--ff-head);
    font-size: clamp(7rem, 18vw, 14rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.06em;
    color: transparent;
    -webkit-text-stroke: 2px var(--border-md);
    position: relative;
    user-select: none;
    margin-bottom: 8px;
}

    .err-code .err-zero {
        color: var(--orange);
        -webkit-text-stroke: 0;
        display: inline-block;
        animation: bounce-zero 3s ease-in-out infinite;
    }

@keyframes bounce-zero {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    30% {
        transform: translateY(-12px) rotate(-4deg);
    }

    60% {
        transform: translateY(-6px) rotate(2deg);
    }
}

/* Icon circle */
.err-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--orange-lt);
    border: 1.5px solid var(--orange-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

    .err-icon-wrap svg {
        width: 30px;
        height: 30px;
        stroke: var(--orange);
    }

/* Quick links grid */
.err-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .err-links-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.err-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 18px 12px;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    text-decoration: none;
    transition: all var(--t) var(--ease);
    cursor: pointer;
}

    .err-link-card:hover {
        background: var(--white);
        border-color: var(--orange-bd);
        transform: translateY(-3px);
        box-shadow: var(--sh-md);
        color: var(--ink);
    }

.err-link-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t);
}

.err-link-card:hover .err-link-card-icon {
    background: var(--orange-lt);
    border-color: var(--orange-bd);
}

.err-link-card-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--ink-muted);
    transition: stroke var(--t);
}

.err-link-card:hover .err-link-card-icon svg {
    stroke: var(--orange);
}

.err-link-card-label {
    font-size: .75rem;
    font-weight: 700;
    color: var(--ink-muted);
    letter-spacing: .02em;
    transition: color var(--t);
}

.err-link-card:hover .err-link-card-label {
    color: var(--ink);
}

/* Search bar */
.err-search-wrap {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.err-search-input {
    width: 100%;
    padding: 13px 50px 13px 18px;
    font-family: var(--ff-body);
    font-size: .9rem;
    color: var(--ink);
    background: var(--bg-cream);
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
}

    .err-search-input::placeholder {
        color: var(--ink-light);
    }

    .err-search-input:focus {
        border-color: var(--orange-bd);
        box-shadow: 0 0 0 3px rgba(200,80,26,.1);
        background: var(--white);
    }

.err-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    background: var(--orange);
    border: none;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t);
}

    .err-search-btn:hover {
        background: var(--orange-dk);
    }

    .err-search-btn svg {
        width: 15px;
        height: 15px;
        stroke: #fff;
    }

/* Divider with text */
.err-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 28px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

    .err-divider::before, .err-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .err-divider span {
        font-size: .72rem;
        font-weight: 700;
        color: var(--ink-light);
        letter-spacing: .1em;
        text-transform: uppercase;
        white-space: nowrap;
    }


/* ── THANKS PAGE SPECIFIC ── */
.thanks-section {
    min-height: calc(100vh - 68px - 260px);
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 80px 0 96px;
    position: relative;
    overflow: hidden;
}

    .thanks-section::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 640px;
        height: 640px;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(200,80,26,.07) 0%, transparent 68%);
        pointer-events: none;
    }

/* Animated check circle */
.check-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,80,26,.12) 0%, rgba(200,80,26,.05) 100%);
    border: 2px solid var(--orange-bd);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    animation: pop-in .5s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes pop-in {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.check-circle::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(200,80,26,.15);
    animation: ripple 2.4s ease-out infinite;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

.check-circle svg {
    width: 38px;
    height: 38px;
    stroke: var(--orange);
    animation: draw-check .5s .4s ease both;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}

@keyframes draw-check {
    to {
        stroke-dashoffset: 0;
    }
}

/* What happens next cards */
.next-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 22px;
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: all var(--t) var(--ease);
    text-align: left;
}

    .next-card:hover {
        background: var(--white);
        border-color: var(--orange-bd);
        box-shadow: var(--sh-md);
        transform: translateY(-2px);
    }

.next-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.next-card-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 3px;
}

.next-card-desc {
    font-size: .8rem;
    color: var(--ink-muted);
    line-height: 1.55;
    margin: 0;
}

/* Countdown timer */
.countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-lt);
    border: 1px solid var(--orange-bd);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 99px;
    letter-spacing: .04em;
    margin-bottom: 24px;
}

    .countdown-badge .pulse {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--orange);
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {
    0%,100% {
        box-shadow: 0 0 0 0 rgba(200,80,26,.5);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(200,80,26,0);
    }
}

/* Divider */
.thanks-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 32px 0;
}

    .thanks-divider::before,
    .thanks-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .thanks-divider span {
        font-size: .72rem;
        font-weight: 700;
        color: var(--ink-light);
        letter-spacing: .1em;
        text-transform: uppercase;
        white-space: nowrap;
    }

/* Content animation */
.thanks-content {
    animation: fade-up .55s .15s ease both;
}

@keyframes fade-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}



.article-body h2 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--ink);
    margin: 40px 0 14px;
    letter-spacing: -.02em;
    line-height: 1.3
}

.article-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 30px 0 10px;
    letter-spacing: -.015em
}

.article-body p {
    font-size: 1.02rem;
    color: var(--ink-muted);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 18px
}

.article-body ul, .article-body ol {
    padding-left: 22px;
    margin-bottom: 18px
}

    .article-body ul li, .article-body ol li {
        font-size: 1rem;
        color: var(--ink-muted);
        line-height: 1.8;
        font-weight: 300;
        margin-bottom: 8px
    }

.article-body strong {
    color: var(--ink);
    font-weight: 600
}

.article-body blockquote {
    border-left: 3px solid var(--orange);
    padding: 16px 24px;
    margin: 28px 0;
    background: var(--bg-cream);
    border-radius: 0 var(--r-md) var(--r-md) 0
}

    .article-body blockquote p {
        font-size: 1.05rem;
        font-style: italic;
        color: var(--ink-md);
        margin-bottom: 0;
        font-weight: 400
    }

.article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-xl);
    margin-bottom: 40px
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px
}

.article-cat {
    background: var(--orange-lt);
    border: 1px solid var(--orange-bd);
    color: var(--orange);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 4px 12px;
    border-radius: 99px
}

.article-date {
    font-size: .84rem;
    color: var(--ink-light);
    font-weight: 500
}

.article-read {
    font-size: .84rem;
    color: var(--ink-light);
    font-weight: 500
}

.author-box {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 48px
}

.author-av {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px
}

.author-title {
    font-size: .84rem;
    color: var(--ink-muted);
    font-weight: 300
}

.stat-highlight {
    background: var(--orange-lt);
    border: 1px solid var(--orange-bd);
    border-radius: var(--r-lg);
    padding: 28px;
    margin: 28px 0;
    text-align: center
}

    .stat-highlight .big {
        font-family: var(--ff-head);
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--orange);
        line-height: 1;
        margin-bottom: 8px
    }

    .stat-highlight .lbl {
        font-size: .875rem;
        font-weight: 600;
        color: var(--ink-md)
    }

.related-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px;
    height: 100%;
    transition: box-shadow var(--t),transform var(--t)
}

    .related-card:hover {
        box-shadow: var(--sh-md);
        transform: translateY(-2px)
    }

.related-cat {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 8px
}

.related-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 10px
}

.related-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none
}

    .related-link:hover {
        color: var(--orange-dk)
    }



.legal-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 36px 0 12px;
    letter-spacing: -.015em
}

.legal-body p {
    font-size: .95rem;
    color: var(--ink-muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 14px
}

.legal-body ul {
    padding-left: 20px;
    margin-bottom: 14px
}

    .legal-body ul li {
        font-size: .95rem;
        color: var(--ink-muted);
        line-height: 1.8;
        font-weight: 300;
        margin-bottom: 6px
    }

.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-lt);
    border: 1px solid var(--orange-bd);
    color: var(--orange);
    font-size: .78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 32px
}

/* Cookie type table */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: .875rem
}

    .cookie-table thead tr {
        background: var(--bg-cream);
        border-bottom: 2px solid var(--border)
    }

    .cookie-table th {
        padding: 12px 16px;
        text-align: left;
        font-weight: 700;
        color: var(--ink);
        font-size: .8rem;
        letter-spacing: .03em;
        text-transform: uppercase
    }

    .cookie-table td {
        padding: 12px 16px;
        border-bottom: 1px solid var(--border);
        color: var(--ink-muted);
        font-weight: 300;
        line-height: 1.6;
        vertical-align: top
    }

        .cookie-table td:first-child {
            font-weight: 600;
            color: var(--ink);
            white-space: nowrap
        }

    .cookie-table tr:last-child td {
        border-bottom: none
    }

.cookie-table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 24px
}

/* Cookie type badges */
.c-badge {
    display: inline-flex;
    align-items: center;
    font-size: .68rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    white-space: nowrap
}

    .c-badge.essential {
        background: rgba(22,163,74,.1);
        color: #15803d
    }

    .c-badge.analytics {
        background: rgba(37,99,235,.1);
        color: #1d4ed8
    }

    .c-badge.functional {
        background: rgba(124,58,237,.1);
        color: #6d28d9
    }

    .c-badge.marketing {
        background: rgba(200,80,26,.1);
        color: var(--orange)
    }

/* Opt-out box */
.opt-out-box {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 24px 28px;
    margin: 28px 0;
    display: flex;
    gap: 18px;
    align-items: flex-start
}

.opt-out-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--r-md);
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

    .opt-out-icon svg {
        width: 18px;
        height: 18px;
        stroke: var(--orange)
    }

.opt-out-box h4 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px
}

.opt-out-box p {
    font-size: .85rem;
    color: var(--ink-muted);
    line-height: 1.65;
    font-weight: 300;
    margin: 0
}