/* ============================================================
   Jake Lewis — Web Design & Website Rescue
   Editorial dark theme · Fraunces / Inter / IBM Plex Mono
   ============================================================ */

:root {
  --bg: #0b0a08;
  --bg-alt: #12110d;
  --surface: #17160f;
  --line: #2a2820;
  --text: #ede8df;
  --muted: #a29b8d;
  --acc: #b4d96e;
  --acc-dim: #a2c45f;
  --acc-ink: #171b07;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--acc); color: var(--acc-ink); }

h1, h2, h3 { font-family: var(--serif); font-weight: 420; line-height: 1.08; letter-spacing: -0.015em; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 em, h1 em { font-style: italic; color: var(--acc); font-weight: 380; }

a { color: inherit; }

.container { width: min(1180px, 92vw); margin-inline: auto; }
.container--narrow { width: min(820px, 92vw); }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: "// "; color: var(--muted); }

.section { padding: clamp(5rem, 10vw, 8.5rem) 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }
.section__head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__lede { color: var(--muted); margin-top: 1.1rem; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  background: var(--acc);
  color: var(--acc-ink);
  text-decoration: none;
  border: 1px solid var(--acc);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 34px rgba(180, 217, 110, 0.22); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--acc); color: var(--acc); box-shadow: none; }
.btn--small { padding: 0.62rem 1.3rem; font-size: 0.9rem; }
.btn--full { width: 100%; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(13, 12, 9, 0.94);
  border-color: var(--line);
}
.nav__inner {
  width: min(1180px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.95rem 0;
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; margin-right: auto; }
.nav__mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--acc);
  color: var(--acc-ink);
  font-size: 0.8rem;
  letter-spacing: -0.02em;
}
.nav__name { font-weight: 600; letter-spacing: -0.01em; }
.nav__name em { font-style: normal; font-size: 0.6em; vertical-align: super; color: var(--acc); }
.nav__links { display: flex; gap: 1.7rem; }
.nav__links a {
  text-decoration: none;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }
.nav__burger { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 100svh, 1050px);
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(52vw 52vw at 82% 8%, rgba(180, 217, 110, 0.09), transparent 62%),
    radial-gradient(40vw 40vw at 8% 92%, rgba(87, 140, 255, 0.07), transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; }
.hero__title {
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  max-width: 18ch;
  margin-bottom: 1.6rem;
}
.hero__sub { color: var(--muted); max-width: 56ch; font-size: 1.15rem; margin-bottom: 2.4rem; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.6rem; }
.hero__proof {
  display: flex;
  gap: clamp(1.6rem, 5vw, 4.5rem);
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  flex-wrap: wrap;
}
.hero__proof li { display: flex; flex-direction: column; gap: 0.2rem; }
.hero__proof strong {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 450;
  color: var(--text);
}
.hero__proof strong::after { content: "+"; color: var(--acc); }
.hero__proof li:nth-child(2) strong::after { content: "days"; font-size: 0.55em; margin-left: 0.15em; }
.hero__proof .lt { color: var(--acc); }
.hero__proof li:nth-child(3) strong::after { content: "hr"; font-size: 0.55em; margin-left: 0.15em; }
.hero__proof span { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  text-decoration: none;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 8px); } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--line);
  background: var(--acc);
  color: var(--acc-ink);
  overflow: hidden;
  padding: 0.85rem 0;
  transform: rotate(-1deg) scale(1.02);
}
.marquee__track {
  display: flex;
  gap: 2.2rem;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
}
.marquee__track i { font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --- Browser mockups (pure CSS) --- */
.mock {
  width: 100%;
  background: #1d1c15;
  border: 1px solid #34321f33;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  font-size: 10px;
}
.mock__bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  background: #26241a;
}
.mock__bar i { width: 8px; height: 8px; border-radius: 50%; background: #4a4736; }
.mock__bar i:first-child { background: #e0655a; }
.mock__bar i:nth-child(2) { background: #e0b75a; }
.mock__bar i:nth-child(3) { background: #7bc86c; }
.mock__bar em {
  font-family: var(--mono);
  font-style: normal;
  font-size: 9px;
  color: #8b8776;
  margin-left: 8px;
  background: #1d1c15;
  border-radius: 6px;
  padding: 2px 10px;
}
/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.service {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  transition: transform 0.5s var(--ease), border-color 0.3s;
}
.service:hover { transform: translateY(-5px); border-color: #3a382c; }
.service--accent { border-color: rgba(180, 217, 110, 0.35); background: linear-gradient(165deg, rgba(180, 217, 110, 0.06), var(--surface) 55%); }
.service__num {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.8rem;
  position: absolute;
  top: 1.6rem; right: 1.8rem;
}
.service h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.service__tag { color: var(--acc); font-size: 0.95rem; margin-bottom: 1rem; font-weight: 500; }
.service > p:not(.service__tag) { color: var(--muted); margin-bottom: 1.4rem; }
.service ul { list-style: none; margin-bottom: 1.8rem; display: grid; gap: 0.55rem; }
.service li { padding-left: 1.5rem; position: relative; font-size: 0.97rem; }
.service li::before { content: "✓"; position: absolute; left: 0; color: var(--acc); font-weight: 700; }

/* ---------- Before / After ---------- */
.ba {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(1rem, 3vw, 2.4rem);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  outline-offset: 4px;
}
.ba:focus-visible { outline: 2px solid var(--acc); }
.ba__pane { position: relative; }
.ba__before {
  position: absolute;
  inset: clamp(1rem, 3vw, 2.4rem);
  clip-path: inset(0 calc(100% - var(--ba-pos, 50%)) 0 0);
}
.ba__label {
  position: absolute;
  top: -0.55rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}
.ba__label--after { right: 0.4rem; background: var(--acc); color: var(--acc-ink); }
.ba__label--before { left: 0.4rem; background: #34322a; color: #a8a294; }
.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--ba-pos, 50%);
  width: 2px;
  background: var(--acc);
  pointer-events: none;
}
.ba__handle span {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--acc);
  color: var(--acc-ink);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.ba__stats {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 7vw, 6rem);
  margin-top: 2.6rem;
  flex-wrap: wrap;
  text-align: center;
}
.ba__stats strong { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--acc); font-weight: 450; }
.ba__stats span { color: var(--muted); font-size: 0.88rem; }

/* --- "After" mock content --- */
.mock--lg { font-size: 12px; }
.after__body { padding: 18px; display: grid; gap: 14px; background: #14130d; }
.after__nav { display: flex; gap: 14px; align-items: center; color: #a29b8d; font-size: 11px; }
.after__nav b { margin-right: auto; color: #ede8df; font-family: var(--serif); font-style: italic; font-size: 13px; }
.after__cta { background: var(--acc); color: var(--acc-ink); font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.after__hero { border-radius: 10px; background: linear-gradient(135deg, #1e2412, #16150e 70%); padding: 22px; display: grid; gap: 8px; }
.after__kicker { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--acc); }
.after__title { font-family: var(--serif); font-size: clamp(15px, 2.6vw, 26px); line-height: 1.12; color: #ede8df; }
.after__sub { color: #a29b8d; font-size: 11px; max-width: 46ch; }
.after__btn { justify-self: start; background: var(--acc); color: var(--acc-ink); font-weight: 600; font-size: 11px; padding: 7px 16px; border-radius: 999px; margin-top: 4px; }
.after__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.after__cards div { background: #ffffff08; border: 1px solid #ffffff10; border-radius: 8px; padding: 12px; font-size: 10.5px; color: #cfc9bc; line-height: 1.35; }

/* --- "Before" mock content --- */
.ba__before .mock { position: absolute; inset: 0; display: flex; flex-direction: column; }
.ba__before .before__body { flex: 1; }
.before__body { background: #e9e4d2; color: #2c2c2c; padding: 0 0 14px; font-family: "Times New Roman", serif; position: relative; }
.before__nav { background: #26417f; color: #ffd23f; font-size: 9.5px; font-weight: 700; padding: 7px 10px; letter-spacing: 0.02em; white-space: nowrap; overflow: hidden; }
.before__banner { background: repeating-linear-gradient(45deg, #ffd23f, #ffd23f 12px, #e8332a 12px, #e8332a 24px); color: #fff; text-shadow: 0 1px 2px #000; font-size: 11px; font-weight: 700; text-align: center; padding: 6px; }
.before__cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 12px; padding: 14px; }
.before__text p { font-size: 10.5px; line-height: 1.45; margin-bottom: 8px; }
.before__blink { color: #e8332a; font-weight: 700; font-size: 13px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0.15; } }
.before__side { display: grid; gap: 8px; align-content: start; }
.before__ad { background: #fff; border: 2px ridge #999; font-size: 9px; text-align: center; padding: 8px 6px; font-family: Verdana, sans-serif; }
.before__popup {
  position: absolute;
  right: 12px; bottom: 12px;
  background: #fff;
  border: 1px solid #aaa;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
  font-family: Verdana, sans-serif;
  font-size: 9.5px;
  padding: 8px 10px;
  border-radius: 4px;
  display: grid;
  gap: 5px;
}
.before__popup span { color: #26417f; font-weight: 700; }

/* ---------- Proof ---------- */
.proof__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.proof {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.8rem, 3.4vw, 2.6rem);
  transition: transform 0.5s var(--ease), border-color 0.3s;
}
.proof:hover { transform: translateY(-5px); border-color: #3a382c; }
.proof__tag {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 0.7rem;
}
.proof__copy h3 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.proof__copy p:not(.proof__tag) { color: var(--muted); }
.proof__stats { list-style: none; display: grid; gap: 1.1rem; margin-top: auto; }
.proof__stats li { border-left: 2px solid var(--acc); padding-left: 1.1rem; }
.proof__stats strong {
  display: block;
  font-family: var(--serif);
  font-weight: 450;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--acc);
}
.proof__stats span { color: var(--muted); font-size: 0.9rem; }
.proof__link { color: var(--acc); text-decoration: none; border-bottom: 1px solid rgba(180, 217, 110, 0.4); }
.proof__link:hover { border-bottom-color: var(--acc); }

/* ---------- Process ---------- */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  counter-reset: step;
}
.process li {
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
  transition: border-color 0.3s;
}
.process li:hover { border-top-color: var(--acc); }
.process span { font-family: var(--mono); color: var(--acc); font-size: 0.85rem; }
.process h3 { font-size: 1.35rem; margin: 0.6rem 0 0.6rem; }
.process p { color: var(--muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.about__copy p { color: var(--muted); margin-bottom: 1.2rem; }
.about__list { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.6rem; }
.about__list li { border-left: 2px solid var(--acc); padding-left: 1.1rem; font-size: 0.98rem; color: var(--muted); }
.about__list strong { color: var(--text); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; align-items: stretch; }
.price {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.3s;
}
.price:hover { transform: translateY(-5px); }
.price--featured { border-color: rgba(180, 217, 110, 0.5); background: linear-gradient(170deg, rgba(180, 217, 110, 0.07), var(--surface) 50%); }
.price__badge {
  position: absolute;
  top: -0.8rem; left: 50%;
  transform: translateX(-50%);
  background: var(--acc);
  color: var(--acc-ink);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.price h3 { font-size: 1.4rem; }
.price__num { margin: 0.6rem 0 0.2rem; color: var(--muted); font-size: 0.95rem; }
.price__num strong { font-family: var(--serif); font-size: 2.2rem; color: var(--text); font-weight: 450; }
.price__tag { color: var(--acc); font-size: 0.92rem; margin-bottom: 1.3rem; }
.price ul { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.9rem; }
.price li { padding-left: 1.5rem; position: relative; font-size: 0.95rem; color: var(--muted); }
.price li::before { content: "✓"; position: absolute; left: 0; color: var(--acc); }
.price .btn { margin-top: auto; text-align: center; }
.pricing__note { text-align: center; color: var(--muted); margin-top: 2.6rem; }
.pricing__note a { color: var(--acc); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.8rem; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq details[open] { border-color: rgba(180, 217, 110, 0.4); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 3.2rem 1.2rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem; top: 50%;
  transform: translateY(-50%);
  color: var(--acc);
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--muted); font-size: 0.98rem; }

/* ---------- Contact ---------- */
.contact { position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(46vw 46vw at 12% 20%, rgba(180, 217, 110, 0.07), transparent 60%);
  pointer-events: none;
}
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 6vw, 5.5rem); align-items: start; position: relative; }
.contact__title { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 1.2rem; }
.contact__lede { color: var(--muted); max-width: 46ch; margin-bottom: 2rem; }
.contact__email {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  color: var(--acc);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 217, 110, 0.4);
  padding-bottom: 0.15rem;
}
.contact__email:hover { border-bottom-color: var(--acc); }

.form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.1rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label { display: grid; gap: 0.45rem; font-size: 0.86rem; font-weight: 600; color: var(--muted); }
.form .opt { font-weight: 400; font-style: normal; }
.form input, .form select, .form textarea {
  font: inherit;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--acc);
}
.form__hint { font-size: 0.82rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 4.5rem 0 2.5rem; background: var(--bg-alt); }
.footer__big {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 3rem;
  max-width: 22ch;
  line-height: 1.15;
}
.footer__big em { color: var(--acc); }
.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
}
.footer__meta a { color: var(--muted); text-decoration: none; }
.footer__meta a:hover { color: var(--acc); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pricing { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .process { grid-template-columns: 1fr 1fr; }
  .services, .about, .contact__grid, .proof__grid { grid-template-columns: 1fr; }
  .price--featured { order: -1; }
}

@media (max-width: 760px) {
  .nav__links {
    position: fixed;
    inset: 0;
    top: 64px;
    background: rgba(11, 10, 8, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.4rem;
    transform: translateY(-110%);
    transition: transform 0.45s var(--ease);
    z-index: 90;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { font-size: 1.3rem; color: var(--text); }
  .nav .btn--small { display: none; }
  .nav__burger {
    display: grid;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav__burger span { width: 26px; height: 2px; background: var(--text); transition: transform 0.3s var(--ease); }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .process { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .before__cols { grid-template-columns: 1fr; }
  .before__side { display: none; }
  .hero__proof { gap: 1.4rem 2.2rem; }
}
