/* ============================================================
   Ceeprinto Homepage — Design System
   Scope: .cee-hp (wraps entire front-page.php body)
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
.cee-hp {
  --accent:  #FF100C;
  --ink:     #0E0E0C;
  --ink-2:   #6B6862;
  --bg:      #FAF7F2;
  --line:    #E8E3D8;
  --good:    #14784A;
  --muted:   #9A9690;
  --dark-bg: #1A1916;
  --dark-bd: #2A2926;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body:    'DM Sans', system-ui, sans-serif;
  --mono:    ui-monospace, 'SF Mono', monospace;

  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.cee-hp *, .cee-hp *::before, .cee-hp *::after { box-sizing: border-box; }
/*.cee-hp a { color: inherit; text-decoration: none; }*/
.cee-hp img { display: block; max-width: 100%; height: auto; }
.cee-hp button { cursor: pointer; font: inherit; }

/* ── Layout helpers ──────────────────────────────────────────── */
.cee-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.cee-container--wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.cee-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: -0.005em;
  transition: transform 120ms ease, opacity 120ms ease;
  white-space: nowrap;
  line-height: 1;
}
.cee-btn:hover { opacity: 0.88; }
.cee-btn:active { transform: translateY(1px); }

.cee-btn--primary  { background: var(--accent); color: #fff; border-color: var(--accent); }
.cee-btn--dark     { background: var(--ink);    color: #fff; border-color: var(--ink); }
.cee-btn--ghost    { background: transparent;   color: var(--ink); border-color: var(--ink); }
.cee-btn--light    { background: #fff;          color: var(--ink); border-color: var(--line); }

.cee-btn--sm { padding: 8px 14px; font-size: 13px; }
.cee-btn--lg { padding: 17px 26px; font-size: 15px; }

/* ── Pills / badges ──────────────────────────────────────────── */
.cee-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}
.cee-pill--accent { background: rgba(255,16,12,0.08); color: var(--accent); border-color: rgba(255,16,12,0.28); }
.cee-pill--good   { background: rgba(20,120,74,0.10); color: var(--good);   border-color: rgba(20,120,74,0.25); }

/* ── Section scaffolding ─────────────────────────────────────── */
.cee-section { padding: 80px 0; }
.cee-section--dark { background: var(--ink); color: #fff; }
.cee-section--white { background: #fff; }

.cee-section__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cee-section__heading {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.cee-section__sub {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 560px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.cee-hero { padding: 72px 0 64px; }
.cee-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.cee-hero__pills { display: flex; gap: 8px; margin-bottom: 22px; flex-wrap: wrap; }
.cee-hero__heading {
  font-family: var(--display);
  font-size: clamp(48px, 5.5vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
}
.cee-hero__body {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 22px 0 0;
  max-width: 540px;
}
.cee-hero__ctas { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.cee-hero__stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  color: var(--muted);
  font-size: 13px;
}
.cee-hero__stat-num {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}

/* Hero visual */
.cee-hero__visual { position: relative; height: 560px; }
.cee-hero__visual-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #1A1916;
}
.cee-hero__visual-bg img,
.cee-hero__visual-bg .cee-img-slot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cee-hero__card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.cee-hero__card--order { left: -28px; bottom: 32px; width: 290px; }
.cee-hero__card--margin { right: -22px; top: 28px; width: 220px; }
.cee-hero__card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cee-hero__card-live {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cee-hero__card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 4px rgba(20,120,74,0.15);
}
.cee-hero__card-amount {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}
.cee-hero__card-pct { color: var(--good); font-size: 12px; font-weight: 600; }

/* ── Trust bar ───────────────────────────────────────────────── */
.cee-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.cee-trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 26px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.cee-trust__item {
  padding-inline: 18px;
  border-right: 1px solid var(--line);
}
.cee-trust__item:first-child { padding-left: 0; }
.cee-trust__item:last-child  { border-right: none; }
.cee-trust__key {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.cee-trust__val { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── Two paths ───────────────────────────────────────────────── */
.cee-paths { padding: 84px 0 24px; }
.cee-paths__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cee-path-card {
  border-radius: 22px;
  padding: 32px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 18px;
  border: 1px solid var(--line);
  background: #fff;
}
.cee-path-card--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.cee-path-card__kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cee-path-card__heading {
  font-family: var(--display);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 12px;
}
.cee-path-card__body { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
.cee-path-card--dark .cee-path-card__body { color: #B8B4AC; }
.cee-path-card__bullets {
  list-style: none;
  padding: 0; margin: 16px 0 0;
  display: grid; gap: 8px;
}
.cee-path-card__bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.cee-path-card--dark .cee-path-card__bullets li { color: #B8B4AC; }
.cee-path-card__check {
  width: 18px; height: 18px; border-radius: 999px;
  border: 1px solid var(--line); display: grid;
  place-items: center; font-size: 11px;
  color: var(--accent); flex-shrink: 0;
}
.cee-path-card--dark .cee-path-card__check { border-color: #3A3833; }
.cee-path-card__img { border-radius: 12px; overflow: hidden; }
.cee-path-card__img .cee-img-slot { border-radius: 12px; }
.cee-path-card__img img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }

/* ── Img slot (placeholder) ──────────────────────────────────── */
.cee-img-slot {
  width: 100%;
  aspect-ratio: 4/3;
  background: #EFEAE0;
  background-image: repeating-linear-gradient(135deg, rgba(0,0,0,0.035) 0 12px, transparent 12px 24px);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #7A766E; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.06em;
  text-transform: uppercase; text-align: center;
  padding: 16px;
}
.cee-img-slot--dark {
  background: #1A1916;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 12px, transparent 12px 24px);
  color: #FAF7F2;
}
.cee-img-slot--cover { position: absolute; inset: 0; border-radius: 0; }

/* ── Headings on dark surfaces ───────────────────────────────────
   theme.css sets `h1..h6 { color: var(--ink) }`. An element rule beats
   inheritance, so headings inside these light-on-dark containers rendered
   near-black on near-black. Each container already declares `color: #fff`,
   so restoring inheritance is all that's needed — and any heading added to
   these sections later is correct automatically. */
.cee-whitelabel         :is(h1, h2, h3, h4, h5, h6),
.cee-compare            :is(h1, h2, h3, h4, h5, h6),
.cee-cta                :is(h1, h2, h3, h4, h5, h6),
.cee-path-card--dark    :is(h1, h2, h3, h4, h5, h6),
.cee-tier-card--premium :is(h1, h2, h3, h4, h5, h6) { color: inherit; }

/* ── White-label section ─────────────────────────────────────── */
.cee-whitelabel { padding: 100px 0; background: var(--ink); color: #fff; }
.cee-whitelabel__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.cee-whitelabel__sticky { position: sticky; top: 100px; }
.cee-whitelabel__heading {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 10px 0 18px;
}
.cee-whitelabel__body { color: #B8B4AC; font-size: 16px; line-height: 1.55; max-width: 440px; }
.cee-whitelabel__brand-card {
  margin-top: 32px;
  background: #1A1916;
  border: 1px solid #2A2926;
  border-radius: 18px;
  padding: 22px;
}
.cee-whitelabel__brand-label { font-family: var(--mono); font-size: 10.5px; color: #8A867E; letter-spacing: 0.08em; margin-bottom: 14px; }
.cee-whitelabel__brand-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.cee-whitelabel__brand-icon {
  width: 70px; height: 70px;
  background: var(--accent); border-radius: 14px;
  display: grid; place-items: center;
  font-family: var(--display); font-size: 26px; font-weight: 800; color: #fff;
}
.cee-whitelabel__brand-name { font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: 0.02em; }
.cee-whitelabel__brand-sub { font-size: 12px; color: #B8B4AC; margin-top: 2px; }
.cee-whitelabel__brand-details {
  border-top: 1px solid #2A2926;
  margin-top: 16px; padding-top: 14px;
  font-size: 12.5px; color: #B8B4AC; line-height: 1.5;
}
.cee-whitelabel__brand-zero { margin-top: 14px; font-family: var(--mono); font-size: 10px; color: #5A5852; letter-spacing: 0.06em; }
.cee-whitelabel__steps { display: grid; gap: 12px; }
.cee-step-card {
  background: #1A1916;
  border: 1px solid #2A2926;
  border-radius: 14px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 48px 100px 1fr;
  gap: 20px;
  align-items: center;
}
.cee-step-card__num { font-family: var(--display); font-size: 28px; font-weight: 600; color: var(--accent); letter-spacing: -0.03em; }
.cee-step-card__key { font-family: var(--mono); font-size: 11px; color: #8A867E; letter-spacing: 0.08em; text-transform: uppercase; }
.cee-step-card__title { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -0.015em; margin: 0 0 6px; }
.cee-step-card__body { font-size: 13.5px; color: #B8B4AC; margin: 0; line-height: 1.5; }

/* ── Tiers ───────────────────────────────────────────────────── */
.cee-tiers { padding: 84px 0; background: #fff; }
.cee-tiers__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.cee-tier-card {
  border-radius: 22px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #FBFAF6;
}
.cee-tier-card--premium { background: var(--ink); color: #fff; border-color: var(--ink); }
.cee-tier-card__name { font-family: var(--display); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; margin: 10px 0 4px; }
.cee-tier-card__tag { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.cee-tier-card--premium .cee-tier-card__tag { color: #8A867E; }
.cee-tier-card__price { font-family: var(--display); font-size: 18px; font-weight: 600; color: var(--accent); margin: 16px 0 8px; }
.cee-tier-card__summary { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; margin: 0 0 18px; }
.cee-tier-card--premium .cee-tier-card__summary { color: #B8B4AC; }
.cee-tier-card__bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.cee-tier-card__bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-2);
}
.cee-tier-card--premium .cee-tier-card__bullets li { color: #B8B4AC; }
.cee-tier-card__bullets li::before { content: '✓'; color: var(--accent); flex-shrink: 0; margin-top: 1px; }
.cee-tier-card__cta { margin-top: 24px; }

/* ── Mockup studio (interactive) ────────────────────────────── */
.cee-studio { padding: 80px 0; background: var(--bg); }
.cee-studio__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch; margin-top: 40px; }
.cee-studio__canvas {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.cee-studio__chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #FBFAF6;
}
.cee-studio__dots { display: flex; gap: 6px; }
.cee-studio__dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.cee-studio__chrome-title {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  /* Product names are user data and can be long — keep the chrome bar one line. */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 55%;
  padding: 0 10px;
}
.cee-studio__chrome-status { font-family: var(--mono); font-size: 11px; color: var(--good); }
.cee-studio__preview {
  background: linear-gradient(180deg, #F4F0E6, #E8E2D6);
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 32px;
  position: relative;
}
/* Silhouettes are inline SVG so --cee-garment can recolour their body paths. */
.cee-studio__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 86%;
  width: auto;
  pointer-events: none;
  display: none;
}
.cee-studio__shape.is-active { display: block; }

.cee-studio__design-label {
  position: relative;
  background: rgba(250, 247, 242, 0.72);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--ink);
  border: 1.5px dashed rgba(255,90,31,0.6);
  padding: 14px;
  border-radius: 4px;
}

.cee-studio__controls { padding: 14px; border-top: 1px solid var(--line); display: flex; gap: 10px; align-items: center; }
.cee-studio__color-dot {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.18);
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: transform 150ms, box-shadow 150ms;
}
.cee-studio__color-dot:hover { transform: scale(1.12); }
.cee-studio__color-dot.is-active {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--ink);
}
.cee-studio__color-dot:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

.cee-studio__panel {
  border-left: 1px solid var(--line);
  border-radius: 0 22px 22px 0;
  padding: 24px;
}
.cee-studio__pricing { margin-bottom: 24px; }
.cee-studio__price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.cee-studio__price {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.cee-studio__price .woocommerce-Price-amount { font-family: inherit; font-size: inherit; font-weight: inherit; }
.cee-studio__note { font-size: 13px; color: var(--ink-2); margin-top: 6px; }

.cee-studio__products { display: grid; gap: 10px; }
.cee-studio__product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 150ms, background 150ms;
}
.cee-studio__product:hover { border-color: var(--ink-2); }
.cee-studio__product.is-active {
  border-color: var(--accent);
  background: rgba(255, 16, 12, 0.05);
}
.cee-studio__product:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.cee-studio__product-name {
  font-weight: 500;
  /* Product names are user data — clamp so one long title can't blow out the panel. */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
  min-width: 0;
}
.cee-studio__product.is-active .cee-studio__product-name { font-weight: 700; }
.cee-studio__product-price { font-family: var(--mono); font-size: 12px; color: var(--muted); white-space: nowrap; }
.cee-studio__product-price .woocommerce-Price-amount { font-family: inherit; font-size: inherit; }

/* No WooCommerce products resolved — canvas goes full width. */
.cee-studio__grid--no-panel { grid-template-columns: 1fr; }

@media (prefers-reduced-motion: reduce) {
  .cee-studio__color-dot,
  .cee-studio__product { transition: none; }
  .cee-studio__color-dot:hover { transform: none; }
}

/* ── Catalog ─────────────────────────────────────────────────── */
.cee-catalog { padding: 80px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cee-catalog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.cee-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cee-product-card {
  background: #FBFAF6;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  position: relative;
  display: block;
  transition: box-shadow 200ms, transform 200ms;
  color: var(--ink);
}
.cee-product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.cee-product-card .cee-pill { position: absolute; top: 22px; right: 22px; }
.cee-product-card__img { border-radius: 8px; overflow: hidden; margin-bottom: 12px; }
.cee-product-card__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.cee-product-card__meta { display: flex; justify-content: space-between; align-items: flex-start; }
.cee-product-card__cat { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 4px; }
.cee-product-card__name { font-weight: 600; font-size: 15px; }
.cee-product-card__price-wrap { text-align: right; }
.cee-product-card__from { font-family: var(--mono); font-size: 10px; color: var(--muted); display: block; }
.cee-product-card__price { font-family: var(--display); font-weight: 600; font-size: 16px; }
.cee-product-card__price .woocommerce-Price-amount { font-family: var(--display); font-weight: 600; font-size: 16px; }
.cee-product-card__variants { font-size: 12px; color: var(--muted); margin-top: 6px; }
.cee-catalog__empty { text-align: center; color: var(--muted); padding: 60px 0; font-size: 15px; }

/* ── How it works ────────────────────────────────────────────── */
.cee-how { padding: 84px 0; }
.cee-how__grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; margin-top: 0; }
.cee-how__sticky { position: sticky; top: 100px; }
.cee-how__sticky .cee-section__heading { font-size: clamp(36px, 3.5vw, 52px); margin-bottom: 16px; }
.cee-how__sticky .cee-section__sub { font-size: 15px; }
.cee-how__steps { display: grid; gap: 18px; }
.cee-how-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  display: grid;
  grid-template-columns: 70px 1fr 280px;
  gap: 26px;
  align-items: center;
}
.cee-how-step__num { font-family: var(--display); font-size: 56px; font-weight: 600; color: var(--accent); letter-spacing: -0.04em; line-height: 1; }
.cee-how-step__title { font-family: var(--display); font-size: 24px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.cee-how-step__body { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.cee-how-step__img .cee-img-slot { aspect-ratio: 16/10; }
.cee-how-step__img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* ── Comparison ──────────────────────────────────────────────── */
.cee-compare { padding: 84px 0; background: var(--ink); color: #fff; }
.cee-compare__grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.cee-compare__intro .cee-section__heading { font-size: clamp(36px, 3.5vw, 48px); color: #fff; }
.cee-compare__intro .cee-section__sub { color: #B8B4AC; }
.cee-compare__table { width: 100%; border-collapse: collapse; }
.cee-compare__table thead th {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #8A867E; padding: 0 14px 14px;
  text-align: left;
}
.cee-compare__table thead th:last-child { text-align: center; }
.cee-compare__table thead th:nth-child(2) { text-align: center; }
.cee-compare__table tbody td {
  padding: 13px 14px;
  font-size: 13.5px;
  border-top: 1px solid #2A2926;
}
.cee-compare__table tbody td:first-child { color: #B8B4AC; }
.cee-compare__table tbody td:nth-child(2) { color: var(--accent); font-weight: 600; text-align: center; }
.cee-compare__table tbody td:last-child { color: #5A5852; text-align: center; }

/* ── WhatsApp block ──────────────────────────────────────────── */
.cee-whatsapp { padding: 84px 0; background: var(--bg); }
.cee-whatsapp__inner {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cee-whatsapp__heading { font-family: var(--display); font-size: clamp(32px, 3vw, 44px); font-weight: 600; letter-spacing: -0.03em; margin: 10px 0 16px; }
.cee-whatsapp__body { font-size: 15px; color: var(--ink-2); line-height: 1.55; margin: 0 0 24px; }
.cee-whatsapp__meta { display: flex; gap: 24px; font-size: 13px; color: var(--muted); margin-top: 20px; }
.cee-whatsapp__meta strong { color: var(--ink); display: block; font-family: var(--display); font-size: 18px; }
.cee-whatsapp__chat {
  background: #ECE5DD;
  border-radius: 18px;
  padding: 24px;
  font-size: 14px;
}
.cee-whatsapp__bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
  max-width: 85%;
  line-height: 1.45;
}
.cee-whatsapp__bubble--reply {
  background: #DCF8C6;
  border-radius: 12px 0 12px 12px;
  margin-left: auto;
}
.cee-whatsapp__bubble-meta { font-size: 11px; color: #999; margin-top: 4px; text-align: right; }

/* ── Integrations ────────────────────────────────────────────── */
.cee-integrations { padding: 80px 0; background: #fff; }
.cee-integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.cee-integration-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  background: #FBFAF6;
}
.cee-integration-card__logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cee-integration-card__mark { width: 48px; height: 48px; display: block; }
.cee-integration-card__desc { font-size: 13px; color: var(--muted); line-height: 1.4; }
.cee-integration-card__tag { margin-top: 12px; }

/* ── Testimonials ────────────────────────────────────────────── */
.cee-testimonials { padding: 84px 0; background: var(--bg); }
.cee-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.cee-testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
}
.cee-testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 18px;
  padding: 0;
  border: none;
}
.cee-testimonial-card cite {
  display: flex;
  align-items: center;
  gap: 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}
.cee-testimonial-card cite img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.cee-testimonial-card cite span { display: block; font-weight: 400; font-size: 12px; color: var(--muted); margin-top: 2px; }
.cee-testimonials__empty { text-align: center; color: var(--muted); font-size: 15px; padding: 40px 0; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.cee-faq { padding: 80px 0; background: #fff; border-top: 1px solid var(--line); }
.cee-faq__grid { display: grid; grid-template-columns: 320px 1fr; gap: 60px; align-items: start; margin-top: 0; }
.cee-faq__sticky { position: sticky; top: 100px; }
.cee-faq__items { display: grid; gap: 8px; align-content: start; }
.cee-faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #FBFAF6;
}
.cee-faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.cee-faq-item summary::-webkit-details-marker { display: none; }
.cee-faq-item summary::after { content: '+'; font-size: 20px; color: var(--muted); flex-shrink: 0; transition: transform 200ms; }
.cee-faq-item[open] summary::after { transform: rotate(45deg); }
.cee-faq-item__body {
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.cee-faq-item__body p { margin: 0; }
.cee-faq__empty { color: var(--muted); font-size: 14px; padding: 16px 0; }

/* ── CTA band ────────────────────────────────────────────────── */
.cee-cta { padding: 84px 0; background: var(--accent); color: #fff; text-align: center; }
.cee-cta__heading { font-family: var(--display); font-size: clamp(40px, 5vw, 68px); font-weight: 600; letter-spacing: -0.03em; margin: 0 0 20px; line-height: 1; }
.cee-cta__body { font-size: 18px; margin: 0 auto 32px; max-width: 520px; opacity: 0.88; }
/* wrap so the two large buttons don't force a horizontal scroll on phones */
.cee-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cee-hero__grid,
  .cee-paths__grid,
  .cee-tiers__grid,
  .cee-whitelabel__grid,
  .cee-compare__grid,
  .cee-whatsapp__inner { grid-template-columns: 1fr; }

  .cee-hero__visual { height: 400px; }
  .cee-hero__card--order,
  .cee-hero__card--margin { position: static; width: auto; margin-top: 16px; }

  .cee-catalog__grid,
  .cee-integrations__grid { grid-template-columns: repeat(2, 1fr); }

  .cee-testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .cee-trust__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 26px 20px; }
  .cee-trust__item:nth-child(3) { border-right: none; }

  .cee-how__grid,
  .cee-faq__grid { grid-template-columns: 1fr; }
  .cee-how__sticky,
  .cee-faq__sticky { position: static; }

  .cee-how-step { grid-template-columns: 56px 1fr; }
  .cee-how-step__img { display: none; }
}

@media (max-width: 768px) {
  .cee-hero { padding: 48px 0 40px; }
  .cee-hero__heading { font-size: 42px; }
  .cee-hero__stats { gap: 16px; flex-wrap: wrap; }

  .cee-trust__grid { grid-template-columns: 1fr 1fr; }
  .cee-trust__item { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 0; }
  .cee-trust__item:last-child { border-bottom: none; }

  .cee-catalog__grid { grid-template-columns: repeat(2, 1fr); }

  .cee-testimonials__grid { grid-template-columns: 1fr; }

  .cee-compare__table thead th:last-child { display: none; }
  .cee-compare__table tbody td:last-child { display: none; }

  .cee-studio__grid { grid-template-columns: 1fr; }
}
