/* Vadimages — section-specific styles */

/* ── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0 clamp(72px, 8vw, 128px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.hero-headline { margin-top: 24px; }
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 28px; margin-top: 56px;
  padding-top: 28px; border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat b { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--ink); }
.hero-stat span { font-size: 13px; color: var(--ink-3); }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 480px;
  width: 100%;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; max-width: 520px; margin-inline: auto; }
}

/* Orbits */
.hero-orbits { position: absolute; inset: 0; }
.hero-sun {
  position: absolute; left: 50%; top: 50%; width: 140px; height: 140px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--primary), color-mix(in oklch, var(--primary) 60%, var(--tertiary)));
  box-shadow: 0 0 80px -10px var(--primary);
  animation: sunPulse 4s ease-in-out infinite;
}
@keyframes sunPulse { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.06); } }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px dashed color-mix(in oklch, var(--ink) 14%, transparent); border-radius: 50%; }
.orbit-pill {
  position: absolute;
  background: var(--bg-card);
  color: var(--ink);
  padding: 8px 14px;
  font: 500 13px/1 var(--font-ui);
  border-radius: 999px;
  border: 1px solid var(--line);
  white-space: nowrap;
  box-shadow: 0 4px 14px -8px rgba(0,0,0,.25);
}

/* Blob */
.hero-blob { position: absolute; inset: -8%; }
.hero-blob svg { width: 100%; height: 100%; }
.hero-blob-grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
  opacity: 0.35;
}

/* Code */
.hero-code { position: absolute; inset: 0; display: grid; place-items: center; }
.hero-code-card {
  width: 92%; max-width: 520px;
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.35);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.hero-code-card:hover { transform: rotate(0); }
.hero-code-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--bg-elev); border-bottom: 1px solid var(--line);
}
.hero-code-bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.hero-code-bar span:nth-child(1) { background: oklch(0.72 0.18 30); }
.hero-code-bar span:nth-child(2) { background: oklch(0.85 0.16 90); }
.hero-code-bar span:nth-child(3) { background: oklch(0.78 0.16 165); }
.hero-code-bar em { margin-left: 8px; font-style: normal; }
.hero-code-body {
  margin: 0; padding: 22px;
  font-size: 13px; line-height: 1.6;
  color: var(--ink); white-space: pre;
  overflow: hidden;
}
.hero-pixel-cloud { position: absolute; inset: 0; pointer-events: none; }
.pixel {
  position: absolute; width: 6px; height: 6px;
  background: var(--primary); border-radius: 1px;
  animation: pixelDrift 6s ease-in-out infinite;
  opacity: 0;
}
@keyframes pixelDrift {
  0% { opacity: 0; transform: translate(0,0) scale(.5); }
  30% { opacity: 1; transform: translate(0,-12px) scale(1); }
  100% { opacity: 0; transform: translate(0,-40px) scale(.5); }
}

/* Stack */
.hero-stack { position: absolute; inset: 0; display: grid; place-items: center; perspective: 1200px; }
.hero-stack-card {
  position: absolute;
  width: 70%; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 28px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.4);
  transform: translateY(calc(var(--i) * -22px)) translateX(calc(var(--i) * 18px)) rotate(calc(var(--i) * -3deg));
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  animation: stackFloat 5s ease-in-out infinite;
  animation-delay: calc(var(--i) * -0.4s);
}
@keyframes stackFloat {
  0%, 100% { transform: translateY(calc(var(--i) * -22px)) translateX(calc(var(--i) * 18px)) rotate(calc(var(--i) * -3deg)); }
  50% { transform: translateY(calc(var(--i) * -22px - 8px)) translateX(calc(var(--i) * 18px + 4px)) rotate(calc(var(--i) * -3deg - 1deg)); }
}

/* Hero floater (marquee under hero) */
.hero-floater {
  margin-top: clamp(56px, 8vw, 96px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  background: var(--bg-elev);
}
.hero-floater-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 36s linear infinite;
  font-size: 14px;
}
.hero-floater-row { display: inline-flex; gap: 56px; padding-right: 56px; }
.hero-floater em { font-style: normal; color: var(--ink-2); }

/* ── LOGO MARQUEE ──────────────────────────────────────────────────── */
.logo-strip { padding-block: clamp(40px, 5vw, 64px); }
.logo-pill {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 10px 22px; border: 1px solid var(--line);
  border-radius: 999px; background: var(--bg-elev);
  color: var(--ink-2);
}
.logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--primary); }
.logo-pill:nth-child(2n) .logo-dot { background: var(--secondary); }
.logo-pill:nth-child(3n) .logo-dot { background: var(--tertiary); }

/* ── SECTION HEADER ────────────────────────────────────────────────── */
.section-head { display: flex; flex-direction: column; gap: 22px; max-width: 740px; margin-bottom: clamp(48px, 5vw, 72px); }

/* ── SERVICES ──────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 800px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .25s;
  cursor: default;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--primary); }
.service-card-top { display: flex; justify-content: space-between; align-items: center; color: var(--ink-3); }
.service-card:nth-child(1) { background: linear-gradient(160deg, color-mix(in oklch, var(--primary) 8%, var(--bg-card)), var(--bg-card)); }
.service-card:nth-child(2) { background: linear-gradient(160deg, color-mix(in oklch, var(--secondary) 8%, var(--bg-card)), var(--bg-card)); }
.service-card:nth-child(3) { background: linear-gradient(160deg, color-mix(in oklch, var(--tertiary) 8%, var(--bg-card)), var(--bg-card)); }
.service-card:nth-child(4) { background: linear-gradient(160deg, color-mix(in oklch, var(--ink) 6%, var(--bg-card)), var(--bg-card)); }
.service-arrow { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); transition: transform .35s, background .25s; }
.service-card:hover .service-arrow { transform: rotate(45deg); background: var(--primary); color: var(--primary-ink); }
.service-title { font-size: clamp(28px, 3vw, 40px); margin: 4px 0 0; }
.service-list { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-direction: column; gap: 10px; border-top: 1px dashed var(--line); padding-top: 16px; }
.service-list li { display: flex; align-items: center; gap: 10px; color: var(--ink-2); font-size: 15px; }
.service-list .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.service-card:nth-child(2) .service-list .dot { background: var(--secondary); }
.service-card:nth-child(3) .service-list .dot { background: var(--tertiary); }

/* ── PROCESS ───────────────────────────────────────────────────────── */
.process { background: var(--bg-elev); }
.process-pipeline { position: relative; margin: clamp(32px, 5vw, 56px) 0; }
.process-track { width: 100%; height: 120px; display: block; }
.process-track-fill { transition: stroke-dashoffset .8s cubic-bezier(.2,.7,.2,1); }
.process-nodes {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  margin-top: -50px;
  position: relative;
}
.process-node {
  appearance: none; border: 0; background: transparent;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  cursor: pointer; padding: 12px; border-radius: var(--radius-md);
  transition: background .2s;
}
.process-node:hover { background: color-mix(in oklch, var(--primary) 6%, transparent); }
.process-num { color: var(--ink-3); }
.process-label { font-family: var(--font-display); font-size: 26px; color: var(--ink-3); transition: color .3s; letter-spacing: var(--display-tracking); }
.process-dur { color: var(--ink-3); font-size: 11px; }
.process-node.done .process-label { color: var(--ink-2); }
.process-node.active .process-label { color: var(--primary); }
.process-node.active .process-num { color: var(--primary); }
.process-node::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line);
  margin-bottom: 4px; transition: all .3s;
}
.process-node.done::before { background: var(--primary); border-color: var(--primary); }
.process-node.active::before { background: var(--primary); border-color: var(--primary); transform: scale(1.4); box-shadow: 0 0 0 6px color-mix(in oklch, var(--primary) 18%, transparent); }

.process-detail {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  align-items: end;
  margin-top: clamp(40px, 5vw, 64px);
  background: var(--bg-card);
}
.process-detail-deliv { display: flex; flex-direction: column; gap: 16px; }
.process-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.process-chip { padding: 8px 14px; border-radius: 999px; background: color-mix(in oklch, var(--primary) 10%, transparent); color: var(--ink); font-size: 13px; font-weight: 500; }
.process-progress { display: flex; align-items: center; gap: 12px; }
.process-progress-bar { height: 4px; border-radius: 999px; background: var(--primary); transition: width .8s cubic-bezier(.2,.7,.2,1); flex: 1; }

@media (max-width: 800px) {
  .process-nodes { grid-template-columns: repeat(5, minmax(80px, 1fr)); margin-top: -30px; overflow-x: auto; }
  .process-detail { grid-template-columns: 1fr; }
  .process-track { height: 80px; }
}

/* ── WORK ──────────────────────────────────────────────────────────── */
.work-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  grid-auto-flow: dense;
}
.work-card { grid-column: span 3; text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 16px; transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.work-card[data-large="true"] { grid-column: span 6; }
.work-card:hover { transform: translateY(-6px); }
.work-visual {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.work-card[data-large="true"] .work-visual { aspect-ratio: 21 / 9; }
.work-visual-inner { position: absolute; inset: 0; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.work-card:hover .work-visual-inner { transform: scale(1.05); }
.work-tag {
  position: absolute; top: 18px; left: 18px;
  font: 500 11px/1 var(--font-ui);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 8px 12px; border-radius: 999px;
  background: var(--bg); color: var(--ink); border: 1px solid var(--line);
}
.work-meta { display: flex; justify-content: space-between; align-items: center; padding: 0 6px; gap: 12px; }
.work-name { font-size: 28px; margin: 0; line-height: 1.05; }
.work-stat { font: 500 13px/1 var(--font-ui); color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }

/* Visual shapes */
.work-primary .work-visual-inner { background: linear-gradient(135deg, color-mix(in oklch, var(--primary) 35%, var(--bg-card)), color-mix(in oklch, var(--primary) 80%, var(--ink))); }
.work-secondary .work-visual-inner { background: linear-gradient(135deg, color-mix(in oklch, var(--secondary) 35%, var(--bg-card)), color-mix(in oklch, var(--secondary) 80%, var(--ink))); }
.work-tertiary .work-visual-inner { background: linear-gradient(135deg, color-mix(in oklch, var(--tertiary) 35%, var(--bg-card)), color-mix(in oklch, var(--tertiary) 80%, var(--ink))); }

.work-visual[data-shape="mountain"]::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 60%, rgba(0,0,0,.25)), conic-gradient(from 220deg at 50% 100%, transparent 0 90deg, rgba(255,255,255,.3) 90deg 180deg, transparent 180deg);
  mix-blend-mode: overlay;
}
.work-visual[data-shape="wave"]::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-radial-gradient(circle at 50% 100%, transparent 0 30px, rgba(255,255,255,.15) 30px 31px);
}
.work-visual[data-shape="grid"]::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 32px 32px;
}
.work-visual[data-shape="bean"]::before {
  content: ""; position: absolute; left: 50%; top: 50%; width: 60%; aspect-ratio: 1; transform: translate(-50%, -50%);
  border-radius: 50% 30% 50% 30%; background: rgba(255,255,255,.22); filter: blur(6px);
}
.work-visual[data-shape="spiral"]::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-conic-gradient(from 0deg, rgba(255,255,255,.12) 0 8deg, transparent 8deg 16deg);
  mask: radial-gradient(circle, black 60%, transparent 75%);
}
.work-visual[data-shape="lines"]::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 22px, rgba(255,255,255,.18) 22px 23px);
}

@media (max-width: 800px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-card, .work-card[data-large="true"] { grid-column: span 1; }
}

/* ── TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonials { background: var(--bg-elev); }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote { display: flex; flex-direction: column; gap: 22px; background: var(--bg-card); }
.quote-mark { color: var(--primary); }
.quote-body { font-family: var(--font-display); font-size: 26px; line-height: 1.25; color: var(--ink); margin: 0; letter-spacing: var(--display-tracking); }
.quote-cap { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.quote-avatar { width: 44px; height: 44px; border-radius: 50%; }
.quote-cap div { display: flex; flex-direction: column; }
.quote-cap b { font-weight: 500; }

/* ── PRICING ───────────────────────────────────────────────────────── */
.billing-toggle {
  position: relative;
  display: inline-flex;
  padding: 4px;
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 999px;
}
.billing-toggle button {
  position: relative; z-index: 1;
  appearance: none; border: 0; background: transparent;
  padding: 10px 18px; font: 500 14px/1 var(--font-ui); color: var(--ink-2);
  border-radius: 999px; cursor: pointer;
}
.billing-toggle button.on { color: var(--primary-ink); }
.billing-thumb {
  position: absolute; top: 4px; bottom: 4px;
  background: var(--primary); border-radius: 999px;
  transition: left .3s cubic-bezier(.2,.7,.2,1), width .3s;
  left: 4px; width: calc(50% - 4px);
}
.billing-thumb[data-on="retainer"] { left: 50%; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier { display: flex; flex-direction: column; gap: 22px; position: relative; }
.tier-pop { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.tier-pop .body, .tier-pop .mono { color: color-mix(in oklch, var(--bg) 78%, transparent); }
.tier-pop .h-display { color: var(--bg); }
.tier-badge {
  position: absolute; top: 18px; right: 18px;
  padding: 6px 12px; background: var(--primary); color: var(--primary-ink);
  border-radius: 999px; font-size: 11px;
}
.tier-price { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 0; border-top: 1px dashed currentColor; border-bottom: 1px dashed currentColor; }
.tier-feat { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.tier-feat li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ── TEAM ──────────────────────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card { margin: 0; display: flex; flex-direction: column; gap: 16px; }
.team-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.team-card:hover .team-photo { transform: rotate(-2deg) scale(1.02); }
.team-photo::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px); background-size: 4px 4px; mix-blend-mode: multiply; }
.team-monogram { font-family: var(--font-display); font-size: 72px; color: rgba(255,255,255,.7); }
.team-card figcaption { display: flex; flex-direction: column; gap: 4px; padding-inline: 4px; }

/* ── JOURNAL ───────────────────────────────────────────────────────── */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .journal-grid { grid-template-columns: 1fr; } }
.post { display: flex; flex-direction: column; gap: 18px; text-decoration: none; color: inherit; transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.post:hover { transform: translateY(-4px); }
.post-thumb { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.post-thumb::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,0,0,.08) 1px, transparent 1px); background-size: 5px 5px; mix-blend-mode: multiply; }
.post-cat { position: absolute; bottom: 16px; left: 16px; padding: 8px 12px; background: var(--bg); border-radius: 999px; color: var(--ink); z-index: 1; }
.post-meta { display: flex; flex-direction: column; gap: 8px; padding-inline: 4px; }
.post-title { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; margin: 4px 0; letter-spacing: var(--display-tracking); }

/* ── FAQ ───────────────────────────────────────────────────────────── */
.faq-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  appearance: none; background: transparent; border: 0; text-align: left;
  border-top: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
  color: inherit; font: inherit;
  width: 100%;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; color: var(--ink); }
.faq-toggle { font-size: 28px; line-height: 1; color: var(--ink-3); transition: transform .3s, color .3s; }
.faq-item.open .faq-toggle { color: var(--primary); transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s cubic-bezier(.2,.7,.2,1); padding-left: 56px; }
.faq-a > p { overflow: hidden; margin: 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; padding-top: 14px; }

/* ── BIG CTA ───────────────────────────────────────────────────────── */
.big-cta-card {
  background: var(--ink);
  color: var(--bg);
  border-radius: clamp(28px, 4vw, 56px);
  padding: clamp(56px, 8vw, 120px) clamp(32px, 5vw, 72px);
  position: relative; overflow: hidden;
  text-align: center;
}
.big-cta-card .h-display, .big-cta-card .lede { color: var(--bg); }
.big-cta-bg { position: absolute; inset: 0; pointer-events: none; }
.big-cta-orb {
  position: absolute; width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklch, var(--primary) 70%, transparent), transparent 70%);
  filter: blur(40px);
  left: calc((var(--n) * 137) % 100 * 1%);
  top: calc((var(--n) * 91) % 100 * 1%);
  animation: orbDrift 12s ease-in-out infinite;
  animation-delay: calc(var(--n) * -1s);
}
.big-cta-orb:nth-child(3n) { background: radial-gradient(circle, color-mix(in oklch, var(--secondary) 70%, transparent), transparent 70%); }
.big-cta-orb:nth-child(3n+1) { background: radial-gradient(circle, color-mix(in oklch, var(--tertiary) 70%, transparent), transparent 70%); }
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.2); }
}
.big-cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.big-cta-inner .eyebrow { color: rgba(255,255,255,.6); }
.big-cta-inner .eyebrow::before { background: rgba(255,255,255,.6); }
.big-cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.big-cta-card .btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); color: var(--bg); }
.big-cta-card .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ── SERVICES PAGE ─────────────────────────────────────────────────── */
.svc-hero { padding: clamp(80px, 10vw, 160px) 0 clamp(48px, 6vw, 80px); }
.svc-hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 64px; align-items: end; }
@media (max-width: 900px) { .svc-hero-grid { grid-template-columns: 1fr; } }
.svc-detail { padding: clamp(64px, 8vw, 120px) 0; border-top: 1px solid var(--line); }
.svc-detail-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
@media (max-width: 900px) { .svc-detail-grid { grid-template-columns: 1fr; } }
.svc-detail h3 { margin: 0; }
.svc-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; padding: 0; margin: 24px 0 0; list-style: none; }
.svc-bullets li { display: flex; gap: 12px; padding: 12px 0; border-top: 1px dashed var(--line); }
.svc-bullets li b { font-family: var(--font-display); font-size: 22px; font-weight: 400; }
.svc-num { font-family: var(--font-display); font-size: clamp(120px, 18vw, 240px); line-height: 0.85; color: var(--primary); letter-spacing: -0.04em; opacity: 0.95; }
.svc-detail:nth-of-type(odd) .svc-num { color: var(--secondary); }
.svc-detail:nth-of-type(even) .svc-num { color: var(--tertiary); }

/* ── CONTACT PAGE ──────────────────────────────────────────────────── */
.contact-page { min-height: calc(100vh - 80px); padding: clamp(56px, 7vw, 96px) 0 clamp(80px, 10vw, 140px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-aside { display: flex; flex-direction: column; gap: 32px; position: sticky; top: 96px; }
.contact-card { padding: 28px; background: var(--bg-elev); border-radius: var(--radius-md); border: 1px solid var(--line); }
.contact-form { background: var(--bg-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); }
.cf-row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.cf-row label { font: 500 13px/1 var(--font-ui); color: var(--ink-2); display: flex; justify-content: space-between; }
.cf-row label span { color: var(--ink-3); font-weight: 400; font-size: 12px; }
.cf-input, .cf-textarea {
  appearance: none; width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font: 400 15px/1.4 var(--font-ui);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.cf-input:focus, .cf-textarea:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in oklch, var(--primary) 18%, transparent); }
.cf-textarea { resize: vertical; min-height: 140px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .cf-grid { grid-template-columns: 1fr; } }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  appearance: none; padding: 10px 14px;
  border: 1px solid var(--line); background: var(--bg);
  border-radius: 999px; font: 500 13px/1 var(--font-ui); color: var(--ink-2);
  cursor: pointer; transition: all .2s;
}
.chip.on { background: var(--primary); border-color: var(--primary); color: var(--primary-ink); }
.cf-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.cf-progress span { flex: 1; height: 4px; border-radius: 999px; background: var(--line); transition: background .3s; }
.cf-progress span.on { background: var(--primary); }
.cf-success {
  text-align: center; padding: 56px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.cf-success-mark {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--primary); color: var(--primary-ink);
  display: grid; place-items: center;
  animation: popIn .5s cubic-bezier(.2,.7,.2,1);
}
@keyframes popIn { 0% { transform: scale(0); } 60% { transform: scale(1.1); } 100% { transform: scale(1); } }

.contact-fact { display: flex; flex-direction: column; gap: 4px; padding: 16px 0; border-top: 1px dashed var(--line); }
.contact-fact b { font-family: var(--font-display); font-size: 26px; }
.contact-fact span { color: var(--ink-3); font-size: 13px; }
