/* qrtable.io — Stripe-inspired redesign
 * Brand: ink #161412, indigo #1800ad
 */
:root {
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --ink-3: #2a2a2a;
  --paper: #ffffff;
  --paper-2: #f6f9fc;
  --paper-3: #eef2f7;
  --line: #e3e8ee;
  --line-2: #d4dbe3;
  --muted: #6b7588;
  --muted-2: #425466;
  --brand: #1800ad;
  --brand-2: #635bff;
  --brand-3: #00d4ff;
  --brand-soft: #f0eeff;
  --accent-warm: #ff7a59;
  --shadow-1: 0 1px 1px rgba(0,0,0,.03), 0 4px 8px rgba(50,50,93,.05), 0 8px 16px rgba(50,50,93,.05);
  --shadow-2: 0 4px 12px rgba(50,50,93,.10), 0 14px 40px rgba(50,50,93,.10);
  --shadow-3: 0 8px 24px rgba(50,50,93,.12), 0 30px 80px rgba(50,50,93,.18);
  --pad: clamp(20px, 4vw, 56px);
  --maxw: 1180px;
  --r-s: 8px;
  --r-m: 12px;
  --r-l: 16px;
  --r-xl: 24px;
  --font-display: "Söhne", "SF Pro Display", -apple-system, "Inter", system-ui, sans-serif;
  --font-text: "Söhne", "SF Pro Text", -apple-system, "Inter", system-ui, sans-serif;
  --font-mono: "Söhne Mono", "SF Mono", "Geist Mono", ui-monospace, monospace;
}

[data-theme="dark"] {
  --ink: #ffffff;
  --ink-2: #e5e7eb;
  --ink-3: #cbd5e1;
  --paper: #0a0a14;
  --paper-2: #11111e;
  --paper-3: #1a1a2e;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --muted: #8a93a8;
  --muted-2: #b8c0d4;
  --brand: #635bff;
  --brand-soft: rgba(99,91,255,.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-text);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  line-height: 1.5;
  overflow-x: hidden;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ===== TYPE ===== */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--brand);
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.4vw, 72px); letter-spacing: -0.035em; line-height: 1.0; }
h2 { font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.03em; line-height: 1.05; }
h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: -0.015em; }
h4 { font-size: 16px; font-weight: 600; }

p { margin: 0; }
.lede { font-size: clamp(18px, 1.4vw, 21px); color: var(--muted-2); line-height: 1.55; max-width: 620px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--r-s);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.btn-primary:hover { background: #150095; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(24,0,173,0.25); }
.btn-ghost { color: var(--brand); }
.btn-ghost:hover { color: #150095; }
.btn-pill { background: var(--paper); color: var(--ink-2); border: 1px solid var(--line); }
.btn-pill:hover { border-color: var(--line-2); background: var(--paper-2); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #1a1a1a; }
.btn .arrow { transition: transform 0.2s ease; font-size: 14px; }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .nav { background: rgba(10,10,20,0.85); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-2);
  border-radius: var(--r-s);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

.brand-logo { height: 46px; width: auto; display: block; }
@media (max-width: 720px) { .brand-logo { height: 40px; } }
[data-theme="dark"] .brand-logo { filter: invert(1) hue-rotate(180deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 120px) 0 clamp(56px, 7vw, 96px);
  overflow: hidden;
  background: var(--paper);
}
/* Stripe-style mesh gradient */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%; right: -10%;
  height: 80%;
  background:
    radial-gradient(at 20% 30%, rgba(99,91,255,0.18), transparent 50%),
    radial-gradient(at 70% 20%, rgba(0,212,255,0.18), transparent 55%),
    radial-gradient(at 80% 60%, rgba(255,122,89,0.12), transparent 50%),
    radial-gradient(at 30% 70%, rgba(24,0,173,0.10), transparent 50%);
  filter: blur(40px);
  opacity: 0.7;
}
.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -10%; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent, var(--paper));
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 .ink { color: var(--ink); }
.hero h1 .grad {
  background: linear-gradient(120deg, var(--brand) 20%, var(--brand-2) 50%, var(--brand-3) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-2);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.hero-badge:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.hero-badge .hb-tag {
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
}
.hero-badge .arrow { color: var(--muted); transition: transform 0.2s ease; }
.hero-badge:hover .arrow { transform: translateX(3px); }
.hero-social { margin-top: 28px; }
.hs-stars { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hs-faces { display: inline-flex; }
.hs-faces i {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--paper);
  margin-left: -8px;
  background-size: cover; background-position: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}
.hs-faces i:first-child { margin-left: 0; }
.hs-faces i:nth-child(1) { background-image: url('assets/g/curry-paratha.jpg'); }
.hs-faces i:nth-child(2) { background-image: url('assets/g/pizza.jpg'); }
.hs-faces i:nth-child(3) { background-image: url('assets/g/dal.jpg'); }
.hs-faces i:nth-child(4) { background-image: url('assets/g/berry.jpg'); }
.hs-rating { font-size: 13.5px; color: var(--muted-2); }
.hs-rating .hs-star { color: #f5a623; letter-spacing: 1px; }
.hs-rating strong { color: var(--ink); font-weight: 600; }
.hero-sub { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 32px; }
.hero-trust {
  margin-top: 28px;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 13.5px;
}
.hero-trust > span {
  display: inline-flex; align-items: center; gap: 9px;
  white-space: nowrap;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  color: var(--ink-2);
  padding: 8px 16px 8px 11px; border-radius: 999px;
  font-weight: 500;
}
.hero-trust .ck {
  position: relative;
  display: block;
  padding: 0;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--brand-soft);
  flex-shrink: 0;
}
.hero-trust .ck::before {
  content: ""; position: absolute; inset: 0;
  margin: auto; width: 10px; height: 10px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
.hero-trust .ck svg { display: none; }
@media (max-width: 600px) {
  .hero-trust > span { white-space: normal; }
}

.hero-stage { margin-top: clamp(48px, 6vw, 80px); position: relative; }
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8% 0 -4% 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(99,91,255,0.18), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

/* ===== PRODUCT FRAME ===== */
.product-frame {
  position: relative;
  border-radius: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  overflow: hidden;
}
.product-frame .browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.product-frame .browser-bar .dots { display: flex; gap: 6px; }
.product-frame .browser-bar .dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.product-frame .browser-bar .url {
  flex: 1; text-align: center; font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 4px 10px;
  max-width: 320px; margin: 0 auto;
}

/* ===== DASHBOARD ===== */
.dash {
  display: grid;
  grid-template-columns: 200px 1fr 300px;
  height: 560px;
  background: var(--paper);
  font-size: 13px;
}
.dash-side {
  border-right: 1px solid var(--line);
  padding: 14px 10px;
  display: flex; flex-direction: column; gap: 2px;
  background: var(--paper-2);
}
.dash-side .loc {
  border: 1px solid var(--line); border-radius: 8px; padding: 9px 10px; margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center; background: var(--paper);
  font-size: 12px;
}
.dash-side .nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 6px;
  color: var(--muted-2); cursor: pointer; font-size: 13px;
}
.dash-side .nav-item.active { background: var(--brand-soft); color: var(--brand); font-weight: 500; }
.dash-side .nav-item .ico { width: 14px; height: 14px; flex-shrink: 0; }
.dash-side .nav-item:hover:not(.active) { background: var(--paper-3); color: var(--ink); }

.dash-main { padding: 14px; display: grid; gap: 10px; align-content: start; overflow: hidden; }
.dash-search { display: flex; gap: 8px; align-items: center; }
.dash-search .field {
  flex: 1; background: var(--paper); border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 12px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px;
}
.dash-search .reset {
  background: var(--ink); color: var(--paper); padding: 8px 14px; border-radius: 8px; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}
.dash-tabs { display: flex; gap: 4px; flex-wrap: wrap; }
.dash-tabs .tab { font-size: 12px; padding: 6px 10px; border-radius: 6px; color: var(--muted-2); cursor: pointer; }
.dash-tabs .tab.active { background: var(--ink); color: var(--paper); }
.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.dish {
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: var(--paper);
}
.dish .img {
  aspect-ratio: 1.3 / 1;
  background: linear-gradient(135deg, #d6c9b6, #a08770);
  position: relative;
}
.dish .veg-dot {
  position: absolute; top: 6px; right: 6px;
  width: 12px; height: 12px; border-radius: 2px; background: white;
  display: grid; place-items: center;
}
.dish .veg-dot::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: #00b67a; }
.dish.nonveg .veg-dot::after { background: #d33636; }
.dish .info { padding: 8px 10px; }
.dish .info .name { font-size: 11px; font-weight: 500; line-height: 1.3; min-height: 28px; }
.dish .info .price { font-size: 12px; font-weight: 600; margin-top: 4px; }

.dash-order {
  border-left: 1px solid var(--line);
  padding: 14px;
  background: var(--paper-2);
  display: flex; flex-direction: column; gap: 10px;
  font-size: 12px;
}
.dash-order .order-type { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.dash-order .order-type .opt {
  border: 1px solid var(--line); border-radius: 6px; padding: 6px 8px;
  display: flex; align-items: center; gap: 5px; font-size: 11px; background: var(--paper);
}
.dash-order .order-type .opt.active { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.dash-order .order-type .opt .ring { width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--line-2); }
.dash-order .order-type .opt.active .ring { border: 3px solid var(--brand); }
.dash-order .order-head { display: flex; justify-content: space-between; align-items: center; }
.dash-order .order-head .num { font-size: 14px; font-weight: 600; }
.dash-order .assign { font-size: 11px; padding: 5px 8px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); }
.dash-order .items { display: grid; gap: 8px; padding: 8px 0; border-top: 1px solid var(--line); }
.dash-order .items .h { font-size: 9px; color: var(--muted); display: grid; grid-template-columns: 1fr 50px 40px 40px; gap: 6px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
.dash-order .item { display: grid; grid-template-columns: 1fr 50px 40px 40px; gap: 6px; align-items: center; font-size: 11px; }
.dash-order .item .name { font-weight: 500; }
.dash-order .item .qty { display: flex; align-items: center; gap: 2px; border: 1px solid var(--line); border-radius: 4px; padding: 1px; background: var(--paper); }
.dash-order .item .qty span { width: 14px; text-align: center; font-size: 10px; }
.dash-order .item .qty button { width: 14px; height: 14px; font-size: 10px; }
.dash-order .totals { display: grid; gap: 4px; padding-top: 8px; border-top: 1px dashed var(--line); font-size: 11px; color: var(--muted-2); }
.dash-order .totals .row { display: flex; justify-content: space-between; }
.dash-order .totals .row.total { color: var(--ink); font-weight: 600; font-size: 13px; padding-top: 6px; border-top: 1px solid var(--line); margin-top: 4px; }
.dash-order .actions { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.dash-order .actions button { padding: 8px 6px; border-radius: 6px; font-size: 11px; font-weight: 500; }
.dash-order .actions .kot { background: var(--ink); color: var(--paper); }
.dash-order .actions .kot-bill { background: var(--brand); color: var(--paper); }

@media (max-width: 1080px) {
  .dash { grid-template-columns: 180px 1fr; }
  .dash-order { display: none; }
  .dash-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .dash { grid-template-columns: 1fr; height: 480px; }
  .dash-side { display: none; }
  .dash-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SECTIONS ===== */
section { padding: clamp(64px, 8vw, 120px) 0; }
.section-head { display: grid; gap: 14px; margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; justify-items: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lede { margin-left: auto; margin-right: auto; }

/* ===== LOGOBAR ===== */
.logobar { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logobar p { text-align: center; color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.logobar-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 32px;
}
.logobar-row .logo {
  height: 44px; width: 124px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 17px; text-align: center; color: var(--ink-2); letter-spacing: -0.01em;
}
.logobar-row .logo img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain; filter: grayscale(1); opacity: 0.6;
  transition: opacity 0.2s ease, filter 0.2s ease;
}
.logobar-row .logo img:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 720px) { .logobar-row { gap: 18px 20px; } .logobar-row .logo { height: 36px; width: 104px; } }

/* ===== FEATURE CARDS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feat-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 28px;
  display: grid; gap: 12px;
  align-content: start;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.feat-card:hover { border-color: var(--brand); box-shadow: 0 6px 24px rgba(99,91,255,0.10); transform: translateY(-2px); }
.feat-card .ic {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
  margin-bottom: 4px;
}
.feat-card h3 { font-size: 18px; font-weight: 600; }
.feat-card p { color: var(--muted-2); font-size: 14.5px; line-height: 1.55; }
.feat-card .lk { font-size: 14px; color: var(--brand); font-weight: 500; margin-top: 4px; display: inline-flex; gap: 4px; align-items: center; }
.feat-card .lk:hover .arrow { transform: translateX(3px); }
@media (max-width: 880px) { .features-grid { grid-template-columns: 1fr; } }

/* ===== SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.flip > :first-child { order: 2; }
.split-points { display: grid; gap: 18px; margin-top: 28px; }
.split-points .pt { display: flex; gap: 12px; align-items: flex-start; }
.split-points .pt .ck {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; margin-top: 4px;
  background: var(--brand); color: white;
  display: grid; place-items: center; font-size: 10px;
}
.split-points .pt h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.split-points .pt p { color: var(--muted-2); font-size: 14px; line-height: 1.5; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split.flip > :first-child { order: 0; } }

/* ===== ORDERS MOCK ===== */
.orders-mock {
  background: var(--paper);
  border-radius: var(--r-l);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  padding: 14px;
  display: grid; gap: 8px;
  max-width: 360px;
  margin: 0 auto;
}
.order-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  display: grid; gap: 8px;
  background: var(--paper);
}
.order-card .row1 { display: flex; justify-content: space-between; align-items: flex-start; }
.order-card .who { display: flex; gap: 10px; align-items: center; }
.order-card .table {
  width: 32px; height: 32px; border-radius: 6px; background: var(--paper-2); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 11px; font-weight: 600;
}
.order-card .name { font-size: 13px; font-weight: 600; }
.order-card .order-num { font-size: 11px; color: var(--muted); }
.order-card .kot-badge { background: #fef3c7; color: #92400e; font-size: 10px; padding: 3px 7px; border-radius: 4px; font-weight: 600; }
.order-card .row2 { display: flex; justify-content: space-between; align-items: center; padding-top: 6px; border-top: 1px solid var(--line); }
.order-card .date { font-size: 11px; color: var(--muted); }
.order-card .conf { font-size: 11px; color: #00875a; display: flex; align-items: center; gap: 4px; }
.order-card .conf::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #00b67a; }
.order-card .row3 { display: flex; justify-content: space-between; align-items: center; }
.order-card .price { font-size: 17px; font-weight: 600; }
.order-card .new-kot { font-size: 11px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); }
.order-card .ones { font-size: 11px; color: var(--muted); }

/* ===== CALCULATOR ===== */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--r-l);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-2);
}
.calc-form { padding: clamp(28px, 4vw, 44px); display: grid; gap: 24px; align-content: start; }
.calc-form .field { display: grid; gap: 10px; }
.calc-form .field label { font-size: 13px; color: var(--muted-2); display: flex; justify-content: space-between; align-items: center; font-weight: 500; }
.calc-form .field label .val { color: var(--ink); font-size: 16px; font-weight: 600; }
.calc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--line); }
.calc-foot-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }
.calc-foot-val { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.calc-form input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; background: var(--line); border-radius: 999px; outline: none; }
.calc-form input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--brand); cursor: pointer; box-shadow: 0 1px 4px rgba(24,0,173,0.3); }
.calc-form input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--brand); cursor: pointer; }
.calc-result {
  background: linear-gradient(160deg, var(--brand) 0%, #0a0080 100%);
  color: #fff; padding: clamp(28px, 4vw, 44px);
  display: grid; gap: 14px; align-content: center; position: relative; overflow: hidden;
}
.calc-result::before {
  content: ""; position: absolute; inset: -30% -10% auto auto; width: 80%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.4), transparent 60%);
  filter: blur(60px);
}
.calc-result .lbl { font-size: 12px; color: rgba(255,255,255,0.7); position: relative; font-weight: 500; }
.calc-result .big { font-size: clamp(56px, 7vw, 84px); font-weight: 600; letter-spacing: -0.03em; line-height: 0.95; position: relative; }
.calc-result .big .currency { color: var(--brand-3); }
.calc-result .sub { font-size: 14px; color: rgba(255,255,255,0.75); position: relative; max-width: 360px; line-height: 1.5; margin-top: 8px; }
.calc-result .breakdown { margin-top: 22px; display: grid; gap: 13px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); position: relative; }
.calc-result .breakdown .b { display: grid; gap: 6px; }
.calc-result .breakdown .b-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.78); }
.calc-result .breakdown .b-row span:last-child { color: #fff; font-weight: 600; font-variant-numeric: tabular-nums; }
.calc-result .bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.14); overflow: hidden; }
.calc-result .bar-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand-3), #fff); transition: width 0.5s cubic-bezier(0.2,0.8,0.2,1); }
.calc-result .cta-row { margin-top: 24px; position: relative; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.calc-result .cta-row .btn-primary { background: #fff; color: var(--brand); }
.calc-result .cta-row .btn-primary:hover { background: var(--paper-2); }
.calc-result .calc-roi { font-size: 13px; color: rgba(255,255,255,0.78); }
.calc-result .calc-roi strong { color: var(--brand-3); font-size: 16px; font-weight: 700; }
.calc-result .calc-payback { margin-top: 12px; position: relative; font-size: 12.5px; color: rgba(255,255,255,0.68); }
.calc-result .calc-payback strong { color: #fff; font-weight: 700; }
@media (max-width: 880px) { .calc-wrap { grid-template-columns: 1fr; } }
.calc-result-top { position: relative; }
.calc-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 18px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.5; }

/* ===== INTEGRATIONS ===== */
.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.int-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  padding: 20px;
  display: grid; gap: 10px;
  position: relative;
  transition: border-color 0.15s ease;
}
.int-card:hover { border-color: var(--line-2); }
.int-card .logo {
  width: 36px; height: 36px; border-radius: 8px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  margin-bottom: 4px;
}
.int-card .ilogo {
  width: 46px; height: 46px; border-radius: 11px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; padding: 7px;
  margin-bottom: 4px; overflow: hidden;
}
.int-card .ilogo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
.int-card .ilogo.bleed { padding: 0; }
.int-card .ilogo.bleed img { width: 100%; height: 100%; object-fit: cover; }
.int-card .ilogo svg { width: 100%; height: 100%; }
[data-theme="dark"] .int-card .ilogo { background: #fff; }
.int-card .name { font-size: 14px; font-weight: 600; }
.int-card .desc { font-size: 12.5px; color: var(--muted-2); line-height: 1.45; }
.int-card .stat-pill {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; padding: 3px 7px; border-radius: 4px;
  font-weight: 500;
}
.int-card .stat-pill.live { background: #d1fadf; color: #027a48; }
.int-card .stat-pill.soon { background: #fef0c7; color: #93370d; }
@media (max-width: 980px) { .int-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .int-grid { grid-template-columns: 1fr; } }

/* ===== SERVICES ===== */
.svc-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.svc-card .svc-eyebrow { font-size: 13px; font-weight: 500; color: var(--brand); }
.svc-card h3 { font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.svc-card p { color: var(--muted-2); font-size: 15px; max-width: 460px; line-height: 1.55; }
.svc-card .svc-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.svc-card .svc-list li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-2); }
.svc-card .svc-list li::before {
  content: "✓"; width: 16px; height: 16px; border-radius: 50%; background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.svc-card .svc-cta { margin-top: 24px; }
@media (max-width: 880px) { .svc-duo { grid-template-columns: 1fr; } }

/* ===== PRICING ===== */
.pricing-toggle {
  display: inline-flex;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 48px;
}
.pricing-toggle button { padding: 8px 16px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--muted-2); }
.pricing-toggle button.active { background: var(--ink); color: var(--paper); }
.pricing-toggle .save { font-size: 11px; color: #00875a; margin-left: 6px; }
.pricing-toggle button.active .save { color: #5fe7a0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.plan:hover { border-color: var(--line-2); }
.plan.featured {
  border: 2px solid var(--brand);
  box-shadow: 0 6px 24px rgba(99,91,255,0.10);
}
.plan-tag {
  position: absolute; top: -10px; left: 24px;
  font-size: 11px; padding: 4px 10px;
  background: var(--brand); color: white;
  border-radius: 4px; font-weight: 500;
}
.plan-name { font-size: 18px; font-weight: 600; }
.plan-desc { color: var(--muted-2); font-size: 13px; line-height: 1.5; min-height: 38px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; min-height: 56px; }
.plan-price .price { font-size: 40px; font-weight: 600; letter-spacing: -0.025em; line-height: 1; }
.plan-price .per { color: var(--muted); font-size: 13px; }
.feat { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; flex: 1; }
.feat li { font-size: 13px; color: var(--ink-2); position: relative; padding-left: 22px; line-height: 1.45; }
.feat li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 14px; height: 14px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-grid.three { grid-template-columns: repeat(3, 1fr); max-width: 920px; margin: 0 auto; }
@media (max-width: 880px) { .pricing-grid.three { grid-template-columns: 1fr; max-width: 420px; } }

/* ===== COMPARISON MATRIX ===== */
.compare-wrap { margin-top: 72px; }
.compare-title { text-align: center; font-size: 22px; font-weight: 600; margin-bottom: 28px; }
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%; max-width: 920px; margin: 0 auto;
  border-collapse: collapse;
  font-size: 14.5px;
}
.compare th, .compare td {
  padding: 13px 18px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-weight: 600; font-size: 15px;
  color: var(--ink);
  padding-top: 0; padding-bottom: 18px;
  border-bottom: 1px solid var(--line-2);
  vertical-align: bottom;
}
.compare thead th .th-price {
  display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-top: 3px;
}
.compare .feat-col {
  text-align: left;
  color: var(--ink-2);
  font-weight: 500;
  min-width: 220px;
}
.compare thead .feat-col { color: var(--muted); font-weight: 500; }
.compare .hl {
  background: var(--brand-soft);
  border-left: 1px solid color-mix(in oklab, var(--brand) 14%, transparent);
  border-right: 1px solid color-mix(in oklab, var(--brand) 14%, transparent);
}
.compare tbody tr:hover td { background: var(--paper-2); }
.compare tbody tr:hover td.hl { background: color-mix(in oklab, var(--brand-soft) 80%, var(--brand)); }
.cmp-y, .cmp-n { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; }
.cmp-y { background: var(--brand-soft); color: var(--brand); }
.cmp-y svg { width: 13px; height: 13px; }
.cmp-n { color: var(--line-2); }
.cmp-n svg { width: 13px; height: 13px; }
.cmp-val { font-weight: 600; color: var(--ink); }
@media (max-width: 600px) {
  .compare th, .compare td { padding: 11px 12px; font-size: 13px; }
  .compare .feat-col { min-width: 160px; }
}

/* ===== TESTIMONIALS ===== */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.t-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 26px;
  display: flex; flex-direction: column; gap: 18px;
}
.t-card .quote { font-size: 16px; line-height: 1.5; color: var(--ink-2); flex: 1; }
.t-card .who-row { display: flex; gap: 12px; align-items: center; }
.t-card .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 600;
}
.t-card .who .nm { font-size: 14px; font-weight: 600; }
.t-card .who .rl { font-size: 12px; color: var(--muted); }
@media (max-width: 880px) { .t-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 0; max-width: 760px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; text-align: left;
  font-size: 16px; font-weight: 500;
  padding: 4px 0;
}
.faq-q .plus {
  width: 22px; height: 22px; border-radius: 50%; background: var(--paper-2);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.2s ease; color: var(--muted-2); font-size: 14px;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--brand); color: white; }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted-2); font-size: 15px; line-height: 1.55; padding-right: 60px;
}
.faq-item.open .faq-a { max-height: 220px; padding-top: 12px; }

/* ===== Areas we serve ===== */
.areas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 920px; margin: 0 auto; }
.area-card { border: 1px solid var(--line); border-radius: var(--r-l); background: var(--paper); overflow: hidden; transition: box-shadow 0.2s ease; }
.area-card.open { box-shadow: var(--shadow-1); }
.area-head {
  width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 18px 20px; background: none; border: none; cursor: pointer; text-align: left;
}
.area-head:hover { background: var(--paper-2); }
.area-city-name { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--ink); }
.area-city-name .state { font-size: 11px; font-weight: 700; color: var(--brand); background: var(--brand-soft); padding: 3px 8px; border-radius: 999px; letter-spacing: 0.02em; }
.area-count { font-size: 13px; color: var(--muted-2); margin-left: auto; white-space: nowrap; }
.area-chev { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted-2); transition: transform 0.2s ease; }
.area-card.open .area-chev { transform: rotate(180deg); color: var(--brand); }
.area-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.area-card.open .area-body { max-height: 480px; }
.area-suburbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 20px; }
.area-chip { font-size: 12.5px; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
.areas-note { text-align: center; margin-top: 24px; font-size: 13.5px; color: var(--muted); }
.areas-note a { color: var(--brand); font-weight: 500; }
@media (max-width: 720px) { .areas-grid { grid-template-columns: 1fr; } .area-count { display: none; } }

/* Flat locations panel (single section, all lists always visible) */
.locations-panel { max-width: 100%; margin: 0 auto; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l); box-shadow: var(--shadow-1); padding: clamp(20px, 3vw, 36px); }
.loc-group { padding: 18px 0; border-top: 1px solid var(--line); }
.loc-group:first-child { padding-top: 0; border-top: none; }
.loc-group h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 12px; }
.loc-group h3 a { color: var(--brand); text-decoration: none; }
.loc-group h3 a:hover { text-decoration: underline; }
.loc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 32px; }
.loc-item { font-size: 13.5px; color: var(--muted-2); padding: 4px 0; text-decoration: none; display: block; white-space: nowrap; }
.loc-item:hover { color: var(--brand); text-decoration: underline; }
@media (max-width: 640px) { .loc-list { grid-template-columns: 1fr; } .loc-item { white-space: normal; } }
@media (max-width: 480px) { .loc-list { grid-template-columns: 1fr; } }

/* ===== CTA ===== */
.cta-section {
  padding: clamp(72px, 9vw, 120px) 0;
  background: linear-gradient(160deg, var(--brand) 0%, #0a0080 60%, #1a002a 100%);
  color: #fff; position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: ""; position: absolute; inset: -20% -10%;
  background:
    radial-gradient(at 30% 30%, rgba(0,212,255,0.3), transparent 50%),
    radial-gradient(at 70% 60%, rgba(255,122,89,0.18), transparent 50%);
  filter: blur(60px); opacity: 0.6;
}
.cta-section .wrap { position: relative; }
.cta-section h2 { color: #fff; }
.cta-section .lede { color: rgba(255,255,255,0.78); margin: 16px auto 32px; }
.cta-section .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-section .btn-primary { background: #fff; color: var(--brand); }
.cta-section .btn-primary:hover { background: var(--paper-2); }
.cta-section .btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.cta-section .btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ===== FOOTER ===== */
footer { padding: 64px 0 32px; border-top: 1px solid var(--line); background: var(--paper); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 48px; }
.foot-grid .foot-brand { max-width: 320px; }
.foot-grid .foot-brand p { color: var(--muted-2); font-size: 13.5px; margin-top: 14px; line-height: 1.55; }
.foot-col h4 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { font-size: 14px; color: var(--muted-2); }
.foot-col a:hover { color: var(--brand); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); }
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }

/* status pulse */
@keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
.pulse-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #00b67a; animation: pulse 2s ease-in-out infinite; }

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 14px;
}
.gallery .g-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  border: 1px solid var(--line);
}
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
@media (max-width: 880px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 160px 160px 160px;
    grid-auto-rows: 160px;
    grid-auto-flow: dense;
  }
  .gallery .g-tall { grid-row: span 2; }
  .gallery .g-wide { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 480px) {
  .gallery { grid-template-rows: 140px 140px 140px; grid-auto-rows: 140px; }
}
.gallery-cap {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-top: 18px;
}

/* hero floating card */
.hero-float {
  position: absolute;
  z-index: 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-3);
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 260px;
}
.hero-float.tl { top: 6%; left: -2%; }
.hero-float.br { bottom: 8%; right: -2%; }
.hero-float image-slot, .hero-float .hf-img { width: 52px; height: 52px; flex-shrink: 0; border-radius: 10px; object-fit: cover; }
.hero-float .hf-body { display: grid; gap: 2px; }
.hero-float .hf-title { font-size: 13px; font-weight: 600; }
.hero-float .hf-sub { font-size: 11px; color: var(--muted); }
.hero-float .hf-amt { margin-left: auto; font-size: 14px; font-weight: 600; color: var(--brand); }
@media (max-width: 980px) { .hero-float { display: none; } }

/* India offer banner */
.offer-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.offer-banner strong { font-weight: 700; }
.offer-banner .tag { background: rgba(255,255,255,0.22); padding: 3px 10px; border-radius: 999px; font-size: 12px; }

/* India price block */
.india-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.india-price .big { font-size: clamp(48px, 6vw, 72px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.india-price .gst { font-size: 15px; color: var(--muted); }
.india-price .crossed { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.bundle-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m); padding: 20px; display: grid; gap: 8px; }
.bundle-card .bc-ic { width: 38px; height: 38px; border-radius: 9px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.bundle-card h4 { font-size: 15px; font-weight: 600; }
.bundle-card p { font-size: 13px; color: var(--muted-2); line-height: 1.5; }
@media (max-width: 880px) { .bundle-grid { grid-template-columns: 1fr; } }

/* ===== REVEAL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); animation: reveal-in 0.7s cubic-bezier(0.2,0.8,0.2,1) forwards; }
  .reveal.d1 { animation-delay: 0.08s; }
  .reveal.d2 { animation-delay: 0.16s; }
  .reveal.d3 { animation-delay: 0.24s; }
  .reveal.d4 { animation-delay: 0.32s; }
  @keyframes reveal-in { to { opacity: 1; transform: translateY(0); } }
}

/* ============================================================
   SERVICE PAGES (SEO audit + Website development)
   ============================================================ */
.subnav-back {
  font-size: 13px; color: var(--muted-2); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.subnav-back:hover { color: var(--brand); }

/* Service hero */
.svc-hero {
  position: relative; overflow: hidden;
  padding: clamp(56px, 8vw, 110px) 0 clamp(48px, 6vw, 80px);
  background: var(--paper);
}
.svc-hero .hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.svc-hero .hero-bg::before {
  content: ""; position: absolute; top: -20%; left: -10%; right: -10%; height: 90%;
  background:
    radial-gradient(at 18% 28%, rgba(99,91,255,0.20), transparent 50%),
    radial-gradient(at 72% 18%, rgba(0,212,255,0.18), transparent 55%),
    radial-gradient(at 82% 62%, rgba(255,122,89,0.13), transparent 50%);
  filter: blur(42px); opacity: 0.75;
}
.svc-hero .hero-bg::after {
  content: ""; position: absolute; bottom: -10%; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, transparent, var(--paper));
}
.svc-hero .wrap { position: relative; z-index: 1; }
.svc-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 920px) { .svc-hero-grid { grid-template-columns: 1fr; } }
.svc-hero h1 { font-size: clamp(36px, 4.8vw, 60px); letter-spacing: -0.035em; line-height: 1.02; }
.svc-hero h1 .grad {
  background: linear-gradient(120deg, var(--brand) 20%, var(--brand-2) 55%, var(--brand-3) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Audit form card */
.audit-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--shadow-3);
  padding: clamp(24px, 3vw, 34px);
}
.audit-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 4px; }
.audit-card .ac-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; }
.audit-form { display: grid; gap: 14px; }
.audit-form .row { display: grid; gap: 6px; }
.audit-form label { font-size: 12.5px; font-weight: 500; color: var(--muted-2); }
.audit-form input, .audit-form select {
  font: inherit; font-size: 15px;
  padding: 11px 14px; border-radius: var(--r-s);
  border: 1px solid var(--line-2); background: var(--paper); color: var(--ink);
  width: 100%; transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.audit-form input:focus, .audit-form select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.audit-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .audit-form .two { grid-template-columns: 1fr; } }
.audit-form .btn { justify-content: center; width: 100%; margin-top: 4px; }
.audit-trust { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }

/* Audit "report preview" gauge */
.audit-preview {
  background: linear-gradient(160deg, var(--brand) 0%, #0a0080 100%);
  color: #fff; border-radius: var(--r-l); padding: clamp(24px,3vw,34px);
  position: relative; overflow: hidden;
}
.audit-preview::before {
  content: ""; position: absolute; inset: -30% -10% auto auto; width: 70%; height: 70%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.4), transparent 60%);
  filter: blur(60px);
}
.audit-preview .ap-head { position: relative; display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.gauge { --val: 62; --size: 92px; width: var(--size); height: var(--size); flex-shrink: 0; position: relative; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge .g-track { stroke: rgba(255,255,255,0.18); }
.gauge .g-fill { stroke: var(--brand-3); stroke-linecap: round; transition: stroke-dashoffset 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.gauge .g-num { position: absolute; inset: 0; display: grid; place-items: center; font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.audit-preview .ap-head .ap-txt .t { font-size: 15px; font-weight: 600; }
.audit-preview .ap-head .ap-txt .s { font-size: 12.5px; color: rgba(255,255,255,0.7); }
.audit-rows { position: relative; display: grid; gap: 12px; }
.audit-rows .ar { display: grid; gap: 6px; }
.audit-rows .ar-top { display: flex; justify-content: space-between; font-size: 13px; }
.audit-rows .ar-top .ar-tag { color: rgba(255,255,255,0.82); }
.audit-rows .ar-top .ar-st { font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.audit-rows .ar-bar { height: 6px; border-radius: 999px; background: rgba(255,255,255,0.16); overflow: hidden; }
.audit-rows .ar-fill { display: block; height: 100%; border-radius: 999px; }
.audit-rows .good .ar-fill { background: #34d399; }
.audit-rows .ok .ar-fill { background: #fbbf24; }
.audit-rows .bad .ar-fill { background: #fb7185; }
.audit-rows .ar-st.good { color: #6ee7b7; }
.audit-rows .ar-st.ok { color: #fcd34d; }
.audit-rows .ar-st.bad { color: #fda4af; }

/* Process timeline */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 26px 24px; position: relative;
}
.process-step .ps-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; font-weight: 700; font-size: 14px;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.process-step p { font-size: 13.5px; color: var(--muted-2); line-height: 1.5; }

/* Deliverables / checklist grid */
.check-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .check-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }
.check-item {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 22px; display: grid; gap: 8px;
}
.check-item .ci-ic {
  width: 38px; height: 38px; border-radius: 9px; background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 4px;
}
.check-item h4 { font-size: 15px; font-weight: 600; }
.check-item p { font-size: 13px; color: var(--muted-2); line-height: 1.5; }

/* Plan billing note + per-tier accents reused from .plan */
.plan .plan-from { font-size: 12px; color: var(--muted); font-weight: 500; }
.plan-price .price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }

/* Showcase (website dev portfolio) */
.showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .showcase-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }
.showcase-card {
  border: 1px solid var(--line); border-radius: var(--r-l); overflow: hidden; background: var(--paper);
  box-shadow: var(--shadow-1); transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.showcase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.showcase-card .sc-img { aspect-ratio: 1400 / 909; background-size: cover; background-position: center; position: relative; }
.showcase-card .sc-chrome {
  height: 26px; background: var(--paper); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 5px; padding: 0 10px;
}
.showcase-card .sc-chrome i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); }
.showcase-card .sc-body { padding: 16px 18px; }
.showcase-card .sc-body .t { font-size: 15px; font-weight: 600; }
.showcase-card .sc-body .s { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* Stat band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 720px) { .stat-band { grid-template-columns: 1fr 1fr; } }
.stat-band .sb { text-align: center; }
.stat-band .sb .n { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; color: var(--brand); }
.stat-band .sb .l { font-size: 13px; color: var(--muted-2); margin-top: 8px; }

/* Team role cards (about page) */
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 880px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .role-grid { grid-template-columns: 1fr; } }
.role-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l); padding: 24px; display: grid; gap: 12px; text-align: center; justify-items: center; }
.role-card .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-weight: 700; font-size: 15px; }
.role-card h4 { font-size: 15px; font-weight: 600; }
.role-card p { font-size: 13px; color: var(--muted-2); line-height: 1.5; }

/* ============================================================
   MOBILE NAV (hamburger menu)
   ============================================================ */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  border-radius: var(--r-s);
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger:hover { background: var(--paper-2); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-2);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 0 solid var(--line);
  background: var(--paper);
  transition: max-height 0.3s ease;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px var(--pad);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav a:hover, .mobile-nav a:active { background: var(--paper-2); color: var(--ink); }
.mobile-nav a .mn-ico { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted-2); }
.mobile-nav a:hover .mn-ico, .mobile-nav a:active .mn-ico { color: var(--brand); }
.mobile-nav a .mn-chev {
  margin-left: auto; width: 7px; height: 7px; flex-shrink: 0;
  border-right: 2px solid var(--line-2); border-bottom: 2px solid var(--line-2);
  transform: rotate(-45deg);
}
.mobile-nav-cta {
  display: flex;
  gap: 10px;
  padding: 16px var(--pad) max(20px, env(safe-area-inset-bottom));
}
.mobile-nav-cta .btn { flex: 1; justify-content: center; padding: 12px 16px; border-bottom: none; }
.mobile-nav-cta .btn-primary { color: #fff; }
.mobile-nav-cta .btn-pill { color: var(--ink-2); }

body.nav-open { overflow: hidden; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav.open { max-height: min(75vh, 560px); border-top-width: 1px; }
}

/* ============================================================
   DOC / CONTENT PAGES (about, contact, careers, tutorials, legal)
   ============================================================ */
.doc-hero { padding: clamp(56px, 8vw, 96px) 0 4px; }
.doc-hero .wrap { max-width: 760px; }
.doc-hero h1 { margin-top: 14px; font-size: clamp(34px, 4.4vw, 54px); }
.doc-hero .lede { margin-top: 16px; }
.doc-meta { color: var(--muted); font-size: 13.5px; margin-top: 18px; }

.doc-section { padding: 24px 0 clamp(56px, 7vw, 100px); }
.doc-wrap { max-width: 760px; }

.doc-toc {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-m);
  padding: 20px 22px; margin-bottom: 40px;
}
.doc-toc h4 { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 12px; }
.doc-toc ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; }
@media (max-width: 560px) { .doc-toc ul { grid-template-columns: 1fr; } }
.doc-toc a { font-size: 13.5px; color: var(--muted-2); }
.doc-toc a:hover { color: var(--brand); }

.doc-body h2 { font-size: clamp(20px, 2.2vw, 25px); margin-top: 46px; margin-bottom: 14px; scroll-margin-top: 90px; }
.doc-body h2:first-of-type { margin-top: 0; }
.doc-body h3 { font-size: 16px; margin-top: 26px; margin-bottom: 10px; }
.doc-body p { color: var(--muted-2); font-size: 15.5px; line-height: 1.75; margin: 0 0 14px; }
.doc-body ul { margin: 0 0 14px; padding-left: 20px; display: grid; gap: 8px; }
.doc-body li { color: var(--muted-2); font-size: 15.5px; line-height: 1.65; }
.doc-body strong { color: var(--ink); font-weight: 600; }
.doc-body a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.doc-body hr { border: 0; border-top: 1px solid var(--line); margin: 36px 0; }

/* Contact / info cards */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 880px) { .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 24px;
}
.ic-ico {
  width: 38px; height: 38px; border-radius: 10px; background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center; margin-bottom: 16px; flex-shrink: 0;
}
.ic-ico svg { width: 18px; height: 18px; }
.info-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.info-card p { font-size: 13.5px; color: var(--muted-2); line-height: 1.5; margin: 0 0 10px; }
.info-card a.ic-link { font-size: 14px; font-weight: 600; color: var(--brand); }

.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
@media (max-width: 880px) { .office-grid { grid-template-columns: 1fr; } }
.office-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--r-m); background: var(--paper-2); }
.office-card h4 { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--muted); margin-bottom: 8px; }
.office-card p { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin: 0; }

/* Simple mailto contact form reusing audit-form input styling */
.contact-form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-1);
}

.subnav-back { font-size: 14px; font-weight: 500; color: var(--muted-2); white-space: nowrap; }
.subnav-back:hover { color: var(--ink); }
@media (max-width: 720px) { .nav-cta .subnav-back { display: none; } }

/* ===== CONTACT PAGE ===== */
.contact-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 980px) { .contact-methods { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .contact-methods { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 26px; display: grid; gap: 10px; text-align: left; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-2); }
.contact-card .cc-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 4px; }
.contact-card h4 { font-size: 16px; font-weight: 600; }
.contact-card p { font-size: 13.5px; color: var(--muted-2); line-height: 1.5; }
.contact-card .cc-val { font-size: 15px; font-weight: 600; color: var(--brand); margin-top: 2px; }
.contact-card .cc-val:hover { text-decoration: underline; }
.hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 700px) { .hours-grid { grid-template-columns: 1fr; } }
.hours-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l); padding: 24px; }
.hours-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.hours-card .flag { font-size: 18px; }
.hours-row { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--muted-2); padding: 8px 0; border-top: 1px solid var(--line); }
.hours-row:first-of-type { border-top: none; }
.hours-row span:last-child { color: var(--ink); font-weight: 500; }

/* ===== ROADMAP ===== */
.roadmap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 980px) { .roadmap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .roadmap-grid { grid-template-columns: 1fr; } }
.roadmap-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: 22px; display: grid; gap: 10px; position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.roadmap-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.roadmap-card .rm-ic {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--brand-soft); color: var(--brand);
  display: grid; place-items: center;
}
.roadmap-card h4 { font-size: 15px; font-weight: 600; }
.roadmap-card p { font-size: 13px; color: var(--muted-2); line-height: 1.5; }
.roadmap-card .rm-soon {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
  background: #fef0c7; color: #93370d; padding: 3px 8px; border-radius: 999px;
}
.roadmap-card .rm-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.rm-upvote {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  font-size: 12.5px; font-weight: 600; color: var(--muted-2);
  transition: all 0.15s ease;
}
.rm-upvote svg { width: 13px; height: 13px; transition: transform 0.15s ease; }
.rm-upvote:hover { border-color: var(--brand); color: var(--brand); }
.rm-upvote.voted { background: var(--brand-soft); border-color: var(--brand); color: var(--brand); }
.rm-upvote.voted svg { transform: translateY(-1px); }

/* ===== FEATURE REQUEST FORM ===== */
.fr-wrap {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-l);
  padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-2);
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
@media (max-width: 880px) { .fr-wrap { grid-template-columns: 1fr; } }
.fr-wrap .row { display: grid; gap: 8px; margin-bottom: 16px; }
.fr-wrap label { font-size: 13px; font-weight: 500; color: var(--muted-2); }
.fr-wrap input, .fr-wrap select, .fr-wrap textarea {
  border: 1px solid var(--line); border-radius: var(--r-s); padding: 11px 14px;
  font: inherit; font-size: 14px; color: var(--ink); background: var(--paper);
  resize: vertical;
}
.fr-wrap input:focus, .fr-wrap select:focus, .fr-wrap textarea:focus { outline: 2px solid var(--brand); outline-offset: 1px; }

/* Full roadmap page: per-category module grid */
.roadmap-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 980px) { .roadmap-full { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .roadmap-full { grid-template-columns: 1fr; } }
.roadmap-full .roadmap-card { padding: 26px; }
.roadmap-full .roadmap-card p { min-height: 40px; }
.rm-category { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 48px 0 18px; }
.rm-category:first-of-type { margin-top: 0; }
