/* ============================================================
   ABaker Digital, design tokens
   Adapted from StencilCut's hairline-border + single-accent
   discipline. Blue + cyan replace orange. Light theme primary,
   dark theme available via [data-theme="dark"].
   ============================================================ */

:root {
  /* ── Surfaces (light default) ────────────────────────────── */
  --bg:           #ffffff;
  --bg-alt:       #f7f9fc;          /* alt section wash */
  --bg-soft:      #eef2f7;
  --surface:      #ffffff;
  --surface-2:    #f9fbfd;
  --ink-overlay:  rgba(15, 23, 42, 0.04);

  /* ── Borders ─────────────────────────────────────────────── */
  --border:        rgba(15, 23, 42, 0.08);
  --border-hover:  rgba(15, 23, 42, 0.16);
  --border-strong: rgba(15, 23, 42, 0.22);

  /* ── Foreground (slate ladder) ───────────────────────────── */
  --text:        #0b1220;            /* near-black, slight blue tilt */
  --text-2:      #1f2937;
  --text-muted:  #475569;
  --text-faint:  #64748b;
  --text-ghost:  #94a3b8;

  /* ── Brand colors (primary = blue, accent = cyan) ────────── */
  --primary:        #2563eb;         /* blue-600 */
  --primary-hover:  #1d4ed8;
  --primary-light:  #3b82f6;
  --primary-soft:   rgba(37, 99, 235, 0.08);
  --primary-ring:   rgba(37, 99, 235, 0.18);

  --accent:         #06b6d4;         /* cyan-500 */
  --accent-light:   #22d3ee;
  --accent-soft:    rgba(6, 182, 212, 0.10);

  /* gradient: primary to accent, the signature "keyword" treatment */
  --grad: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);

  /* ── Semantic ────────────────────────────────────────────── */
  --green:    #10b981;
  --green-2:  #34d399;
  --red:      #ef4444;
  --amber:    #f59e0b;

  /* ── Spacing (4px grid) ──────────────────────────────────── */
  --s-1:  4px;  --s-2:  8px;  --s-3:  12px; --s-4: 16px;
  --s-5:  20px; --s-6:  24px; --s-8:  32px; --s-10: 40px;
  --s-12: 48px; --s-16: 64px; --s-20: 80px; --s-24: 96px;

  --section-py: clamp(72px, 8vw, 128px);

  /* ── Radii ───────────────────────────────────────────────── */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-pill: 999px;

  /* ── Shadows ─────────────────────────────────────────────── */
  --shadow-xs:   0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm:   0 2px 8px rgba(15,23,42,0.06);
  --shadow-md:   0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg:   0 16px 48px rgba(15,23,42,0.10);
  --shadow-btn:        0 1px 2px rgba(15,23,42,0.10), 0 4px 14px rgba(37,99,235,0.25);
  --shadow-btn-hover:  0 1px 2px rgba(15,23,42,0.12), 0 8px 22px rgba(37,99,235,0.32);

  /* ── Type ────────────────────────────────────────────────── */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --t-xs:   12px;
  --t-sm:   13px;
  --t-base: 16px;
  --t-md:   17px;
  --t-lg:   19px;
  --t-xl:   22px;
  --t-2xl:  28px;
  --t-3xl:  34px;
  --t-4xl:  44px;
  --t-5xl:  56px;

  --w-medium: 500;
  --w-semi:   600;
  --w-bold:   700;
  --w-heavy:  800;
  --w-black:  900;

  --head-weight: 800;       /* overridden by [data-headings] */

  /* ── Transitions ─────────────────────────────────────────── */
  --t-fast: 0.12s ease;
  --t:      0.18s ease;
  --t-slow: 0.28s ease;
}

/* ─────────── DARK THEME ─────────── */
[data-theme="dark"] {
  --bg:           #0b1220;
  --bg-alt:       #0f1729;
  --bg-soft:      #131b30;
  --surface:      #111a2e;
  --surface-2:    #16213b;
  --ink-overlay:  rgba(255,255,255,0.04);

  --border:        rgba(255,255,255,0.08);
  --border-hover:  rgba(255,255,255,0.16);
  --border-strong: rgba(255,255,255,0.25);

  --text:        #ffffff;
  --text-2:      #e5e7eb;
  --text-muted:  #cbd5e1;
  --text-faint:  #94a3b8;
  --text-ghost:  #64748b;

  --primary:        #3b82f6;
  --primary-hover:  #2563eb;
  --primary-light:  #60a5fa;
  --primary-soft:   rgba(59, 130, 246, 0.14);
  --primary-ring:   rgba(59, 130, 246, 0.28);

  --accent:         #22d3ee;
  --accent-light:   #67e8f9;
  --accent-soft:    rgba(34, 211, 238, 0.14);

  --shadow-xs:   0 1px 2px rgba(0,0,0,0.4);
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.4);
  --shadow-md:   0 8px 28px rgba(0,0,0,0.45);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.55);
  --shadow-btn:        0 1px 2px rgba(0,0,0,0.3), 0 6px 18px rgba(59,130,246,0.4);
  --shadow-btn-hover:  0 1px 2px rgba(0,0,0,0.3), 0 8px 28px rgba(59,130,246,0.5);
}

/* ─────────── HEADING WEIGHT TWEAK ─────────── */
[data-headings="bold"]  { --head-weight: 700; }
[data-headings="heavy"] { --head-weight: 800; }

/* ─────────── DENSITY ─────────── */
[data-density="compact"] {
  --section-py: clamp(48px, 6vw, 88px);
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  transition: background-color var(--t), color var(--t);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--primary-soft); color: var(--text); }

/* ============================================================
   CONTAINERS / SECTIONS
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-md { max-width: 1040px; }
.section { padding-block: var(--section-py); border-top: 1px solid var(--border); }
.section-head { text-align: center; margin: 0 auto var(--s-12); max-width: 720px; }
.section-sub { color: var(--text-muted); margin-top: var(--s-3); }

/* ============================================================
   TYPE
   ============================================================ */
.display {
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: var(--w-black);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: var(--s-4) 0 var(--s-5);
  color: var(--text);
}
.h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: var(--head-weight);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: var(--s-3) 0 var(--s-4);
  color: var(--text);
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0 0 var(--s-8);
  max-width: 620px;
}
.body {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 var(--s-4);
}
.body strong { color: var(--text); font-weight: var(--w-semi); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 var(--s-3);
}
.eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* signature gradient keyword */
.grad {
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  font-weight: var(--w-semi);
  font-size: var(--t-base);
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t), background-color var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.btn-sm { padding: 8px 14px; font-size: var(--t-sm); border-radius: 10px; }
.btn-lg { padding: 15px 26px; font-size: var(--t-md); border-radius: 14px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-btn-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0) scale(0.985); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover { border-color: var(--border-hover); background: var(--bg-alt); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); background: var(--ink-overlay); }

.check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: var(--w-bold);
  flex-shrink: 0;
  margin-right: 8px;
}

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill-accent {
  background: var(--accent-soft);
  color: var(--accent);
}
.pill-accent::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: var(--t-md);
  font-weight: var(--w-heavy);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand-text { color: var(--text); }
.brand-text strong { font-weight: var(--w-heavy); }
.brand-text span { color: var(--text-faint); font-weight: var(--w-medium); margin-left: 4px; }
.brand-mark {
  height: 34px;
  width: auto;
  display: inline-block;
  object-fit: contain;
}
[data-theme="dark"] .brand-mark {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 10px;
  font-size: var(--t-sm);
  font-weight: var(--w-medium);
  color: var(--text-muted);
  transition: color var(--t), background var(--t);
}
.nav-links a:hover { color: var(--text); background: var(--ink-overlay); }
.nav-links a.active { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-links + .nav-actions { margin-left: 0; }

.theme-toggle .theme-icon-dark { display: none; }
[data-theme="dark"] .theme-toggle .theme-icon-light { display: none; }
[data-theme="dark"] .theme-toggle .theme-icon-dark { display: block; }

.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  gap: 4px;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--text);
  border-radius: 1px;
}
.nav-burger span:nth-child(2) { width: 14px; }
.nav-burger span:nth-child(3) { width: 10px; }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile a {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: var(--w-medium);
  color: var(--text);
}
.nav-mobile a:hover { background: var(--ink-overlay); }
.nav-mobile.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 112px) 24px clamp(64px, 9vw, 128px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-inner { min-width: 0; }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 var(--s-10);
}
.trust-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: var(--t-sm);
  color: var(--text-muted);
}
.trust-strip li {
  display: inline-flex;
  align-items: center;
}

/* Hero figure: stylized browser */
.hero-figure {
  position: relative;
  min-width: 0;
}
.window {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(-1.2deg);
  transition: transform var(--t-slow);
}
.window:hover { transform: rotate(0deg) translateY(-2px); }
.window-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  font-size: var(--t-xs);
  color: var(--text-faint);
}
.dots { display: inline-flex; gap: 6px; }
.dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-hover);
}
.dots i:nth-child(1) { background: #ff5f57; }
.dots i:nth-child(2) { background: #febc2e; }
.dots i:nth-child(3) { background: #28c840; }
.window-url {
  flex: 1;
  text-align: center;
  background: var(--bg-soft);
  padding: 4px 12px;
  border-radius: 999px;
  font-family: 'Inter', monospace;
}
.window-lock { font-size: 11px; opacity: 0.6; }
.window-body {
  padding: 20px;
  display: grid;
  gap: 14px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}
.wb-row {
  height: 14px;
  border-radius: 4px;
  background: var(--ink-overlay);
}
.wb-row-tall { height: 110px; background: var(--grad); opacity: 0.16; border-radius: 10px; }
.wb-row-short { width: 50%; }
.wb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.wb-card {
  height: 70px;
  border-radius: 8px;
  background: var(--ink-overlay);
  border: 1px solid var(--border);
}
.wb-card.wb-accent {
  background: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 30%, transparent);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transform: rotate(-3deg);
}
.hero-badge-2 {
  bottom: auto;
  left: auto;
  top: -18px;
  right: -18px;
  transform: rotate(3deg);
}
.hero-badge-num {
  font-size: 28px;
  font-weight: var(--w-black);
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.hero-badge-label {
  font-size: var(--t-xs);
  color: var(--text-faint);
  font-weight: var(--w-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: var(--s-8);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--w-black);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-size: var(--t-sm);
  color: var(--text-faint);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
}
.ac-header { display: flex; align-items: center; gap: 14px; margin-bottom: var(--s-6); }
.ac-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  font-weight: var(--w-heavy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.ac-photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 35%, transparent), var(--shadow-sm);
  flex-shrink: 0;
}
.ac-name { font-weight: var(--w-heavy); color: var(--text); font-size: var(--t-lg); }
.ac-role { font-size: var(--t-sm); color: var(--text-faint); }
.ac-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: grid;
  gap: 10px;
}
.ac-list li {
  display: flex;
  align-items: flex-start;
  font-size: var(--t-sm);
  color: var(--text-2);
}
.ac-footer {
  border-top: 1px solid var(--border);
  padding-top: var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ac-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: var(--ink-overlay);
  color: var(--text);
  font-size: var(--t-sm);
  font-weight: var(--w-semi);
  transition: background var(--t), color var(--t);
}
.ac-linkedin:hover {
  background: #0a66c2;
  color: #fff;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.svc-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-6) var(--s-5);
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  box-shadow: var(--shadow-xs);
}
.svc-card:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.svc-card h3 {
  margin: 0 0 6px;
  font-size: var(--t-lg);
  font-weight: var(--w-heavy);
  letter-spacing: -0.01em;
  color: var(--text);
}
.svc-card p {
  margin: 0;
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.55;
}
.svc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: var(--s-4);
}
.svc-card-featured {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
  box-shadow: 0 8px 28px color-mix(in srgb, var(--primary) 15%, transparent);
}
.svc-card-featured .svc-icon {
  background: var(--grad);
  color: white;
}
.svc-tag {
  position: absolute;
  top: 16px;
  right: 16px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--bg-alt); }
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
}
.price-card-main {
  position: relative;
  border-color: color-mix(in srgb, var(--primary) 30%, var(--border));
  box-shadow: 0 12px 40px color-mix(in srgb, var(--primary) 16%, transparent);
}
.price-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 40%, transparent), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.price-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: var(--s-6);
}
.price-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: var(--w-black);
  margin: 4px 0 0;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 var(--s-6);
  padding: 0 0 var(--s-6);
  border-bottom: 1px solid var(--border);
}
.price-from {
  font-size: var(--t-sm);
  color: var(--text-faint);
  font-weight: var(--w-medium);
}
.price-big {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: var(--w-black);
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
}
.price-cad { font-size: var(--t-sm); color: var(--text-faint); font-weight: var(--w-bold); letter-spacing: 0.06em; }
.price-was {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: var(--w-bold);
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-color: color-mix(in srgb, var(--red) 65%, transparent);
}
.price-promo {
  margin: calc(-1 * var(--s-3)) 0 var(--s-5);
  font-size: var(--t-sm);
  font-weight: var(--w-semibold);
  color: var(--accent);
}
.price-list {
  list-style: none; padding: 0; margin: 0 0 var(--s-6);
  display: grid; gap: 12px;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  font-size: var(--t-base);
  color: var(--text-2);
}
.price-foot {
  text-align: center;
  font-size: var(--t-sm);
  color: var(--text-faint);
  margin: var(--s-4) 0 0;
}

.addons-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-xs);
}
.addons-title {
  font-size: var(--t-xl);
  font-weight: var(--w-heavy);
  margin: 4px 0 var(--s-6);
  color: var(--text);
}
.addons-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: grid;
  gap: 2px;
}
.addons-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.addons-list li:last-child { border-bottom: none; }
.ad-name { color: var(--text-2); font-size: var(--t-base); }
.ad-price {
  font-weight: var(--w-heavy);
  color: var(--primary);
  font-size: var(--t-base);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.addons-note {
  padding: var(--s-4);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   PERFECT FOR (pills)
   ============================================================ */
.perfect-pills {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.perfect-pills li {
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  font-size: var(--t-base);
  font-weight: var(--w-semi);
  color: var(--text);
  transition: border-color var(--t), background var(--t), transform var(--t);
  box-shadow: var(--shadow-xs);
}
.perfect-pills li:hover {
  border-color: color-mix(in srgb, var(--primary) 40%, var(--border));
  background: var(--primary-soft);
  transform: translateY(-2px);
}

/* ============================================================
   NO MONTHLY SUBSCRIPTION EXPLAINED
   ============================================================ */
.no-monthly-section { background: var(--bg-alt); }
.no-monthly-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.no-monthly-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 10%, var(--accent-soft) 0%, transparent 55%);
  pointer-events: none;
}
.no-monthly-card > * { position: relative; z-index: 1; }
.no-monthly-side {
  display: grid;
  gap: var(--s-4);
}
.nm-stat {
  padding: var(--s-5) var(--s-6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-alt);
  display: flex;
  align-items: baseline;
  gap: 16px;
  justify-content: space-between;
}
.nm-stat-num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: var(--w-black);
  letter-spacing: -0.025em;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.nm-stat-label {
  font-size: var(--t-sm);
  color: var(--text-muted);
  font-weight: var(--w-medium);
  text-align: right;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.compare-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-row-head {
  background: var(--bg-alt);
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.compare-row-head .compare-col-us {
  color: var(--primary);
  background: var(--primary-soft);
}
.compare-label {
  padding: 18px 20px;
  font-weight: var(--w-bold);
  font-size: var(--t-sm);
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  background: var(--bg-alt);
}
.compare-col {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-base);
  color: var(--text-2);
}
.compare-col-other { color: var(--text-faint); }
.compare-col-us {
  background: var(--primary-soft);
  color: var(--text);
  font-weight: var(--w-semi);
}
.compare-row-head .compare-col,
.compare-row-head .compare-label { padding: 14px 20px; }
.x {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  font-size: 11px;
  font-weight: var(--w-bold);
  flex-shrink: 0;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  box-shadow: var(--shadow-xs);
}
.work-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
}
.work-thumb {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Real screenshot thumbs, no padding, full bleed */
.work-thumb-photo {
  padding: 0;
  background: var(--bg-soft);
  align-items: stretch;
  justify-content: stretch;
}
.work-thumb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.work-card-link:hover .work-thumb-photo img { transform: scale(1.04); }

.work-card-link {
  cursor: pointer;
  display: block;
  color: inherit;
}
.work-visit {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--t), transform var(--t);
  box-shadow: var(--shadow-sm);
}
.work-card-link:hover .work-visit {
  opacity: 1;
  transform: translateY(0);
}

.work-thumb-private { position: relative; }
.work-private-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.78);
  color: white;
  font-size: 10px;
  font-weight: var(--w-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
}
.work-thumb-1 { background: linear-gradient(135deg, #eff6ff, #e0f2fe); }
.work-thumb-2 { background: linear-gradient(135deg, #ecfeff, #cffafe); }
.work-thumb-3 { background: linear-gradient(135deg, #f8fafc, #eff6ff); }
.work-thumb-4 { background: linear-gradient(135deg, #f0fdfa, #ccfbf1); }
.work-thumb-5 { background: linear-gradient(135deg, #eff6ff, #dbeafe); }
.work-thumb-6 { background: linear-gradient(135deg, #ecfeff, #e0f2fe); }
[data-theme="dark"] .work-thumb-1 { background: linear-gradient(135deg, #0f1e36, #0c2942); }
[data-theme="dark"] .work-thumb-2 { background: linear-gradient(135deg, #0c2e34, #0a3a44); }
[data-theme="dark"] .work-thumb-3 { background: linear-gradient(135deg, #0f1729, #0f1e36); }
[data-theme="dark"] .work-thumb-4 { background: linear-gradient(135deg, #0a2c2a, #0c3a35); }
[data-theme="dark"] .work-thumb-5 { background: linear-gradient(135deg, #0f1e36, #0d2746); }
[data-theme="dark"] .work-thumb-6 { background: linear-gradient(135deg, #0c2e34, #0c2942); }

/* Mock: browser */
.wm-browser {
  width: 100%; max-width: 280px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
  overflow: hidden;
}
[data-theme="dark"] .wm-browser { background: #1a2540; }
.wm-bar { display: flex; gap: 4px; padding: 6px 8px; background: #f1f5f9; }
[data-theme="dark"] .wm-bar { background: #0f1729; }
.wm-bar i { width: 7px; height: 7px; border-radius: 50%; background: #cbd5e1; }
.wm-content { padding: 10px; display: grid; gap: 8px; }
.wm-hero { height: 50px; border-radius: 4px; background: linear-gradient(135deg, var(--primary), var(--accent)); }
.wm-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
.wm-grid span { height: 26px; border-radius: 3px; background: #e2e8f0; }
[data-theme="dark"] .wm-grid span { background: #1f2c4d; }

/* Mock: phone */
.wm-phone {
  width: 90px; height: 170px;
  background: #0b1220;
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(15,23,42,0.2);
}
.wm-screen { background: white; border-radius: 10px; height: 100%; padding: 8px; display: grid; gap: 6px; grid-template-rows: auto 1fr; }
[data-theme="dark"] .wm-screen { background: #1a2540; }
.wm-shop-hero { height: 36px; border-radius: 4px; background: linear-gradient(135deg, var(--accent), var(--primary)); }
.wm-shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.wm-shop-grid span { background: #e2e8f0; border-radius: 3px; }
[data-theme="dark"] .wm-shop-grid span { background: #1f2c4d; }

/* Mock: form */
.wm-form {
  background: white;
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  max-width: 220px;
  display: grid;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
}
[data-theme="dark"] .wm-form { background: #1a2540; }
.wm-input { height: 18px; border-radius: 4px; background: #e2e8f0; }
[data-theme="dark"] .wm-input { background: #1f2c4d; }
.wm-input-short { width: 60%; }
.wm-input-tall { height: 48px; }
.wm-btn { height: 22px; border-radius: 4px; background: var(--primary); }

/* Mock: dashboard */
.wm-dash {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 4px;
  width: 100%; max-width: 280px;
  height: 140px;
  background: white;
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.12);
}
[data-theme="dark"] .wm-dash { background: #1a2540; }
.wm-sidebar { background: #0b1220; border-radius: 4px; }
.wm-main { display: grid; grid-template-rows: auto 1fr; gap: 4px; }
.wm-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3px; }
.wm-stat-row span { height: 28px; border-radius: 3px; background: var(--primary-soft); }
.wm-table { background: #f1f5f9; border-radius: 3px; padding: 4px; display: grid; gap: 3px; }
.wm-table div { height: 10px; background: white; border-radius: 2px; }
[data-theme="dark"] .wm-table { background: #0f1729; }
[data-theme="dark"] .wm-table div { background: #1f2c4d; }

/* Mock: business cards */
.wm-cards { position: relative; display: flex; gap: 14px; align-items: center; }
.wm-card {
  width: 110px; height: 64px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.15);
  padding: 10px;
}
.wm-card-front {
  background: white;
  display: flex; flex-direction: column; gap: 6px;
  transform: rotate(-4deg);
}
[data-theme="dark"] .wm-card-front { background: #1a2540; }
.wm-card-mark { width: 16px; height: 16px; border-radius: 50%; background: var(--grad); }
.wm-card-lines { display: grid; gap: 4px; }
.wm-card-lines span { height: 4px; background: #cbd5e1; border-radius: 2px; }
.wm-card-lines span:nth-child(2) { width: 60%; }
[data-theme="dark"] .wm-card-lines span { background: #2f3d5e; }
.wm-card-back { background: var(--grad); transform: rotate(3deg); }

/* Mock: gallery */
.wm-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  width: 100%; max-width: 220px;
  aspect-ratio: 3/2;
}
.wm-gallery span {
  background: var(--primary-soft);
  border-radius: 4px;
}
.wm-gallery span:nth-child(odd) {
  background: var(--accent-soft);
}

.work-meta { padding: 18px 20px 22px; }
.work-tag {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.work-meta h3 {
  margin: 0 0 4px;
  font-size: var(--t-lg);
  font-weight: var(--w-heavy);
  color: var(--text);
  letter-spacing: -0.01em;
}
.work-meta p { margin: 0; font-size: var(--t-sm); color: var(--text-muted); line-height: 1.5; }

/* ============================================================
   WHY
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: border-color var(--t), transform var(--t);
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.why-num {
  font-family: 'Inter', monospace;
  font-size: var(--t-sm);
  font-weight: var(--w-heavy);
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: var(--s-4);
}
.why-card h4 {
  margin: 0 0 8px;
  font-size: var(--t-md);
  font-weight: var(--w-heavy);
  color: var(--text);
  letter-spacing: -0.005em;
}
.why-card p {
  margin: 0;
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--bg-alt); }
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  counter-reset: ps;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-6);
  transition: border-color var(--t), transform var(--t);
}
.process-step:hover { border-color: var(--border-hover); transform: translateY(-1px); }
.ps-num {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: var(--w-black);
  font-size: var(--t-md);
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
}
.process-step h4 {
  margin: 6px 0 4px;
  font-size: var(--t-md);
  font-weight: var(--w-heavy);
  color: var(--text);
}
.process-step p {
  margin: 0;
  font-size: var(--t-sm);
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: flex-start;
}
.contact-points {
  list-style: none;
  padding: 0;
  margin: var(--s-6) 0 var(--s-8);
  display: grid;
  gap: 10px;
}
.contact-points li {
  display: flex; align-items: flex-start;
  font-size: var(--t-base);
  color: var(--text-2);
}
.contact-meta {
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5) var(--s-6);
}
.cm-label {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}
.cm-value { color: var(--text); font-weight: var(--w-medium); word-break: break-word; }
.cm-link {
  color: var(--text);
  border-bottom: 1px dashed var(--border-hover);
  transition: color var(--t), border-color var(--t);
  display: inline-block;
}
.cm-link:hover { color: var(--primary); border-bottom-color: var(--primary); }
.cm-hint {
  font-size: var(--t-xs);
  color: var(--text-faint);
  margin-top: 2px;
}
.footer-hint { color: var(--text-ghost); font-size: var(--t-xs); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 14px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 6px;
}
.lbl {
  font-size: var(--t-sm);
  font-weight: var(--w-semi);
  color: var(--text-2);
  letter-spacing: -0.005em;
}
.lbl em { color: var(--primary); font-style: normal; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font: inherit;
  color: var(--text);
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
[data-theme="dark"] .contact-form input,
[data-theme="dark"] .contact-form select,
[data-theme="dark"] .contact-form textarea {
  background: var(--bg-soft);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-ring);
  background: var(--surface);
}
.contact-form textarea { resize: vertical; min-height: 110px; font-family: inherit; }

.contact-form input.invalid,
.contact-form select.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.16);
}

.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; padding-right: 38px; }
.select-chev {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--text-faint);
  pointer-events: none;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: var(--s-2);
}
.form-foot {
  margin: 0;
  font-size: var(--t-xs);
  color: var(--text-faint);
}

.form-success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--s-5);
  background: color-mix(in srgb, var(--green) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--green) 30%, transparent);
  border-radius: var(--r-md);
  margin-top: var(--s-2);
}
.form-success[hidden] { display: none; }
.form-success p { margin: 4px 0 0; color: var(--text-muted); font-size: var(--t-sm); }
.form-success strong { color: var(--text); font-size: var(--t-base); }
.fs-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: var(--w-black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Error message (mirrors .form-success, in red) */
.form-error {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--s-5);
  background: color-mix(in srgb, var(--red) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--red) 30%, transparent);
  border-radius: var(--r-md);
  margin-top: var(--s-2);
}
.form-error[hidden] { display: none; }
.form-error p { margin: 4px 0 0; color: var(--text-muted); font-size: var(--t-sm); }
.form-error strong { color: var(--text); font-size: var(--t-base); }
.fe-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-weight: var(--w-black);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Turnstile widget spacing */
.cf-turnstile { margin-top: var(--s-2); }

/* Honeypot field — visually hidden, kept in the layout for bots only */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---- Sent state: the success panel replaces the whole form ---- */
.contact-form.sent > :not(.form-success) { display: none !important; }
.contact-form.sent .form-success {
  margin-top: 0;
  padding: var(--s-8);
  align-items: center;
}
.fs-body { display: flex; flex-direction: column; gap: 4px; }
.fs-body .btn { align-self: flex-start; margin-top: 14px; }
.fs-debug {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: var(--t-xs);
  color: var(--text-muted);
  white-space: pre-wrap;
  word-break: break-word;
  background: var(--ink-overlay);
  border-radius: var(--r-sm);
  padding: 8px 10px;
}
.fs-debug[hidden] { display: none; }

/* ============================================================
   PRICING TIERS (4 packages) + E-COMMERCE BAND + ADD-ONS
   ============================================================ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(22px, 2vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-hover);
}
.tier-card-featured {
  border-color: color-mix(in srgb, var(--primary) 32%, var(--border));
  box-shadow: 0 14px 44px color-mix(in srgb, var(--primary) 16%, transparent);
}
.tier-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 42%, transparent), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.tier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 24px;
  margin-bottom: var(--s-3);
}
.tier-eyebrow {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.tier-name {
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: var(--w-black);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 var(--s-4);
  line-height: 1.1;
}
.tier-amount {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.tier-strike {
  font-size: var(--t-xl);
  font-weight: var(--w-bold);
  color: var(--text-ghost);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.tier-big {
  font-size: clamp(36px, 3.6vw, 46px);
  font-weight: var(--w-black);
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1;
}
.tier-cad { font-size: var(--t-xs); color: var(--text-faint); font-weight: var(--w-bold); letter-spacing: 0.06em; }
.tier-save {
  font-size: var(--t-sm);
  font-weight: var(--w-semi);
  color: var(--accent);
  margin: 0 0 var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--border);
}
.tier-save-blank {
  font-size: var(--t-sm);
  color: var(--text-faint);
  margin: 0 0 var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--border);
}
.tier-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
  display: grid;
  gap: 10px;
  flex: 1;
}
.tier-list li {
  display: flex;
  align-items: flex-start;
  font-size: var(--t-sm);
  line-height: 1.45;
  color: var(--text-2);
}
.tier-list .tier-plus {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}
.tier-list li .check { width: 16px; height: 16px; font-size: 10px; margin-top: 1px; }
.tier-cta { margin-top: auto; display: grid; gap: 10px; }
.tier-example {
  text-align: center;
  font-size: var(--t-sm);
  font-weight: var(--w-semi);
  color: var(--primary);
  padding: 9px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.tier-example:hover { background: var(--primary-soft); border-color: var(--primary-ring); }

/* Add-ons strip below tiers */
.addons-strip {
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-xs);
}
.addons-strip-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}
.addons-strip-head h3 { font-size: var(--t-xl); font-weight: var(--w-heavy); color: var(--text); margin: 4px 0 0; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px 28px;
}
.addons-grid li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.addons-grid .ad-name { color: var(--text-2); font-size: var(--t-sm); }
@media (max-width: 1080px) {
  .tier-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .addons-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .tier-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
}

/* E-commerce / online store band */
.ecom-band {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, #13243a 0%, #16243e 100%);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 3.4vw, 44px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ecom-band::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 40%, transparent), transparent 70%);
  pointer-events: none;
}
.ecom-band .eyebrow { color: var(--accent-light); }
.ecom-band h3 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: var(--w-black);
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
  color: #fff;
}
.ecom-band p { color: rgba(255,255,255,0.72); font-size: var(--t-md); margin: 0 0 18px; max-width: 460px; }
.ecom-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.ecom-feats li {
  font-size: var(--t-sm); font-weight: var(--w-medium);
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 13px; border-radius: var(--r-pill);
}
.ecom-price { position: relative; z-index: 1; }
.ecom-price .strike { font-size: var(--t-xl); font-weight: var(--w-bold); color: rgba(255,255,255,0.45); text-decoration: line-through; text-decoration-thickness: 2px; }
.ecom-price .from { font-size: var(--t-sm); color: rgba(255,255,255,0.6); font-weight: var(--w-medium); display: block; margin-bottom: 2px; }
.ecom-price .big { font-size: clamp(40px, 4.4vw, 56px); font-weight: var(--w-black); letter-spacing: -0.035em; line-height: 1; }
.ecom-price .quote-note { font-size: var(--t-sm); color: rgba(255,255,255,0.6); margin: 8px 0 18px; }
.ecom-band .btn-accent { background: var(--accent); color: #0b1220; }
.ecom-band .btn-accent:hover { background: var(--accent-light); }
.ecom-band .ecom-example { display: inline-block; margin-top: 10px; font-size: var(--t-sm); font-weight: var(--w-semi); color: var(--accent-light); }
@media (max-width: 760px) { .ecom-band { grid-template-columns: 1fr; gap: 22px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: var(--s-8);
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--s-5);
  font-weight: var(--w-bold);
  font-size: var(--t-base);
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--t);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-a {
  padding: 0 var(--s-5) var(--s-5);
}
.faq-a p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--t-base);
  line-height: 1.7;
}
.faq-a a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--s-16) 0 var(--s-8);
  color: var(--text-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: var(--s-12);
}
.brand-footer { margin-bottom: var(--s-3); }
.footer-copy {
  font-size: var(--t-sm);
  color: var(--text-faint);
  line-height: 1.55;
  margin: 0;
  max-width: 260px;
}
.footer-h {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s-4);
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: var(--t-sm);
}
.footer-list a { color: var(--text-faint); transition: color var(--t); }
.footer-list a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: var(--t-xs);
  color: var(--text-ghost);
}
.footer-tag { font-weight: var(--w-medium); }

/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 280px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.tweaks-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-size: var(--t-sm);
  letter-spacing: 0.02em;
}
.tweaks-close {
  background: transparent;
  border: none;
  color: var(--text-faint);
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 6px;
}
.tweaks-close:hover { color: var(--text); background: var(--ink-overlay); }
.tweaks-body { padding: 16px 18px 20px; display: grid; gap: var(--s-4); }
.tweaks-section { display: grid; gap: 8px; }
.tweaks-label {
  font-size: var(--t-xs);
  font-weight: var(--w-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.tweaks-seg {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
}
.tweaks-seg button {
  background: transparent;
  border: none;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: var(--t-sm);
  color: var(--text-muted);
  font-weight: var(--w-semi);
}
.tweaks-seg button.active {
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow-xs);
}
.tweaks-swatches {
  display: flex;
  gap: 8px;
}
.tweaks-swatches .sw {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--sw, var(--primary));
  cursor: pointer;
  padding: 0;
  transition: transform var(--t-fast), border-color var(--t);
}
.tweaks-swatches .sw:hover { transform: scale(1.08); }
.tweaks-swatches .sw.active { border-color: var(--text); transform: scale(1.05); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .work-grid,
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { grid-template-columns: 1fr; }
  .hero-figure { max-width: 480px; margin: 0 auto; width: 100%; }
  .about-grid,
  .pricing-grid,
  .contact-grid,
  .no-monthly-card { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .compare-row { grid-template-columns: 120px 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-actions .btn-primary { display: none; }
  .services-grid,
  .work-grid,
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-meta { grid-template-columns: 1fr; }
  .about-stats { gap: 12px; }
  .stat-num { font-size: 24px; }
  .hero-badge { left: auto; right: 12px; bottom: -12px; padding: 10px 14px; }
  .hero-badge-2 { top: auto; left: 12px; right: auto; bottom: -12px; }
  .hero-badge-num { font-size: 22px; }
  .tweaks { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .compare-row { grid-template-columns: 1fr; }
  .compare-row .compare-label {
    grid-column: 1 / -1;
    padding: 12px 20px 4px;
    background: transparent;
  }
  .compare-row-head { display: none; }
  .compare-row { padding-bottom: 8px; }
  .nm-stat { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nm-stat-label { text-align: left; }
  .perfect-pills li { padding: 8px 14px; font-size: var(--t-sm); }
}

/* ============================================================
   ENTRY ANIMATIONS (very restrained)
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; }
.reveal.in { animation: fadeUp 0.6s ease both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; animation: none; }
  .window { transform: none; }
}
