/* ════════════════════════════════════════════════════
   SUTEKINA WORKS — BOLD REDESIGN
   Palette: Near-black bg · Electric violet · Hot coral
            Acid yellow · Mint · White
   ════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

:root {
  /* Core palette */
  --bg:        #0d0e14;
  --bg-2:      #13141d;
  --bg-3:      #1a1c28;
  --surface:   #ffffff;
  --ink:       #0d0e14;
  --ink-soft:  #2a2c3a;
  --muted:     #7a7e94;
  --line:      rgba(255,255,255,0.08);
  --line-dark: rgba(255,255,255,0.14);

  /* Accent colours */
  --violet:    #7c3aed;
  --violet-2:  #9b5cf6;
  --violet-soft: rgba(124,58,237,0.14);
  --coral:     #ff4d6d;
  --coral-2:   #ff6b85;
  --coral-soft: rgba(255,77,109,0.14);
  --yellow:    #ffd60a;
  --yellow-soft: rgba(255,214,10,0.14);
  --mint:      #00d4aa;
  --mint-soft: rgba(0,212,170,0.14);
  --cyan:      #00b4d8;

  /* Light-mode overrides (used in white sections) */
  --lm-ink:    #0d0e14;
  --lm-muted:  #5a5e72;
  --lm-line:   #e2e4ed;
  --lm-paper:  #f4f5fa;

  --header-height: 72px;
  --content-width: 1180px;
  --radius: 8px;

  font-family: Inter, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: #fff;
  line-height: 1.7;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

svg { width: 18px; height: 18px; stroke-width: 1.8; }

h1, h2, h3, p, ul, ol, figure { margin-top: 0; }
h1, h2, h3, strong { font-weight: 900; }

/* ─── HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5vw;
  border-bottom: 1px solid var(--line);
  background: rgba(13,14,20,0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  flex: 0 0 40px;
  border-radius: 6px;
  background: var(--violet);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-size: 14px; color: #fff; }
.brand-copy small { margin-top: 3px; color: var(--muted); font-size: 10px; }

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms;
}
.site-nav a:hover { color: #fff; }

.site-nav .nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 40px;
  background: var(--coral);
  color: #fff;
  font-weight: 800;
  transition: background 160ms, transform 120ms;
}
.site-nav .nav-cta:hover { background: var(--coral-2); transform: translateY(-1px); }

.icon-button {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle { display: none; }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 680px;
  height: calc(100svh - var(--header-height));
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 60px max(5vw, calc((100vw - var(--content-width)) / 2));
  background: var(--bg);
}

/* Gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(124,58,237,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 20%, rgba(0,212,170,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 60% 80%, rgba(255,77,109,0.14) 0%, transparent 60%);
  pointer-events: none;
}

.hero-accent { display: none; } /* replaced by ::before */

.hero-model {
  position: absolute;
  z-index: 1;
  right: max(0vw, calc((100vw - 1340px) / 2));
  bottom: -2%;
  width: min(48vw, 620px);
  height: 108%;
  margin: 0;
  pointer-events: none;
}

.hero-model img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 40px rgba(124,58,237,0.4)) drop-shadow(0 24px 32px rgba(0,0,0,0.5));
  animation: hero-rise 900ms cubic-bezier(0.22,1,0.36,1) both;
}

.hero-detail {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  background: rgba(13,14,20,0.7);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(124,58,237,0.3);
  pointer-events: none;
  animation: detail-in 700ms 300ms cubic-bezier(0.22,1,0.36,1) both;
}

.hero-detail img { width: 100%; height: 100%; object-fit: contain; }

.hero-detail span {
  position: absolute;
  right: 6px; bottom: 5px; left: 6px;
  padding: 3px 5px;
  background: var(--violet);
  color: #fff;
  font-size: 7px;
  font-weight: 850;
  text-align: center;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.hero-detail-face {
  top: 10%;
  right: max(2vw, calc((100vw - 1340px) / 2));
  width: 160px; height: 186px;
}
.hero-detail-face img { transform: scale(4); transform-origin: 50% 14%; }

.hero-detail-costume {
  right: min(32vw, 445px);
  bottom: 8%;
  width: 136px; height: 162px;
  animation-delay: 400ms;
}
.hero-detail-costume img { transform: scale(3.6); transform-origin: 50% 58%; }

.hero-format {
  position: absolute;
  z-index: 3;
  right: max(3vw, calc((100vw - 1280px) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: rgba(255,255,255,0.5);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
}
.hero-format span {
  padding: 4px 8px;
  background: var(--violet);
  color: #fff;
  border-radius: 3px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(600px, 52%);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-status, .estimate-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
}

.hero-status strong {
  margin-left: 3px;
  padding-left: 11px;
  border-left: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 9px;
}

.status-dot {
  width: 8px; height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(0,212,170,0.2);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 4px rgba(0,212,170,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(0,212,170,0.06); }
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 62px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero h1 span { display: block; white-space: nowrap; }

/* Gradient text on first span */
.hero h1 span:first-child {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-promise {
  max-width: 540px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.9;
}

.hero-actions { display: flex; align-items: center; gap: 12px; }

.hero-assurance {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 16px 0 0;
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
}
.hero-assurance span { color: rgba(255,255,255,0.4); font-weight: 600; }
.hero-assurance svg { width: 14px; height: 14px; }

.hero-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.hero-scope li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  font-weight: 700;
}
.hero-scope svg { color: var(--violet-2); width: 14px; height: 14px; }

/* ─── BUTTONS ─────────────────────────────────────── */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms, transform 120ms, box-shadow 160ms;
}
.button:active { transform: translateY(1px); }

.button-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,77,109,0.4);
}
.button-primary:hover {
  background: var(--coral-2);
  box-shadow: 0 6px 28px rgba(255,77,109,0.55);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  backdrop-filter: blur(4px);
}
.button-secondary:hover {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}

/* ─── ROUTE BAND ──────────────────────────────────── */
.route-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.route-band > a {
  min-height: 110px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 16px;
  padding: 20px max(5vw, calc((100vw - var(--content-width)) / 2));
  text-decoration: none;
  transition: opacity 160ms;
}
.route-band > a:hover { opacity: 0.85; }
.route-band > a:hover svg { transform: translateX(5px); }
.route-band svg { transition: transform 160ms; }

.route-band > a:first-child {
  padding-right: 42px;
  background: linear-gradient(135deg, var(--violet) 0%, #5b21b6 100%);
  color: #fff;
}
.route-band > a:last-child {
  padding-left: 42px;
  background: linear-gradient(135deg, var(--coral) 0%, #c9184a 100%);
  color: #fff;
}

.route-number { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 800; }
.route-band a > span:nth-child(2) { display: grid; line-height: 1.3; }
.route-band small { margin-bottom: 4px; opacity: 0.6; font-size: 9px; font-weight: 800; letter-spacing: 0.1em; }
.route-band strong { font-size: 16px; }

/* ─── PROOF BAND ──────────────────────────────────── */
.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.proof-band > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
  border-right: 1px solid var(--line);
}
.proof-band > div:last-child { border-right: 0; }

.proof-band strong {
  margin-bottom: 4px;
  font-size: 28px;
  line-height: 1.1;
  background: linear-gradient(90deg, var(--yellow), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-band span { color: rgba(255,255,255,0.45); font-size: 11px; }

/* ─── SECTION WRAPPER ─────────────────────────────── */
.section {
  padding: 100px max(5vw, calc((100vw - var(--content-width)) / 2));
}

/* Alternating section backgrounds */
.estimate-guide { background: var(--bg-2); }
.audience-section { background: var(--bg); }
.service-section { background: var(--bg-3); }
.works { background: var(--bg-2); }
.plans { background: var(--bg); }
.usecase-band { background: var(--bg-3); }
.process { background: var(--bg-2); }
.faq { background: var(--bg); }

.section-heading { width: min(780px, 100%); margin-bottom: 48px; }

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 40px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-heading > p:last-child,
.split-heading > p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
}

.split-heading, .with-action {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 52px;
}
.split-heading > div, .with-action > div { max-width: 720px; }
.split-heading > p { max-width: 390px; }

/* ─── ESTIMATE TABS ───────────────────────────────── */
.estimate-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  border: 1px solid var(--line-dark);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--bg-3);
}

.estimate-tab {
  min-height: 84px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 10px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms, color 160ms;
}
.estimate-tab svg { width: 20px; height: 20px; }
.estimate-tab:hover { background: rgba(255,255,255,0.05); color: #fff; }

.estimate-tab.is-active {
  background: var(--violet);
  color: #fff;
  position: relative;
}
.estimate-tab.is-active svg { color: var(--yellow); }

.estimate-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1.32fr);
  border: 1px solid var(--line-dark);
  border-top: 0;
  background: var(--bg-3);
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  animation: panel-in 240ms ease-out both;
}
.estimate-panel[hidden] { display: none; }

.estimate-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  margin: 0;
  border-right: 1px solid var(--line);
}
.estimate-visual img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 320ms ease;
}
.estimate-panel:hover .estimate-visual img { transform: scale(1.04); }

.estimate-visual figcaption {
  position: absolute;
  bottom: 18px; left: 18px;
  padding: 5px 10px;
  background: var(--violet);
  color: #fff;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
  border-radius: 3px;
}

.estimate-visual.warm   { background: #1e1018; }
.estimate-visual.blue   { background: #0e1520; }
.estimate-visual.violet { background: #130e1e; }
.estimate-visual.mint   { background: #0a1a18; }
.estimate-visual.sand   { background: #1a160e; }

.estimate-summary { align-self: center; padding: 52px 6vw; }
.estimate-tag { margin-bottom: 14px; }

.estimate-summary h3 {
  max-width: 640px;
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.38;
  color: #fff;
}

.estimate-summary > p:not(.estimate-tag) {
  max-width: 680px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}

.estimate-price {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 2px 10px;
  margin-bottom: 22px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.estimate-price > span, .estimate-price > small {
  color: rgba(255,255,255,0.4);
  font-size: 9px;
  font-weight: 750;
}
.estimate-price strong {
  grid-row: span 2;
  font-size: 38px;
  line-height: 1.1;
  color: var(--yellow);
}

.estimate-summary ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  margin: 0 0 26px;
  padding: 0;
  background: var(--line);
  list-style: none;
  border-radius: 4px;
  overflow: hidden;
}
.estimate-summary li {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 10px 12px 10px 22px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 750;
}
.estimate-summary li::before {
  width: 5px; height: 5px;
  margin-right: 9px;
  flex: 0 0 5px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}

.estimate-actions { display: flex; align-items: center; gap: 18px; }

/* ─── SEGMENT CONTROL ─────────────────────────────── */
.segment-control {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line-dark);
  background: var(--bg-3);
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}

.segment-button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms, color 160ms;
}
.segment-button:last-child { border-right: 0; }
.segment-button:hover { background: rgba(255,255,255,0.05); color: #fff; }
.segment-button.is-active { background: var(--violet); color: #fff; }

/* ─── AUDIENCE PANELS ─────────────────────────────── */
.audience-panel {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(330px, 0.68fr);
  border: 1px solid var(--line-dark);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.audience-panel[hidden] { display: none; }

.creator-panel { background: linear-gradient(135deg, #130e1e 0%, #1a1228 100%); }
.business-panel { background: linear-gradient(135deg, #0a1a18 0%, #0e1f1c 100%); }

.audience-copy { align-self: center; padding: 56px 6vw; }

.panel-label {
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}
.business-panel .panel-label { color: var(--mint); }

.audience-copy h3 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.32;
  color: #fff;
}

.audience-copy > p:not(.panel-label) {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.need-list {
  display: grid;
  gap: 1px;
  margin-bottom: 32px;
  background: var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.need-list > div {
  min-height: 68px;
  display: grid;
  grid-template-columns: 28px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  transition: background 160ms;
}
.need-list > div:hover { background: rgba(255,255,255,0.08); }
.need-list svg { color: var(--coral); width: 17px; height: 17px; }
.business-panel .need-list svg { color: var(--mint); }
.need-list span { display: grid; color: rgba(255,255,255,0.45); font-size: 11px; }
.need-list strong { color: #fff; font-size: 13px; }

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms, gap 160ms;
}
.text-button:hover { color: var(--violet-2); gap: 12px; }

.audience-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  margin: 0;
}
.audience-image img {
  position: absolute;
  bottom: -10%; left: 50%;
  width: 100%; height: 110%;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 0 30px rgba(124,58,237,0.3));
  transition: transform 320ms ease;
}
.audience-panel:hover .audience-image img { transform: translateX(-50%) scale(1.025); }
.business-image img { bottom: -3%; height: 98%; }

/* ─── DELIVERABLES ────────────────────────────────── */
.service-section { background: var(--bg-3); }

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.deliverable-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.deliverable-card:hover {
  border-color: var(--violet);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.2);
}

.deliverable-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  margin-bottom: 36px;
  border-radius: 8px;
}
.deliverable-icon.coral  { background: var(--coral-soft);  color: var(--coral); }
.deliverable-icon.cyan   { background: rgba(0,180,216,0.14); color: var(--cyan); }
.deliverable-icon.yellow { background: var(--yellow-soft); color: var(--yellow); }
.deliverable-icon.green  { background: var(--mint-soft);   color: var(--mint); }

.card-index { margin-bottom: 7px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: 0.1em; }
.deliverable-card h3 { margin-bottom: 10px; font-size: 20px; color: #fff; }
.deliverable-card p:last-child { margin-bottom: 0; color: rgba(255,255,255,0.45); font-size: 12px; }

/* ─── WORKS ───────────────────────────────────────── */
.works-toolbar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.filter-button {
  min-height: 38px;
  padding: 7px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 40px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
  transition: background 140ms, border-color 140ms, color 140ms;
}
.filter-button:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.filter-button.is-active {
  border-color: var(--violet);
  background: var(--violet);
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.work-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.work-card:hover {
  border-color: var(--violet-2);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(124,58,237,0.25);
}
.work-card[hidden] { display: none; }

.work-media { aspect-ratio: 3/4; overflow: hidden; }
.work-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 280ms ease;
}
.work-card:hover .work-media img { transform: scale(1.05); }

.work-media.warm   { background: #1e1018; }
.work-media.cool   { background: #0e1520; }
.work-media.pink   { background: #1e0e18; }
.work-media.blue   { background: #0e1520; }
.work-media.mint   { background: #0a1a18; }
.work-media.gray   { background: #141418; }
.work-media.violet { background: #130e1e; }
.work-media.sand   { background: #1a160e; }

.work-caption { padding: 16px; border-top: 1px solid var(--line); }
.work-caption span { display: block; margin-bottom: 5px; color: var(--violet-2); font-size: 9px; font-weight: 850; letter-spacing: 0.1em; }
.work-caption h3 { margin: 0; font-size: 13px; line-height: 1.45; color: #fff; }

/* ─── PLANS ───────────────────────────────────────── */
.plans-segment { margin-bottom: 30px; }
.plan-panel[hidden] { display: none; }
.plan-grid { display: grid; gap: 14px; }
.three-columns { grid-template-columns: repeat(3, minmax(0,1fr)); }

.plan-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 200ms, box-shadow 200ms;
}
.plan-card:hover { border-color: rgba(255,255,255,0.2); }

.plan-card.is-featured {
  border: 2px solid var(--coral);
  background: rgba(255,77,109,0.06);
  box-shadow: 0 0 0 1px var(--coral), 0 8px 40px rgba(255,77,109,0.2);
}
.plan-card.business-featured {
  border-color: var(--mint);
  background: rgba(0,212,170,0.06);
  box-shadow: 0 0 0 1px var(--mint), 0 8px 40px rgba(0,212,170,0.2);
}

.recommend-label {
  position: absolute;
  top: -14px; left: 22px;
  padding: 5px 12px;
  border-radius: 40px;
  background: var(--coral);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.business-featured .recommend-label { background: var(--mint); color: var(--ink); }

.plan-type { margin-bottom: 8px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: 0.12em; }
.plan-card h3 { margin-bottom: 6px; font-size: 24px; color: #fff; }

.price {
  margin-bottom: 6px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--yellow);
}
.price span { margin-right: 4px; color: var(--muted); font-size: 9px; font-weight: 750; }

.plan-card > p:not(.plan-type, .price) {
  min-height: 44px;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  line-height: 1.7;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card-cta {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  transition: color 160ms;
}
.plan-card-cta:hover { color: var(--coral); }
.business-featured .plan-card-cta:hover { color: var(--mint); }
.plan-card-cta svg { transition: transform 160ms; }
.plan-card-cta:hover svg { transform: translateX(5px); }

.plan-card li {
  position: relative;
  padding-left: 16px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  line-height: 1.6;
}
.plan-card li::before {
  position: absolute;
  top: 0.65em; left: 0;
  width: 5px; height: 5px;
  background: var(--coral);
  border-radius: 50%;
  content: "";
}
.business-featured li::before { background: var(--mint); }

.special-plan {
  min-height: 116px;
  display: grid;
  grid-template-columns: 220px minmax(0,1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 14px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--violet) 0%, #5b21b6 100%);
  color: #fff;
  border-radius: var(--radius);
}
.special-plan > div { display: flex; align-items: center; gap: 12px; }
.special-plan > div > svg { width: 30px; height: 30px; color: var(--yellow); }
.special-plan > div span { display: grid; }
.special-plan small { color: rgba(255,255,255,0.55); font-size: 8px; font-weight: 850; letter-spacing: 0.1em; }
.special-plan strong { font-size: 15px; }
.special-plan p { margin: 0; color: rgba(255,255,255,0.7); font-size: 11px; }
.special-plan a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 160ms;
}
.special-plan a:hover { opacity: 0.8; }

.addon-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}
.addon-strip span {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  color: rgba(255,255,255,0.4);
  font-size: 10px;
}
.addon-strip span:last-child { border-right: 0; }
.addon-strip strong { color: #fff; font-size: 11px; }

.scope-boundary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.scope-boundary > div { min-height: 154px; padding: 26px; }
.scope-boundary > div + div { border-left: 1px solid var(--line-dark); background: rgba(255,255,255,0.02); }
.scope-title { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; color: #fff; font-size: 12px; font-weight: 850; }
.scope-title svg { color: var(--mint); }
.scope-boundary > div > p:last-child { margin-bottom: 0; color: rgba(255,255,255,0.4); font-size: 11px; }

/* ─── USECASE BAND ────────────────────────────────── */
.business-use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.business-use-grid article {
  min-height: 250px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms;
}
.business-use-grid article:hover { background: rgba(255,255,255,0.04); }
.business-use-grid article > span { display: block; margin-bottom: 46px; color: var(--muted); font-size: 10px; font-weight: 850; letter-spacing: 0.1em; }
.business-use-grid article > svg { width: 28px; height: 28px; margin-bottom: 18px; color: var(--yellow); }
.business-use-grid h3 { margin-bottom: 8px; font-size: 18px; color: #fff; }
.business-use-grid p { margin-bottom: 0; color: rgba(255,255,255,0.45); font-size: 11px; }

/* ─── PROCESS ─────────────────────────────────────── */
.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin: 0; padding: 0;
  border: 1px solid var(--line);
  list-style: none;
  border-radius: var(--radius);
  overflow: hidden;
}
.process-list li {
  min-height: 160px;
  display: grid;
  grid-template-columns: 36px minmax(0,1fr);
  gap: 12px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 160ms;
}
.process-list li:hover { background: rgba(255,255,255,0.03); }
.process-list > li > span { color: var(--coral); font-size: 10px; font-weight: 850; letter-spacing: 0.08em; }
.process-list strong { display: block; margin-bottom: 8px; font-size: 15px; color: #fff; }
.process-list p { margin-bottom: 0; color: rgba(255,255,255,0.4); font-size: 11px; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }

.faq-list summary {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
  list-style: none;
  cursor: pointer;
  transition: color 160ms, background 160ms;
}
.faq-list summary:hover { color: #fff; background: rgba(255,255,255,0.03); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary svg { flex: 0 0 18px; transition: transform 200ms; color: var(--violet-2); }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--violet-2); }
.faq-list details p { max-width: 850px; margin: 0 24px 24px; color: rgba(255,255,255,0.45); font-size: 13px; }

/* ─── CONTACT ─────────────────────────────────────── */
.contact {
  padding: 100px max(5vw, calc((100vw - var(--content-width)) / 2));
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
}

/* Glow behind contact */
.contact::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 74px;
  align-items: start;
}

.contact .eyebrow { color: var(--mint); }

.contact-copy { padding-top: 28px; }

.contact-copy h2 {
  margin-bottom: 18px;
  font-size: 36px;
  line-height: 1.35;
  color: #fff;
}

.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,0.5); font-size: 13px; }

.contact-copy ul { display: grid; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.contact-copy li { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.7); font-size: 12px; }
.contact-copy li svg { color: var(--mint); width: 16px; height: 16px; }

/* Reassurance strip */
.reassurance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.reassurance-strip > div { padding: 16px 18px; background: rgba(255,255,255,0.04); }
.reassurance-strip strong { display: block; margin-bottom: 3px; font-size: 12px; color: #fff; }
.reassurance-strip p { margin: 0; color: rgba(255,255,255,0.4); font-size: 10px; }

/* Contact form */
.contact-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--lm-ink);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.3), 0 20px 60px rgba(0,0,0,0.5);
}

.form-row.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-form label { display: grid; gap: 7px; color: var(--lm-muted); font-size: 11px; font-weight: 750; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid var(--lm-line);
  border-radius: 6px;
  outline: 0;
  background: var(--surface);
  color: var(--lm-ink);
  font-size: 13px;
  transition: border-color 160ms, box-shadow 160ms;
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.18);
}

.contact-form .button { width: 100%; min-height: 54px; font-size: 14px; border: 0; }
.form-note { margin: -4px 0 0; color: var(--lm-muted); font-size: 9px; text-align: center; }

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
  padding: 24px 3.5vw;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.site-footer > div { display: flex; align-items: center; gap: 11px; }
.site-footer > div p { display: grid; margin: 0; line-height: 1.2; }
.site-footer > div strong { font-size: 12px; color: #fff; }
.site-footer > div small, .site-footer > p { color: var(--muted); font-size: 9px; }
.site-footer > p { margin: 0; }
.site-footer > a { display: inline-flex; align-items: center; gap: 7px; font-size: 10px; font-weight: 800; text-decoration: none; color: rgba(255,255,255,0.5); transition: color 160ms; }
.site-footer > a:hover { color: #fff; }

/* ─── MOBILE CTA ──────────────────────────────────── */
.mobile-cta { display: none; }

/* ─── FOCUS ───────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes detail-in {
  from { opacity: 0; transform: translateY(16px) scale(0.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── TABLET ≤1120px ──────────────────────────────── */
@media (max-width: 1120px) {
  .site-nav { gap: 18px; }
  .hero-copy { width: 58%; }
  .hero h1 { font-size: 50px; }
  .hero-detail-costume { display: none; }
  .hero-detail-face { right: 20px; width: 130px; height: 152px; }
  .estimate-summary { padding: 42px; }
  .deliverable-grid, .gallery-grid, .business-use-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-inner { gap: 42px; }
}

/* ─── MOBILE ≤860px ───────────────────────────────── */
@media (max-width: 860px) {
  :root { --header-height: 64px; }

  .site-header { padding: 0 18px; }
  .nav-toggle { display: inline-grid; }

  .site-nav {
    position: fixed;
    top: var(--header-height); right: 0; left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 22px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(13,14,20,0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { min-height: 50px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { justify-content: center; margin-top: 12px; border-bottom: 0; }

  .hero {
    height: auto;
    min-height: calc(100svh - 64px);
    max-height: none;
    flex-direction: column;
    align-items: stretch;
    padding: 54px 24px 0;
  }
  .hero::before {
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124,58,237,0.22) 0%, transparent 70%);
  }
  .hero-copy { width: 100%; }
  .hero h1 { max-width: 690px; font-size: 46px; }
  .hero-detail, .hero-format { display: none; }
  .hero-lead { max-width: 700px; }
  .hero-model {
    position: relative; right: auto; bottom: auto;
    order: 2; width: 100%; height: 380px; margin-top: 20px;
  }
  .hero-model img { object-position: center top; }

  .route-band > a { padding-right: 24px; padding-left: 24px; }
  .route-band > a:first-child, .route-band > a:last-child { padding-right: 24px; padding-left: 24px; }

  .proof-band { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof-band > div:nth-child(2) { border-right: 0; }
  .proof-band > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .estimate-tabs { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .estimate-panel { grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); }
  .estimate-visual { min-height: 520px; }
  .estimate-summary { padding: 34px; }
  .estimate-summary h3 { font-size: 24px; }
  .estimate-summary ul { grid-template-columns: 1fr; }
  .estimate-actions { align-items: flex-start; flex-direction: column; }

  .section { padding: 76px 24px; }
  .split-heading, .with-action { align-items: flex-start; flex-direction: column; gap: 18px; }
  .split-heading > p { max-width: 720px; }

  .audience-panel { grid-template-columns: minmax(0,1fr) 300px; }
  .audience-copy { padding: 42px 36px; }
  .audience-copy h3 { font-size: 26px; }

  .three-columns { grid-template-columns: 1fr; }
  .plan-card { min-height: auto; }
  .plan-card > p:not(.plan-type, .price) { min-height: 0; }
  .special-plan { grid-template-columns: 1fr; }
  .addon-strip { grid-template-columns: 1fr; }
  .addon-strip span { border-right: 0; border-bottom: 1px solid var(--line); }
  .addon-strip span:last-child { border-bottom: 0; }
  .process-list { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-copy { padding-top: 0; }
  .reassurance-strip { grid-template-columns: 1fr; }
}

/* ─── PHONE ≤640px ────────────────────────────────── */
@media (max-width: 640px) {
  body { padding-bottom: 72px; }

  .brand-mark { width: 36px; height: 36px; flex-basis: 36px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { display: none; }

  .hero { min-height: 0; padding: 42px 18px 0; }
  .hero h1 { font-size: 36px; }
  .hero h1 span { white-space: normal; }
  .hero-lead { font-size: 14px; }
  .hero-promise { font-size: 16px; }
  .hero-status { flex-wrap: wrap; }
  .hero-assurance { align-items: flex-start; flex-wrap: wrap; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-scope { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .hero-model { height: 340px; }

  .route-band { grid-template-columns: 1fr; }
  .route-band > a { min-height: 90px; }

  .proof-band { grid-template-columns: 1fr 1fr; }
  .proof-band > div { min-height: 102px; padding: 18px; }
  .proof-band strong { font-size: 22px; }

  .section { padding: 62px 18px; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2, .contact-copy h2 { font-size: 28px; }

  .estimate-tabs { grid-template-columns: 1fr 1fr; }
  .estimate-tab { min-height: 64px; flex-direction: row; font-size: 10px; padding: 12px; }
  .estimate-tab:last-child { grid-column: 1 / -1; }
  .estimate-panel { grid-template-columns: 1fr; }
  .estimate-visual { min-height: 340px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .estimate-summary { padding: 30px 20px; }
  .estimate-summary h3 { font-size: 22px; }
  .estimate-price strong { font-size: 30px; }
  .estimate-actions { gap: 14px; }
  .estimate-actions .button { width: 100%; }

  .segment-button { min-height: 54px; padding: 9px; font-size: 11px; }
  .segment-button svg { display: none; }

  .audience-panel { grid-template-columns: 1fr; }
  .audience-copy { padding: 35px 20px; }
  .audience-copy h3 { font-size: 24px; }
  .audience-image { min-height: 340px; }
  .audience-image img { bottom: -14%; height: 115%; }
  .business-image img { bottom: -3%; height: 102%; }

  .deliverable-grid, .gallery-grid, .business-use-grid, .process-list { grid-template-columns: 1fr; }
  .deliverable-card { min-height: 230px; }
  .deliverable-icon { margin-bottom: 24px; }
  .gallery-grid { gap: 10px; }

  .work-card { display: grid; grid-template-columns: 42% 58%; }
  .work-media { aspect-ratio: 1 / 1.2; }
  .work-caption { min-height: 0; display: flex; flex-direction: column; justify-content: center; }

  .price { font-size: 24px; }
  .plan-card { min-height: 0; }
  .scope-boundary { grid-template-columns: 1fr; }
  .scope-boundary > div + div { border-top: 1px solid var(--line-dark); border-left: 0; }

  .business-use-grid article { min-height: 190px; }
  .business-use-grid article > span { margin-bottom: 24px; }
  .process-list li { min-height: 130px; }

  .faq-list summary { min-height: 68px; font-size: 12px; padding: 16px 18px; }
  .faq-list details p { margin: 0 18px 20px; }

  .contact { padding: 62px 18px; }
  .contact-form { padding: 22px 18px; }
  .form-row.two-columns { grid-template-columns: 1fr; }

  .site-footer { min-height: 170px; grid-template-columns: 1fr; gap: 14px; padding: 28px 18px; }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0; bottom: 0; left: 0;
    display: block;
    padding: 10px 14px;
    border-top: 1px solid var(--line);
    background: rgba(13,14,20,0.97);
    backdrop-filter: blur(12px);
  }
  .mobile-cta .button { width: 100%; }
}

/* ─── REDUCED MOTION ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════
   LP STORY SECTIONS — ADDED STYLES
════════════════════════════════════════ */

/* ─── HERO VIDEO BACKGROUND ──────────────────────── */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh; /* 16:9 */
  height: 100%;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0.18;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,14,20,0.92) 0%,
    rgba(13,14,20,0.6) 50%,
    rgba(13,14,20,0.85) 100%
  );
}

/* hero h1 accent span */
.hero h1 .text-accent {
  background: linear-gradient(90deg, var(--coral) 0%, var(--violet-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PAIN SECTION ────────────────────────────────── */
.pain-section { background: var(--bg); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 52px;
}

.pain-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
  transition: border-color 200ms, transform 200ms;
}
.pain-card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
}
.pain-card svg {
  width: 28px; height: 28px;
  margin-bottom: 18px;
  color: var(--coral);
}
.pain-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
}
.pain-card p {
  margin: 0;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
}

.pain-answer {
  padding: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(255,77,109,0.12) 100%);
  border: 1px solid rgba(124,58,237,0.3);
}
.pain-answer-inner { max-width: 680px; }
.pain-answer h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.4;
  color: #fff;
}
.pain-answer > .pain-answer-inner > p {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ─── VIDEO WORKS SECTION ─────────────────────────── */
.video-works-section { background: var(--bg-2); }

.video-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 0;
}

.video-tab {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--line-dark);
  border-radius: 40px;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms, border-color 160ms, color 160ms;
}
.video-tab svg { width: 16px; height: 16px; }
.video-tab:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.video-tab.is-active {
  border-color: var(--violet);
  background: var(--violet);
  color: #fff;
}

.video-panel { margin-top: 24px; animation: panel-in 240ms ease-out both; }
.video-panel[hidden] { display: none; }

.video-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.video-embed-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.video-embed-card:hover {
  border-color: var(--violet-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.2);
}

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-caption { padding: 18px; border-top: 1px solid var(--line); }
.video-tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  background: var(--violet-soft);
  color: var(--violet-2);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  border-radius: 3px;
}
.video-caption h3 {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: #fff;
}
.video-caption p {
  margin: 0;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
}

.video-embed-card.featured .video-caption h3 { font-size: 18px; }

.video-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 28px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(0,212,170,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.25);
}
.video-cta-strip p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  font-weight: 700;
}

/* ─── TABLET / MOBILE OVERRIDES FOR NEW SECTIONS ─── */
@media (max-width: 1120px) {
  .pain-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .video-embed-card.featured { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .pain-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .pain-answer { padding: 32px; }
  .pain-answer h3 { font-size: 22px; }
  .video-grid { grid-template-columns: 1fr; }
  .video-embed-card.featured { grid-column: auto; }
  .video-cta-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: 0; }
  .pain-answer { padding: 24px; }
  .pain-answer h3 { font-size: 20px; }
  .video-tabs { gap: 6px; }
  .video-tab { min-height: 40px; padding: 8px 14px; font-size: 11px; }
  .video-cta-strip { padding: 22px; }
  .video-cta-strip .button { width: 100%; }
}


/* ═══════════════════════════════════════
   AVATAR MERIT SECTION
════════════════════════════════════════ */
.avatar-merit-section {
  background: var(--bg);
}

.merit-visual {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(124, 58, 237, 0.2);
}

.merit-visual img {
  width: 100%;
  height: auto;
  display: block;
}

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

.merit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.merit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.merit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.merit-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
  stroke: #fff;
}

.merit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #fff;
}

.merit-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .merit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .merit-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   SERVICE INTRO SECTION (3サービス紹介)
════════════════════════════════════════ */
.service-intro-section {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(124,58,237,0.05) 100%);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-intro-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-intro-card:hover {
  transform: translateY(-6px);
}

.live2d-card:hover {
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.25);
  border-color: rgba(255, 105, 180, 0.35);
}

.threed-card:hover {
  box-shadow: 0 20px 60px rgba(0, 212, 170, 0.25);
  border-color: rgba(0, 212, 170, 0.35);
}

.business-card:hover {
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.35);
}

.service-intro-visual {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.service-intro-card:hover .service-intro-visual img {
  transform: scale(1.04);
}

.service-intro-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-intro-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.live2d-card .service-intro-tag { color: #ff69b4; }
.threed-card .service-intro-tag { color: var(--mint); }
.business-card .service-intro-tag { color: #d4af37; }

.service-intro-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-intro-body > p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-intro-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.service-intro-features svg {
  width: 14px;
  height: 14px;
  color: var(--mint);
  stroke: var(--mint);
  flex-shrink: 0;
}

.service-intro-price {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.25rem;
}

.service-intro-price span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 0.25rem;
}

.service-intro-price strong {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
}

.service-intro-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--coral);
  transition: gap 0.2s;
}

.service-intro-card:hover .service-intro-cta {
  gap: 0.75rem;
}

.service-intro-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

@media (max-width: 900px) {
  .service-intro-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}
