/* =====================================================================
   Prakhar Verma — Ad & Video Editing Studio
   Shared stylesheet for every page.
   You rarely need to touch this. To change TEXT/PRICES/LINKS, edit the
   .html files. To change COLORS, edit the :root variables just below.
   ===================================================================== */

:root {
  /* ---- Brand colors (change these to re-skin the whole site) ---- */
  --bg:        #0a0b10;   /* page background */
  --bg-2:      #0f1118;   /* alt sections   */
  --surface:   #141824;   /* cards          */
  --surface-2: #1b2030;   /* raised cards   */
  --border:    #262c3d;   /* hairlines      */
  --text:      #eef1f7;   /* headings/body  */
  --muted:     #9aa3b5;   /* secondary text */
  --accent:    #6d5efc;   /* primary accent */
  --accent-2:  #29e0d6;   /* secondary accent (gradient end) */
  --accent-3:  #ff6ac1;   /* highlight pink */
  --good:      #34d399;

  --radius:    16px;
  --radius-sm: 10px;
  --maxw:      1140px;
  --shadow:    0 20px 50px -20px rgba(0,0,0,.7);
  --glow:      0 0 0 1px rgba(109,94,252,.35), 0 20px 60px -18px rgba(109,94,252,.45);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-head: "Sora", var(--font);
}

/* ---------------------------------------------------------------- reset */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }

/* ---------------------------------------------------------------- layout */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-2); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 16px;
}
.section h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.section .lede { color: var(--muted); font-size: 18px; max-width: 640px; }
.center .lede { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(120deg, var(--accent), #8b5cf6 55%, var(--accent-2));
  box-shadow: 0 10px 30px -8px rgba(109,94,252,.6);
}
.btn--primary:hover { box-shadow: 0 14px 40px -8px rgba(109,94,252,.8); transform: translateY(-2px); }
.btn--ghost { color: var(--text); background: rgba(255,255,255,.04); border-color: var(--border); }
.btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #3a4a6b; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------------------------------------------------------------- navbar */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,11,16,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #06070c; font-weight: 800; font-size: 15px; font-family: var(--font-head);
}
.brand small { display: block; font-size: 11px; font-weight: 500; letter-spacing: .08em; color: var(--muted); text-transform: uppercase; font-family: var(--font); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .15s; }
.nav__links a:hover, .nav__links a.active { color: var(--text); }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__toggle { display: none; background: none; border: 0; color: var(--text); cursor: pointer; padding: 8px; }
.nav__toggle svg { width: 26px; height: 26px; }

/* ---------------------------------------------------------------- hero */
.hero { position: relative; padding: 92px 0 72px; overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% 0 auto 0; height: 620px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(600px 340px at 22% 12%, rgba(109,94,252,.34), transparent 70%),
    radial-gradient(560px 320px at 82% 8%, rgba(41,224,214,.22), transparent 70%),
    radial-gradient(500px 300px at 60% 60%, rgba(255,106,193,.14), transparent 70%);
  filter: blur(6px);
}
.hero__inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { font-size: clamp(36px, 6vw, 62px); line-height: 1.04; margin-bottom: 22px; }
.hero h1 .grad {
  background: linear-gradient(100deg, var(--accent-2), var(--accent) 45%, var(--accent-3));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.sub { font-size: clamp(17px, 2.3vw, 21px); color: var(--muted); max-width: 640px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__note { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; }
.hero__note svg { width: 18px; height: 18px; color: var(--good); flex: none; }

.pill-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  padding: 7px 15px 7px 9px; border: 1px solid var(--border); border-radius: 999px;
  background: rgba(255,255,255,.03); font-size: 13.5px; color: var(--muted);
}
.pill-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(52,211,153,.18); }

/* ---------------------------------------------------------------- trust bar */
.trustbar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-2); }
.trustbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-stat { padding: 26px 20px; text-align: center; border-right: 1px solid var(--border); }
.trust-stat:last-child { border-right: 0; }
.trust-stat b { display: block; font-family: var(--font-head); font-size: clamp(24px, 3vw, 32px); background: linear-gradient(120deg,#fff,#b9c0d4); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-stat span { font-size: 13.5px; color: var(--muted); }

/* ---------------------------------------------------------------- grids & cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: #33405e; box-shadow: var(--shadow); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(109,94,252,.22), rgba(41,224,214,.14));
  border: 1px solid var(--border);
}
.card .ico svg { width: 24px; height: 24px; color: var(--accent-2); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card ul { list-style: none; margin-top: 14px; }
.card ul li { color: var(--muted); font-size: 15px; padding-left: 26px; position: relative; margin-bottom: 8px; }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 15px; height: 15px; border-radius: 50%;
  background: rgba(52,211,153,.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2334d399' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
}

/* ---------------------------------------------------------------- proof / case cards */
.case { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.case__card { background: linear-gradient(180deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.case__card .num { font-family: var(--font-head); font-size: 34px; font-weight: 700; background: linear-gradient(120deg, var(--accent-2), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 6px; }
.case__card .who { font-weight: 600; margin-bottom: 6px; }
.case__card p { color: var(--muted); font-size: 15px; }

/* ---------------------------------------------------------------- featured work / videos */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 9 / 12; background: var(--surface-2); display: block; }
.work-card .thumb {
  position: absolute; inset: 0;
  background: linear-gradient(150deg, #1a1f30, #10131d 60%, #191327);
  display: grid; place-items: center;
}
.work-card .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(240px 200px at 50% 30%, rgba(109,94,252,.28), transparent 70%);
}
.work-card .play { width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; backdrop-filter: blur(4px); z-index: 1; transition: transform .18s, background .18s; }
.work-card:hover .play { transform: scale(1.08); background: rgba(255,255,255,.2); }
.work-card .play svg { width: 24px; height: 24px; color: #fff; margin-left: 3px; }
.work-card .meta { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: 16px; background: linear-gradient(to top, rgba(6,7,12,.92), transparent); }
.work-card .meta b { display: block; font-family: var(--font-head); font-size: 15px; }
.work-card .meta span { font-size: 13px; color: var(--muted); }
.work-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.work-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 0; background: #000; }

/* ---- embedded video cards (YouTube players + caption below) ---- */
.video-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.video-card:hover { transform: translateY(-4px); border-color: #33405e; box-shadow: var(--shadow); }
.video-frame { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #000; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-meta { padding: 15px 18px 17px; }
.video-meta b { display: block; font-family: var(--font-head); font-size: 15px; margin-bottom: 3px; }
.video-meta span { font-size: 13px; color: var(--muted); }

/* ---------------------------------------------------------------- who it's for */
.audience { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.audience .card h3 { font-size: 18px; }

/* ---------------------------------------------------------------- process */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; position: relative; }
.step .n { font-family: var(--font-head); font-weight: 700; font-size: 14px; color: var(--accent-2); letter-spacing: .1em; margin-bottom: 12px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------------------------------------------------------------- guarantee banner */
.guarantee { background: linear-gradient(120deg, rgba(109,94,252,.14), rgba(41,224,214,.10)); border: 1px solid var(--border); border-radius: 22px; padding: 40px; display: flex; gap: 26px; align-items: center; }
.guarantee .seal { flex: none; width: 84px; height: 84px; border-radius: 20px; display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #06070c; }
.guarantee .seal svg { width: 42px; height: 42px; }
.guarantee h3 { font-size: 22px; margin-bottom: 8px; }
.guarantee p { color: var(--muted); font-size: 16px; }

/* ---------------------------------------------------------------- pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 880px; margin: 0 auto; align-items: start; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 34px; position: relative; }
.price-card--featured { border-color: transparent; background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(130deg, var(--accent), var(--accent-2)) border-box;
  border: 1.5px solid transparent; box-shadow: var(--glow); }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #06070c; font-family: var(--font-head); font-weight: 700; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.price-card h3 { font-size: 22px; margin-bottom: 6px; }
.price-card .plan-sub { color: var(--muted); font-size: 14.5px; margin-bottom: 22px; min-height: 22px; }
.price-card .amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-card .amount .cur { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--muted); }
.price-card .amount .val { font-family: var(--font-head); font-size: 52px; font-weight: 700; letter-spacing: -.03em; }
.price-card .amount .per { color: var(--muted); font-size: 15px; }
.price-card .bill { color: var(--muted); font-size: 13.5px; margin-bottom: 24px; }
.price-card ul { list-style: none; margin: 0 0 28px; }
.price-card ul li { position: relative; padding-left: 30px; margin-bottom: 13px; font-size: 15.5px; }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(109,94,252,.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2329e0d6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 12px;
}
.price-card ul li.muted { color: var(--muted); }
.price-card ul li.muted::before { background: rgba(154,163,181,.15); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239aa3b5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

.price-note { text-align: center; color: var(--muted); font-size: 14.5px; margin-top: 28px; }
.oneoff { max-width: 880px; margin: 24px auto 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px 28px; }
.oneoff div h4 { font-size: 18px; margin-bottom: 4px; }
.oneoff div p { color: var(--muted); font-size: 14.5px; }
.oneoff .price { font-family: var(--font-head); font-weight: 700; font-size: 28px; }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--border); border-radius: 14px; background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 16.5px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 24px; color: var(--accent-2); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--muted); font-size: 15.5px; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: 26px; padding: 56px 40px; text-align: center;
  background: linear-gradient(130deg, rgba(109,94,252,.20), rgba(41,224,214,.14) 60%, rgba(255,106,193,.14));
  border: 1px solid var(--border); }
.cta-band h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.cta-band p { color: var(--muted); font-size: 18px; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info .contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-info .contact-row:last-child { border-bottom: 0; }
.contact-info .contact-row .ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(109,94,252,.22), rgba(41,224,214,.14)); border: 1px solid var(--border); }
.contact-info .contact-row .ico svg { width: 22px; height: 22px; color: var(--accent-2); }
.contact-info .contact-row b { display: block; font-family: var(--font-head); font-size: 16px; margin-bottom: 2px; }
.contact-info .contact-row span, .contact-info .contact-row a { color: var(--muted); font-size: 15px; }
.contact-info .contact-row a:hover { color: var(--accent-2); }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.form .field { margin-bottom: 18px; }
.form label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; }
.form input, .form textarea, .form select {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 15px; color: var(--text); font-family: var(--font); font-size: 15px; transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(109,94,252,.2); }
.form textarea { resize: vertical; min-height: 130px; }

/* ---------------------------------------------------------------- legal / prose */
.prose { max-width: 800px; margin: 0 auto; }
.prose h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 10px; }
.prose .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.prose h2 { font-size: 22px; margin: 36px 0 12px; }
.prose h3 { font-size: 18px; margin: 24px 0 8px; }
.prose p, .prose li { color: #c5cbd8; font-size: 16px; margin-bottom: 12px; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 12px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent-2); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--text); }

/* ---------------------------------------------------------------- page header (inner pages) */
.pagehead { padding: 64px 0 8px; position: relative; overflow: hidden; }
.pagehead__glow { position: absolute; inset: -40% 0 auto 0; height: 380px; background: radial-gradient(500px 260px at 30% 0%, rgba(109,94,252,.22), transparent 70%); z-index: 0; }
.pagehead .container { position: relative; z-index: 1; }
.pagehead h1 { font-size: clamp(32px, 5vw, 50px); margin-bottom: 14px; }
.pagehead p { color: var(--muted); font-size: 18px; max-width: 620px; }

/* ---------------------------------------------------------------- footer */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 56px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand p { color: var(--muted); font-size: 15px; margin-top: 14px; max-width: 320px; }
.footer__brand .socials { display: flex; gap: 12px; margin-top: 18px; }
.footer__brand .socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--muted); transition: color .15s, border-color .15s; }
.footer__brand .socials a:hover { color: var(--text); border-color: #3a4a6b; }
.footer__brand .socials svg { width: 20px; height: 20px; }
.footer__col h4 { font-family: var(--font-head); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--muted); font-size: 15px; margin-bottom: 11px; transition: color .15s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--muted); font-size: 13.5px; }
.footer__bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--text); }

/* ---------------------------------------------------------------- utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.stack-lg > * + * { margin-top: 22px; }
.hide { display: none !important; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 900px) {
  .grid-3, .case, .work-grid, .audience, .steps { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-stat:nth-child(2) { border-right: 0; }
  .trust-stat:nth-child(1), .trust-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 8px 0;
  }
  .nav.open .nav__links a { padding: 14px 24px; width: 100%; }
  .nav__cta .btn--ghost { display: none; }
  /* keep the mobile header on one tidy line */
  .container { padding: 0 18px; }
  .brand { font-size: 16px; gap: 8px; }
  .brand span:last-child { white-space: nowrap; }
  .brand small { display: none; }
  .nav__cta .btn--primary { padding: 10px 15px; font-size: 14px; }
  .grid-3, .grid-2, .case, .work-grid, .audience, .steps, .pricing-grid, .footer__grid { grid-template-columns: 1fr; }
  .guarantee { flex-direction: column; text-align: center; padding: 32px 24px; }
  .cta-band { padding: 40px 24px; }
  .oneoff { flex-direction: column; align-items: flex-start; }
  .hero { padding: 60px 0 48px; }
}
