/* ==========================================================================
   JOBAKI — Digital Marketing Agency Design System
   ========================================================================== */

:root {
  /* Core palette — JOBAKI navy + blue */
  --ink: #0b1a2f;          /* deep navy background */
  --ink-2: #10233d;        /* elevated navy surface */
  --ink-3: #1a3352;        /* card / border on dark */
  --paper: #ffffff;
  --cream: #f4f7fb;        /* light section bg (cool tint) */
  --cream-2: #e7eef7;

  --accent: #2b8ae5;       /* brand blue — signature */
  --accent-dim: #1f6fc0;
  --accent-soft: rgba(43, 138, 229, 0.14);
  --violet: #5aa9ef;       /* lighter blue for gradients */

  --text-on-dark: #eef3f9;
  --text-dim: #9db0c6;
  --text-faint: #6b7f97;
  --text-on-light: #12243c;
  --text-muted-light: #4a5b70;

  --border-dark: rgba(255, 255, 255, 0.10);
  --border-light: rgba(0, 0, 0, 0.10);

  --font-head: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text-on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.4rem; }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 110px 0; position: relative; }
.section--tight { padding: 72px 0; }

/* Light / dark sections */
.section--light { background: var(--cream); color: var(--text-on-light); }
.section--light h1, .section--light h2, .section--light h3 { color: var(--text-on-light); }
.section--light p { color: var(--text-muted-light); }

.section--paper { background: var(--paper); color: var(--text-on-light); }
.section--paper h2, .section--paper h3 { color: var(--text-on-light); }
.section--paper p { color: var(--text-muted-light); }

/* Eyebrow / labels */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "✦";
  color: var(--accent);
  font-size: 0.85em;
}
.section--light .eyebrow, .section--paper .eyebrow { color: var(--text-on-light); }
.section--light .eyebrow::before, .section--paper .eyebrow::before { color: var(--accent-dim); }

.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.12rem; color: var(--text-dim); }
.section--light .section-head p, .section--paper .section-head p { color: var(--text-muted-light); }

.lead { font-size: 1.15rem; color: var(--text-dim); max-width: 52ch; }

/* Accent text */
.hl { color: var(--accent); }
.hl-underline {
  background: linear-gradient(transparent 62%, var(--accent-soft) 62%);
  padding: 0 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--accent { background: var(--accent); color: #ffffff; }
.btn--accent:hover { box-shadow: 0 10px 30px rgba(43, 138, 229, 0.3); }

.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { box-shadow: 0 10px 30px rgba(255,255,255,0.15); }

.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.25); }

.btn--ghost { background: transparent; color: var(--text-on-dark); border-color: var(--border-dark); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--ghost-dark { background: transparent; color: var(--text-on-light); border-color: var(--border-light); }
.btn--ghost-dark:hover { border-color: var(--ink); }

.btn-arrow { transition: transform 0.18s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 26, 47, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.42rem;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.brand .brand-peak { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--paper); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; color: var(--paper); font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(43,138,229,0.14), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -40%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(90,169,239,0.12), transparent 62%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 900px; }
.hero h1 { margin-bottom: 26px; }
.hero .lead { font-size: 1.3rem; max-width: 60ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border: 1px solid var(--border-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 30px;
  background: rgba(255,255,255,0.02);
}
.pill .pill-tag {
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Marquee / logo strip */
.marquee-wrap {
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 26px 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 22px;
}
.marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scroll-x 28s linear infinite;
}
.marquee span {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-faint);
  white-space: nowrap;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.section--light .stat-num, .section--paper .stat-num { color: var(--ink); }
.stat-label { font-size: 0.95rem; color: var(--text-dim); margin-top: 10px; }
.section--light .stat-label, .section--paper .stat-label { color: var(--text-muted-light); }

/* Grid + cards */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(43,138,229,0.4); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-dim); margin: 0; }

.section--light .card, .section--paper .card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.section--light .card:hover, .section--paper .card:hover { border-color: var(--ink); }
.section--light .card p, .section--paper .card p { color: var(--text-muted-light); }

.card-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.section--light .card-num, .section--paper .card-num { color: var(--accent-dim); }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}
.section--light .card-icon, .section--paper .card-icon {
  background: var(--ink); color: var(--accent);
}

/* Feature list */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-dim); }
.feature-list .check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 2px;
}
.section--light .feature-list li, .section--paper .feature-list li { color: var(--text-muted-light); }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}
.price-card.featured {
  background: linear-gradient(180deg, rgba(43,138,229,0.10), rgba(20,20,24,0.6));
  border-color: var(--accent);
}
.price-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
}
.price-name { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--text-dim); }
.price-amount { font-family: var(--font-head); font-size: 3.2rem; font-weight: 700; letter-spacing: -0.03em; margin: 14px 0 4px; color: var(--text-on-dark); }
.price-amount span { font-size: 1rem; color: var(--text-faint); font-weight: 500; }
.price-desc { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 26px; }
.price-card .feature-list { margin: 26px 0; }
.price-card .feature-list li { color: var(--text-dim); }
.price-card .price-name { color: var(--text-dim); }
.price-card .btn { width: 100%; justify-content: center; }

/* Split / alternating */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-visual {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 28% 26%, rgba(43,138,229,0.22), transparent 55%),
    linear-gradient(160deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--border-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px;
  color: var(--text-on-dark);
  font-family: var(--font-head);
  text-align: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

/* Process steps */
.process { display: grid; gap: 0; }
.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid var(--border-dark);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--border-dark); }
.process-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--accent); line-height: 1; }
.section--light .process-step, .section--paper .process-step { border-color: var(--border-light); }
.section--light .process-num, .section--paper .process-num { color: var(--accent-dim); }

/* Testimonials */
.quote-card {
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.quote-card .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 18px; font-size: 0.95rem; }
.quote-card blockquote { margin: 0 0 22px; font-size: 1.12rem; line-height: 1.5; color: var(--text-on-dark); }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  flex: none;
}
.quote-name { font-family: var(--font-head); font-weight: 600; font-size: 0.98rem; }
.quote-role { font-size: 0.85rem; color: var(--text-faint); }
.section--light .quote-card, .section--paper .quote-card {
  background: var(--paper); border-color: var(--border-light); box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.section--light .quote-card blockquote, .section--paper .quote-card blockquote { color: var(--text-on-light); }

/* CTA band */
.cta-band {
  background: var(--accent);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #ffffff; margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 46ch; margin: 0 auto 32px; }

/* Price math (Vamped-style) */
.pricemath {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
.pricemath-col { text-align: center; }
.pricemath-amt { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; }
.pricemath-vs {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.2rem;
  width: 54px; height: 54px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.strike { text-decoration: line-through; color: var(--text-faint); }

/* FAQ accordion */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-dark); }
.section--light .faq-item, .section--paper .faq-item { border-color: var(--border-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 26px 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q .faq-icon { color: var(--accent); font-size: 1.4rem; flex: none; transition: transform 0.2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding-bottom: 26px; margin: 0; color: var(--text-dim); }
.section--light .faq-a p, .section--paper .faq-a p { color: var(--text-muted-light); }

/* Page hero (interior) */
.page-hero { padding: 90px 0 70px; position: relative; overflow: hidden; }
.page-hero::before {
  content: "";
  position: absolute; top: -40%; left: 60%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(43,138,229,0.10), transparent 62%);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: 0.85rem; color: var(--text-faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--accent); }

/* Blog */
.post-card {
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: rgba(43,138,229,0.4); }
.post-media {
  aspect-ratio: 16/9;
  background: linear-gradient(150deg, var(--ink-3), var(--ink-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); font-size: 0.85rem;
  position: relative;
  overflow: hidden;
}
.post-media svg { width: 56px; height: 56px; position: relative; z-index: 2; }
.post-media::after {
  content: "";
  position: absolute;
  right: -36px; bottom: -46px;
  width: 170px; height: 170px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 70%);
}
.post-media::before {
  content: "";
  position: absolute;
  left: 18px; top: 16px;
  width: 26px; height: 26px;
  border-left: 2px solid rgba(255,255,255,0.28);
  border-top: 2px solid rgba(255,255,255,0.28);
  transform: rotate(45deg);
}
/* On-brand thumbnail gradients */
.pm-1 { background: linear-gradient(135deg, #123a6b, #2b8ae5); }
.pm-2 { background: linear-gradient(135deg, #0f3d57, #1f9fb8); }
.pm-3 { background: linear-gradient(135deg, #1e2f6b, #5a6fe0); }
.pm-4 { background: linear-gradient(135deg, #10405f, #2bbfe5); }
.pm-5 { background: linear-gradient(135deg, #14345a, #2b8ae5); }
.pm-6 { background: linear-gradient(135deg, #26305c, #4f7de8); }

/* Illustrated visual panel (replaces empty split placeholders) */
.split-visual svg, .visual-illus svg { width: 82%; height: auto; }
.split-visual.has-illus { padding: 34px; }
.split-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(circle at 50% 42%, #000 38%, transparent 78%);
  mask-image: radial-gradient(circle at 50% 42%, #000 38%, transparent 78%);
}
.split-visual::after {
  content: ""; position: absolute; right: -45px; bottom: -55px;
  width: 230px; height: 230px;
  background: radial-gradient(circle, rgba(90,169,239,0.16), transparent 68%);
}
.split-visual > * { position: relative; z-index: 2; }
.sv-icon {
  width: 78px; height: 78px; border-radius: 20px;
  background: rgba(43,138,229,0.16);
  border: 1px solid rgba(43,138,229,0.5);
  display: flex; align-items: center; justify-content: center;
}
.sv-icon svg { width: 38px !important; height: 38px; }
.sv-label { font-size: 1.55rem; font-weight: 600; line-height: 1.15; color: var(--text-on-dark); max-width: 16ch; }
.post-body { padding: 26px; }
.post-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-weight: 600; }
.post-body h3 { margin: 12px 0 8px; font-size: 1.2rem; }
.post-body p { color: var(--text-dim); margin: 0; font-size: 0.95rem; }
.post-meta { font-size: 0.82rem; color: var(--text-faint); margin-top: 16px; }

/* Article */
.article { max-width: 760px; margin: 0 auto; }
.article p { color: var(--text-dim); font-size: 1.08rem; }
.article h2 { margin-top: 1.6em; font-size: 1.8rem; }
.article h3 { margin-top: 1.4em; }

/* Forms */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { font-family: var(--font-head); font-weight: 500; font-size: 0.88rem; margin-bottom: 8px; display: block; }
input, textarea, select {
  width: 100%;
  padding: 14px 16px;
  background: var(--ink-2);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 0.98rem;
}
input::placeholder, textarea::placeholder { color: var(--text-faint); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 140px; }
.form-success {
  display: none;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 16px;
  border-radius: 12px;
  font-weight: 500;
}

/* Footer */
.site-footer { background: var(--ink); border-top: 1px solid var(--border-dark); padding: 80px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--text-dim); max-width: 34ch; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { color: var(--text-dim); font-size: 0.95rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--text-faint);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 600; color: var(--text-dim);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Utilities */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-faint); }

/* Responsive */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricemath { grid-template-columns: 1fr; gap: 20px; }
  .pricemath-vs { margin: 0 auto; }
}

@media (max-width: 680px) {
  .section { padding: 76px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    background: var(--ink-2);
    padding: 28px;
    border-bottom: 1px solid var(--border-dark);
  }
  .nav { position: relative; }
  .nav-toggle { display: block; }
  .nav-right .btn:not(.nav-toggle) { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 48px 26px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 18px; }
}
