/* ========================================
   Costream: vibe-coded, pockets energy
   ======================================== */

:root {
  /* Core pockets palette */
  --pink:    #FF3D80;
  --hot:     #FF5A9D;
  --purple:  #7B61FF;
  --violet:  #A896FF;
  --teal:    #14E0AA;
  --mint:    #B8F4D8;
  --orange:  #FF9A3C;
  --butter:  #FFE28A;
  --red:     #FF4420;
  --yellow:  #FFD23F;
  --sky:     #7CC2FF;
  --lilac:   #E4D9FF;
  --lime:    #D4F56A;
  --cream:   #FFF2C7;
  --coral:   #FFB199;

  /* Surfaces */
  --bg:      #FDF6E9;
  --bg-2:    #F4EBD8;
  --bg-warm: #FAF2DD;
  --paper:   #FFFFFF;
  --ink:     #141219;
  --ink-2:   #3B3747;
  --ink-3:   #8A8496;

  --line:    #141219;
  --line-soft: #D9CFB6;

  --radius:    20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --max-w:    1200px;

  /* Chunky shadows */
  --pop:      4px 4px 0 var(--ink);
  --pop-lg:   6px 6px 0 var(--ink);
  --pop-xl:   8px 8px 0 var(--ink);
  --pop-hover: 2px 2px 0 var(--ink);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(20,18,25,0.06) 1px, transparent 0);
  background-size: 22px 22px;
  overflow-x: hidden;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.6rem, 7vw, 5.5rem); letter-spacing: -0.05em; overflow-wrap: break-word; }
h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); letter-spacing: -0.035em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; font-weight: 700; }

.display {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(100deg, var(--pink) 20%, var(--purple) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-squiggle {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'><path d='M2 8 Q 15 2, 30 8 T 60 8 T 90 8 T 118 8' fill='none' stroke='%23FF3D80' stroke-width='3' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 0.55em;
  padding-bottom: 0.15em;
}

/* ========================================
   Labels / eyebrows / pills
   ======================================== */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.8rem 0.35rem 0.65rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 99px;
  box-shadow: var(--pop);
}

.label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.section-sub {
  color: var(--ink-2);
  font-size: 1.15rem;
  max-width: 640px;
  margin-top: 1rem;
  line-height: 1.65;
}

/* ========================================
   Buttons
   ======================================== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 99px;
  border: 2px solid var(--ink);
  box-shadow: var(--pop);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-cta::after {
  content: '→';
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn-cta:hover {
  background: var(--pink);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-cta:hover::after { transform: translateX(3px); }

.btn-cta:active {
  transform: translate(2px, 2px);
  box-shadow: var(--pop-hover);
}

.btn-cta-sm { padding: 0.55rem 1.15rem; font-size: 0.82rem; box-shadow: 3px 3px 0 var(--ink); }
.btn-cta-sm:hover { box-shadow: 5px 5px 0 var(--ink); }

.btn-cta-light {
  background: var(--butter);
  color: var(--ink);
}
.btn-cta-light:hover {
  background: var(--yellow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.5rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 99px;
  border: 2px solid var(--ink);
  box-shadow: var(--pop);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-outline:hover {
  background: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn-outline-inline { width: auto; padding: 0.9rem 1.65rem; }

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253, 246, 233, 0.85);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 2px solid var(--ink);
}

.header-container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.95rem; font-weight: 800;
  letter-spacing: -0.02em;
}
.logo-icon { width: 30px; height: 30px; }

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-links { display: flex; gap: 1.35rem; align-items: center; }
.nav-link {
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink-2);
  transition: color 0.15s;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 2px; background: var(--pink); border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }

.nav-dropdown { position: relative; }
.nav-dropdown .nav-link { display: inline-flex; align-items: center; gap: 0.3rem; }
.nav-dropdown .nav-link svg { transition: transform 0.2s; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  min-width: 240px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--pop-lg);
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
}
.dropdown-menu::before {
  content: ''; position: absolute;
  top: -0.75rem; left: 0; right: 0; height: 0.75rem;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-link svg { transform: rotate(180deg); }

.dropdown-link {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem; font-weight: 600;
  color: var(--ink-2);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.dropdown-link:hover {
  background: var(--butter);
  color: var(--ink);
  transform: translateX(2px);
}

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2.5px;
  background: var(--ink); margin: 5px 0;
  border-radius: 2px; transition: 0.2s;
}

/* ========================================
   Hero
   ======================================== */
.hero {
  padding: calc(68px + 4.5rem) 0 6rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,18,25,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,18,25,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.hero-stickers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sticker {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 99px;
  box-shadow: var(--pop);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  animation: bob 5s ease-in-out infinite;
}

.sticker-1 { top: 12%; left: 6%;  background: var(--butter); transform: rotate(-8deg); animation-delay: -0.3s; }
.sticker-2 { top: 20%; right: 7%; background: var(--lime);   transform: rotate(6deg);  animation-delay: -1.4s; }
.sticker-3 { top: 58%; left: 4%;  background: var(--coral);  transform: rotate(9deg);  animation-delay: -2.1s; }
.sticker-4 { top: 50%; right: 5%; background: var(--sky);    transform: rotate(-5deg); animation-delay: -3.2s; }
.sticker-5 { bottom: 15%; left: 13%; background: var(--lilac); transform: rotate(-12deg); animation-delay: -0.8s; }
.sticker-6 { bottom: 20%; right: 14%; background: var(--mint); transform: rotate(7deg); animation-delay: -2.6s; }
.sticker-7 { top: 32%; left: 18%; background: var(--hot); color: #fff; transform: rotate(-3deg); animation-delay: -1.9s; }

.sticker .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink);
}

@keyframes bob {
  0%,100% { transform: rotate(var(--r, 0deg)) translateY(0); }
  50%     { transform: rotate(var(--r, 0deg)) translateY(-8px); }
}

.sticker-1 { --r: -8deg; }
.sticker-2 { --r: 6deg; }
.sticker-3 { --r: 9deg; }
.sticker-4 { --r: -5deg; }
.sticker-5 { --r: -12deg; }
.sticker-6 { --r: 7deg; }
.sticker-7 { --r: -3deg; }

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.4rem 0.95rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 99px;
  box-shadow: var(--pop);
  margin-bottom: 1.75rem;
  transform: rotate(-1.5deg);
}

.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(20, 224, 170, 0.6);
  animation: statusPulse 2s ease-in-out infinite;
}

.hero-rotate {
  display: block;
  position: relative;
  overflow: hidden;
  transition: height 0.4s ease;
}

.hero-rotate-line {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-rotate-line.active { opacity: 1; transform: translateY(0); }
.hero-rotate-line.exit { opacity: 0; transform: translateY(-40px); }

.hero h1 .display { color: var(--ink); position: relative; }
.hero h1 em.display {
  color: var(--ink);
  background: linear-gradient(100deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  color: var(--ink-2);
  font-size: 1.2rem;
  line-height: 1.65;
  margin: 1.75rem auto 0;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero-logos { margin-top: 4rem; }
.hero-logos-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.hero-logos-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.hero-logo-pill {
  padding: 0.45rem 0.95rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 99px;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-logo-pill:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--ink); }
.hero-logo-pill:nth-child(1) { background: var(--butter); }
.hero-logo-pill:nth-child(3) { background: var(--lilac); }
.hero-logo-pill:nth-child(5) { background: var(--mint); }

/* ========================================
   Status strip
   ======================================== */
.status-strip {
  padding: 2rem 0 0;
  background: transparent;
  position: relative;
}
.status-strip .container { display: flex; justify-content: center; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 99px;
  box-shadow: var(--pop);
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.4;
  max-width: 100%;
  transform: rotate(0.6deg);
}
.status-pill strong { color: var(--ink); font-weight: 700; }
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(20, 224, 170, 0.55);
  animation: statusPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes statusPulse {
  0%   { box-shadow: 0 0 0 0 rgba(20, 224, 170, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(20, 224, 170, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 224, 170, 0); }
}

/* ========================================
   Sections
   ======================================== */
.section { padding: 7rem 0; position: relative; }
.section-alt {
  background: var(--bg-2);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(20,18,25,0.08) 1px, transparent 0);
  background-size: 22px 22px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.section > .container > .label,
.section > .container > h2 { text-align: center; }
.section > .container > h2 + .section-sub,
.section > .container > .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section > .container > .label { margin-left: auto; margin-right: auto; display: inline-flex; }
.section-head { text-align: center; margin-bottom: 4rem; }
.section-head .label { display: inline-flex; }

/* ========================================
   Proof: aggregate receipts
   ======================================== */
.proof-section { padding-top: 5.5rem; padding-bottom: 5.5rem; }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1080px;
  margin: 0 auto;
}

.proof-card {
  position: relative;
  padding: 2.25rem 1.75rem 1.6rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.proof-card-1 { background: var(--butter); transform: rotate(-0.8deg); }
.proof-card-2 { background: var(--mint);   transform: rotate(0.5deg); }
.proof-card-3 { background: var(--lilac);  transform: rotate(-0.4deg); }

.proof-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 8px 10px 0 var(--ink);
}

.proof-tape {
  position: absolute;
  top: -10px;
  left: 1.5rem;
  width: 72px;
  height: 18px;
  background: var(--hot);
  border: 2px solid var(--ink);
  transform: rotate(-3deg);
  opacity: 0.92;
}
.proof-card-2 .proof-tape { left: auto; right: 1.5rem; background: var(--coral); transform: rotate(4deg); }
.proof-card-3 .proof-tape { background: var(--sky); transform: rotate(-2deg); }

.proof-num {
  display: block;
  font-size: clamp(3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--ink);
  margin-top: 0.25rem;
}

.proof-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 0.7rem;
  letter-spacing: -0.01em;
}

.proof-caption {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(20,18,25,0.22);
  font-size: 0.94rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.proof-code {
  display: block;
  margin-top: 1.1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

.proof-footnote {
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-3);
  max-width: 640px;
  margin: 2.25rem auto 0;
}

/* ========================================
   Services: bento pockets
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.service-card {
  grid-column: span 2;
  padding: 1.85rem;
  background: var(--bg-card, var(--paper));
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
}
.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.service-card:nth-child(1) { grid-column: span 3; --bg-card: var(--coral); }
.service-card:nth-child(2) { grid-column: span 3; --bg-card: var(--lilac); }
.service-card:nth-child(3) { grid-column: span 2; --bg-card: var(--mint); }
.service-card:nth-child(4) { grid-column: span 2; --bg-card: var(--butter); }
.service-card:nth-child(5) { grid-column: span 2; --bg-card: var(--sky); }
.service-card:nth-child(6) { grid-column: span 6; --bg-card: var(--ink); color: #fff; }

.service-tape {
  position: absolute;
  top: -14px; left: 28px;
  width: 90px; height: 26px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.75) 0 6px, rgba(255,255,255,0.5) 6px 12px);
  border: 2px solid var(--ink);
  transform: rotate(-4deg);
  border-radius: 4px;
  opacity: 0.9;
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.3s ease;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 0.4rem;
}
.service-card:hover .service-icon { transform: rotate(-6deg) scale(1.05); }

.service-card h4 {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.service-card p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}

.service-card:nth-child(6) h4 { color: #fff; }
.service-card:nth-child(6) h4 em.display {
  color: var(--butter);
  -webkit-text-fill-color: var(--butter);
}
.service-card:nth-child(6) p { color: rgba(255,255,255,0.75); }
.service-card:nth-child(6) .service-icon { background: var(--butter); color: var(--ink); }
.service-card:nth-child(6) .service-code { color: var(--butter); }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 0.5rem;
  transition: gap 0.2s ease;
}
.service-card:hover .service-link { gap: 0.7rem; }

.service-code {
  position: absolute;
  right: 1.25rem;
  bottom: 1.1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(20,18,25,0.4);
  letter-spacing: -0.02em;
}

.service-card-meta { cursor: default; }
.service-card-meta .service-icon { background: var(--pink); color: #fff; border-color: var(--ink); }

/* ========================================
   Audience: pocket cards with tape
   ======================================== */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.audience-card {
  padding: 2.5rem 2rem 2rem;
  background: var(--bg-card, var(--paper));
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--pop-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.audience-card:nth-child(1) { --bg-card: var(--butter); transform: rotate(-1deg); }
.audience-card:nth-child(2) { --bg-card: var(--mint);   transform: rotate(1.2deg); }
.audience-card:nth-child(3) { --bg-card: var(--coral);  transform: rotate(-0.8deg); }

.audience-card:hover {
  transform: rotate(0) translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.audience-tape {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 110px; height: 24px;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.6) 0 6px, rgba(255,255,255,0.35) 6px 12px);
  border: 2px solid var(--ink);
  border-radius: 3px;
}

.audience-badge {
  position: absolute;
  top: -16px; right: -12px;
  padding: 0.35rem 0.7rem;
  background: var(--ink);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 99px;
  border: 2px solid var(--ink);
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 rgba(20,18,25,0.25);
}

.audience-emoji {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  border: 2px solid var(--ink);
  color: var(--ink);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.audience-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.65rem;
  font-weight: 800;
}
.audience-card p {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ========================================
   How it works: steps with connectors
   ======================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.85rem 1.5rem;
  background: var(--bg-card, var(--paper));
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--pop);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.step:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.step:nth-child(1) { --bg-card: var(--paper); transform: rotate(-0.8deg); }
.step:nth-child(2) { --bg-card: var(--lilac); transform: rotate(0.6deg); }
.step:nth-child(3) { --bg-card: var(--butter); transform: rotate(-0.4deg); }
.step:nth-child(4) { --bg-card: var(--mint); transform: rotate(0.8deg); }

.step:hover { transform: rotate(0) translate(-2px, -2px); }

.step-num {
  width: 48px; height: 48px;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--bg-card, var(--paper));
  position: relative;
}

.step:nth-child(1) .step-num { background: var(--pink); }
.step:nth-child(2) .step-num { background: var(--purple); color: #fff; }
.step:nth-child(3) .step-num { background: var(--orange); }
.step:nth-child(4) .step-num { background: var(--teal); }

.step h4 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.step p { font-size: 0.94rem; color: var(--ink-2); line-height: 1.55; }

/* ========================================
   Won't do: dark slab
   ======================================== */
.wontdo-section {
  padding: 6rem 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
}

.wontdo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.8;
  pointer-events: none;
}
.wontdo-section .container { position: relative; z-index: 1; }
.wontdo-section h2 { color: #fff; text-align: center; }

.wontdo-label {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.25);
}
.wontdo-label::before { background: #fff; }

.wontdo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.wontdo-card {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.6rem;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--pink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.wontdo-card:nth-child(2n) { transform: rotate(-0.6deg); box-shadow: 4px 4px 0 var(--purple); }
.wontdo-card:nth-child(3n) { transform: rotate(0.7deg); box-shadow: 4px 4px 0 var(--teal); }

.wontdo-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 currentColor;
}

.wontdo-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
  border: 2px solid var(--ink);
}

.wontdo-card p {
  color: var(--ink-2);
  font-size: 0.93rem;
  line-height: 1.55;
}

/* ========================================
   Pricing: pocket cards
   ======================================== */
.price-anchor {
  max-width: 720px;
  margin: 2.75rem auto 0;
  padding: 1.5rem 1.75rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--pop);
}
.price-anchor-title {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.price-anchor-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.price-anchor-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.92rem;
  font-weight: 600;
}
.price-anchor-label {
  color: var(--ink-2);
}
.price-anchor-value {
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.price-anchor-value.struck {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--ink-3);
}
.price-anchor-row-us {
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line-soft);
  margin-top: 0.45rem;
}
.price-anchor-row-us .price-anchor-label {
  color: var(--ink);
}
.price-anchor-row-us .price-anchor-value {
  color: var(--hot);
  font-size: 1.05rem;
}
.price-anchor-caption {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  padding: 2.25rem 1.9rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--pop-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pricing-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.pricing-card:nth-child(1) { background: var(--mint); transform: rotate(-1deg); }
.pricing-card:nth-child(1):hover { transform: rotate(0) translate(-3px, -3px); }
.pricing-card:nth-child(3) { background: var(--butter); transform: rotate(1deg); }
.pricing-card:nth-child(3):hover { transform: rotate(0) translate(-3px, -3px); }

.pricing-card.featured {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.pricing-card.featured::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,61,128,0.35), transparent 55%),
    radial-gradient(circle at bottom left, rgba(123,97,255,0.3), transparent 55%);
  pointer-events: none;
}
.pricing-card.featured > * { position: relative; }
.pricing-card.featured h4,
.pricing-card.featured .price-amount { color: #fff; }
.pricing-card.featured .price { color: rgba(255,255,255,0.5); }
.pricing-card.featured .price-desc { color: rgba(255,255,255,0.75); }
.pricing-card.featured .price-features li { color: rgba(255,255,255,0.88); }
.pricing-card.featured .price-features li::before { color: var(--teal); }

.popular-tag {
  position: absolute;
  top: -18px; right: -14px;
  background: var(--pink);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.45rem 0.9rem;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  z-index: 2;
  border: 2px solid var(--ink);
  transform: rotate(8deg);
  box-shadow: 3px 3px 0 rgba(20,18,25,0.4);
}

.pricing-card h4 {
  font-size: 1.3rem;
  font-weight: 800;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin: 0.75rem 0 0.3rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.95rem;
  color: var(--ink-3);
}
.price-amount {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.035em;
  line-height: 1;
}
.price-desc {
  font-size: 0.94rem;
  color: var(--ink-2);
  margin-bottom: 1.75rem;
  line-height: 1.55;
  margin-top: 0.5rem;
}
.price-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.85rem;
}
.price-features li {
  font-size: 0.9rem;
  color: var(--ink-2);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}
.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ink);
  font-weight: 800;
  background: var(--teal);
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  top: 0.1rem;
}

.pricing-card.featured .btn-cta {
  background: var(--butter);
  color: var(--ink);
  width: 100%;
  border-color: var(--butter);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.2);
}
.pricing-card.featured .btn-cta:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 6px 6px 0 rgba(255,255,255,0.3);
}
.pricing-card .btn-outline { width: 100%; }

.pricing-footnote {
  text-align: center;
  margin-top: 2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--ink-2);
}

/* ========================================
   Cal.com embed
   ======================================== */
.cal-embed-wrap {
  margin-top: 3rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--pop-xl);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cal-embed-wrap::before {
  content: 'book.it →';
  position: absolute;
  top: -16px; left: 24px;
  padding: 0.35rem 0.85rem;
  background: var(--pink);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 99px;
  border: 2px solid var(--ink);
  transform: rotate(-4deg);
}

#my-cal-inline { border-radius: calc(var(--radius-lg) - 4px); overflow: hidden; }

.cal-fallback {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-2);
}
.cal-fallback a { color: var(--pink); font-weight: 700; }
.cal-fallback a:hover { text-decoration: underline; }

/* ========================================
   FAQ
   ======================================== */
.faq-list {
  max-width: 760px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.faq-item.active { box-shadow: 5px 5px 0 var(--pink); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--ink);
  transition: background 0.15s;
  gap: 1rem;
  letter-spacing: -0.01em;
}
.faq-question:hover { background: var(--cream); }
.faq-question::before {
  content: 'Q.';
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--pink);
  margin-right: 0.3rem;
}

.faq-chevron {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); background: var(--pink); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.active .faq-answer { max-height: 600px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-answer-inner::before {
  content: 'A.';
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: var(--teal);
  margin-right: 0.4rem;
}

/* ========================================
   Service sub-pages
   ======================================== */
.service-hero {
  padding: calc(68px + 5rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.service-hero .hero-content { text-align: left; max-width: 800px; margin: 0; }
.service-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}
.service-hero .hero-sub { margin: 0 0 2rem; max-width: 640px; }

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.45rem 0.95rem;
  border-radius: 99px;
  margin-bottom: 1.25rem;
  background: var(--accent, var(--pink));
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: var(--pop);
  transform: rotate(-1.5deg);
}

.service-pill-proof {
  background: var(--paper);
  transform: rotate(2deg);
  margin-left: 0.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-point {
  padding: 1.85rem;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--pop);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-point:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.service-point:nth-child(2n) { background: var(--cream); }
.service-point:nth-child(3n) { background: var(--lilac); }

.service-point h3 { font-size: 1.2rem; margin-bottom: 0.6rem; font-weight: 800; }
.service-point p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.65; }

/* ========================================
   CTA
   ======================================== */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  max-width: var(--max-w);
  margin: 0 auto 5rem;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--pop-xl);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,61,128,0.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(123,97,255,0.35), transparent 50%),
    radial-gradient(circle at 60% 30%, rgba(20,224,170,0.25), transparent 50%);
  pointer-events: none;
}

.cta-stickers {
  position: absolute; inset: 0; pointer-events: none;
}
.cta-stickers .sticker {
  position: absolute;
  background: var(--butter);
  color: var(--ink);
}
.cta-stickers .sticker:nth-child(1) { top: 14%; left: 4%;  transform: rotate(-10deg); }
.cta-stickers .sticker:nth-child(2) { top: 12%; right: 5%; background: var(--lime);  transform: rotate(7deg); }
.cta-stickers .sticker:nth-child(3) { bottom: 16%; left: 4%; background: var(--coral); transform: rotate(5deg); }
.cta-stickers .sticker:nth-child(4) { bottom: 14%; right: 5%; background: var(--sky); transform: rotate(-8deg); }

.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 {
  color: #fff;
  margin-bottom: 0.85rem;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.08;
}
.cta-section h2 em.display { color: var(--butter); }
.cta-section p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.25rem;
  font-size: 1.1rem;
  font-family: 'JetBrains Mono', monospace;
}
.cta-section .btn-cta-light {
  background: var(--butter);
  color: var(--ink);
  border-color: var(--butter);
  box-shadow: 4px 4px 0 var(--pink);
}
.cta-section .btn-cta-light:hover {
  background: #fff;
  border-color: #fff;
  box-shadow: 6px 6px 0 var(--pink);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--ink);
  color: #e4e4e7;
  padding: 4rem 0 1.5rem;
  border-top: 2px solid var(--ink);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: #8a8496;
  font-size: 0.88rem;
  margin-top: 0.85rem;
  max-width: 360px;
  line-height: 1.6;
}
.footer-brand .logo { color: #fff; }

.footer-links { display: flex; gap: 1.75rem; }
.footer-link {
  font-size: 0.88rem;
  color: #a8a3b8;
  font-weight: 600;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--butter); }

.footer-channels {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-channels h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--butter);
  margin-bottom: 1rem;
}
.footer-channels-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-channels-row a {
  font-size: 0.85rem;
  color: #e4e4e7;
  padding: 0.4rem 0.85rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  transition: all 0.15s;
}
.footer-channels-row a:hover {
  background: var(--butter);
  color: var(--ink);
  border-color: var(--butter);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
  color: #8a8496;
  font-family: 'JetBrains Mono', monospace;
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: #8a8496; transition: color 0.15s; }
.footer-legal a:hover { color: var(--butter); }

/* ========================================
   Mobile menu
   ======================================== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  padding: 2rem;
  z-index: 1001;
  overflow-y: auto;
  border-top: 2px solid var(--ink);
}
.mobile-menu.active { display: block; }
.mobile-menu .nav-links { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.mobile-menu .nav-link { font-size: 1.2rem; font-weight: 700; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .service-card:nth-child(1),
  .service-card:nth-child(2) { grid-column: span 2; }
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 2; }
  .service-card:nth-child(6) { grid-column: span 4; }
}

@media (max-width: 960px) {
  .proof-grid { grid-template-columns: 1fr; max-width: 560px; }
  .proof-card { transform: rotate(0deg) !important; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; }
  .pricing-card.featured { order: -1; }
  .service-grid { grid-template-columns: 1fr; }
  .wontdo-grid { grid-template-columns: 1fr 1fr; }
  .sticker-7, .sticker-5, .sticker-6 { display: none; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.15rem; }
  .section { padding: 4.5rem 0; }

  h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); letter-spacing: -0.04em; line-height: 1.05; }
  h2 { font-size: clamp(1.55rem, 6vw, 2.1rem); line-height: 1.1; }
  .hero-content { max-width: 100%; }
  .hero-rotate-line { white-space: normal; }

  .hero { padding: calc(68px + 2.5rem) 0 3.5rem; }
  .hero-sub { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .hero-actions .btn-cta,
  .hero-actions .btn-outline-inline { width: 100%; }
  .hero-logos { margin-top: 2.5rem; }
  .sticker { font-size: 0.7rem; padding: 0.4rem 0.75rem; }
  .sticker-2, .sticker-4 { display: none; }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-actions { display: none; }

  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card,
  .service-card:nth-child(1),
  .service-card:nth-child(2),
  .service-card:nth-child(3),
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:nth-child(6) {
    grid-column: span 1;
    padding: 1.75rem 1.4rem;
  }
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .step { transform: rotate(0) !important; }
  .audience-card { transform: rotate(0) !important; }
  .pricing-card { transform: rotate(0) !important; padding: 1.85rem 1.5rem; }

  .price-amount { font-size: 2.8rem; }

  .wontdo-grid { grid-template-columns: 1fr; }
  .wontdo-card { transform: rotate(0) !important; }

  .faq-question { padding: 1rem 1.15rem; font-size: 0.92rem; }
  .faq-answer-inner { padding: 0 1.15rem 1.15rem; font-size: 0.9rem; }

  .cta-section { padding: 3.25rem 1.5rem; margin: 0 1.25rem 3rem; }
  .cta-section p { font-size: 0.95rem; }
  .cta-stickers .sticker { display: none; }

  .footer-row { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .cal-embed-wrap { padding: 0.5rem; }
  #my-cal-inline { height: 640px !important; }
}

@media (max-width: 520px) {
  .price-anchor { padding: 1.25rem 1.1rem; }
  .price-anchor-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    font-size: 0.88rem;
  }
  .price-anchor-value { white-space: normal; }
  .price-anchor-row-us .price-anchor-value { font-size: 1rem; }
  .price-anchor-caption { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-stickers { display: none; }
}
