/* =========================================================
   SEO Swansea — playful, sticker-driven landing page
   ========================================================= */

:root {
  /* Brand palette */
  --blue-900: #0a2540;
  --blue-800: #0b3a8a;
  --blue-700: #0d6eff;
  --blue-600: #2e8cff;
  --blue-500: #4ea8ff;
  --blue-400: #69b8ff;
  --blue-100: #e8f2ff;
  --blue-50:  #f4f8ff;

  --coral-700: #c2185b;
  --coral-600: #e63173;
  --coral-500: #ff4e7a;
  --coral-400: #ff7aa0;
  --coral-100: #ffe6ec;

  --yellow-500: #ffc732;
  --yellow-400: #ffd04a;
  --yellow-100: #fff4cf;

  --teal-600:  #14b8a6;
  --teal-100:  #d6f5f0;

  --green-600: #1f9e47;

  --ink:       #0a2540;
  --ink-soft:  #3a4a63;
  --muted:     #6b7a90;
  --white:     #ffffff;
  --bg-tint:   #f4f8ff;

  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 2px 8px rgba(10,37,64,.06);
  --shadow-md: 0 8px 28px rgba(13,110,255,.12), 0 2px 6px rgba(10,37,64,.06);
  --shadow-lg: 0 20px 60px rgba(13,110,255,.22);
  --shadow-sticker: 0 10px 24px rgba(10,37,64,.18), 0 2px 4px rgba(10,37,64,.08);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --container: 1180px;
  --container-narrow: 780px;

  --grad-blue: linear-gradient(135deg, #0d6eff 0%, #2e8cff 55%, #69b8ff 100%);
  --grad-coral: linear-gradient(135deg, #e63173 0%, #ff4e7a 100%);
  --grad-yellow: linear-gradient(135deg, #ffd04a 0%, #ffb800 100%);
  --grad-teal: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%);

  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-hand: 'Caveat', 'Bradley Hand', 'Comic Sans MS', cursive;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 .6em;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; }

.muted { color: var(--muted); }
.small { font-size: .88rem; }
.centered { text-align: center; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
}
.container.narrow { max-width: var(--container-narrow); }

/* ---------- Section heading kit ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.section-head.centered { text-align: center; }

.section-number {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--coral-600);
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.section-number--light { color: var(--yellow-400); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

/* ---------- Marker highlight (em-based so it scales with text) ---------- */
.marker-highlight,
.marker-highlight-red,
.marker-highlight-coral,
.marker-highlight-light {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 .1em;
  white-space: nowrap;
}
.marker-highlight::before,
.marker-highlight-red::before,
.marker-highlight-coral::before,
.marker-highlight-light::before {
  content: "";
  position: absolute;
  left: -.05em;
  right: -.05em;
  bottom: .02em;
  height: .32em;
  z-index: -1;
  transform: skewX(-3deg);
  border-radius: 3px;
  pointer-events: none;
}
.marker-highlight::before       { background: var(--yellow-400); opacity: .85; }
.marker-highlight-red           { color: var(--coral-600); }
.marker-highlight-red::before   { background: var(--coral-100); opacity: 1; }
.marker-highlight-coral::before { background: var(--coral-400); opacity: .5; }
.marker-highlight-light::before { background: var(--yellow-400); opacity: .95; }

/* ---------- Dot patterns (decorative) ---------- */
.dots {
  position: absolute;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(255,255,255,.45) 1.4px, transparent 1.4px);
  background-size: 14px 14px;
  pointer-events: none;
  z-index: 1;
}
.dots-tl { top: 40px; left: 40px; }
.dots-br { bottom: 120px; right: 60px; }

.cta-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.12) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: .7;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .6rem 1.05rem; font-size: .9rem; }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-whatsapp {
  background: var(--grad-coral);
  color: #fff;
  box-shadow: 0 10px 24px rgba(230,49,115,.35), 0 2px 4px rgba(0,0,0,.08);
}
.btn-whatsapp:hover {
  color: #fff;
  box-shadow: 0 16px 36px rgba(230,49,115,.45);
  filter: brightness(1.05);
}
.btn-whatsapp .wa-icon { width: 20px; height: 20px; }

.btn-primary {
  background: var(--grad-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(13,110,255,.25);
}
.btn-primary:hover { color: #fff; filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; }

.btn:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 3px;
}

.wa-icon { width: 20px; height: 20px; display: inline-grid; place-items: center; color: #fff; font-size: 1.2rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,1);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid rgba(10,37,64,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .65rem 1.25rem;
}
.logo img { height: 46px; width: auto; }
.primary-nav {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  margin-right: 1rem;
}
.primary-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  position: relative;
}
.primary-nav a:hover { color: var(--blue-700); text-decoration: none; }
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -4px;
  width: 0; height: 2px;
  background: var(--coral-500);
  transform: translateX(-50%);
  transition: width .2s;
  border-radius: 2px;
}
.primary-nav a:hover::after { width: 100%; }

.header-phone{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .95rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid rgba(13,110,255,.18);
  box-shadow: 0 8px 20px rgba(13,110,255,.12);
  white-space: nowrap;
}
.header-phone:hover{
  color: var(--blue-800);
  filter: brightness(1.02);
  text-decoration: none;
}
.header-phone:focus-visible{
  outline: 3px solid var(--yellow-400);
  outline-offset: 3px;
}
.header-phone__icon{ font-size: 1rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
  margin: 4px 0;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: .5rem 1.25rem 1rem;
  border-top: 1px solid rgba(10,37,64,.06);
}
.mobile-nav a {
  color: var(--ink);
  font-weight: 600;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(10,37,64,.06);
}
.mobile-nav.is-open { display: flex; }

/* ======================================================
   HERO
   ====================================================== */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--grad-blue);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -10%; right: -10%; bottom: 0;
  height: 200px;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 160' preserveAspectRatio='none'><path d='M0,100 C200,60 420,140 720,100 C1020,60 1140,120 1200,90' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' opacity='0.4'/><path d='M0,130 C220,80 460,170 760,120 C1060,70 1180,140 1200,115' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' opacity='0.25'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  color: #fff;
  margin: 0 0 .5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.12);
  font-size: clamp(2.8rem, 6.5vw, 4.75rem);
}
.hero-copy .subhead {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  color: #fff;
  font-weight: 700;
  margin: 0 0 1.1rem;
  line-height: 1.25;
  max-width: 560px;
}
.hero-copy .lede {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.88);
  margin: 0 0 1.75rem;
  max-width: 540px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: .85rem;
}
.cta-alt {
  margin: 0;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.cta-alt a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  padding-left: 10px;
}
.cta-alt a:hover { color: var(--yellow-400); }
.trust-strip {
  margin: 0 0 .75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .25rem 1.2rem;
  font-size: .9rem;
  color: rgba(255,255,255,.9);
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.ts-icon {
  width: 16px; height: 16px;
  color: var(--yellow-400);
}
.clarifier {
  font-size: .88rem;
  color: rgba(255,255,255,.75);
  margin: 0;
  max-width: 520px;
  font-style: italic;
}

/* Hero floating stickers */
.sticker-price {
  position: absolute;
  top: 14%;
  right: 4%;
  z-index: 2;
  background: var(--yellow-400);
  color: var(--ink);
  padding: 1.35rem 1.65rem 1.1rem;
  border-radius: 22px;
  transform: rotate(8deg);
  box-shadow: var(--shadow-sticker);
  border: 3px solid var(--ink);
  text-align: center;
  line-height: 1.1;
  animation: wobble 4s ease-in-out infinite;
}
.sticker-price__amount {
  display: block;
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}
.sticker-price__cadence {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0;
}
.sticker-price__note {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  margin-top: .45rem;
  color: var(--coral-700);
  font-weight: 700;
}

.postit {
  position: absolute;
  background: var(--coral-500);
  color: #fff;
  padding: .75rem .9rem;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.1;
  text-align: center;
  transform: rotate(-8deg);
  box-shadow: var(--shadow-sticker);
  border-radius: 6px;
  z-index: 3;
}
.postit--mockup {
  top: -54px;
  left: -30px;
}
/* Hero sticker: "No upfront cost" text (anchored to the £195 sticker) */
.sticker-noupfront__text {
  display: block;
  font-family: var(--font-hand);
  font-size: 1.35rem;
  font-weight: 700;
  font-style: italic;
  color: var(--coral-600);
  margin-top: .35rem;
}

@keyframes wobble {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(7deg) translateY(-4px); }
}

/* Search-result mockup */
.hero-mockup {
  position: relative;
  z-index: 1;
}
.mockup-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: 0 30px 60px rgba(10,37,64,.3);
  transform: rotate(-2deg);
  position: relative;
  max-width: 440px;
  margin-left: auto;
  /* Leave breathing room so the top-right price sticker never overlaps */
  margin-right: 70px;
}
.mockup-search {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--blue-50);
  border: 1px solid rgba(10,37,64,.08);
  padding: .6rem .85rem;
  border-radius: var(--radius-pill);
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.mockup-search svg { width: 16px; height: 16px; flex: 0 0 16px; }

.mockup-result {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid rgba(10,37,64,.06);
  position: relative;
}
.mockup-result:last-child { border-bottom: 0; }
.mockup-favicon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--blue-100);
  display: grid;
  place-items: center;
  flex: 0 0 24px;
}
.mockup-favicon svg { width: 14px; height: 14px; }
.mockup-favicon.dim { background: #e2e8f0; }
.mockup-title { font-weight: 700; font-size: .95rem; color: var(--blue-700); }
.mockup-url { font-size: .78rem; color: var(--green-600); margin-top: 2px; }
.mockup-stars { font-size: .75rem; color: var(--yellow-500); margin-top: 2px; }
.mockup-stars span { color: var(--muted); }
.dim { color: var(--muted) !important; }
.mockup-result--you {
  background: linear-gradient(90deg, rgba(255,212,74,.25), transparent);
  border-radius: 10px;
  margin: -.25rem -.5rem .25rem;
  padding: .5rem .5rem;
}
.mockup-you-label {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--coral-600);
  font-size: 1.2rem;
  align-self: center;
}

/* (Removed) .hand-arrow: deleted from hero */

.wave-bottom {
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  height: 100px;
  z-index: 1;
}

/* ---------- Trust row strip ---------- */
.trust-row {
  background: #fff;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(10,37,64,.06);
}
.trust-row__inner { text-align: center; }
.trust-row__label {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  color: var(--muted);
  letter-spacing: .01em;
}

/* ======================================================
   GENERIC SECTION
   ====================================================== */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  position: relative;
  /* Large below-the-fold sections can be expensive to render up-front on mobile. */
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}
.section-light { background: var(--white); }
.section-tint  { background: var(--bg-tint); position: relative; }
.section-tint::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(13,110,255,.08) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: .5;
}
.section-tint > * { position: relative; }

.section-dark {
  background: var(--grad-blue);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-dark h2, .section-dark h3 { color: #fff; }

.lede-prose {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 660px;
  margin: 0 auto 1.5rem;
}
.section-head.centered .lede-prose { text-align: center; }

/* ======================================================
   PROBLEM
   ====================================================== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 2rem;
}
.problem-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 2px solid var(--coral-100);
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.problem-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: var(--shadow-md);
}
.problem-card:nth-child(2) { transform: translateY(8px); }
.problem-card:nth-child(2):hover { transform: translateY(4px) rotate(1deg); }

.problem-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral-100);
  color: var(--coral-600);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.problem-card__icon svg { width: 22px; height: 22px; }
.problem-card h3 { margin-bottom: .35rem; }
.problem-card p  { color: var(--ink-soft); margin: 0; font-size: .95rem; }

.aside-quote {
  text-align: center;
  margin: 2rem auto 0;
  position: relative;
  padding: 1rem 0;
}
.aside-quote__body {
  font-family: var(--font-hand);
  font-size: 1.75rem;
  color: var(--coral-600);
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.aside-quote__body::before,
.aside-quote__body::after {
  content: "";
  display: inline-block;
  width: 40px; height: 2px;
  background: var(--coral-500);
  vertical-align: middle;
  margin: 0 .75rem;
  border-radius: 2px;
}

/* ======================================================
   HOW IT WORKS — steps
   ====================================================== */
.steps {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  counter-reset: step;
  display: grid;
  gap: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 40px; bottom: 40px;
  border-left: 3px dashed var(--blue-400);
  opacity: .6;
}
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,37,64,.06);
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--grad-blue);
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(13,110,255,.35);
  border: 4px solid #fff;
  position: relative;
  z-index: 1;
}
.step:nth-child(2) .step__num { background: var(--grad-coral); box-shadow: 0 8px 20px rgba(230,49,115,.35); }
.step:nth-child(3) .step__num { background: var(--grad-teal); box-shadow: 0 8px 20px rgba(20,184,166,.35); }

.step__body h3 { margin-bottom: .4rem; font-size: 1.3rem; }
.step__body p  { margin: 0 0 .75rem; color: var(--ink-soft); }

.step__tag {
  display: block;
  width: fit-content;
  background: var(--yellow-100);
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: 1.3rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: var(--radius-pill);
  border: 2px dashed var(--yellow-500);
  margin: 1.5rem auto 0;
  text-align: center;
}

/* ======================================================
   WHAT'S INCLUDED — feature cards with corner badges
   ====================================================== */
.feature-grid {
  display: grid;
  /* Desktop: force a 3+2 layout (with 5 cards) */
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature {
  background: #fff;
  grid-column: span 2;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,37,64,.06);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  overflow: hidden;
}

/* When there are exactly 5 feature cards, centre the last row (2 cards). */
.feature-grid > .feature:nth-child(4):nth-last-child(2) { grid-column: 2 / span 2; }
.feature-grid > .feature:nth-child(5):last-child { grid-column: 4 / span 2; }
.feature::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  opacity: .1;
  transition: transform .4s ease;
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.feature:hover::before {
  transform: scale(1.5);
}
.feature--blue::before   { background: var(--blue-700); }
.feature--coral::before  { background: var(--coral-500); }
.feature--teal::before   { background: var(--teal-600); }
.feature--yellow::before { background: var(--yellow-500); }

.feature__badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .05em;
  padding: .3rem .55rem;
  border-radius: 6px;
  transform: rotate(4deg);
}
.feature--blue .feature__badge   { background: var(--blue-700); }
.feature--coral .feature__badge  { background: var(--coral-600); }
.feature--teal .feature__badge   { background: var(--teal-600); }
.feature--yellow .feature__badge { background: var(--yellow-500); color: var(--ink); }

.feature__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 14px rgba(10,37,64,.08);
}
.feature__icon svg { width: 26px; height: 26px; }
.feature--blue .feature__icon   { background: var(--grad-blue); }
.feature--coral .feature__icon  { background: var(--grad-coral); }
.feature--teal .feature__icon   { background: var(--grad-teal); }
.feature--yellow .feature__icon { background: var(--grad-yellow); color: var(--ink); }

.feature h3 {
  margin-bottom: .4rem;
  position: relative;
  z-index: 1;
}
.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  position: relative;
  z-index: 1;
}

/* ======================================================
   PRICING
   ====================================================== */
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'><path d='M0,100 C300,60 600,140 960,100 C1200,75 1320,115 1440,95' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' opacity='0.18'/></svg>");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.section-dark > .container { position: relative; z-index: 1; }

.price-card {
  position: relative;
  max-width: 520px;
  margin: 2.5rem auto 0;
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 30px 80px rgba(10,37,64,.35);
  text-align: center;
  border: 3px solid var(--ink);
}
.price-card__ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-coral);
  color: #fff;
  padding: .45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(230,49,115,.35);
}
.price-card__sticker {
  position: absolute;
  top: -24px; right: -22px;
  width: 92px; height: 92px;
  background: var(--yellow-400);
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  line-height: 1.05;
  font-weight: 900;
  font-size: .85rem;
  transform: rotate(-14deg);
  box-shadow: var(--shadow-sticker);
  border: 3px solid var(--ink);
  animation: wobble 4s ease-in-out infinite;
}
.price-card__tag {
  font-family: var(--font-hand);
  font-size: 1.25rem;
  color: var(--coral-600);
  margin-bottom: .5rem;
  font-weight: 700;
}
.price-card__main {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: .15rem;
  margin-bottom: .5rem;
}
.price-card__currency { font-size: 2rem; font-weight: 700; color: var(--ink); margin-right: .1rem; }
.price-card__amount {
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-card__cadence { font-size: 1.2rem; font-weight: 700; color: var(--muted); }
.price-card__sub {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.75rem;
  text-align: left;
  max-width: 360px;
  display: grid;
  gap: .55rem;
}
.price-card__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: .65rem;
  align-items: center;
  color: var(--ink);
  font-weight: 500;
}
.price-card__list svg {
  width: 18px; height: 18px;
  color: #fff;
  background: var(--grad-blue);
  padding: 3px;
  border-radius: 50%;
  box-sizing: border-box;
}
.price-card__foot {
  font-family: var(--font-hand);
  font-size: 1.1rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

/* Comparison row */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}
.compare__item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(4px);
}
.compare__item--good {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-color: var(--yellow-400);
  box-shadow: 0 16px 40px rgba(13,110,255,.25);
  position: relative;
}
.compare__item--good::before {
  content: "🎯";
  position: absolute;
  top: -20px; right: -10px;
  font-size: 2rem;
  transform: rotate(15deg);
}
.compare__label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 800;
  margin-bottom: .5rem;
  opacity: .9;
}
.compare__item--good .compare__label { color: var(--coral-600); opacity: 1; }
.compare__figure {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -0.02em;
}
.compare__figure span {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  opacity: .75;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-top: .25rem;
}
.compare__item p { margin: 0; font-size: .9rem; opacity: .85; }
.compare__item--good p { opacity: 1; color: var(--ink-soft); }
.compare__vs {
  font-family: var(--font-hand);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--yellow-400);
  text-align: center;
}

/* ======================================================
   WHO IT'S FOR
   ====================================================== */
.sticker-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0 1.5rem;
}
.who-sticker {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 6px 6px 0 var(--blue-700);
  transition: transform .2s, box-shadow .2s;
}
.who-sticker:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 var(--blue-700);
}
.who-sticker--tilt-r { transform: rotate(2deg); }
.who-sticker--tilt-r:hover { transform: rotate(2deg) translate(-2px, -2px); }
.who-sticker--tilt-l { transform: rotate(-2deg); }
.who-sticker--tilt-l:hover { transform: rotate(-2deg) translate(-2px, -2px); }
.who-sticker:nth-child(2) { box-shadow: 6px 6px 0 var(--coral-500); }
.who-sticker:nth-child(2):hover { box-shadow: 10px 10px 0 var(--coral-500); }
.who-sticker:nth-child(3) { box-shadow: 6px 6px 0 var(--teal-600); }
.who-sticker:nth-child(3):hover { box-shadow: 10px 10px 0 var(--teal-600); }
.who-sticker:nth-child(4) { box-shadow: 6px 6px 0 var(--yellow-500); }
.who-sticker:nth-child(4):hover { box-shadow: 10px 10px 0 var(--yellow-500); }

.who-sticker__emoji {
  display: block;
  font-size: 2.5rem;
  margin-bottom: .5rem;
  line-height: 1;
}
.who-sticker strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: .25rem;
  color: var(--ink);
}
.who-sticker span {
  font-size: .85rem;
  color: var(--muted);
  display: block;
}

/* ======================================================
   PROOF
   ====================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin: 2.5rem auto 1rem;
  max-width: 980px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,37,64,.06);
  position: relative;
  overflow: hidden;
}
.stat-card__badge {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.stat-card__badge--coral { background: var(--coral-100); color: var(--coral-700); }
.stat-card__badge--teal { background: var(--teal-100); color: #0f766e; }

.stat-card--hero { text-align: center; }
.stat-card__number {
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-blue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .25rem;
}
.stat-card__number span { font-size: 0.7em; }
.stat-card__label {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--ink);
}
.stat-card__note { color: var(--ink-soft); margin: 0; }

.stat-card__burst {
  position: absolute;
  top: 14px; right: 14px;
  width: 96px; height: 96px;
  padding: 10px;
  box-sizing: border-box;
  background: var(--yellow-400);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: .9rem;
  line-height: 1.05;
  text-align: center;
  transform: rotate(18deg);
  clip-path: polygon(
    50% 0%, 61% 13%, 75% 5%, 78% 21%, 95% 20%,
    90% 36%, 100% 50%, 90% 64%, 95% 80%, 78% 79%,
    75% 95%, 61% 87%, 50% 100%, 39% 87%, 25% 95%,
    22% 79%, 5% 80%, 10% 64%, 0% 50%, 10% 36%,
    5% 20%, 22% 21%, 25% 5%, 39% 13%
  );
  /* Use drop-shadow so the “sticker” shadow follows the clipped shape */
  filter:
    drop-shadow(0 12px 18px rgba(10,37,64,.18))
    drop-shadow(0 3px 6px rgba(10,37,64,.10));
}

.proof-card {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 2rem;
  align-items: center;
}

.proof-card__copy {
  position: relative;
}

/* Ensure the burst sits in the copy area, not over the screenshot */
.proof-card .stat-card__burst {
  top: 0;
  right: 0;
}

/* Screenshot “browser window” placeholder */
.proof-shot {
  margin: 0;
  position: relative;
}

.proof-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  transform: translate(8px, 8px);
  z-index: 0;
  pointer-events: none;
  transition: transform .2s ease;
}

.proof-shot__frame {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  /* Using an inset shadow instead of border avoids anti-aliased “dotted” seams
     that can appear between border + overflow clip on high-DPR screens. */
  box-shadow: inset 0 0 0 2px var(--ink);
  transform: translateZ(0);
}

.proof-shot__chrome {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(10,37,64,.08);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.proof-shot__chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(10,37,64,.14);
}

.proof-shot--no-chrome .proof-shot__chrome {
  display: none;
}

.proof-shot__image {
  flex: 1;
  min-height: 0;
  background:
    radial-gradient(1200px 220px at 20% 0%, rgba(13,110,255,.20), transparent 55%),
    radial-gradient(700px 240px at 80% 10%, rgba(230,49,115,.18), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f4f8ff 55%, #ffffff 100%);
}

/* Proof screenshots (reusable): set image via --proof-image */
.proof-shot__image--screenshot,
.proof-shot__image--graph {
  background-image: var(--proof-image);
  background-repeat: no-repeat;
  background-color: #fff;
  transform: translateZ(0);
}

/* Proof images as <img> for lazy-loading */
.proof-shot__img {
  display: block;
  flex: 1;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proof-shot__img--graph {
  object-position: center bottom;
}

/* Website / “normal” screenshots */
.proof-shot__image--screenshot {
  background-size: cover;
  background-position: center;
}

/* Charts/graphs: keep axes visible; avoid side letterboxing seams */
.proof-shot__image--graph {
  background-size: calc(100% + 8px) auto;
  background-position: center bottom;
}

/* Match “Who it's for” vibe: outlined + coloured offset shadow + tilt */
.proof-shot--blue {
  --proof-shadow: var(--blue-700);
}
.proof-shot--coral {
  --proof-shadow: var(--coral-500);
}
.proof-shot--teal {
  --proof-shadow: var(--teal-600);
}

.proof-shot--blue::before,
.proof-shot--coral::before,
.proof-shot--teal::before {
  background: var(--proof-shadow);
}

.proof-shot--tilt-r { transform: rotate(2deg); }
.proof-shot--tilt-l { transform: rotate(-2deg); }

.proof-shot--tilt-r,
.proof-shot--tilt-l {
  transform-origin: center;
  transition: transform .2s ease;
}

.proof-card:hover .proof-shot--tilt-r { transform: rotate(2deg) translate(-2px, -2px); }
.proof-card:hover .proof-shot--tilt-l { transform: rotate(-2deg) translate(-2px, -2px); }
.proof-card:hover .proof-shot::before { transform: translate(12px, 12px); }

.proof-card--img-left {
  grid-template-columns: .9fr 1.2fr;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: grid;
  gap: .55rem;
}
.tick-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .6rem;
  align-items: center;
  color: var(--ink-soft);
}
.tick-list li svg {
  width: 20px; height: 20px;
  background: var(--blue-100);
  color: var(--blue-700);
  padding: 3px;
  border-radius: 50%;
  box-sizing: border-box;
}
.tick-list--bold li { color: var(--ink); font-weight: 600; }

/* ======================================================
   ABOUT
   ====================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-copy h2 { margin-bottom: 1rem; }
.handwritten {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--coral-600);
  margin: 1.5rem 0 0;
  font-weight: 700;
}

/* H2 inline sub-line: keep semantic H2, style only part */
.h2-sub.handwritten{
  display: inline-block;
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}

.about-card {
  position: relative;
}
.polaroid {
  background: #fff;
  padding: 1rem 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(10,37,64,.18);
  transform: rotate(-3deg);
  max-width: 320px;
  margin: 0 auto 1.5rem;
  transition: transform .3s;
}
.polaroid:hover { transform: rotate(-1deg) translateY(-4px); }
.polaroid__image {
  aspect-ratio: 1;
  background: var(--blue-100);
  border-radius: 4px;
  overflow: hidden;
  display: block;
  padding: 0;
}
.polaroid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.polaroid__caption {
  text-align: center;
  margin-top: .75rem;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 700;
}

.about-mini {
  background: var(--blue-50);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  display: grid;
  gap: .6rem;
  max-width: 360px;
  margin: 0 auto;
  border: 1px dashed var(--blue-400);
}
.about-mini__row {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: .75rem;
  align-items: baseline;
  font-size: .92rem;
  color: var(--ink-soft);
}
.about-mini__dot {
  width: 10px; height: 10px;
  background: var(--coral-500);
  border-radius: 50%;
}

/* ======================================================
   FAQ
   ====================================================== */
.faq {
  margin: 2rem auto 0;
  display: grid;
  gap: .85rem;
}
.faq details {
  background: #fff;
  border-radius: var(--radius-md);
  border: 2px solid rgba(10,37,64,.08);
  padding: 1.1rem 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq details[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-400);
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--coral-600);
  flex: 0 0 auto;
}
.faq summary::after {
  content: "+";
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--blue-700);
  line-height: 1;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "−"; color: var(--coral-600); }
.faq details p {
  margin: .85rem 0 0;
  color: var(--ink-soft);
  padding-left: 2.1rem;
}

/* ======================================================
   CTA + CONTACT
   ====================================================== */
.section--cta { padding: clamp(4rem, 8vw, 6rem) 0; }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-copy { position: relative; }
.lede-dark {
  color: rgba(255,255,255,.92);
  font-size: 1.1rem;
  margin: 0 0 1.75rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.cta-orline {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
}
.cta-or {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--yellow-400);
  font-weight: 700;
}
.cta-alt {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.cta-stickers { margin-top: 1.5rem; }
.sticker--reply {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--yellow-400);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: 14px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow-sticker);
  border: 2px solid var(--ink);
  max-width: fit-content;
}
.sticker__emoji { font-size: 1.5rem; line-height: 1; }
.sticker__text {
  font-weight: 800;
  font-size: .88rem;
  line-height: 1.2;
}

.contact-wrap { position: relative; }
.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  border: 3px solid var(--ink);
  position: relative;
}
.contact-form::before {
  content: "";
  position: absolute;
  top: -8px; left: -8px; right: 8px; bottom: 8px;
  background: var(--yellow-400);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.contact-form__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  color: var(--ink);
}
.contact-form label {
  display: block;
  margin-bottom: 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: .35rem;
  padding: .8rem .95rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 2px solid #d6e2f4;
  border-radius: 12px;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(13,110,255,.15);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-note {
  color: var(--muted);
  font-size: .85rem;
  text-align: center;
  margin: .75rem 0 0;
}
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ======================================================
   FOOTER
   ====================================================== */
.site-footer {
  background: #0a2540;
  color: rgba(255,255,255,.7);
  padding: 3rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--coral-500), var(--yellow-400), var(--blue-500), var(--teal-600));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer-brand .logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: .95;
  margin-bottom: .75rem;
}
.footer-tag { margin: 0; font-size: .9rem; line-height: 1.5; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .95rem;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  margin: 0;
  text-align: right;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* ======================================================
   FLOATING WHATSAPP
   ====================================================== */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.1rem .85rem .85rem;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 30px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.12);
  z-index: 50;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
  box-shadow: 0 16px 40px rgba(37,211,102,.5);
}
.wa-float svg { width: 24px; height: 24px; fill: #fff; }
.wa-float__label { line-height: 1; }

/* ======================================================
   RESPONSIVE
   ====================================================== */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-mockup { max-width: 440px; margin: 0 auto; }
  .sticker-price { top: 4%; right: 2%; }
  .sticky-note--hero { top: 20%; left: 2%; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .primary-nav { display: none; }
  .header-cta { display: none; }
  .header-phone{
    margin-left: auto;
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }
  .header-phone__text{ display: none; }
  .nav-toggle { display: block; }
  .logo img { height: 40px; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.7rem; }

  .cta-actions > .btn {
    flex: 1 0 100%;
  }
  .cta-orline {
    flex: 0 0 100%;
  }

  /* On mobile the side dashes make the quote look off-centre when it wraps */
  .aside-quote__body::before,
  .aside-quote__body::after {
    display: none;
  }

  /* Make hero H1 + subhead yield to the floating price sticker on the right */
  .hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
    padding-right: 140px;
  }
  .hero-copy .subhead {
    font-size: clamp(1.15rem, 4.5vw, 1.5rem);
    margin-top: .4rem;
    padding-right: 140px;
  }

  .sticker-price {
    top: 72px; right: 10px;
    padding: .9rem 1.05rem .75rem;
    transform: rotate(6deg);
    max-width: 140px;
  }
  .sticker-price__amount { font-size: 2.1rem; }
  .sticker-price__cadence { font-size: .9rem; }
  .sticker-price__note { font-size: 1.2rem; margin-top: .25rem; }
  .postit--mockup {
    top: -46px; left: -6px;
    font-size: 1.2rem;
    padding: .6rem .85rem;
  }
  .sticker-noupfront__text { font-size: 1.2rem; }

  /* SERP "post-it" mockup: centre + slightly wider on mobile */
  .hero-mockup { max-width: 520px; margin: 0 auto; }
  .mockup-card {
    transform: rotate(-1deg);
    width: min(92vw, 520px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .steps::before { left: 24px; }
  .step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .step__num {
    width: 48px; height: 48px;
    font-size: 1.3rem;
  }

  .feature-grid, .problem-grid, .sticker-row, .proof-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid > .feature {
    grid-column: 1 / -1;
  }
  /* Override the desktop-only “centre last row” selectors (higher specificity) */
  .feature-grid > .feature:nth-child(4):nth-last-child(2),
  .feature-grid > .feature:nth-child(5):last-child {
    grid-column: 1 / -1;
  }
  .price-card { padding: 2rem 1.25rem 1.5rem; }
  .price-card__sticker { top: -20px; right: -10px; width: 80px; height: 80px; font-size: .75rem; }

  .compare { grid-template-columns: 1fr; }
  .compare__vs { padding: .5rem 0; }

  .contact-form { padding: 1.5rem; }
  .contact-form::before { display: none; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy { text-align: center; }
  .footer-links { justify-content: center; }

  .wa-float__label { display: none; }
  .wa-float {
    padding: .9rem;
    width: 56px; height: 56px;
    justify-content: center;
  }

  .proof-card,
  .proof-card--img-left {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  /* Always show copy first, then image (prevents image-image stacking between cards). */
  .proof-card > .proof-card__copy { order: 1; }
  .proof-card > .proof-shot { order: 2; }

  /* Keep the “sticker” vibe on mobile — just slightly subtler than desktop. */
  .proof-shot--tilt-r { transform: rotate(1.25deg); }
  .proof-shot--tilt-l { transform: rotate(-1.25deg); }
  .proof-shot::before { transform: translate(6px, 6px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
