/* ===== DESIGN TOKENS ===== */
:root {
  --cream: oklch(0.97 0.015 80);
  --surface: oklch(0.99 0.008 80);
  --ink: oklch(0.22 0.02 250);
  --body: oklch(0.38 0.015 250);
  --muted: oklch(0.46 0.01 250);
  --amber: oklch(0.78 0.16 75);
  --amber-dark: oklch(0.68 0.15 70);
  --amber-pale: oklch(0.95 0.04 80);
  --coral: oklch(0.65 0.18 25);
  --sage: oklch(0.58 0.12 155);
  --sage-pale: oklch(0.94 0.03 155);
  --stroke: oklch(0.9 0.01 80);

  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  --text-xs: 0.78rem;
  --text-sm: 0.88rem;
  --text-base: 1rem;
  --text-lg: 1.08rem;
  --text-xl: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-3xl: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
  --text-hero: clamp(2.6rem, 2rem + 2.5vw, 4.2rem);

  --shadow-sm: 0 1px 3px oklch(0.22 0.02 250 / 0.04);
  --shadow-md: 0 4px 12px oklch(0.22 0.02 250 / 0.07);
  --shadow-lg: 0 8px 28px oklch(0.22 0.02 250 / 0.1);
  --shadow-xl: 0 16px 48px oklch(0.22 0.02 250 / 0.12);

  --ink-hover: oklch(0.3 0.02 250);
  --ink-dark: oklch(0.2 0.01 250);
  --cream-muted: oklch(0.97 0.015 80 / 0.65);
  --cream-subtle: oklch(0.97 0.015 80 / 0.7);
  --sky-pale: oklch(0.96 0.02 230);
  --coral-pale: oklch(0.96 0.03 30);
  --amber-highlight: oklch(0.78 0.16 75 / 0.06);
  --amber-border: oklch(0.78 0.16 75 / 0.2);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 28px;

  --section-pad: clamp(48px, 6vw, 80px);
  --leading-body: 1.7;
  --leading-tight: 1.5;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', sans-serif;
  background: var(--cream);
  color: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 var(--space-lg); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.sr-only-focusable:focus {
  position: static; width: auto; height: auto;
  padding: var(--space-sm) var(--space-base); margin: 0;
  overflow: visible; clip: auto; white-space: normal;
  background: var(--amber); color: var(--ink);
  font-weight: 700; z-index: 1000;
}

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
}
.nav-in {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-md) 0; position: relative;
}
.logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: var(--text-xl); color: var(--ink);
}
.logo-dot { color: var(--amber); }
.logo--inline { font-size: inherit; display: inline; }
.nav-links {
  display: flex; gap: var(--space-lg); align-items: center;
  font-size: var(--text-sm); font-weight: 500;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a { color: var(--body); transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; gap: var(--space-sm); align-items: center; }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 1px; transition: transform 0.2s;
}
.nav-mobile {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--stroke);
  box-shadow: var(--shadow-md); padding: var(--space-lg);
  flex-direction: column; gap: var(--space-base); z-index: 99;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: var(--text-base); font-weight: 500; color: var(--body);
  padding: var(--space-sm) 0;
}
.nav-mobile a:hover { color: var(--ink); }
.btn-cta {
  display: inline-block; padding: var(--space-md) var(--space-lg);
  background: var(--ink); color: var(--cream);
  border-radius: 8px; font-weight: 600; font-size: var(--text-sm);
  transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--ink-hover); transform: translateY(-1px); }
.btn-big { padding: var(--space-base) 36px; font-size: var(--text-lg); border-radius: 10px; }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--amber);
}
.btn-outline:hover { background: var(--amber-pale); transform: translateY(-1px); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* ===== HERO ===== */
.hero { padding: var(--space-3xl) 0 0; overflow: hidden; }
.hero-layout {
  display: grid; grid-template-columns: 34% 1fr; gap: var(--space-xl);
  align-items: center; min-height: 560px;
}
.hero-text h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-hero); font-weight: 800;
  color: var(--ink); line-height: 1.08; letter-spacing: -0.5px;
  margin-bottom: var(--space-lg);
}
.hero-text h1 .accent { position: relative; display: inline-block; }
.hero-text h1 .accent svg {
  position: absolute; bottom: -6px; left: 0; width: 100%; height: 12px; pointer-events: none;
}
.squiggle-underline {
  position: relative; display: inline;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 14' preserveAspectRatio='none' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9 C20 3, 40 13, 60 7 C80 1, 100 11, 118 5' stroke='oklch(0.78 0.16 75)' stroke-width='2.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: bottom left; background-size: 100% 10px;
  padding-bottom: 6px;
}
.hero-sub {
  font-size: var(--text-lg); max-width: 420px; margin-bottom: var(--space-xl); line-height: var(--leading-body);
}
.hero-price-note {
  font-size: var(--text-sm); color: var(--muted); margin-top: var(--space-md);
}
.hero-price-note strong { color: var(--ink); font-weight: 600; }

/* Hero gallery — large diverse mascots, NO labels */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto;
  gap: var(--space-md); padding: var(--space-lg);
  background: var(--amber-pale); border-radius: var(--radius-2xl);
}
.hero-gallery .hg-item {
  border-radius: 18px; overflow: hidden;
  filter: drop-shadow(0 6px 16px oklch(0.22 0.02 250 / 0.1));
  transition: transform 0.3s ease;
}
.hero-gallery .hg-item:hover { transform: scale(1.04); }
.hero-gallery .hg-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.hero-gallery .hg-item:nth-child(1) { transform: rotate(-3deg); }
.hero-gallery .hg-item:nth-child(2) { transform: translateY(-12px); }
.hero-gallery .hg-item:nth-child(3) { transform: rotate(2deg); }
.hero-gallery .hg-item:nth-child(4) { transform: rotate(2deg) translateY(4px); }
.hero-gallery .hg-item:nth-child(5) { transform: translateY(-8px) rotate(-1deg); }
.hero-gallery .hg-item:nth-child(6) { transform: rotate(-3deg) translateY(8px); }
.hero-gallery .hg-item:nth-child(1):hover { transform: rotate(-3deg) scale(1.04); }
.hero-gallery .hg-item:nth-child(2):hover { transform: translateY(-12px) scale(1.04); }
.hero-gallery .hg-item:nth-child(3):hover { transform: rotate(2deg) scale(1.04); }
.hero-gallery .hg-item:nth-child(4):hover { transform: rotate(2deg) translateY(4px) scale(1.04); }
.hero-gallery .hg-item:nth-child(5):hover { transform: translateY(-8px) rotate(-1deg) scale(1.04); }
.hero-gallery .hg-item:nth-child(6):hover { transform: rotate(-3deg) translateY(8px) scale(1.04); }

/* ===== SHARED SECTION HEADERS ===== */
.sh-center { text-align: center; margin-bottom: var(--space-2xl); }
.sh-center h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-3xl); font-weight: 800; color: var(--ink);
  margin-bottom: var(--space-sm);
}
.sh-center p { max-width: 500px; margin: 0 auto; font-size: var(--text-base); }

/* ===== VALUE STATEMENT + SHOWCASE (replaces before/after) ===== */
.value-section { padding: var(--section-pad) 0; }
.value-top {
  text-align: center; max-width: 800px; margin: 0 auto var(--space-2xl);
}
.value-top h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-3xl); font-weight: 800; color: var(--ink);
  margin-bottom: var(--space-md);
}
.value-top p { font-size: var(--text-lg); line-height: var(--leading-body); }
.value-points {
  display: grid; grid-template-columns: 1fr;
  gap: var(--space-lg); max-width: 600px; margin: 0 auto;
}
.value-point {
  display: flex; gap: var(--space-lg); align-items: baseline;
}
.value-point-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-2xl); font-weight: 800;
  color: var(--amber); line-height: 1; flex-shrink: 0;
}
.value-point h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; color: var(--ink); font-size: var(--text-lg);
  margin-bottom: 2px;
}
.value-point p { font-size: var(--text-sm); line-height: var(--leading-body); }
.value-showcase {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md); margin-top: var(--space-2xl);
}
.value-showcase img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.value-showcase img:hover { transform: scale(1.06); }

/* ===== HOW IT WORKS ===== */
.how-section { padding: var(--section-pad) 0; background: var(--surface); }
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl); max-width: 960px; margin: 0 auto;
  counter-reset: step;
}
.how-step {
  counter-increment: step; position: relative;
  background: var(--cream); border-radius: var(--radius-lg);
  border: 1px solid var(--stroke); overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.how-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.how-step-visual {
  height: 200px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-base);
}
.how-step-visual.v-describe { background: var(--sky-pale); }
.how-step-visual.v-browse { background: var(--amber-pale); }
.how-step-visual.v-kit { background: var(--sage-pale); }

/* Step 1: text input mockup */
.mock-input-wrap {
  width: 100%; max-width: 260px;
}
.mock-input-label {
  font-size: var(--text-xs); color: var(--muted); font-weight: 600;
  margin-bottom: var(--space-xs); text-transform: uppercase; letter-spacing: 0.5px;
}
.mock-input {
  width: 100%; padding: 12px 14px;
  background: var(--surface); border-radius: 10px;
  border: 2px solid var(--stroke); font-size: var(--text-sm);
  color: var(--ink); font-family: 'Figtree', sans-serif;
}
.mock-input-hint {
  font-size: 0.72rem; color: var(--muted); margin-top: var(--space-xs);
}

/* Step 2: mascot thumbnail grid mockup */
.mock-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm); width: 100%; max-width: 240px;
}
.mock-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 8px; border: 2px solid transparent;
  transition: border-color 0.2s;
}
.mock-grid img.selected { border-color: var(--amber); }

/* Step 3: brand kit mockup */
.mock-kit {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm);
  width: 100%; max-width: 240px;
}
.mock-kit-item {
  background: var(--surface); border-radius: 8px; padding: var(--space-sm);
  text-align: center; font-size: 0.65rem; color: var(--muted);
  border: 1px solid var(--stroke);
}
.mock-kit-item img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: 6px; margin-bottom: 4px;
}

.how-step-content {
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
}
.how-step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-2xl); font-weight: 800;
  color: var(--amber); line-height: 1; margin-bottom: var(--space-sm);
}
.how-step h3 {
  font-weight: 700; color: var(--ink); font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}
.how-step p { font-size: var(--text-sm); line-height: var(--leading-body); }

/* ===== ART STYLES (dark) ===== */
.styles-section {
  padding: var(--section-pad) 0;
  background: var(--ink); color: var(--cream); overflow: hidden;
}
.styles-section .sh-center h2 { color: var(--cream); }
.styles-section .sh-center p { color: var(--cream-muted); }
.styles-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg);
  max-width: 720px; margin: var(--space-xl) auto 0;
}
.styles-row + .styles-row { margin-top: var(--space-lg); }
.style-card { text-align: center; }
.style-card img {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); object-fit: cover;
  border: 2px solid oklch(1 0 0 / 0.08);
  transition: transform 0.3s, border-color 0.3s;
}
.style-card img:hover { transform: scale(1.06); border-color: var(--amber); }
.style-card span {
  display: block; margin-top: var(--space-sm);
  font-size: var(--text-sm); color: var(--cream-subtle); font-weight: 500;
}
.styles-note {
  text-align: center; margin-top: var(--space-xl);
  font-size: var(--text-sm); color: var(--cream-muted);
}

/* ===== CATEGORIES ===== */
.categories-section {
  padding: var(--section-pad) 0;
  background: var(--ink); color: var(--cream); overflow: hidden;
}
.categories-section .sh-center h2 { color: var(--cream); }
.categories-section .sh-center p { color: var(--cream-muted); }
.cat-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-lg);
  max-width: 800px; margin: var(--space-xl) auto 0;
}
.cat-row + .cat-row { margin-top: var(--space-lg); }
.cat-card { text-align: center; }
.cat-card img {
  width: 100%; aspect-ratio: 1; border-radius: var(--radius-lg); object-fit: cover;
  border: 2px solid oklch(1 0 0 / 0.08);
  transition: transform 0.3s, border-color 0.3s;
}
.cat-card img:hover { transform: scale(1.06); border-color: var(--amber); }
.cat-card span {
  display: block; margin-top: var(--space-sm);
  font-size: var(--text-sm); color: var(--cream-subtle); font-weight: 500;
}
.categories-note {
  text-align: center; margin-top: var(--space-xl);
  font-size: var(--text-sm); color: var(--cream-muted);
}

/* ===== BUSINESS SHOWCASE ===== */
.biz-section { padding: var(--section-pad) 0; background: var(--cream); }
.biz-cases {
  display: grid; gap: var(--space-2xl);
}
/* Featured case: full-width horizontal layout */
.biz-case-featured {
  display: grid; grid-template-columns: auto 1fr;
  gap: var(--space-2xl); align-items: center;
}
.biz-case-featured-img {
  width: 240px; height: 240px;
  background: var(--coral-pale); border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.biz-case-featured-img img {
  width: 200px; height: 200px; object-fit: cover; border-radius: 18px;
  filter: drop-shadow(0 8px 20px oklch(0.22 0.02 250 / 0.12));
}
.biz-case-featured-info h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-xl); font-weight: 700; color: var(--ink);
  margin-bottom: 2px;
}
.biz-case-featured-info .biz-case-type {
  font-size: var(--text-xs); color: var(--muted); font-weight: 500;
  margin-bottom: var(--space-md);
}
.biz-case-featured-info p {
  font-size: var(--text-base); line-height: var(--leading-body); color: var(--body); max-width: 50ch;
}
/* Compact cases: side by side but asymmetric */
.biz-case-row {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-xl);
}
.biz-case-compact {
  display: flex; gap: var(--space-lg); align-items: center;
  background: var(--surface); border-radius: var(--radius-md);
  padding: var(--space-lg); border: 1px solid var(--stroke);
  transition: transform 0.25s, box-shadow 0.25s;
}
.biz-case-compact:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.biz-case-compact img {
  width: 88px; height: 88px; object-fit: cover; border-radius: var(--radius-md);
  flex-shrink: 0;
  filter: drop-shadow(0 4px 10px oklch(0.22 0.02 250 / 0.1));
}
.biz-case-compact h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-lg); font-weight: 700; color: var(--ink);
  margin-bottom: 2px;
}
.biz-case-compact .biz-case-type {
  font-size: var(--text-xs); color: var(--muted); font-weight: 500;
  margin-bottom: var(--space-sm);
}
.biz-case-compact p {
  font-size: var(--text-sm); line-height: var(--leading-body); color: var(--body);
}

/* ===== BRAND KIT ===== */
.kit-section { padding: var(--section-pad) 0; background: var(--surface); }
.kit-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl); align-items: start;
}
.kit-deliverables {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-base);
}
.kit-del {
  background: var(--cream); border-radius: var(--radius-md);
  border: 1px solid var(--stroke); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.kit-del-visual {
  padding: var(--space-lg); display: flex;
  align-items: center; justify-content: center;
  flex: 1;
}
.kit-del-label {
  padding: var(--space-sm) var(--space-base);
  font-size: 0.75rem; font-weight: 600; color: var(--muted);
  border-top: 1px solid var(--stroke);
  text-align: center;
}
/* Phone mockup in brand kit */
.kit-phone {
  width: 70px; border: 2px solid var(--ink-hover);
  border-radius: 10px; padding: 3px; background: var(--ink-dark);
}
.kit-phone img {
  width: 100%; border-radius: 6px; aspect-ratio: 9/16; object-fit: cover;
}
/* Business card mockup */
.kit-bizcard {
  width: 220px; background: var(--surface);
  border-radius: 8px; padding: var(--space-base);
  box-shadow: var(--shadow-md); display: flex;
  gap: var(--space-md); align-items: center;
  margin: 0 auto;
}
.kit-bizcard img {
  width: 52px; height: 52px; border-radius: 8px; object-fit: cover;
}
.kit-bizcard-text {
  font-size: 0.75rem; color: var(--ink); line-height: 1.5;
}
.kit-bizcard-text strong { display: block; font-size: 0.8rem; }
/* Color palette mockup */
.kit-palette {
  display: flex; gap: 6px;
}
.kit-swatch {
  width: 36px; height: 36px; border-radius: 8px;
  box-shadow: inset 0 0 0 1px oklch(0.22 0.02 250 / 0.08);
}
.kit-swatch-label {
  font-size: 0.55rem; color: var(--muted); text-align: center;
  margin-top: 3px;
}
/* Font sample mockup */
.kit-fonts {
  text-align: center;
}
.kit-font-sample {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.2rem; font-weight: 700; color: var(--ink);
  margin-bottom: 4px;
}
.kit-font-name { font-size: 0.6rem; color: var(--muted); }
.kit-font-body {
  font-size: 0.75rem; color: var(--body); margin-top: var(--space-sm);
}
.kit-font-body-name { font-size: 0.6rem; color: var(--muted); }
/* Guidelines mockup */
.kit-guidelines-mock {
  width: 130px; background: var(--surface);
  border-radius: 6px; padding: var(--space-sm);
  box-shadow: var(--shadow-sm); border: 1px solid var(--stroke);
}
.kit-guide-row {
  display: flex; gap: var(--space-sm); align-items: center;
  margin-bottom: var(--space-xs);
}
.kit-guide-check { color: var(--sage); font-size: 0.75rem; }
.kit-guide-x { color: var(--coral); font-size: 0.75rem; }
.kit-guide-text { font-size: 0.55rem; color: var(--body); }
.kit-del--full { grid-column: 1 / -1; }
.kit-del-visual--row { justify-content: center; gap: var(--space-xl); }
.kit-size-preview { display: flex; gap: var(--space-sm); align-items: center; }
.kit-size-lg { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; }
.kit-size-md { width: 40px; height: 40px; border-radius: var(--radius-sm); object-fit: cover; }
.kit-size-sm { width: 24px; height: 24px; border-radius: 5px; object-fit: cover; }
.kit-guide-title {
  font-size: 0.6rem; font-weight: 700; color: var(--ink);
  margin-bottom: var(--space-xs);
}

.kit-text h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-2xl); font-weight: 800; color: var(--ink);
  margin-bottom: var(--space-base); line-height: 1.2;
}
.kit-list { list-style: none; }
.kit-list li {
  padding: var(--space-md) 0; display: flex; align-items: flex-start;
  gap: var(--space-md); font-size: var(--text-base);
}
.kit-list li::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-pale); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235a9e7c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.kit-license {
  display: flex; align-items: center; gap: var(--space-md);
  margin-top: var(--space-xl); padding: var(--space-lg);
  background: var(--amber-pale); border-radius: 12px;
  border: 1px solid var(--amber-border);
}
.kit-license svg { flex-shrink: 0; }
.kit-cta { display: inline-block; margin-top: var(--space-lg); }
.kit-license p { font-size: var(--text-sm); color: var(--ink); line-height: var(--leading-body); }
.kit-license strong { font-weight: 700; }

/* ===== MASCOT GALLERY (replaces testimonials) ===== */
.gallery-section { padding: var(--section-pad) 0; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}
.gallery-grid img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  transition: transform 0.3s;
}
.gallery-grid img:hover { transform: scale(1.05); }
.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(7),
.gallery-grid img:nth-child(12) { transform: translateY(-8px); }
.gallery-grid img:nth-child(2):hover,
.gallery-grid img:nth-child(7):hover,
.gallery-grid img:nth-child(12):hover { transform: translateY(-8px) scale(1.05); }
.gallery-grid img:nth-child(4),
.gallery-grid img:nth-child(9),
.gallery-grid img:nth-child(14) { transform: translateY(6px); }
.gallery-grid img:nth-child(4):hover,
.gallery-grid img:nth-child(9):hover,
.gallery-grid img:nth-child(14):hover { transform: translateY(6px) scale(1.05); }

/* ===== COMPARISON TABLE ===== */
.compare-section { padding: var(--section-pad) 0; background: var(--surface); }
.compare-wrap { max-width: 700px; margin: 0 auto; overflow-x: auto; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0; font-size: var(--text-sm);
}
.compare-table th, .compare-table td {
  padding: var(--space-md) var(--space-base); text-align: center;
  border-bottom: 1px solid var(--stroke);
  font-size: var(--text-base); font-weight: 400; color: var(--ink);
}
.compare-table thead th {
  font-weight: 600; font-size: var(--text-base);
  padding-bottom: var(--space-base);
}
.compare-table tbody td:first-child {
  text-align: left; font-weight: 500;
}
/* Highlight mascot column */
.compare-table tbody td:nth-child(2) {
  background: var(--amber-highlight);
}
.compare-table thead th:nth-child(2) {
  color: var(--amber-dark);
  background: var(--amber-highlight);
  border-radius: 10px 10px 0 0;
}
.compare-table tbody tr:last-child td:nth-child(2) {
  border-radius: 0 0 10px 10px;
}
.compare-table .check {
  color: var(--sage);
}
.compare-table .cross {
  color: var(--coral);
}

/* ===== EMAIL CAPTURE ===== */
.email-section { padding: var(--space-3xl) 0; background: var(--amber-pale); }
.email-inner { text-align: center; max-width: 540px; margin: 0 auto; }
.email-inner h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-xl); font-weight: 800; color: var(--ink); margin-bottom: var(--space-sm);
}
.email-sub {
  font-size: var(--text-base); color: var(--body); margin-bottom: var(--space-lg); line-height: var(--leading-body);
}
.email-form { display: flex; gap: var(--space-md); flex-wrap: wrap; justify-content: center; }
.email-form input[type="email"],
.email-form input[type="text"] {
  flex: 1; min-width: 200px; padding: var(--space-md) var(--space-base);
  border: 1px solid var(--stroke); border-radius: 8px;
  font-size: var(--text-base); font-family: inherit;
  background: var(--surface); transition: border-color 0.2s;
}
.email-form input:focus-visible { border-color: var(--amber); outline: none; }
.email-form button {
  padding: var(--space-md) var(--space-lg);
  background: var(--amber); color: var(--ink); border: none;
  border-radius: 8px; font-size: var(--text-base); font-weight: 700;
  font-family: inherit; cursor: pointer; transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.email-form button:hover { background: var(--amber-dark); transform: translateY(-1px); }
.email-fine { font-size: var(--text-xs); color: var(--muted); margin-top: var(--space-md); }

/* ===== PRICING ===== */
.pricing-section { padding: var(--section-pad) 0; background: var(--cream); }
.pricing-head { text-align: center; margin-bottom: var(--space-xl); }
.pricing-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-3xl); font-weight: 800; color: var(--ink);
  margin-bottom: var(--space-sm);
}
.pricing-head p { font-size: var(--text-base); color: var(--muted); max-width: 480px; margin: 0 auto; }
.fiverr-bar {
  text-align: center; padding: var(--space-lg);
  background: var(--amber-pale); border-radius: var(--radius-md);
  font-size: var(--text-base); color: var(--ink);
  max-width: 700px; margin: 0 auto var(--space-xl);
}
.fiverr-bar strong { font-weight: 700; }
.fiverr-bar s { color: var(--coral); text-decoration: line-through; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg); align-items: stretch;
  max-width: 960px; margin: 0 auto;
}
.pr-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  border: 2px solid var(--stroke); position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.pr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pr-card.pop {
  border-color: var(--amber); border-width: 3px;
}
.pr-card.pop:hover { box-shadow: var(--shadow-xl); }
/* Popular ribbon */
.pr-ribbon {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: var(--ink);
  padding: 5px 20px; border-radius: 0 0 10px 10px;
  font-size: var(--text-xs); font-weight: 700;
  letter-spacing: 0.3px;
}
.pr-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-xl); font-weight: 700; color: var(--ink);
}
.pr-price { margin: var(--space-md) 0 4px; }
.pr-price big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-3xl); font-weight: 800; color: var(--ink);
}
.pr-price small { color: var(--muted); font-size: var(--text-base); }
.pr-desc { font-size: var(--text-sm); margin-bottom: var(--space-lg); color: var(--body); }
.pr-btn {
  display: block; text-align: center; padding: var(--space-md);
  border-radius: 10px; font-weight: 700; font-size: var(--text-sm);
  transition: background 0.2s, transform 0.2s;
}
.pr-btn:hover { transform: translateY(-1px); }
.pr-btn-fill { background: var(--amber); color: var(--ink); }
.pr-btn-fill:hover { background: var(--amber-dark); }
.pr-btn-out { border: 2px solid var(--stroke); color: var(--ink); }
.pr-btn-out:hover { border-color: var(--amber); color: var(--amber-dark); }
.pr-features { list-style: none; margin-top: var(--space-lg); }
.pr-features li {
  padding: var(--space-sm) 0; font-size: var(--text-sm); color: var(--body);
  display: flex; align-items: center; gap: var(--space-sm);
}
.pr-features li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%;
  background: var(--sage-pale); flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235a9e7c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.pr-card-bottom {
  margin-top: auto; padding-top: var(--space-xl);
}
.pr-guarantee {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: var(--space-md) var(--space-md);
  background: var(--sage-pale); border-radius: 8px;
}
.pr-btn-wrap { margin-top: var(--space-md); }
.pr-guarantee svg { flex-shrink: 0; }
.pr-guarantee span { font-size: var(--text-xs); font-weight: 600; color: var(--sage); }
.billing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-md); margin-top: var(--space-lg);
}
.toggle-label {
  font-size: var(--text-sm); font-weight: 500; color: var(--muted);
  transition: color 0.2s, font-weight 0.2s;
}
.toggle-label.active { font-weight: 600; color: var(--ink); }
.billing-switch {
  width: 52px; height: 28px; border-radius: 14px;
  background: var(--amber); border: none; cursor: pointer;
  position: relative; transition: background 0.2s;
}
.billing-dot {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--surface); transition: left 0.2s;
  box-shadow: var(--shadow-sm);
}
.toggle-badge {
  font-size: var(--text-xs); color: var(--sage); font-weight: 700;
}
.pr-price.hidden { display: none; }
.pr-prev-price {
  display: none; align-items: baseline; gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-xs);
}
.pr-prev-price.visible { display: flex; }
.pr-prev-price .pr-was {
  position: relative; display: inline-block;
  font-size: var(--text-3xl); font-weight: 800; color: var(--muted);
  font-family: 'Bricolage Grotesque', sans-serif;
}
.pr-prev-price .pr-was::after {
  content: ''; position: absolute;
  left: -6px; right: -6px; top: 50%; height: 3px;
  background: var(--coral); transform: rotate(-12deg);
  border-radius: 2px;
}
.pr-prev-price .pr-now {
  font-size: var(--text-3xl); font-weight: 800; color: var(--ink);
  font-family: 'Bricolage Grotesque', sans-serif;
}
.pr-prev-price .pr-now small {
  font-size: var(--text-base); font-weight: 400; color: var(--muted);
}
.billing-dot.active { left: 27px; }
.pr-features li.pr-sub-only { display: none; }
.pr-features li.pr-sub-only.visible { display: flex; }
.pr-ribbon--muted {
  background: var(--sage-pale); color: var(--sage);
}

/* ===== FAQ ===== */
.faq-section { padding: var(--section-pad) 0; background: var(--surface); }
.faq-list { max-width: 660px; margin: var(--space-2xl) auto 0; }
details { border-bottom: 1px solid var(--stroke); }
summary::-webkit-details-marker { display: none; }
summary {
  padding: var(--space-lg) 0; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-base);
}
summary::after {
  content: '+'; font-size: var(--text-xl); color: var(--muted);
  transition: transform 0.2s;
}
details[open] summary::after { transform: rotate(45deg); }
details p { padding: 0 0 var(--space-lg); line-height: var(--leading-body); max-width: 65ch; }

/* ===== FINAL CTA — Marquee ===== */
.final-section {
  padding: var(--section-pad) 0 0;
  background: var(--ink); text-align: center;
  position: relative; overflow: hidden;
}
.final-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-3xl); font-weight: 800;
  color: var(--cream); margin-bottom: var(--space-md);
}
.final-section > .wrap > p {
  color: var(--cream-muted); max-width: 420px;
  margin: 0 auto var(--space-xl); font-size: var(--text-base);
}
.final-section .btn-amber { background: var(--amber); color: var(--ink); }
.final-section .btn-amber:hover { background: var(--amber-dark); transform: translateY(-1px); }

/* Marquee */
.marquee-wrap {
  margin-top: var(--space-2xl);
  overflow: hidden; width: 100%;
  padding: var(--space-lg) 0;
}
.marquee-track {
  display: flex; gap: var(--space-base);
  animation: marquee-scroll 60s linear infinite;
  width: max-content;
}
.marquee-track img {
  width: 90px; height: 90px; border-radius: var(--radius-md);
  object-fit: cover; flex-shrink: 0;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-xl);
}
.login-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 900px; width: 100%;
  gap: var(--space-3xl);
  align-items: center;
}
.login-hero {
  text-align: center;
  padding: var(--space-2xl);
}
.login-mascot-placeholder {
  width: 200px; height: 200px; margin: 0 auto var(--space-xl);
  background: var(--amber-pale);
  border-radius: var(--radius-2xl);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 2px dashed var(--amber);
}
.login-mascot-emoji {
  font-size: 4rem; line-height: 1;
  margin-bottom: var(--space-sm);
}
.login-mascot-note {
  font-size: var(--text-xs); color: var(--muted);
  font-weight: 500; line-height: var(--leading-tight);
}
.login-tagline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-2xl); font-weight: 800;
  color: var(--ink); line-height: 1.2; margin: 0;
}
.login-card {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}
.login-card .logo {
  display: block; margin-bottom: var(--space-xl);
}
.login-card h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: var(--text-2xl); font-weight: 800;
  color: var(--ink); margin-bottom: var(--space-sm);
  line-height: 1.2;
}
.login-sub {
  font-size: var(--text-sm); color: var(--muted);
  margin-bottom: var(--space-xl); line-height: var(--leading-body);
}
.login-buttons {
  display: flex; flex-direction: column; gap: var(--space-md);
}
.login-btn {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-sm); padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-sm); font-weight: 600;
  font-size: var(--text-sm); font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.login-btn svg { flex-shrink: 0; }
.login-btn-google {
  background: var(--surface); color: var(--ink);
  border: 2px solid var(--stroke);
}
.login-btn-google:hover {
  border-color: var(--ink); transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.login-btn-google:focus-visible {
  border-color: var(--ink); box-shadow: var(--shadow-md);
}
.login-coming-soon {
  font-size: var(--text-xs); color: var(--muted); text-align: center;
  margin-top: var(--space-sm);
}
.login-terms {
  font-size: var(--text-xs); color: var(--muted);
  margin-top: var(--space-xl); text-align: center;
  line-height: var(--leading-body);
}
.login-terms a { color: var(--ink); font-weight: 500; text-decoration: underline; }
.login-terms a:hover { color: var(--amber-dark); }
.login-new {
  text-align: center; margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--stroke);
  font-size: var(--text-sm); color: var(--muted);
}
.login-new-link {
  font-weight: 700; color: var(--amber-dark);
}
.login-new-link:hover { color: var(--ink); }

@media(max-width: 768px) {
  .login-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .login-hero { display: none; }
  .login-page { padding: var(--space-lg); }
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  padding: var(--space-xl) 0; text-align: center;
  font-size: var(--text-xs); color: var(--cream-muted);
  border-top: 1px solid oklch(1 0 0 / 0.06);
}
footer p + p { margin-top: var(--space-sm); }
footer a { color: var(--amber); }
.footer-legal { font-size: var(--text-xs); color: var(--cream-muted); }

/* ===== STICKY BOTTOM (mobile) ===== */
.sticky-bottom {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); padding: var(--space-md) var(--space-lg);
  display: flex; justify-content: space-between; align-items: center;
  z-index: 99; transform: translateY(100%); transition: transform 0.3s ease;
  box-shadow: 0 -2px 12px oklch(0.22 0.02 250 / 0.15);
}
.sticky-bottom.visible { transform: translateY(0); }
.sticky-bottom .sticky-price { color: var(--cream); font-size: var(--text-sm); font-weight: 500; }
.sticky-bottom .sticky-btn {
  display: inline-block; padding: var(--space-md) var(--space-lg);
  background: var(--amber); color: var(--ink);
  border-radius: 8px; font-weight: 700; font-size: var(--text-sm);
  text-decoration: none; transition: background 0.2s; white-space: nowrap;
}
.sticky-bottom .sticky-btn:hover { background: var(--amber-dark); }
@media(min-width: 901px) { .sticky-bottom { display: none !important; } }

/* ===== RESPONSIVE ===== */
@media(max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .hero-layout { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin: 0 auto var(--space-xl); }
  .hero-gallery { margin-top: var(--space-lg); }
  .value-showcase { grid-template-columns: repeat(3, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .biz-case-featured { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .biz-case-featured-info p { margin: 0 auto; }
  .biz-case-row { grid-template-columns: 1fr; }
  .biz-case-compact { flex-direction: row; }
  .kit-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .email-form { flex-direction: column; align-items: stretch; }
  .email-form input[type="email"],
  .email-form input[type="text"],
  .email-form button { min-width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}
@media(max-width: 768px) {
  .hero-gallery { grid-template-columns: repeat(2, 1fr); }
  .hero-gallery .hg-item:nth-child(5),
  .hero-gallery .hg-item:nth-child(6) { display: none; }
  .value-showcase { grid-template-columns: repeat(2, 1fr); }
  .value-showcase img:nth-child(n+5) { display: none; }
  .styles-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); max-width: 320px; }
  .style-card img { width: 120px; height: 120px; }
  .cat-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); max-width: 320px; }
  .cat-card img { width: 120px; height: 120px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img:nth-child(n+9) { display: none; }
  .compare-table { font-size: 0.76rem; }
  .compare-table th, .compare-table td { padding: var(--space-sm) 6px; }
  .kit-deliverables { grid-template-columns: 1fr; }
  .marquee-track img { width: 70px; height: 70px; }
}
@media(prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
  .hero-gallery .hg-item,
  .value-showcase img,
  .gallery-grid img,
  .style-card img,
  .cat-card img,
  .pr-card,
  .btn-cta,
  .pr-btn { transition: none !important; }
  .hero-gallery .hg-item:hover,
  .value-showcase img:hover,
  .gallery-grid img:hover,
  .style-card img:hover,
  .cat-card img:hover,
  .pr-card:hover { transform: none !important; }
}
