/* ==========================================================================
   WyxMedia — design system
   ========================================================================== */

@font-face {
  font-family: 'Clash Display';
  src: url('https://cdn.fontshare.com/wf/VFMK2COV3DN37JR7JQ4CAOJPZ7KWKNY7/ODD5YJNDLHZZB2MIT3DPVH4EIHAMZ34D/BSY64LPTT3OPLVKAZKL3AHKRWZ3D74AC.woff2') format('woff2');
  font-weight: 400; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('https://cdn.fontshare.com/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2') format('woff2');
  font-weight: 500; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('https://cdn.fontshare.com/wf/FPDAZ2S6SW4QMSRIIKNNGTPM6VIXYMKO/5HNPQ453FRLIQWV2FNOBUU3FKTDZQVSG/Z3MGHFHX6DCTLQ55LJYRJ5MDCZPMFZU6.woff2') format('woff2');
  font-weight: 600; font-display: swap; font-style: normal;
}
@font-face {
  font-family: 'Clash Display';
  src: url('https://cdn.fontshare.com/wf/BFBSY7LX5W2U2EROCLVVTQP4VS7S4PC3/IIUX4FGTMD2LK2VWD3RVTAS4SSMUN7B5/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2') format('woff2');
  font-weight: 700; font-display: swap; font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #0b0b0c;
  --bg-soft: #141416;
  --bg-card: #16161a;
  --border: #2a2a2c;
  --border-soft: #232326;
  --text: #f5f5f2;
  --text-muted: #a3a3a0;
  --text-dim: #6f6f70;
  --accent: #f5f5f2;

  --font-display: 'Clash Display', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --radius-sm: 10px;

  --ease: cubic-bezier(.16,1,.3,1);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

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

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

body {
  margin: 0;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(245,245,242,0.05) 1px, transparent 1px);
  background-repeat: repeat;
  background-size: 28px 28px;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* slow-drifting ambient light — purely decorative, sits behind everything */
body::before,
body::after {
  content: '';
  position: fixed;
  inset: -12%;
  z-index: -1;
  pointer-events: none;
}
body::before {
  background:
    radial-gradient(700px circle at 18% 12%, rgba(245,245,242,0.16), transparent 60%),
    radial-gradient(820px circle at 92% 28%, rgba(245,245,242,0.09), transparent 55%);
  animation: bg-drift-1 20s ease-in-out infinite alternate;
}
body::after {
  background: radial-gradient(900px circle at 25% 92%, rgba(245,245,242,0.09), transparent 55%);
  animation: bg-drift-2 26s ease-in-out infinite alternate;
}
@keyframes bg-drift-1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(7%, 5%) scale(1.1); }
  100% { transform: translate(-6%, 8%) scale(1); }
}
@keyframes bg-drift-2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-7%, -6%) scale(1.08); }
  100% { transform: translate(6%, -5%) scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  body::before, body::after { animation: none; }
}

/* mobile/touch: fixed backgrounds + fixed-position blobs force a repaint every scroll
   frame on many phone browsers — switch to cheap, non-fixed layers so scrolling stays smooth */
@media (max-width: 860px), (hover: none) {
  body { background-attachment: scroll; }
  /* keep the vertical softness but never spill past the left/right edge —
     that horizontal spill is what was inflating the page's scrollable width on phones */
  body::before, body::after { position: absolute; inset: -8% 0; animation: none; }
  .card:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .service-card:hover .icon,
  .footer-social a:hover { transform: none; }
  .process-step:hover .line { width: 24px; background: var(--border); }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; touch-action: manipulation; }
button { font-family: inherit; cursor: pointer; touch-action: manipulation; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 3px rgba(245,245,242,0.12);
}

p { color: var(--text-muted); margin: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform .45s var(--ease), background-color .3s var(--ease-soft), border-color .3s var(--ease-soft), color .3s var(--ease-soft);
  white-space: nowrap;
  touch-action: manipulation;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.015); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}
.btn-sm { padding: 11px 20px; font-size: 14px; }

/* ---------- nav (floating pill) ---------- */
.nav {
  position: sticky;
  top: 14px;
  z-index: 100;
  width: calc(100% - var(--gutter) * 2);
  max-width: 860px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(18,18,21,0.68);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(245,245,242,0.08);
  box-shadow: 0 14px 36px -18px rgba(0,0,0,0.55);
  transition: background-color .35s var(--ease-soft), border-color .35s var(--ease-soft), box-shadow .35s var(--ease-soft), top .35s var(--ease-soft);
}
.nav.is-scrolled {
  top: 10px;
  background: rgba(13,13,15,0.86);
  border-color: rgba(245,245,242,0.14);
  box-shadow: 0 18px 44px -16px rgba(0,0,0,0.65);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 10px 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
}
.nav-logo img { height: 20px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color .25s var(--ease-soft);
}
.nav-links a:not(.btn):hover { color: var(--text); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--text);
  transition: right .3s var(--ease);
}
.nav-links a:not(.btn):hover::after { right: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 200;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease-soft);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- mobile menu overlay (kept as a sibling of .nav, never nested inside
   it — .nav has backdrop-filter, and an ancestor with backdrop-filter/transform/
   filter becomes the containing block for its position:fixed descendants, which
   is what broke the old in-header dropdown: a fixed panel sized against .nav's
   own ~76px box instead of the viewport, collapsing to ~0 height and letting the
   hero content show through the menu text) ---------- */
.mobile-menu { display: none; }

/* ---------- sections ---------- */
section { position: relative; }
.section-pad { padding-top: clamp(64px, 10vw, 128px); padding-bottom: clamp(64px, 10vw, 128px); }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 720px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}
.divider { border-top: 1px solid var(--border-soft); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(80px, 14vw, 160px);
  padding-bottom: clamp(60px, 8vw, 100px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 100vw);
  height: 75%;
  background: radial-gradient(ellipse at center, rgba(245,245,242,0.14), transparent 68%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}
.hero-trust {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
}
.hero-trust .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-dim); flex-shrink: 0; }
.hero h1 {
  font-size: clamp(36px, 7vw, 76px);
  line-height: 1.06;
  max-width: 920px;
  margin-top: 22px;
}
.hero .lede {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
}
.hero-cta { margin-top: 40px; }

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: .03s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .11s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .27s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .35s; }

/* ---------- cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform .5s var(--ease), border-color .35s var(--ease-soft), background-color .35s var(--ease-soft), box-shadow .5s var(--ease);
}
.card:hover {
  transform: translateY(-9px);
  border-color: var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 30px 70px -20px rgba(0,0,0,0.65);
}

/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
}
.service-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  transition: transform .5s var(--ease), background-color .3s var(--ease-soft);
}
.service-card:hover .icon { transform: rotate(-8deg) scale(1.05); background: var(--bg); }
.service-card .icon svg { width: 20px; height: 20px; }
.service-card h3 { font-size: 21px; font-weight: 600; }
.service-card .spacer { flex: 1; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  width: fit-content;
}
.service-link svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.service-link:hover svg { transform: translateX(4px); }

/* pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  padding: clamp(34px, 4.6vw, 52px);
  display: flex;
  flex-direction: column;
  position: relative;
}
/* BUSINESS card mirrors the original site's black/white pairing: START stays dark, BUSINESS flips to a light panel */
.price-card.featured {
  background: var(--text);
  color: var(--bg);
  border-color: transparent;
  box-shadow: 0 0 0 1px rgba(11,11,12,0.06), 0 44px 90px -34px rgba(245,245,242,0.28);
}
.price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(11,11,12,0.08), 0 30px 70px -24px rgba(245,245,242,0.34);
}
.price-card.featured h3,
.price-card.featured .price-amount { color: var(--bg); }
.price-card.featured .price-desc { color: rgba(11,11,12,0.6); }
.price-card.featured .price-list li { color: rgba(11,11,12,0.72); }
.price-card.featured .price-list li svg { color: var(--bg); }
.price-card.featured .price-note { color: rgba(11,11,12,0.48); border-top-color: rgba(11,11,12,0.14); }
.price-card.featured .price-badge { background: var(--bg); color: var(--text); }
.price-badge {
  position: absolute;
  top: -13px; left: 32px;
  background: var(--text);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 4px; letter-spacing: 0.02em; }
.price-amount {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 54px);
  font-weight: 600;
  margin: 16px 0 8px;
}
.price-desc { font-size: 15px; margin-bottom: 26px; }
.price-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.price-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}
.price-list li svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; color: var(--text); }
.price-note {
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.pricing-extra {
  margin-top: 20px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pricing-extra p { font-size: 14px; max-width: 560px; }
.pricing-extra strong { color: var(--text); }

/* process */
.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-step {
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.process-step .num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}
.process-step h4 { font-size: 16px; font-weight: 600; line-height: 1.3; }
.process-step p { font-size: 13px; line-height: 1.5; }
.process-step .line {
  width: 24px; height: 2px;
  background: var(--border);
  transition: width .5s var(--ease), background-color .3s var(--ease-soft);
}
.process-step:hover .line { width: 44px; background: var(--text); }

/* why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.why-item {
  background: var(--bg);
  padding: clamp(26px, 3vw, 34px);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background-color .35s var(--ease-soft);
}
.why-item:hover { background: var(--bg-card); }
.why-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(245,245,242,0.1);
}
.why-item p { color: var(--text); font-size: 16px; line-height: 1.5; }
.why-item p span { color: var(--text-muted); }

/* faq */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color .3s var(--ease-soft);
}
.faq-item.is-open { border-color: var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
}
.faq-q .plus {
  width: 20px; height: 20px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--text);
  border-radius: 2px;
  transition: transform .4s var(--ease);
}
.faq-q .plus::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-q .plus::after { top: 2px; left: 9px; width: 2px; height: 16px; }
.faq-item.is-open .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.faq-a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.6;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; margin-bottom: 18px; }
.contact-links { margin-top: 32px; display: flex; flex-direction: column; gap: 10px; }
.contact-links a { font-size: 16px; font-weight: 600; transition: opacity .25s var(--ease-soft); }
.contact-links a:hover { opacity: 0.7; }
.contact-meta { margin-top: 32px; font-size: 13px; color: var(--text-dim); line-height: 1.6; }

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.field input, .field textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .25s var(--ease-soft), background-color .25s var(--ease-soft);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--text-dim);
  background: var(--bg-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-status { font-size: 13px; color: var(--text-muted); min-height: 18px; }

/* footer */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-dim);
}
.footer-inner a { transition: color .25s var(--ease-soft); }
.footer-inner a:hover { color: var(--text); }
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  color: var(--text-muted);
  transition: color .25s var(--ease-soft), border-color .25s var(--ease-soft), background-color .25s var(--ease-soft), transform .35s var(--ease);
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover {
  color: var(--bg);
  background: var(--text);
  border-color: var(--text);
  transform: translateY(-2px);
}

/* services page specific */
.plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.plan-badge.muted { background: var(--bg-soft); color: var(--text-muted); border: 1px solid var(--border-soft); }
.plan-badge.solid { background: var(--text); color: var(--bg); }

.table-wrap { overflow-x: auto; }
table.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
table.price-table th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--border-soft);
}
table.price-table th:last-child, table.price-table td:last-child { text-align: right; }
table.price-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
}
table.price-table tr:last-child td { border-bottom: none; }
table.price-table td:first-child { color: var(--text); }

/* paired addon/detail cards — services page, wide cards instead of narrow floating text blocks */
.two-col-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: stretch; }
.addon-card { padding: clamp(32px, 4.4vw, 52px); display: flex; flex-direction: column; }
.addon-card .plan-badge { margin-bottom: 4px; align-self: flex-start; }
.addon-card h3 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 600; line-height: 1.25; margin: 10px 0 14px; }
.addon-card > p { font-size: 15px; margin-bottom: 26px; }
.addon-card .cost-list,
.addon-card .price-list { margin-top: auto; }
.addon-price {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 20px;
}
.addon-price span { font-size: 15px; font-weight: 500; color: var(--text-muted); margin-left: 4px; }

.cost-list { display: flex; flex-direction: column; gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: var(--radius); overflow: hidden; margin-top: 24px; }
.cost-row { background: var(--bg); display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; gap: 16px; }
.cost-row .label { font-size: 15px; color: var(--text); font-weight: 500; }
.cost-row .value { font-size: 15px; color: var(--text-muted); font-family: var(--font-display); font-weight: 600; }
.cost-row .value.free { color: var(--text); }

.cta-banner {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(48px, 7vw, 80px) clamp(24px, 5vw, 60px);
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  will-change: transform;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: min(700px, 130%);
  height: 180%;
  background: radial-gradient(ellipse at center, rgba(245,245,242,0.14), transparent 65%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(26px, 3.6vw, 38px); margin-bottom: 14px; }
.cta-banner p { max-width: 480px; margin: 0 auto 30px; }

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  :root { --gutter: 28px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(11,11,12,0.98);
    backdrop-filter: blur(24px) saturate(140%);
    -webkit-backdrop-filter: blur(24px) saturate(140%);
    padding: 104px var(--gutter) 36px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity .4s var(--ease-soft), transform .4s var(--ease-soft), visibility 0s linear .4s;
  }
  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .4s var(--ease-soft), transform .4s var(--ease-soft), visibility 0s linear 0s;
  }
  .mobile-menu-links { display: flex; flex-direction: column; }
  .mobile-menu-links a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: var(--font-display);
    font-size: clamp(30px, 9vw, 42px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-soft);
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity .35s var(--ease-soft), transform .35s var(--ease-soft), color .25s var(--ease-soft);
  }
  .mobile-menu-links a:first-child { padding-top: 0; }
  .mobile-menu.is-open .mobile-menu-links a {
    opacity: 1;
    transform: translateX(0);
  }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(1) { transition-delay: .1s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(2) { transition-delay: .16s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(3) { transition-delay: .22s; }
  .mobile-menu-links a:active { color: var(--text-muted); }
  .mm-num {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
  }
  .mobile-menu-bottom {
    display: flex;
    flex-direction: column;
    gap: 22px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .35s var(--ease-soft), transform .35s var(--ease-soft);
  }
  .mobile-menu.is-open .mobile-menu-bottom {
    opacity: 1;
    transform: translateY(0);
    transition-delay: .28s;
  }
  .mobile-menu-cta { width: 100%; justify-content: center; }
  .mobile-menu-social { display: flex; align-items: center; gap: 10px; }
  .mobile-menu-social a {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border-soft);
    border-radius: 50%;
    color: var(--text-muted);
  }
  .mobile-menu-social a svg { width: 18px; height: 18px; }
  .mobile-menu-social a:active { color: var(--bg); background: var(--text); border-color: var(--text); }

  .services-grid, .pricing-grid, .why-grid, .two-col-cards { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  table.price-table { min-width: 480px; }
}
@media (max-width: 560px) {
  .process-list { grid-template-columns: 1fr; }
  .cost-row { flex-wrap: wrap; row-gap: 6px; }
  .cost-row .label { flex: 1 1 100%; }
  .pricing-extra { flex-direction: column; align-items: flex-start; }
}
