/* ============================================================
   EMBLEM WEB - shared design system (electric blue redesign)
   Used by index.html, work.html, pricing.html
   ============================================================ */

:root {
  --bg: #080808;
  --ink: #f4f2ee;
  --blue: #2563EB;
  --blue-hover: #3B82F6;
  --muted: #888580;
  --line: rgba(255, 255, 255, 0.08);
  --card: #0f0f0f;
  --blue-faint: rgba(37, 99, 235, 0.16);
  --blue-soft: rgba(37, 99, 235, 0.5);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Space Grotesk', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
::selection { background: var(--blue); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 5rem); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; }
.serif { font-family: var(--serif); }
.blue { color: var(--blue); }

/* ============================================================
   GRAIN + VIGNETTE
   ============================================================ */
.grain {
  position: fixed; inset: -120%;
  z-index: 9000; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 8s steps(8) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-3%, -5%); }
  20%  { transform: translate(-8%, 3%); }
  30%  { transform: translate(3%, -8%); }
  40%  { transform: translate(-3%, 9%); }
  50%  { transform: translate(-8%, 3%); }
  60%  { transform: translate(6%, 0); }
  70%  { transform: translate(0, 6%); }
  80%  { transform: translate(-6%, 0); }
  90%  { transform: translate(3%, 5%); }
  100% { transform: translate(0, 0); }
}
.vignette {
  position: fixed; inset: 0; z-index: 8900; pointer-events: none;
  background: radial-gradient(120% 100% at 50% 40%, transparent 55%, rgba(0,0,0,0.6) 100%);
}

/* ============================================================
   PRELOADER  (single thin blue line drawing L -> R, then fade)
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: #050505; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease);
}
.preloader.done { opacity: 0; pointer-events: none; }
.preloader__line {
  width: min(70vw, 720px); height: 1px; background: var(--line); position: relative; overflow: hidden;
}
.preloader__line::after {
  content: ""; position: absolute; inset: 0; transform-origin: left;
  background: var(--blue); transform: scaleX(0);
  animation: drawLine 1.5s var(--ease) forwards;
}
@keyframes drawLine { to { transform: scaleX(1); } }
body.loading { overflow: hidden; }

/* ============================================================
   NAVIGATION  (mix-blend-mode difference)
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9500;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(1.1rem, 1.5vw, 1.5rem) clamp(1.2rem, 4vw, 3rem);
  mix-blend-mode: difference;
}
.nav__brand { display: inline-flex; align-items: baseline; gap: 0.28em; line-height: 1; color: #fff; }
.nav__brand .b-emblem { font-family: var(--serif); font-weight: 600; font-style: italic; font-size: 1.5rem; letter-spacing: 0.01em; }
.nav__brand .b-web { font-family: var(--sans); font-weight: 300; font-size: 0.95rem; letter-spacing: 0.32em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: clamp(1.5rem, 3vw, 2.75rem); list-style: none; }
.nav__links a {
  position: relative; font-family: var(--sans); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: #fff; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: #fff; transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 34px; height: 34px; background: none; border: none; cursor: pointer;
}
.nav__burger span {
  display: block; width: 26px; height: 1.5px; background: #fff; margin-left: auto;
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), width 0.4s var(--ease);
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 9400; background: #060606;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 clamp(1.5rem, 8vw, 5rem); gap: 0.25rem;
  clip-path: inset(0 0 100% 0); transition: clip-path 0.7s var(--ease); pointer-events: none;
}
.mobile-menu.open { clip-path: inset(0 0 0 0); pointer-events: auto; }
.mobile-menu a { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 12vw, 4.5rem); line-height: 1.15; color: var(--ink); }
.mobile-menu a span { color: var(--blue); font-style: italic; }
.mobile-menu .mm-foot {
  position: absolute; bottom: clamp(2rem, 6vh, 3.5rem); left: clamp(1.5rem, 8vw, 5rem);
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
}
body.menu-open { overflow: hidden; }

/* ============================================================
   SHARED PRIMITIVES
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.9rem;
  font-family: var(--sans); font-weight: 400; font-size: 0.72rem;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--blue);
}
.eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--blue); }

.section { position: relative; padding: clamp(5rem, 12vh, 9rem) 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 400; font-size: 0.74rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 1.15rem 2.4rem; border-radius: 0; cursor: pointer;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn--solid { background: var(--blue); color: #fff; border: 1px solid var(--blue); }
.btn--solid:hover { background: var(--blue-hover); border-color: var(--blue-hover); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--blue); border: 1px solid var(--blue); }
.btn--ghost:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }

/* ============================================================
   HERO (shared shell + Three.js canvas)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: flex-end; overflow: hidden; padding-bottom: clamp(2rem, 6vh, 5rem);
}
.hero--center { justify-content: center; align-items: center; text-align: center; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__head {
  font-family: var(--serif); font-weight: 400; font-size: clamp(4rem, 14vw, 14rem);
  line-height: 0.9; letter-spacing: -0.025em; margin: 1.6rem 0 0;
}
.hero__head .talk { font-style: italic; color: var(--blue); }
.hero__lede { margin-top: 1.75rem; max-width: 34ch; font-weight: 300; color: var(--muted); font-size: clamp(0.95rem, 1.1vw, 1.1rem); }
.hero--center .hero__lede { margin-left: auto; margin-right: auto; }
.hero__btns { margin-top: 2.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero--center .hero__btns { justify-content: center; }

/* Floating glass cards */
.gcard {
  position: absolute; z-index: 1; padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.035); border: 1px solid rgba(37, 99, 235, 0.28);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 0;
}
.gcard__big { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 2.4vw, 2.6rem); line-height: 1; color: var(--ink); }
.gcard__label { margin-top: 0.4rem; font-family: var(--sans); font-weight: 400; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.gcard--1 { left: clamp(1.2rem, 5vw, 5rem); bottom: 30%; animation: floatA 7s ease-in-out infinite; }
.gcard--2 { right: clamp(1.2rem, 6vw, 7rem); top: 52%; animation: floatB 9s ease-in-out infinite; }
.gcard--3 { right: clamp(1.2rem, 8vw, 9rem); top: 18%; animation: floatC 8s ease-in-out infinite; }
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes floatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(12px); } }
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--blue-soft); border-bottom: 1px solid var(--blue-soft);
  background: #0c0c0e; overflow: hidden; padding: 1.9rem 0;
}
.marquee__inner { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__group { display: flex; align-items: center; flex-shrink: 0; }
.marquee__item {
  font-family: var(--serif); font-weight: 400; font-style: italic; line-height: 1.05;
  font-size: clamp(3rem, 10vw, 8rem); text-transform: uppercase; letter-spacing: 0.01em;
  padding: 0 1.75rem; white-space: nowrap;
}
.marquee__item.fill { color: var(--ink); }
.marquee__item.stroke { color: transparent; -webkit-text-stroke: 1.5px var(--blue-soft); }
.marquee__dia { color: var(--blue); font-size: 1.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES (index)
   ============================================================ */
.services { background: #0c0c0e; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.scard { padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 5vh, 3.5rem); border-left: 1px solid var(--line); position: relative; }
.scard:first-child { border-left: none; }
.scard__num { font-family: var(--serif); font-weight: 300; font-size: clamp(3.6rem, 5vw, 5rem); line-height: 1; color: var(--blue-faint); margin-bottom: 1.5rem; }
.scard__title { font-family: var(--serif); font-weight: 600; font-size: 2.3rem; color: var(--ink); margin-bottom: 1rem; }
.scard__desc { font-weight: 300; color: var(--muted); font-size: 0.92rem; max-width: 26ch; }
.scard__line {
  position: absolute; left: clamp(1.5rem, 3vw, 2.5rem); right: clamp(1.5rem, 3vw, 2.5rem); bottom: 0;
  height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.scard.in .scard__line { transform: scaleX(1); }

/* ============================================================
   PROCESS (index)
   ============================================================ */
.process { background: var(--bg); }
.process__head { margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.process__head .eyebrow { margin-bottom: 1.25rem; }
.process__head h2 { font-size: clamp(3rem, 6.2vw, 5rem); line-height: 1; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 2.5vw, 2.5rem); }
.step { border-top: 1px solid var(--line); padding-top: 1.5rem; clip-path: inset(0 0 100% 0); }
.step__num { font-family: var(--serif); font-weight: 300; font-size: clamp(3.4rem, 5vw, 5rem); color: var(--muted); line-height: 1; }
.step__title { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--ink); margin: 0.6rem 0 0.7rem; }
.step__desc { font-weight: 300; color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   CTA (index + pricing)
   ============================================================ */
.cta { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.cta__glow {
  position: absolute; top: 50%; left: 50%; width: 70vw; height: 70vw; max-width: 760px; max-height: 760px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(37,99,235,0.05) 0%, transparent 65%);
  pointer-events: none; animation: ctaPulse 7s ease-in-out infinite;
}
@keyframes ctaPulse { 0%,100% { opacity: 0.55; transform: translate(-50%,-50%) scale(0.92); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); } }
.cta__head { position: relative; font-style: italic; color: var(--blue); font-size: clamp(3.2rem, 8.4vw, 7.2rem); line-height: 1.0; max-width: 16ch; margin: 0 auto; }
.cta__sub { position: relative; margin-top: 1.75rem; color: var(--muted); font-weight: 300; max-width: 42ch; }
.cta__btns { position: relative; margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ============================================================
   CONTACT (index)
   ============================================================ */
.contact { background: #0a0a0a; }
.contact__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact h2 { font-size: clamp(3rem, 7.2vw, 5.4rem); line-height: 1; }
.contact h2 em { font-style: italic; color: var(--blue); }
.contact__intro { margin-top: 1.5rem; color: var(--muted); font-weight: 300; max-width: 30ch; }
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  background: #111; border: 1px solid var(--line); border-radius: 0; padding: 0.95rem 1rem;
  color: var(--ink); font-weight: 300; font-size: 0.95rem; transition: border-color 0.35s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { width: 100%; }
.contact__email { margin-top: 1.25rem; font-size: 0.8rem; color: var(--muted); letter-spacing: 0.06em; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; border-top: 1px solid var(--blue-soft); background: var(--bg); padding: 2.25rem 0; }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__mark { display: inline-flex; align-items: baseline; gap: 0.28em; }
.footer__mark .b-emblem { font-family: var(--serif); font-weight: 600; font-style: italic; font-size: 1.2rem; }
.footer__mark .b-web { font-family: var(--sans); font-weight: 300; font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; }
.footer__copy { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }

/* ============================================================
   WORK - portfolio
   ============================================================ */
.whero h1 { font-size: clamp(4rem, 14vw, 14rem); }
.whero h1 em { font-style: italic; color: var(--blue); }
.work { background: #f4f2ee; color: #14130f; padding: clamp(4rem, 9vh, 7rem) 0; }
.work__head { text-align: center; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.work__head h2 { color: #14130f; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); justify-items: center; }
.pcard { width: 100%; max-width: 380px; }
.frame { width: 100%; background: #fff; border: 1px solid #e4e1da; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.pcard:hover .frame { transform: translateY(-8px); box-shadow: 0 22px 50px rgba(37,99,235,0.28); }
.frame__bar { display: flex; align-items: center; gap: 0.55rem; background: #111; padding: 0.55rem 0.85rem; }
.frame__dots { display: flex; gap: 6px; }
.frame__dots i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.frame__dots i:nth-child(1) { background: #ff5f57; }
.frame__dots i:nth-child(2) { background: #febc2e; }
.frame__dots i:nth-child(3) { background: #28c840; }
.frame__url {
  flex: 1; text-align: center; font-family: var(--sans); font-weight: 300; font-size: 0.7rem;
  color: #b9b6af; letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background: #1c1c1c; border-radius: 4px; padding: 0.28rem 0.7rem;
}
.frame__body { position: relative; width: 100%; height: 380px; overflow: hidden; background: #fff; }
.frame__body iframe { width: 1440px; height: 1440px; border: 0; transform: scale(0.264); transform-origin: top left; }
.pcard__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; }
.pcard__name { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; color: #14130f; }
.pcard__cat { font-family: var(--sans); font-weight: 300; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8a867d; }

/* ============================================================
   PRICING
   ============================================================ */
.phero h1 { font-size: clamp(3.4rem, 11vw, 11rem); }
.phero h1 em { font-style: italic; color: var(--blue); }
.pricing { background: #0c0c0e; }
.pricing__head { text-align: center; margin-bottom: clamp(2.5rem, 5vh, 4rem); }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.5rem); }
.tier {
  display: flex; flex-direction: column; background: #111; border: 1px solid rgba(255,255,255,0.08); border-radius: 0;
  padding: clamp(1.6rem, 2vw, 2.2rem) clamp(1.4rem, 1.8vw, 1.9rem) clamp(2rem, 2.4vw, 2.4rem);
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.tier:hover { border-color: var(--blue); transform: translateY(-6px); }
.tier__name { font-family: var(--serif); font-weight: 600; font-style: italic; color: var(--ink); font-size: 1.6rem; transition: color 0.45s var(--ease); }
.tier:hover .tier__name { color: var(--blue); }
.tier__price { font-family: var(--serif); font-weight: 400; font-size: clamp(2.6rem, 3vw, 3.4rem); line-height: 1; color: var(--ink); margin-top: 0.6rem; }
.tier__div { height: 1px; background: var(--blue); margin: 1.4rem 0; }
.tier__desc { font-weight: 300; color: var(--muted); font-size: 0.86rem; min-height: 3.4em; }
.tier__list { list-style: none; margin: 1.4rem 0 1.8rem; display: grid; gap: 0.75rem; flex: 1; }
.tier__list li { position: relative; padding-left: 1.3rem; font-weight: 300; font-size: 0.88rem; color: var(--ink); }
.tier__list li::before { content: "\2013"; position: absolute; left: 0; color: var(--blue); }
.tier .btn { width: 100%; }

/* FAQ */
.faq { background: var(--bg); }
.faq__head { margin-bottom: clamp(2rem, 4vh, 3rem); }
.faq__head h2 { font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; }
.faq__list { max-width: 880px; }
.faq__item { border-top: 1px solid var(--line); border-left: 2px solid transparent; padding-left: 1.25rem; transition: border-left-color 0.4s var(--ease); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item.open { border-left-color: var(--blue); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1.5rem 0;
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--ink);
}
.faq__q .ic { flex-shrink: 0; width: 18px; height: 18px; position: relative; }
.faq__q .ic::before, .faq__q .ic::after { content: ""; position: absolute; background: var(--blue); transition: transform 0.4s var(--ease); }
.faq__q .ic::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__q .ic::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item.open .ic::after { transform: translateX(-50%) scaleY(0); }
.faq__a { overflow: hidden; height: 0; }
.faq__a p { padding: 0 0 1.6rem; color: var(--muted); font-weight: 300; max-width: 64ch; }

/* ============================================================
   REVEAL UTILITY
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr; }
  .scard { border-left: none; border-top: 1px solid var(--line); }
  .scard:first-child { border-top: none; }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .gcard { display: none; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav.is-open .nav__burger span:nth-child(2) { opacity: 0; width: 0; }
  .nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}
@media (max-width: 640px) {
  .work__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .hero__btns { width: 100%; }
}
