/* ==========================================================================
   BARK BOOST — DESIGN SYSTEM
   Brand orange (#FF6B35) + slate, premium-bold, modern
   ========================================================================== */

/* -------- Tokens -------- */
:root {
  /* Brand */
  --brand: #FF6B35;
  --brand-dark: #E55A2B;
  --brand-darker: #C44A1F;
  --brand-light: #FF8A5C;
  --brand-50: #FFF4ED;
  --brand-100: #FFE5D3;
  --brand-200: #FFC5A1;

  /* Ink (slate scale, warm-cool neutral) */
  --ink-950: #0A0E1A;
  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;

  /* Surface */
  --bg: #FFFFFF;
  --bg-cream: #FFF7F1;
  --bg-soft: #F8FAFC;
  --bg-dark: var(--ink-950);

  /* Accent */
  --success: #10B981;
  --accent-violet: #16C8B7; /* repurposed to a friendly teal — no purple in the playful system */

  /* Type — Fredoka (rounded display) + Nunito (friendly body) */
  --font-sans: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Fredoka', 'Nunito', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Fluid type scale (dialed back ~25% at desktop max) */
  --step--2: clamp(0.75rem, 0.72rem + 0.1vw, 0.8125rem);
  --step--1: clamp(0.8125rem, 0.79rem + 0.13vw, 0.875rem);
  --step-0:  clamp(0.9375rem, 0.91rem + 0.13vw, 1rem);
  --step-1:  clamp(1.0625rem, 1.03rem + 0.18vw, 1.125rem);
  --step-2:  clamp(1.1875rem, 1.13rem + 0.27vw, 1.3125rem);
  --step-3:  clamp(1.375rem, 1.29rem + 0.36vw, 1.5625rem);
  --step-4:  clamp(1.625rem, 1.5rem + 0.54vw, 2rem);
  --step-5:  clamp(2rem, 1.81rem + 0.81vw, 2.5rem);
  --step-6:  clamp(2.375rem, 2.13rem + 1.07vw, 3.125rem);
  --step-7:  clamp(2.75rem, 2.36rem + 1.7vw, 4rem);

  /* Spacing scale (8px base) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 60px -16px rgba(15, 23, 42, 0.18);
  --shadow-xl: 0 40px 100px -20px rgba(15, 23, 42, 0.25);
  --shadow-brand: 0 12px 32px -8px rgba(255, 107, 53, 0.45);
  --shadow-brand-lg: 0 24px 60px -16px rgba(255, 107, 53, 0.55);

  /* Layout */
  --container: 1180px;
  --container-narrow: 880px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-base: 300ms;
  --t-slow: 600ms;

  /* Misc */
  --header-h: 76px;
}

/* -------- Reset / Base -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
html, body { height: 100%; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }

/* Selection */
::selection { background: var(--brand); color: white; }

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* -------- Typography -------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink-900);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
}
h1 { font-size: var(--step-7); letter-spacing: -0.04em; font-weight: 900; }
h2 { font-size: var(--step-6); letter-spacing: -0.035em; }
h3 { font-size: var(--step-4); letter-spacing: -0.025em; }
h4 { font-size: var(--step-3); letter-spacing: -0.02em; font-weight: 700; }
h5 { font-size: var(--step-2); font-weight: 700; }
h6 { font-size: var(--step-1); font-weight: 700; }

p { color: var(--ink-700); line-height: 1.65; }
.lead {
  font-size: var(--step-2);
  color: var(--ink-600);
  line-height: 1.5;
  font-weight: 400;
  max-width: 60ch;
}
.eyebrow {
  display: inline-block;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.text-accent { color: var(--brand); }
.text-light { color: var(--ink-500); }
.text-strong { color: var(--ink-900); font-weight: 700; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* Big display headlines */
.display {
  font-size: var(--step-7);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.95;
  color: var(--ink-950);
}
.display .accent { color: var(--brand); }
.display em {
  font-style: normal;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------- Layout -------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow { max-width: var(--container-narrow); }

.section {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.section-tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.section-dark {
  background: var(--ink-950);
  color: var(--ink-200);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: white; }
.section-dark p { color: var(--ink-300); }
.section-dark .lead { color: var(--ink-300); }
.section-cream { background: var(--bg-cream); }
.section-soft { background: var(--bg-soft); }

.section-header {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header.center { margin-inline: auto; text-align: center; }
.section-header h2 { margin-top: var(--space-3); }
.section-header .lead { margin-top: var(--space-5); }
.section-header.center .lead { margin-inline: auto; }

/* Grid helpers */
.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stack { display: flex; flex-direction: column; gap: var(--space-4); }
.stack-lg { gap: var(--space-8); }
.cluster { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* -------- Buttons -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.95rem 1.6rem;
  font-size: var(--step-0);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-full);
  text-align: center;
  white-space: nowrap;
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-base) var(--ease-out), background var(--t-base);
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1.15rem 2rem; font-size: var(--step-1); }
.btn-sm { padding: 0.65rem 1.1rem; font-size: var(--step--1); }

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  box-shadow: var(--shadow-brand-lg);
}

.btn-dark {
  background: var(--ink-950);
  color: white;
}
.btn-dark:hover { background: var(--ink-800); }

.btn-light {
  background: white;
  color: var(--ink-950);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { background: var(--ink-50); }

.btn-outline {
  background: transparent;
  color: var(--ink-900);
  border: 1.5px solid var(--ink-300);
}
.btn-outline:hover {
  border-color: var(--ink-900);
  background: var(--ink-50);
}
.section-dark .btn-outline {
  color: white;
  border-color: rgba(255,255,255,0.25);
}
.section-dark .btn-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--ink-900);
}
.btn-ghost:hover { background: var(--ink-100); }

.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform var(--t-fast) var(--ease-out);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* -------- Pill / Badge / Tag -------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.45rem 0.95rem;
  background: var(--brand-50);
  color: var(--brand-darker);
  border: 1px solid var(--brand-100);
  border-radius: var(--r-full);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.pill-dark {
  background: var(--ink-100);
  color: var(--ink-800);
  border-color: var(--ink-300);
}
.section-dark .pill-dark {
  background: rgba(255,255,255,0.06);
  color: var(--ink-200);
  border-color: rgba(255,255,255,0.1);
}
.pill-dot::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,107,53,0.18);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.6rem;
  background: var(--brand);
  color: white;
  border-radius: var(--r-sm);
  font-size: var(--step--2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------- Cards -------- */
.card {
  background: white;
  border-radius: var(--r-xl);
  padding: var(--space-8);
  border: 1.5px solid var(--ink-400);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--ink-500);
}
.card-feature {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.card-feature .icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: var(--r-md);
  font-size: 1.5rem;
}
.card-feature h4 { color: var(--ink-900); }
.card-feature p { color: var(--ink-600); font-size: var(--step--1); }

/* Pricing card */
.pricing-card {
  background: white;
  border-radius: var(--r-2xl);
  padding: var(--space-10);
  border: 1.5px solid var(--ink-400);
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pricing-card.featured {
  background: var(--ink-950);
  color: white;
  border-color: var(--ink-950);
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured h3, .pricing-card.featured h4 { color: white; }
.pricing-card.featured p { color: var(--ink-300); }
.pricing-card .price {
  font-family: var(--font-display);
  font-size: var(--step-6);
  font-weight: 900;
  color: var(--ink-950);
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-card.featured .price { color: white; }
.pricing-card .price small {
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: -0.01em;
}
.pricing-card.featured .price small { color: var(--ink-400); }
.pricing-card ul { display: flex; flex-direction: column; gap: var(--space-3); }
.pricing-card li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: var(--step--1);
  color: var(--ink-700);
  line-height: 1.5;
}
.pricing-card.featured li { color: var(--ink-300); }
.pricing-card li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 3px;
  background: var(--brand);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'><path d='M6.5 11.5L3 8l1.4-1.4L6.5 8.7l5.1-5.1L13 5z'/></svg>");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* -------- Hero -------- */
.hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(3rem, 7vw, 5.5rem);
  overflow: hidden;
  background: var(--bg-cream);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,107,53,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(139,92,246,0.10) 0%, transparent 40%);
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-content { max-width: 920px; }
.hero-content > * + * { margin-top: var(--space-6); }
.hero-content .display { margin-top: var(--space-4); }
.hero-cta { margin-top: var(--space-10); display: flex; flex-wrap: wrap; gap: var(--space-3); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: clamp(3rem, 8vw, 5rem);
  padding-top: var(--space-10);
  border-top: 1px solid var(--ink-300);
}
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: var(--step-5);
  font-weight: 900;
  color: var(--ink-950);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-stat .num em {
  font-style: normal;
  color: var(--brand);
}
.hero-stat .label {
  margin-top: var(--space-2);
  font-size: var(--step--1);
  color: var(--ink-500);
  font-weight: 500;
}

/* -------- Header / Nav -------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--t-base), border-color var(--t-base);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--ink-300);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--step-2);
  color: var(--ink-950);
  letter-spacing: -0.03em;
}
.logo-accent { color: var(--brand); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  position: relative;
  padding: 0.6rem 0.9rem;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink-700);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover { color: var(--ink-950); background: var(--ink-100); }
.nav-link.active { color: var(--ink-950); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  width: 4px; height: 4px;
  background: var(--brand);
  border-radius: 50%;
  transform: translateX(-50%);
}

.nav-actions { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle .bar {
  width: 22px; height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}
.nav-toggle.is-open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-8) var(--gutter);
    gap: var(--space-2);
    background: white;
    border-top: 1px solid var(--ink-300);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base) var(--ease-out), opacity var(--t-base);
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 1rem; font-size: var(--step-1); }
  .nav-actions .btn-ghost { display: none; }
}

main { padding-top: var(--header-h); }

/* -------- Marquee strip -------- */
.marquee {
  background: var(--ink-950);
  color: var(--ink-300);
  padding: var(--space-3) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  gap: var(--space-12);
  animation: scroll 40s linear infinite;
  width: max-content;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--step--1);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* -------- Service / feature blocks -------- */
.service-card {
  position: relative;
  padding: var(--space-8);
  background: white;
  border: 1px solid var(--ink-300);
  border-radius: var(--r-xl);
  transition: all var(--t-base) var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 0;
}
.service-card:hover { border-color: transparent; transform: translateY(-4px); box-shadow: var(--shadow-brand-lg); }
.service-card:hover::before { opacity: 1; }
.service-card:hover * { color: white; position: relative; z-index: 1; }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); color: white; }
.service-card:hover .service-arrow { color: white; transform: translate(4px, -4px); }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  background: var(--brand-50);
  color: var(--brand);
  border-radius: var(--r-md);
  margin-bottom: var(--space-5);
  transition: all var(--t-base);
}
.service-card h4 { margin-bottom: var(--space-3); }
.service-card p { color: var(--ink-600); font-size: var(--step--1); }
.service-arrow {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  font-size: 1.2rem;
  color: var(--ink-400);
  transition: all var(--t-base);
}

/* -------- Testimonial -------- */
.testimonial {
  background: white;
  border: 1px solid var(--ink-300);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  height: 100%;
}
.testimonial .quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.5;
  color: var(--brand);
  height: 30px;
}
.testimonial blockquote {
  flex: 1;
  font-size: var(--step-1);
  color: var(--ink-800);
  line-height: 1.55;
  font-weight: 500;
}
.testimonial .person {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--ink-300);
}
.testimonial .person .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink-200);
  flex-shrink: 0;
}
.testimonial .person .name {
  font-weight: 700;
  color: var(--ink-900);
  font-size: var(--step--1);
  line-height: 1.2;
}
.testimonial .person .role {
  font-size: var(--step--2);
  color: var(--ink-500);
  margin-top: 2px;
}

/* -------- Process / Steps -------- */
.process-step {
  position: relative;
  padding-left: var(--space-12);
  padding-bottom: var(--space-8);
  border-left: 2px solid var(--ink-300);
}
.process-step:last-child { border-left-color: transparent; padding-bottom: 0; }
.process-step::before {
  content: '';
  position: absolute;
  left: -10px; top: 0;
  width: 18px; height: 18px;
  background: white;
  border: 2px solid var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--brand-50);
}
.process-step .num {
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.process-step h4 { margin-bottom: var(--space-2); }

/* -------- Logo strip -------- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 4rem);
  padding-block: var(--space-12);
  opacity: 0.55;
  filter: grayscale(1);
}
.logo-strip span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--step-2);
  color: var(--ink-700);
  letter-spacing: -0.02em;
}

/* -------- CTA strip -------- */
.cta-strip {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  border-radius: var(--r-2xl);
  padding: clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%);
}
.cta-strip > * { position: relative; }
.cta-strip h2 { color: white; max-width: 14ch; }
.cta-strip p { color: rgba(255,255,255,0.92); max-width: 50ch; }

/* -------- Forms -------- */
.form-control {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-size: var(--step-0);
  background: white;
  border: 1.5px solid var(--ink-300);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,107,53,0.15);
}
.form-control::placeholder { color: var(--ink-400); }
.form-label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink-800);
  margin-bottom: var(--space-2);
}
.form-row { display: grid; gap: var(--space-4); }
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form-row-2 { grid-template-columns: 1fr; } }

/* Checkbox */
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--step--1);
  color: var(--ink-700);
  cursor: pointer;
}
.checkbox input { margin-top: 4px; accent-color: var(--brand); }

/* -------- Footer -------- */
.site-footer {
  background: var(--ink-950);
  color: var(--ink-300);
  padding-block: clamp(4rem, 8vw, 6rem) var(--space-8);
}
.site-footer h4 {
  color: white;
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-10); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { color: white; font-size: var(--step-3); }
.footer-brand .logo-accent { color: var(--brand); }
.footer-brand p {
  color: var(--ink-400);
  margin-top: var(--space-4);
  max-width: 32ch;
  font-size: var(--step--1);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links a {
  color: var(--ink-400);
  font-size: var(--step--1);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: white; }

.footer-cta {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--space-5);
}
.footer-cta p {
  color: white;
  font-weight: 600;
  font-size: var(--step--1);
  margin-bottom: var(--space-3);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--step--1);
  color: var(--ink-500);
}
.footer-bottom a { color: var(--ink-400); }
.footer-bottom a:hover { color: white; }
.footer-social {
  display: flex;
  gap: var(--space-2);
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--ink-300);
  font-size: 0.95rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { background: var(--brand); color: white; }

/* -------- Decorative / utilities -------- */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.glow-blob--brand { background: var(--brand); }
.glow-blob--violet { background: var(--accent-violet); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.text-center { text-align: center; }

/* -------- Reveal animation --------
   Transform-only so content is visible from first paint (no opacity flash).
   IntersectionObserver removes the translate as elements scroll in.
*/
.reveal {
  transform: translateY(24px);
  opacity: 0.001;            /* near-transparent so we don't see the slide for off-screen content */
  transition: transform 600ms var(--ease-out), opacity 500ms var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-visible { transform: translateY(0); opacity: 1; }
/* JS-disabled fallback: just show everything */
.no-js .reveal { transform: none; opacity: 1; }
/* Hero / above-fold content: never hidden, fade in via keyframes */
.hero .reveal {
  transform: none;
  opacity: 0;
  animation: hero-rise 700ms var(--ease-out) forwards;
}
.hero .reveal:nth-child(1) { animation-delay: 0ms; }
.hero .reveal:nth-child(2) { animation-delay: 80ms; }
.hero .reveal:nth-child(3) { animation-delay: 160ms; }
.hero .reveal:nth-child(4) { animation-delay: 240ms; }
.hero .reveal:nth-child(5) { animation-delay: 320ms; }
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Skip link for a11y */
.skip-link {
  position: absolute;
  top: -100px; left: 8px;
  padding: var(--space-3) var(--space-5);
  background: var(--ink-950);
  color: white;
  border-radius: var(--r-md);
  z-index: 200;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 8px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .marquee-track { animation: none; }
}

/* ==========================================================================
   PAGE COMPONENTS — services, bundles, portfolio, case studies, contact, checkout
   ========================================================================== */

/* Form status messages (used by main.js + checkout) */
.form-status { font-size: var(--step--1); font-weight: 600; line-height: 1.5; margin: 0; }
.form-status:empty { display: none; }
.form-status--ok { color: var(--success); }
.form-status--err { color: var(--brand-darker); }

/* Interior page header (lighter than the home hero) */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  padding-block: clamp(3rem, 7vw, 5rem) clamp(2rem, 4vw, 3rem);
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 25%, rgba(255,107,53,0.16) 0%, transparent 42%),
    radial-gradient(circle at 85% 70%, rgba(139,92,246,0.09) 0%, transparent 45%);
  z-index: 0;
}
.page-header > * { position: relative; z-index: 1; }
.page-header-inner { max-width: 760px; }
.page-header-inner > * + * { margin-top: var(--space-5); }
.page-header.center .page-header-inner { margin-inline: auto; text-align: center; }
.page-header.center .lead { margin-inline: auto; }
.page-header .display { font-size: var(--step-6); }
.page-header .reveal { transform: none; opacity: 0; animation: hero-rise 700ms var(--ease-out) forwards; }
.page-header .reveal:nth-child(2) { animation-delay: 80ms; }
.page-header .reveal:nth-child(3) { animation-delay: 160ms; }
.page-header .reveal:nth-child(4) { animation-delay: 240ms; }

/* Media frame + split rows */
.media-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-100);
  border: 1px solid var(--ink-300);
  box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.split { gap: clamp(2rem, 6vw, 4.5rem); align-items: center; }

/* Checklist with brand ticks */
.check-list { display: flex; flex-direction: column; gap: var(--space-3); }
.check-list li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  color: var(--ink-700); font-size: var(--step-0); line-height: 1.5;
}
.check-list li::before {
  content: ''; flex-shrink: 0;
  width: 22px; height: 22px; margin-top: 1px;
  border-radius: 50%;
  background: var(--brand-50);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6B35'><path d='M6.5 11.5L3 8l1.4-1.4L6.5 8.7l5.1-5.1L13 5z'/></svg>");
  background-size: 13px; background-position: center; background-repeat: no-repeat;
}
.section-dark .check-list li { color: var(--ink-300); }

/* Comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--ink-300); border-radius: var(--r-xl); background: white; }
.compare { width: 100%; border-collapse: collapse; font-size: var(--step--1); min-width: 560px; }
.compare th, .compare td { padding: var(--space-4); text-align: center; border-bottom: 1px solid var(--ink-300); }
.compare thead th { font-family: var(--font-display); font-size: var(--step-0); color: var(--ink-900); border-bottom: 2px solid var(--ink-300); }
.compare tbody th { font-weight: 600; color: var(--ink-800); text-align: left; }
.compare td { color: var(--ink-700); }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }
.compare .yes { color: var(--success); font-weight: 700; font-size: 1.05rem; }
.compare .no { color: var(--ink-300); }
.compare .col-featured { background: var(--brand-50); }
.compare thead .col-featured { color: var(--brand-darker); }

/* FAQ accordion */
.faq { border: 1.5px solid var(--ink-400); border-radius: var(--r-lg); background: white; overflow: hidden; }
.faq + .faq { margin-top: var(--space-3); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-1);
  color: var(--ink-900);
  display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.5rem; line-height: 1; color: var(--brand); font-weight: 400; transition: transform var(--t-base); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 var(--space-6) var(--space-6); color: var(--ink-600); line-height: 1.6; }

/* Portfolio filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: var(--space-2); justify-content: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.filter-btn {
  padding: 0.55rem 1.1rem; border-radius: var(--r-full);
  font-size: var(--step--1); font-weight: 600; color: var(--ink-600);
  border: 1px solid var(--ink-300); background: white;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.filter-btn:hover { border-color: var(--ink-400); color: var(--ink-900); }
.filter-btn.active { background: var(--ink-950); color: white; border-color: var(--ink-950); }

/* Portfolio work card — real project screenshots */
.work-card {
  display: flex; flex-direction: column; border-radius: var(--r-xl); overflow: hidden;
  background: white; border: 1px solid var(--ink-300);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out), border-color var(--t-base);
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--ink-300); }

.work-card .thumb {
  position: relative; aspect-ratio: 3 / 2; overflow: hidden;
  background: var(--ink-100); border-bottom: 1px solid var(--ink-300);
}
.work-card .thumb img {
  display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center;
  transition: transform var(--t-slow) var(--ease-out);
}
.work-card:hover .thumb img { transform: scale(1.04); }

.work-card .work-body { display: flex; flex-direction: column; flex: 1; padding: var(--space-5) var(--space-6) var(--space-6); }
.work-card .work-meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-2); }
.work-card .work-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--brand); background: rgba(255, 107, 53, 0.10);
  padding: 0.26rem 0.62rem; border-radius: var(--r-full);
}
.work-card .work-loc { font-size: var(--step--1); color: var(--ink-500); }
.work-card .work-name { font-family: var(--font-display); font-size: var(--step-1); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; color: var(--ink-900); }
.work-card .work-desc { margin-top: var(--space-2); color: var(--ink-700); font-size: var(--step--1); line-height: 1.6; }
.work-card .work-cta { margin-top: auto; padding-top: var(--space-4); font-size: var(--step--1); font-weight: 600; color: var(--brand); transition: color var(--t-fast); }
.work-card:hover .work-cta { color: var(--brand-darker); }
.is-hidden { display: none !important; }

/* Case studies — real project breakdowns (alternating media + narrative) */
.case-study {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
}
.case-study + .case-study { border-top: 1px solid var(--ink-200); }
.case-study .cs-media {
  display: block;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-100);
  box-shadow: 0 30px 60px -34px rgba(17, 17, 17, 0.3);
}
.case-study .cs-media img { display: block; width: 100%; height: auto; transition: transform 0.5s ease; }
.case-study .cs-media:hover img { transform: scale(1.03); }
.case-study.cs-flip .cs-media { order: 2; }
.case-study .cs-meta { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.case-study .cs-loc { font-size: var(--step--1); color: var(--ink-500); }
.case-study .cs-name { font-family: var(--font-display); font-size: var(--step-3); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink-950); }
.case-study .cs-brief { margin-top: var(--space-3); color: var(--ink-600); font-size: var(--step-0); line-height: 1.65; }
.case-study .cs-build { margin-top: var(--space-5); display: grid; gap: var(--space-3); }
.case-study .cs-build li { display: flex; align-items: flex-start; gap: var(--space-3); color: var(--ink-800); font-size: var(--step--1); line-height: 1.5; }
.case-study .cs-check { flex: none; display: inline-grid; place-items: center; width: 1.25rem; height: 1.25rem; border-radius: var(--r-full); background: var(--brand-50); color: var(--brand-darker); font-size: 0.72rem; font-weight: 800; margin-top: 0.05rem; }
.case-study .cs-cta { margin-top: var(--space-6); display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: var(--step--1); color: var(--brand); transition: gap var(--t-fast), color var(--t-fast); }
.case-study .cs-cta:hover { color: var(--brand-darker); gap: 0.7rem; }
@media (max-width: 820px) {
  .case-study { grid-template-columns: 1fr; gap: var(--space-6); padding-block: var(--space-10); }
  .case-study.cs-flip .cs-media { order: 0; }
}

/* Stat band (case studies / about) */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 700px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.stat-band .stat .n { font-family: var(--font-display); font-size: var(--step-6); font-weight: 900; color: var(--brand); letter-spacing: -0.03em; line-height: 1; }
.stat-band .stat .n em { font-style: normal; color: var(--brand); }
.stat-band .stat .l { margin-top: var(--space-2); font-size: var(--step--1); color: var(--ink-400); }

/* Checkout order card */
.order-card { background: white; border: 1.5px solid var(--ink-400); border-radius: var(--r-2xl); padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: var(--shadow-md); }
.order-line { display: flex; justify-content: space-between; gap: var(--space-4); padding: var(--space-3) 0; border-bottom: 1px dashed var(--ink-300); font-size: var(--step--1); color: var(--ink-700); }
.order-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: var(--space-5); margin-top: var(--space-4); border-top: 2px solid var(--ink-300); }
.order-total .amt { font-family: var(--font-display); font-size: var(--step-6); font-weight: 900; color: var(--ink-950); letter-spacing: -0.03em; line-height: 1; }
.notice { padding: var(--space-5) var(--space-6); border-radius: var(--r-md); background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-darker); font-size: var(--step--1); line-height: 1.55; }
.notice strong { color: var(--brand-darker); }

/* Contact 2-col layout */
.contact-grid { grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 6vw, 4.5rem); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* Legal pages (privacy policy, terms of service) */
.legal-prose { max-width: 760px; }
.legal-prose h2 { font-size: var(--step-3); margin-top: var(--space-12); margin-bottom: var(--space-4); color: var(--ink-950); letter-spacing: -0.02em; line-height: 1.25; scroll-margin-top: 100px; }
.legal-prose > h2:first-child { margin-top: 0; }
.legal-prose h3 { font-size: var(--step-1); margin-top: var(--space-8); margin-bottom: var(--space-3); color: var(--ink-900); }
.legal-prose p { color: var(--ink-700); line-height: 1.75; margin-top: var(--space-4); }
.legal-prose ul { margin-top: var(--space-4); padding-left: 1.35rem; display: grid; gap: var(--space-2); }
.legal-prose li { color: var(--ink-700); line-height: 1.7; }
.legal-prose li::marker { color: var(--brand); }
.legal-prose strong { color: var(--ink-900); font-weight: 700; }
.legal-prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.legal-prose a:hover { color: var(--brand-darker); }

/* ==========================================================================
   ENERGETIC / PLAYFUL THEME (v3)
   Layered over the base system. Fredoka + Nunito, orange-forward with bright
   pops, sticker shadows, and bouncy motion. The homepage leads; the same
   language carries across the site through these shared components.
   ========================================================================== */

:root {
  /* Bright supporting pops — used sparingly against the dominant orange */
  --pop-yellow: #FFC83D;  --pop-yellow-soft: #FFF1CC;
  --pop-teal:   #16C8B7;  --pop-teal-soft:   #CFF4EF;
  --pop-pink:   #FF5DA2;  --pop-pink-soft:   #FFD9E8;
  --pop-sky:    #4DA8FF;  --pop-sky-soft:    #D7E9FF;

  /* Springy easings + a hard "sticker" drop shadow */
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --ease-spring: cubic-bezier(.5, 1.7, .45, 1);
  --shadow-pop:  0 1.1rem 0 -0.55rem rgba(196, 74, 31, 0.22);
}

/* ---- Display type: Fredoka is rounded + wide, so relax the tight tracking ---- */
h1, h2, h3, h4, h5, h6, .display, .logo,
.hero-stat .num, .pricing-card .price, .process-step .num,
.stat-band .stat .n, .order-total .amt {
  letter-spacing: -0.005em;
}
h1, .display { font-weight: 700; line-height: 1.03; }
h2 { font-weight: 700; }
.lead { font-weight: 500; }

/* ---- Highlighter emphasis: trade the gradient text-clip for a marker swipe ---- */
.display em {
  font-style: normal;
  position: relative;
  z-index: 0;
  background: none;
  color: var(--ink-950);
  -webkit-text-fill-color: var(--ink-950);
  -webkit-background-clip: border-box;
          background-clip: border-box;
}
.display em::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -0.1em; right: -0.1em;
  bottom: 0.05em;
  height: 0.34em;
  background: var(--pop-yellow);
  border-radius: 0.5em 0.6em 0.45em 0.55em;
  transform: rotate(-1.5deg);
}

/* ---- Buttons: bouncy lift, with a pressable hard shadow on the primary ---- */
.btn { font-weight: 700; transition: transform .25s var(--ease-bounce), box-shadow var(--t-base) var(--ease-out), background var(--t-base); }
.btn:hover { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(-1px) scale(.99); }
.btn-lg:hover { transform: translateY(-3px) scale(1.03) rotate(-1deg); }
.btn-primary { box-shadow: 0 0.55rem 0 -0.05rem var(--brand-darker); }
.btn-primary:hover { background: var(--brand); box-shadow: 0 0.85rem 0 -0.05rem var(--brand-darker); transform: translateY(-3px) scale(1.02); }
.btn-primary:active { box-shadow: 0 0.3rem 0 -0.05rem var(--brand-darker); transform: translateY(1px) scale(.99); }

/* ---- Cards: chunkier corners, a playful tilt on hover ---- */
.card, .service-card, .testimonial, .work-card { border-radius: var(--r-2xl); }
.card:hover, .work-card:hover { transform: translateY(-6px) rotate(-.5deg); }
.pricing-card:hover { transform: translateY(-8px) rotate(-.5deg); }
.service-card:hover { transform: translateY(-6px) rotate(-.6deg); }

/* ---- Sticker badges ---- */
.badge {
  border-radius: var(--r-full);
  padding: 0.3rem 0.72rem;
  transform: rotate(-2deg);
  box-shadow: 0 0.4rem 0 -0.2rem var(--brand-darker);
}
.pricing-tag .badge { transform: rotate(-3deg); }

/* ---- Floating decor shapes (paws / sparkles / squiggles) ---- */
.pw-shape { position: absolute; display: block; line-height: 0; pointer-events: none; }
.pw-shape svg { width: 100%; height: auto; display: block; }
.pw-float   { animation: pw-float 6s ease-in-out infinite; }
.pw-float-2 { animation: pw-float 7.5s ease-in-out infinite; animation-delay: -2.4s; }
.pw-float-3 { animation: pw-float 5.4s ease-in-out infinite; animation-delay: -1.2s; }
@keyframes pw-float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%      { transform: translateY(-16px) rotate(calc(var(--rot, 0deg) + 6deg)); }
}
@media (max-width: 720px) { .pw-hide-sm { display: none; } }

/* ---- HERO: warm canvas, blobby light + dot grid, content above the decor ---- */
.hero { background: #FFF6EC; }
.hero::before {
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255,107,53,0.22) 0%, transparent 42%),
    radial-gradient(circle at 84% 28%, rgba(255,200,61,0.30) 0%, transparent 40%),
    radial-gradient(circle at 72% 80%, rgba(22,200,183,0.16) 0%, transparent 45%),
    radial-gradient(rgba(17,24,39,0.05) 1.5px, transparent 1.5px);
  background-size: auto, auto, auto, 26px 26px;
}
.hero > .hero-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero > .container { position: relative; z-index: 2; }

/* HERO stats become left-clustered sticker chips */
.hero-stats {
  border-top: 0;
  padding-top: 0;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(0.6rem, 2vw, 1.1rem);
}
.hero-stat {
  background: #fff;
  border: 2px solid var(--ink-900);
  border-radius: var(--r-xl);
  padding: 0.9rem 1.15rem;
  box-shadow: var(--shadow-pop);
}
.hero-stat:nth-child(2) { box-shadow: 0 1.1rem 0 -0.55rem rgba(22,200,183,0.32); }
.hero-stat:nth-child(3) { box-shadow: 0 1.1rem 0 -0.55rem rgba(255,200,61,0.45); }
@media (max-width: 700px) { .hero-stats { grid-template-columns: repeat(2, 1fr); } }

/* ---- MARQUEE: bright orange belt with sparkle separators ---- */
.marquee {
  background: linear-gradient(90deg, var(--brand) 0%, #ff8a3d 50%, var(--brand) 100%);
  color: #fff;
  border-top: 0;
  border-bottom: 0;
}
.marquee-item { font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #fff; }
.marquee .dot {
  width: auto; height: auto;
  background: transparent;
  border-radius: 0;
  color: rgba(255,255,255,0.9);
  font-size: 0.85em;
}
.marquee .dot::before { content: '\2726'; }

/* ---- SERVICES: rainbow icon chips that wiggle on hover ---- */
.service-icon { border-radius: 18px; transition: transform .3s var(--ease-bounce), background var(--t-base), color var(--t-base); }
.service-card:hover .service-icon { transform: rotate(-8deg) scale(1.08); }
.service-icon.ic-orange { background: var(--brand-50);        color: var(--brand); }
.service-icon.ic-yellow { background: var(--pop-yellow-soft); color: #B07A00; }
.service-icon.ic-teal   { background: var(--pop-teal-soft);   color: #0E9384; }
.service-icon.ic-pink   { background: var(--pop-pink-soft);   color: #D6336C; }
.service-icon.ic-sky    { background: var(--pop-sky-soft);    color: #1971C2; }

/* ---- PROCESS: sunny step dots on the dark section ---- */
.process-step::before { background: var(--pop-yellow); border-color: var(--pop-yellow); box-shadow: 0 0 0 5px rgba(255,200,61,0.16); }
.process-step .num { color: var(--pop-yellow); }

/* ---- TESTIMONIALS: outlined sticker cards on a sunny field ---- */
.section-cream { background: var(--pop-yellow-soft); }
.testimonial {
  border: 2px solid var(--ink-900);
  box-shadow: var(--shadow-pop);
  transition: transform .3s var(--ease-bounce), box-shadow var(--t-base);
}
.testimonial:hover { transform: translateY(-5px) rotate(-.5deg); }
.section-cream .grid > .testimonial:nth-child(2) { box-shadow: 0 1.1rem 0 -0.55rem rgba(22,200,183,0.30); }
.section-cream .grid > .testimonial:nth-child(3) { box-shadow: 0 1.1rem 0 -0.55rem rgba(77,168,255,0.30); }

/* ---- PRICING: poppy prices ---- */
.pricing-card .price { color: var(--brand); }
.pricing-card.featured .price { color: var(--pop-yellow); }

/* ---- CTA strip: three-stop sunset ---- */
.cta-strip { background: linear-gradient(120deg, var(--brand) 0%, #ff8a3d 52%, var(--brand-dark) 100%); }

/* ---- Reveal: arrive with a little bounce ---- */
.reveal { transition: transform .7s var(--ease-bounce), opacity .5s var(--ease-out); }

/* ---- Interior page headers: de-purple to match (sun + teal) ---- */
.page-header::before {
  background-image:
    radial-gradient(circle at 16% 24%, rgba(255,107,53,0.18) 0%, transparent 44%),
    radial-gradient(circle at 86% 70%, rgba(22,200,183,0.14) 0%, transparent 46%),
    radial-gradient(circle at 60% 12%, rgba(255,200,61,0.20) 0%, transparent 40%);
}
