:root {
  --accent: #111111;
  --accent-dark: #000000;
  --accent-soft: #f4f4f2;
  --accent-glow: rgba(17, 17, 17, 0.08);
  --blue: var(--accent);
  --blue-dark: var(--accent-dark);
  --blue-light: var(--accent-soft);
  --blue-glow: var(--accent-glow);
  --navy: #111111;
  --navy-soft: #333333;
  --gold: #8a8a8a;
  --text: #111111;
  --text-muted: #6b6b6b;
  --text-light: #9a9a9a;
  --bg: #fafaf9;
  --surface: #ffffff;
  --white: #ffffff;
  --border: #e8e8e6;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --font: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

[id] {
  scroll-margin-top: calc(var(--nav-h) + 16px);
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}
img { display: block; max-width: 100%; height: auto; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav--scrolled { box-shadow: var(--shadow); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.nav__logo-mark {
  background: var(--blue);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav__logo-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__menu a:hover { color: var(--blue); }

.nav__cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav__cta:hover { background: var(--blue-dark) !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: 0.3s;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}

.badge--light {
  background: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 8px var(--accent-glow);
}

.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--accent-glow);
}

.btn--ghost {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
}

.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }

.btn--full { width: 100%; margin-top: 24px; }

/* Section */
.section {
  padding: 100px 0;
}

/* Title stack: eyebrow → BIG title → lead → desc
   Main H2 must dominate; lead/desc sit clearly below */
.section__eyebrow {
  display: block;
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.4);
  line-height: 1.2;
}

.section__eyebrow--on-dark {
  color: rgba(232, 210, 160, 0.78);
}

.section__title {
  font-size: clamp(2.05rem, 4.6vw, 3rem);
  font-weight: 800;
  color: var(--navy, #111);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  max-width: min(100%, 18em);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.section__title--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, 16em);
}

/* Supporting line — clearly secondary to title */
.section__lead {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: rgba(17, 17, 17, 0.68);
  max-width: 32em;
  word-break: keep-all;
}

.section__lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__lead--on-dark {
  color: rgba(255, 255, 255, 0.74);
}

.section__subtitle {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--blue, #3a5a8c);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
  word-break: keep-all;
}

.section__desc {
  font-size: 0.95rem;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.7;
  margin: 0;
  max-width: 38em;
  word-break: keep-all;
}

.section__desc--center {
  text-align: center;
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  margin-bottom: 48px;
  max-width: 920px;
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.section__header--center .section__title,
.section__header--center .section__lead,
.section__header--center .section__desc,
.section__header--center .section__eyebrow {
  margin-left: auto;
  margin-right: auto;
}

/* Accent sits under the whole title block (after lead), not jammed under H2 */
.section__header--center .section__lead::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(196, 168, 120, 0.1), rgba(196, 168, 120, 0.9), rgba(196, 168, 120, 0.1));
}

.section__header--center .section__title {
  margin-bottom: 14px;
}

.section__header--center .section__lead {
  margin-top: 0;
  margin-bottom: 0;
}

.section__header--center .section__desc {
  margin-top: 18px;
}

.section__line {
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 20px auto 0;
  border-radius: 2px;
}

.gradient-text {
  color: var(--text);
  background: none;
  -webkit-text-fill-color: currentColor;
}

/* Hero */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 64px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.hero__intro {
  max-width: 720px;
  margin-bottom: 40px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.hero__desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

.hero__value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.value-prop {
  position: relative;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.value-prop:hover {
  border-color: #d4d4d2;
  box-shadow: var(--shadow);
}

.value-prop--highlight {
  background: var(--surface);
  border-color: var(--text);
}

.value-prop__num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.value-prop__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.value-prop__icon svg {
  width: 20px;
  height: 20px;
  color: var(--text);
}

.value-prop h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 8px;
}

.value-prop p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* About */
.section--about { background: var(--white); }

.about__intro {
  max-width: 720px;
  margin-bottom: 52px;
}

.about__intro .section__title {
  max-width: min(100%, 12em);
  font-size: clamp(2.05rem, 4.6vw, 3rem);
}

.about__intro .section__lead {
  max-width: 26em;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
}

.about__intro .section__desc {
  max-width: 40em;
  margin-top: 4px;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.about__cards .feature-card {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.about__cards .feature-card p {
  flex: 1;
}

.about__cards .card-meter-row {
  margin-top: auto;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-list span {
  padding: 6px 12px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Shared card utilities */
.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.card-chips span {
  padding: 4px 10px;
  background: rgba(0, 102, 255, 0.08);
  border: 1px solid rgba(0, 102, 255, 0.12);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue);
}

.card-chips--sm span {
  font-size: 0.65rem;
  padding: 3px 8px;
}

.card-meter {
  flex: 1;
  height: 5px;
  background: #e8ecf0;
  border-radius: 3px;
  overflow: hidden;
}

.card-meter span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #4d9fff);
  border-radius: 3px;
}

.card-meter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.card-meter-row em {
  font-style: normal;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.8rem;
}

.feature-card {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 102, 255, 0.2);
}

.feature-card--highlight {
  background: linear-gradient(145deg, var(--blue-light), #f5f9ff);
  border-color: rgba(0, 102, 255, 0.15);
}

.feature-card__deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%);
  pointer-events: none;
}

.feature-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow: 0 2px 12px var(--blue-glow);
}

.feature-card__icon svg { width: 24px; height: 24px; }

.feature-card__index {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(0, 102, 255, 0.15);
  line-height: 1;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px;
  background: transparent;
}

.stat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(145deg, #f4f6f9, var(--white));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.stat__icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 102, 255, 0.08);
  flex-shrink: 0;
}

.stat__icon svg { width: 24px; height: 24px; }

.stat__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.stat__content > span:last-child {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* Problem */
.section--problem {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.section--problem::before {
  content: 'BARRIER';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12rem;
  font-weight: 900;
  color: rgba(15, 42, 77, 0.03);
  pointer-events: none;
  white-space: nowrap;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f87171);
  opacity: 0.6;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.problem-card--accent {
  background: linear-gradient(160deg, var(--blue-light) 0%, var(--white) 60%);
  border-color: rgba(0, 102, 255, 0.15);
}

.problem-card--accent::before {
  background: linear-gradient(90deg, var(--blue), #4d9fff);
}

.problem-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.problem-card__num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.problem-card__close {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fee2e2;
  color: #ef4444;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.problem-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: #f8f9fb;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.problem-card__items {
  list-style: none;
  margin-bottom: 16px;
}

.problem-card__items li {
  position: relative;
  padding: 6px 0 6px 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-bottom: 1px solid #f4f6f8;
}

.problem-card__items li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: #ef4444;
  font-weight: 700;
}

.problem-card__impact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  font-size: 0.72rem;
  color: var(--text-light);
}

.problem-card__impact--high .card-meter span {
  background: linear-gradient(90deg, #ef4444, #f87171);
}

/* Solution */
.section--solution { background: var(--white); }

.solution__intro {
  text-align: left;
  max-width: none;
  margin: 0 0 48px;
}

.solution__intro .badge {
  display: inline-flex;
}

.solution__intro .section__desc {
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .solution__intro .section__desc {
    white-space: normal;
  }
}

.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}

.compare__card {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.compare__card--before {
  background: var(--white);
}

.compare__card--before::after {
  content: 'PAST';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(15, 42, 77, 0.04);
  line-height: 1;
  pointer-events: none;
}

.compare__card--after {
  background: linear-gradient(160deg, var(--blue-light), #d6e8ff);
  border-color: rgba(0, 102, 255, 0.15);
  box-shadow: var(--shadow);
}

.compare__card--after::after {
  content: 'NOW';
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(0, 102, 255, 0.06);
  line-height: 1;
  pointer-events: none;
}

.compare__label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.compare__card--before .compare__label {
  background: #f0f2f5;
  color: var(--text-muted);
}

.compare__card--after .compare__label {
  background: var(--blue);
  color: var(--white);
}

.compare__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.compare__card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.compare__card li:last-child { border-bottom: none; }

.compare__num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  width: 24px;
}

.compare__card li strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.compare__card li p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.compare__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: auto;
}

.compare__icon--x {
  background: #fee2e2;
  color: #ef4444;
}

.compare__icon--check {
  background: #dbeafe;
  color: var(--blue);
}

.compare__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow);
  color: var(--blue);
  align-self: center;
}

.compare__arrow svg { width: 24px; height: 24px; }

.solution__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 18px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.solution__banner svg { color: var(--blue); flex-shrink: 0; }

/* Why */
.section--why { background: var(--bg); }

.why__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.why-card {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card__ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--blue), #4d9fff, var(--blue-light), var(--blue));
  padding: 2px;
  margin-bottom: 14px;
}

.why-card__icon {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.why-card__icon svg { width: 24px; height: 24px; }

.why-card__label {
  display: inline-block;
  padding: 3px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.why-card__metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #f8f9fb;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
}

.why-card__metric strong {
  font-size: 0.82rem;
  color: var(--navy);
}

.why-card__metric span {
  font-size: 0.72rem;
  color: var(--blue);
  font-weight: 600;
}

/* ── Why: premium online vs IPTV compare ── */
.why__compare {
  margin-top: 8px;
}

.why-compare__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.why-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.06),
    0 24px 64px -20px rgba(0, 0, 0, 0.12);
}

.why-compare__panel {
  position: relative;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.why-compare__panel--online {
  background:
    linear-gradient(165deg, #f4f4f2 0%, #ebeae6 100%);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 20px 0 0 20px;
  color: var(--text);
}

.why-compare__panel--iptv {
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(196, 168, 120, 0.18) 0%, transparent 55%),
    linear-gradient(155deg, #141414 0%, #0a0a0a 55%, #111 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  border-radius: 0 20px 20px 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.why-compare__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(196, 168, 120, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.why-compare__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.why-compare__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-compare__icon svg {
  width: 26px;
  height: 26px;
}

.why-compare__icon--muted {
  background: rgba(0, 0, 0, 0.05);
  color: #8a8a8a;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.why-compare__icon--accent {
  background: rgba(255, 255, 255, 0.08);
  color: #e8d5b0;
  border: 1px solid rgba(196, 168, 120, 0.35);
  box-shadow: 0 0 24px rgba(196, 168, 120, 0.15);
}

.why-compare__titles h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 6px 0 6px;
  line-height: 1.3;
}

.why-compare__panel--online .why-compare__titles h3 {
  color: #3a3a3a;
}

.why-compare__titles p {
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.why-compare__panel--online .why-compare__titles p {
  color: var(--text-muted);
}

.why-compare__panel--iptv .why-compare__titles p {
  color: rgba(255, 255, 255, 0.58);
}

.why-compare__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
}

.why-compare__badge--muted {
  background: rgba(0, 0, 0, 0.06);
  color: #7a7a7a;
}

.why-compare__badge--accent {
  background: linear-gradient(135deg, #c4a878, #a8895a);
  color: #0a0a0a;
  box-shadow: 0 4px 14px rgba(196, 168, 120, 0.35);
}

.why-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.why-compare__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.why-compare__panel--online .why-compare__item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.why-compare__panel--iptv .why-compare__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-compare__panel--iptv .why-compare__item:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(2px);
}

.why-compare__mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-compare__item--no .why-compare__mark {
  background: rgba(220, 80, 80, 0.1);
  color: #c94444;
  border: 1px solid rgba(220, 80, 80, 0.2);
}

.why-compare__item--yes .why-compare__mark {
  background: rgba(196, 168, 120, 0.18);
  color: #e8d5b0;
  border: 1px solid rgba(196, 168, 120, 0.4);
}

.why-compare__item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: -0.01em;
}

.why-compare__panel--online .why-compare__item strong {
  color: #444;
}

.why-compare__panel--iptv .why-compare__item strong {
  color: #fff;
}

.why-compare__item span:not(.why-compare__mark) {
  display: block;
  font-size: 0.8rem;
  line-height: 1.45;
}

.why-compare__panel--online .why-compare__item span:not(.why-compare__mark) {
  color: var(--text-muted);
}

.why-compare__panel--iptv .why-compare__item span:not(.why-compare__mark) {
  color: rgba(255, 255, 255, 0.55);
}

/* VS badge between panels */
.why-compare__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  position: relative;
  z-index: 2;
}

.why-compare__vs span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0a0a0a;
  background: #fff;
  border: 2px solid #0a0a0a;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.18),
    0 0 0 6px rgba(255, 255, 255, 0.9);
}

@media (max-width: 860px) {
  .why-compare {
    grid-template-columns: 1fr;
  }

  .why-compare__panel--online {
    border-radius: 20px 20px 0 0;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .why-compare__panel--iptv {
    border-radius: 0 0 20px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
  }

  .why-compare__vs {
    width: 100%;
    height: 0;
    order: 0;
  }

  .why-compare__vs span {
    width: 44px;
    height: 44px;
    font-size: 0.68rem;
  }

  .why-compare__panel {
    padding: 26px 20px 22px;
  }
}

/* Product */
.section--product { background: var(--white); }

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.product-steps { margin-top: 28px; }

.product-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 18px 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.product-step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: rgba(0, 102, 255, 0.2);
}

.product-step__rail {
  position: absolute;
  left: 39px;
  top: 100%;
  width: 2px;
  height: 12px;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
}

.product-step__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  border: 1px solid rgba(0, 102, 255, 0.1);
}

.product-step__icon svg { width: 22px; height: 22px; }

.product-step__body { flex: 1; min-width: 0; }

.product-step__title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.product-step h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}

.product-step__status {
  padding: 2px 8px;
  background: #f0f2f5;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

.product-step__status--accent {
  background: var(--blue);
  color: var(--white);
}

.product-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.product-step__num {
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(0, 102, 255, 0.12);
  line-height: 1;
  flex-shrink: 0;
}

.product__right-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 20px;
}

.viewing-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.viewing-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.viewing-card__duration {
  padding: 4px 12px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 6px;
  font-weight: 600;
}

.viewing-timeline__track {
  position: relative;
  height: 6px;
  background: #e8ecf0;
  border-radius: 3px;
  margin: 40px 0 50px;
}

.viewing-timeline__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), #4d9fff);
  border-radius: 3px;
}

.viewing-timeline__dot {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.viewing-timeline__dot:nth-child(2) { left: 0; top: 24px; transform: translateX(0); }
.viewing-timeline__dot:nth-child(3) { left: 33%; top: 24px; }
.viewing-timeline__dot:nth-child(4) { left: 66%; top: 24px; }
.viewing-timeline__dot:nth-child(5) { left: 100%; top: 24px; transform: translateX(-100%); }

.viewing-timeline__dot--end {
  color: var(--blue);
  font-weight: 600;
}

.viewing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.viewing-step {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.viewing-step__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 6px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.viewing-step__icon--muted {
  background: #f0f2f5;
  color: var(--text-light);
}

.viewing-step--active .viewing-step__icon {
  background: var(--blue);
  color: var(--white);
}

.viewing-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.viewing-benefit {
  padding: 16px;
  background: #f8f9fb;
  border-radius: var(--radius-sm);
}

.viewing-benefit__num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
}

.viewing-benefit strong {
  display: block;
  font-size: 0.85rem;
  color: var(--navy);
  margin: 4px 0;
}

.viewing-benefit p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Targeting */
.section--targeting { background: var(--bg); }

/* ── Targeting 3-col: text / panel / surcharge ── */
.targeting__grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.9fr) minmax(0, 1.15fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.surcharge {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.surcharge__intro {
  margin-bottom: 12px;
  flex-shrink: 0;
}

.surcharge__intro-title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text, #111);
  line-height: 1.3;
}

.surcharge__intro-sub {
  margin: 0 0 4px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text-muted, #6b6b6b);
}

.surcharge__intro-sub:last-child {
  margin-bottom: 0;
}

.surcharge__panel {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 10px 28px -16px rgba(0, 0, 0, 0.08);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.surcharge__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.surcharge__filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  padding: 3px;
  background: #f4f4f2;
  border-radius: 999px;
  width: 100%;
  justify-content: space-between;
}

.surcharge__filter {
  border: none;
  background: transparent;
  color: #6b6b6b;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  flex: 1 1 0;
  text-align: center;
}

.surcharge__filter:hover {
  color: #111;
}

.surcharge__filter--active {
  background: #111;
  color: #fff;
}

.surcharge__filter:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.surcharge__table {
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 10px;
  overflow: hidden;
  flex: 1 1 auto;
}

.surcharge__thead,
.surcharge__row {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr 0.55fr;
  gap: 6px;
  align-items: center;
  padding: 9px 10px;
}

.surcharge__thead {
  background: #f7f6f3;
  font-size: 0.7rem;
  font-weight: 700;
  color: #6b6b6b;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--border, #e8e8e6);
}

.surcharge__row {
  font-size: 0.82rem;
  color: var(--text, #111);
  border-bottom: 1px solid #f0efec;
  background: #fff;
}

.surcharge__row:last-child {
  border-bottom: none;
}

.surcharge__row[hidden],
.surcharge__row--hidden {
  display: none !important;
}

.surcharge__option {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 0.8rem;
}

.surcharge__criteria {
  color: #5b5b5b;
  line-height: 1.35;
  font-size: 0.78rem;
}

.surcharge__rate {
  font-weight: 800;
  font-size: 0.86rem;
  text-align: right;
  color: #111;
  letter-spacing: -0.02em;
}

.surcharge__row--region {
  background: #fafaf8;
}

.surcharge__rate--tiered {
  font-size: 0.78rem;
  font-weight: 700;
  color: #444;
}

.surcharge__grades {
  margin-top: 10px;
  padding: 10px 10px 6px;
  background: #f7f6f3;
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 10px;
}

.surcharge__grades[hidden] {
  display: none !important;
}

.surcharge__grades-title {
  margin: 0 0 6px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #111;
}

.surcharge__grades-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}

.surcharge__grades-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  align-items: start;
  padding: 6px 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 7px;
}

.surcharge__grade-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2em;
  padding: 2px 5px;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.surcharge__grade-tag--s { background: #111; color: #fff; }
.surcharge__grade-tag--a { background: #333; color: #fff; }
.surcharge__grade-tag--b { background: #5a5a5a; color: #fff; }
.surcharge__grade-tag--c { background: #e8e8e6; color: #555; }
.surcharge__grade-tag--d { background: #f0f0ee; color: #777; }

.surcharge__grade-areas {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #555;
}

.surcharge__grade-rate {
  font-size: 0.78rem;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}

.surcharge__note {
  margin: 8px 0 0;
  font-size: 0.72rem;
  color: #8a8a8a;
  line-height: 1.35;
}

/* Compact middle targeting panel in 3-col — match height with surcharge */
.targeting__grid .targeting__panel {
  min-width: 0;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.targeting__grid .targeting-content--active {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.targeting__grid .targeting-tab {
  font-size: 0.78rem;
  padding: 8px 10px;
}

.targeting__grid .section__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.targeting__grid .section__desc {
  font-size: 0.9rem;
}

/* Left column: targeting core summary */
.targeting__text {
  max-width: 320px;
  min-width: 0;
}

.targeting__text .section__eyebrow {
  margin-bottom: 12px;
}

.targeting__headline {
  font-size: clamp(1.9rem, 3.5vw, 2.55rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
  max-width: min(100%, 10em);
  font-weight: 800;
}

.targeting__text .section__lead {
  font-size: 0.98rem;
  margin-bottom: 10px;
  max-width: 22em;
}

.targeting__lead {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted, #6b6b6b);
  margin-bottom: 18px;
  max-width: 28em;
}

.targeting__points {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.targeting__points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text, #111);
  line-height: 1.3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.targeting__point-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #111;
  color: #fff;
}

.targeting__point-icon svg {
  width: 14px;
  height: 14px;
}

.targeting__footer {
  margin: 0;
  padding: 12px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.45;
  color: #555;
  background: #f4f4f2;
  border-radius: 10px;
  border-left: 3px solid #111;
}

@media (max-width: 1100px) {
  .targeting__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .targeting__text {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .targeting__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .targeting__text {
    grid-column: auto;
  }

  .surcharge__thead {
    display: none;
  }

  .surcharge__thead,
  .surcharge__row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 12px;
  }

  .surcharge__rate {
    text-align: left;
  }

  .surcharge__option::before {
    content: '옵션 · ';
    font-weight: 600;
    color: #8a8a8a;
    font-size: 0.72rem;
  }

  .surcharge__criteria::before {
    content: '기준 · ';
    font-weight: 600;
    color: #8a8a8a;
    font-size: 0.72rem;
  }

  .surcharge__rate::before {
    content: '할증율 · ';
    font-weight: 600;
    color: #8a8a8a;
    font-size: 0.72rem;
  }

  .surcharge__grades-list li {
    grid-template-columns: auto 1fr;
  }

  .surcharge__grade-rate {
    grid-column: 2;
  }
}

/* legacy targeting__note removed — replaced by targeting__footer */

.targeting__panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}

.targeting-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.targeting-tab {
  padding: 8px 14px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s, border-color 0.2s;
}

.targeting-tab:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

.targeting-tab--active {
  color: var(--text);
  border-bottom-color: var(--text);
  font-weight: 600;
}

.targeting-tab:hover {
  color: var(--text);
}

.targeting-content {
  display: none;
  animation: targetingFadeIn 0.35s ease;
}

.targeting-content--active {
  display: block;
}

.targeting-content[hidden] {
  display: none !important;
}

@keyframes targetingFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.targeting-visual {
  position: relative;
  height: 200px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Geo targeting: dashboard-style console (not a crude map) */
.targeting-geo {
  background: #111;
  border-color: rgba(0, 0, 0, 0.2);
  padding: 0;
  height: auto;
  min-height: 168px;
}

.geo-console {
  height: 100%;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.geo-console__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.geo-console__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7a8;
  box-shadow: 0 0 0 3px rgba(110, 231, 168, 0.18);
  flex-shrink: 0;
}

.geo-console__title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.geo-console__live {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #6ee7a8;
  padding: 2px 7px;
  border: 1px solid rgba(110, 231, 168, 0.35);
  border-radius: 999px;
}

.geo-console__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
  padding: 12px;
  align-items: stretch;
  min-height: 0;
}

.geo-console__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  min-height: 110px;
}

.geo-cell {
  display: block;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.geo-cell--on {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.1);
}

.geo-cell--hot {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.16);
}

.geo-cell--core {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.2);
}

.geo-console__side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.geo-console__stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.geo-console__stat em {
  font-style: normal;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.geo-console__stat strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.geo-console__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}

.geo-console__chips li {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.targeting-visual__coords {
  display: none;
}

/* 데이터 조건 비주얼 */
.targeting-data {
  background: linear-gradient(160deg, #f8f9fb, var(--white));
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.targeting-data__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.targeting-data__filter {
  padding: 5px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.targeting-data__filter--on {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.targeting-data__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.targeting-data__row {
  display: grid;
  grid-template-columns: 80px 1fr 64px;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.targeting-data__bar {
  height: 8px;
  background: #e8ecf0;
  border-radius: 4px;
  overflow: hidden;
}

.targeting-data__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #4d9fff);
  border-radius: 4px;
}

.targeting-data__row em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  font-size: 0.68rem;
}

/* 시청 패턴 비주얼 */
.targeting-visual--pattern {
  height: auto;
  min-height: 248px;
  overflow: visible;
}

.targeting-pattern {
  background: linear-gradient(160deg, #f0f4f8, var(--white));
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.targeting-pattern__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  min-height: 28px;
}

.targeting-pattern__title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.targeting-pattern__range {
  padding: 3px 10px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.68rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.targeting-pattern__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
}

.pattern-bar {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 4px;
}

.pattern-bar__label {
  font-size: 0.6rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1;
}

.pattern-bar__track {
  width: 100%;
  height: 88px;
  background: #e8ecf0;
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pattern-bar__track > span {
  display: block;
  width: 100%;
  background: #b8c9dc;
  border-radius: 4px 4px 0 0;
  transition: height 0.4s ease;
}

.pattern-bar--peak .pattern-bar__track > span {
  background: linear-gradient(180deg, var(--blue), #4d9fff);
}

.targeting-pattern__legend {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 0.66rem;
  color: var(--text-muted);
}

.targeting-pattern__dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* 검증 리포트 비주얼 */
.targeting-visual--report {
  height: auto;
  overflow: visible;
  padding: 0;
  background: transparent;
  border: none;
}

.targeting-report {
  background: linear-gradient(160deg, #f8f9fb, var(--white));
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.targeting-features--report {
  grid-template-columns: repeat(3, 1fr);
}

.targeting-report__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.targeting-report__header strong {
  font-size: 0.82rem;
  color: var(--navy);
}

.targeting-report__badge {
  padding: 4px 10px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.targeting-report__flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px;
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
}

.report-flow__step {
  flex: 1;
  text-align: center;
  padding: 10px 8px;
  border-radius: 8px;
  background: #f8f9fb;
}

.report-flow__step--done {
  border: 1px solid var(--border);
}

.report-flow__step--active {
  background: var(--blue-light);
  border: 1px solid rgba(0, 102, 255, 0.2);
}

.report-flow__week {
  display: block;
  font-size: 0.62rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.report-flow__step strong {
  display: block;
  font-size: 0.78rem;
  color: var(--navy);
}

.report-flow__step em {
  display: block;
  font-style: normal;
  font-size: 0.62rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.report-flow__arrow {
  font-size: 1rem;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.targeting-report__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.targeting-report__kpi {
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.targeting-report__kpi span {
  display: block;
  font-size: 0.62rem;
  color: var(--text-light);
  margin-bottom: 2px;
}

.targeting-report__kpi strong {
  font-size: 0.95rem;
  color: var(--blue);
}

.targeting-report__caption {
  font-size: 0.65rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.5;
}

/* legacy zone/map-label rules removed — geo console replaces map circles */

.targeting-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.targeting-feature {
  display: flex;
  gap: 10px;
  padding: 14px;
  background: #f8f9fb;
  border-radius: var(--radius-sm);
}

.targeting-feature__num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
}

.targeting-feature strong {
  display: block;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.targeting-feature p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.channels {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 20px 28px;
  background: var(--white);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.channels__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.channels__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channels__list span {
  padding: 6px 14px;
  background: #f0f2f5;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

.channels__more {
  background: var(--blue-light) !important;
  color: var(--blue) !important;
}

/* AI CF */
.section--aicf { background: var(--white); }

.aicf__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.aicf__offers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.aicf__offer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}

.aicf__offer-icon {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--blue);
  font-size: 0.85rem;
}

.aicf__types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.aicf-type {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.aicf-type:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.aicf-type__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.aicf-type__num {
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(0, 102, 255, 0.25);
}

.aicf-type__badge {
  padding: 3px 10px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
}

.aicf-type h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.aicf-type p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.aicf-type__preview {
  position: relative;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.aicf-type__preview--product {
  background: linear-gradient(135deg, #e0f0ff 0%, #b8d4f0 50%, #d4e8ff 100%);
}

.aicf-type__preview--brand {
  background: linear-gradient(135deg, #d4e8f7 0%, #a8d0e8 50%, #c5e0f5 100%);
}

.aicf-type__preview--model {
  background: linear-gradient(135deg, #e8eef5 0%, #c5d5e8 50%, #dce8f2 100%);
}

.aicf-type__preview--story {
  background: linear-gradient(135deg, #f0e8f5 0%, #d8c8e0 50%, #ebe0f0 100%);
}

.mini-player {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent, rgba(15, 42, 77, 0.75));
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-player__play {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--blue);
  flex-shrink: 0;
}

.mini-player__bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.mini-player__bar span {
  display: block;
  height: 100%;
  background: var(--white);
  border-radius: 2px;
}

.mini-player__time {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.aicf-type__tools {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.aicf-type__tools span {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.75rem;
}

/* Showcase */
.section--showcase { background: var(--bg); }

.showcase__header {
  margin-bottom: 40px;
}

.showcase__header-text {
  max-width: 640px;
}

.showcase__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.showcase__tags span {
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.video-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.video-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg);
  border-color: #d4d4d2;
}

.video-card--featured {
  grid-row: auto;
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8ecf0;
}

.video-card--featured .video-card__thumb {
  aspect-ratio: 16 / 9;
  flex: none;
  min-height: unset;
}

.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-card__thumb img {
  transform: scale(1.05);
}

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-card:hover .video-card__overlay {
  background: rgba(0, 0, 0, 0.45);
}

.video-card__play {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, background 0.3s;
}

.video-card__play svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.video-card:hover .video-card__play {
  transform: scale(1.1);
  background: var(--white);
}

.video-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--text);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 1;
}

.video-card__badge--brand {
  background: var(--text);
}

.video-card__ai {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.video-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  z-index: 2;
}

.video-card__player {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 12px 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  z-index: 2;
}

.video-card__progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  margin-bottom: 6px;
  overflow: hidden;
}

.video-card__progress span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}

.video-card__player-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
}

.video-card__body {
  padding: 18px 20px 20px;
  border-top: 1px solid #f4f6f8;
}

.video-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}

.video-card--featured .video-card__body h3 {
  font-size: 1.1rem;
}

.video-card__body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.video-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.video-card__meta span {
  padding: 4px 10px;
  background: #f8f9fb;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
}

.video-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  transition: color 0.2s;
}

.video-card:hover .video-card__link {
  color: var(--blue-dark);
}

.showcase__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 32px;
  padding: 18px 22px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--navy-soft);
  line-height: 1.6;
}

.showcase__note svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process */
.section--process { background: var(--bg); }

.process__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-card {
  position: relative;
  padding: 24px 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.process-card:hover::before { opacity: 1; }

.process-card--highlight {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 40%);
  border-color: rgba(0, 102, 255, 0.2);
}

.process-card__icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue-light), var(--blue), var(--blue-light));
  padding: 2px;
}

.process-card__icon {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.process-card__icon svg { width: 22px; height: 22px; }

.process-card__num {
  display: inline-block;
  padding: 2px 8px;
  background: var(--blue-light);
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.process-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 4px 0;
}

.process-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.process-card__deliverables {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}

.process-card__deliverables li {
  padding: 3px 8px;
  background: #f8f9fb;
  border-radius: 4px;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
}

.process-card__time {
  display: block;
  font-size: 0.68rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card__bar {
  height: 4px;
  background: #e8ecf0;
  border-radius: 2px;
  overflow: hidden;
}

.process-card__bar span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
}

.process__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--border);
}

.process__banner svg { color: var(--blue); width: 22px; height: 22px; }

/* Report */
.section--report { background: var(--white); }

.report__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.report__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px;
  background: #f8f9fb;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
}

.report__note svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  flex-shrink: 0;
}

.dashboard {
  padding: 24px;
  background: #f8f9fb;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard__header h3,
.dashboard__header h4,
.dashboard__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.dashboard__date {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding: 4px 10px;
  background: var(--white);
  border-radius: 6px;
}

.dashboard__kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.kpi {
  padding: 16px 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  min-width: 0;
}

.kpi__label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.kpi__value {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 4px 0;
}

.kpi__sub {
  font-size: 0.62rem;
  color: var(--text-light);
  white-space: nowrap;
  display: block;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .kpi__sub {
    white-space: normal;
  }
}

.dashboard__charts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.chart-card {
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.chart-card h5 {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, var(--blue), #4d9fff);
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

.channel-bars { display: flex; flex-direction: column; gap: 6px; }

.channel-bar {
  display: grid;
  grid-template-columns: 60px 1fr 36px;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.channel-bar__track {
  height: 6px;
  background: #e8ecf0;
  border-radius: 3px;
  overflow: hidden;
}

.channel-bar__track span {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 3px;
}

.channel-bar em {
  font-style: normal;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
}

.region-stats { display: flex; flex-direction: column; gap: 8px; }

.region-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}

.region-stat span { color: var(--text-muted); flex: 1; }
.region-stat strong { color: var(--blue); font-size: 0.85rem; }
.region-stat em { font-style: normal; color: var(--text-light); font-size: 0.65rem; }

/* Pricing */
.section--pricing { background: var(--bg); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pricing-card {
  position: relative;
  padding: 32px 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--text);
  box-shadow: 0 0 0 2px var(--text), var(--shadow-lg);
  background: var(--surface);
}

.pricing-card__topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--text);
}

.pricing-card__badge {
  position: absolute;
  top: 16px;
  right: 20px;
  padding: 4px 14px;
  background: var(--text);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
}

.pricing-card__num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.pricing-card__carriers {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.pricing-card__carrier {
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.pricing-card__carrier--kt {
  background: #000;
  color: var(--white);
}

.pricing-card__carrier--sk {
  background: #ea002c;
  color: var(--white);
}

.pricing-card__carrier--lg {
  background: #a50034;
  color: var(--white);
}

.pricing-card__exposure {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 14px 16px;
  background: #f8f9fb;
  border-radius: var(--radius-sm);
  border: 1px dashed var(--border);
  margin-bottom: 16px;
}

.pricing-card__exposure strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-card__exposure span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.pricing-card__head h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.pricing-card__tag {
  padding: 3px 10px;
  background: #f0f2f5;
  border-radius: 6px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card__price { margin-bottom: 20px; }

.pricing-card__amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
}

.pricing-card__vat {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 2px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid #f0f2f5;
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--text);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__footer {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.pricing-card__footer span {
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing__extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-extra {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.pricing-extra h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.pricing-extra__item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f2f5;
}

.pricing-extra__item:last-child { border-bottom: none; }

.pricing-extra__num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
}

.pricing-extra__item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-extra__item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.targeting-options { display: flex; flex-direction: column; gap: 8px; }

.targeting-option {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f9fb;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.targeting-option span:first-child {
  font-weight: 600;
  color: var(--navy);
}

.targeting-option span:last-child {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Contact */
.section--contact {
  background: var(--bg);
}

.contact__header {
  text-align: center;
  margin-bottom: 40px;
}

.contact__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.contact__profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.contact__avatar {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.contact__person strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.contact__person span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact__info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.contact__info-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.contact__info-item--full {
  grid-column: 1 / -1;
}

.contact__info-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.contact__info-icon svg {
  width: 18px;
  height: 18px;
  color: var(--text);
}

.contact__info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.contact__info-item a,
.contact__info-item span:not(.contact__info-label) {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.contact__info-item a:hover {
  color: var(--text-muted);
}

.contact__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.contact__services span {
  padding: 8px 14px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact__footer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  padding: 24px 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.65);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__inner a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.footer__inner a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* FAQ — crawlable accordion (details/summary) */
.section--faq {
  background: var(--bg, #f7f6f3);
  padding: 72px 0;
}

.faq-list {
  max-width: 800px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111;
  line-height: 1.45;
  word-break: keep-all;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__q::after {
  content: '+';
  float: right;
  font-weight: 600;
  color: #8a8a8a;
  margin-left: 12px;
}

.faq-item[open] .faq-item__q::after {
  content: '−';
}

.faq-item__a {
  padding: 0 18px 16px;
}

.faq-item__a p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: #4a4a4a;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .section--faq {
    padding: 56px 0;
  }

  .faq-item__q {
    font-size: 0.9rem;
    padding: 14px 14px;
  }

  .faq-item__a {
    padding: 0 14px 14px;
  }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .about__cards,
  .product__grid,
  .targeting__grid,
  .aicf__grid,
  .report__grid {
    grid-template-columns: 1fr;
  }

  .compare {
    grid-template-columns: 1fr;
  }

  .compare__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .process__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard__kpis,
  .dashboard__charts {
    grid-template-columns: repeat(2, 1fr);
  }

  .viewing-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
  }

  .nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .section { padding: 56px 0; }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .stats,
  .problem__grid,
  .why__benefits,
  .pricing__grid,
  .pricing__extras,
  .aicf__types,
  .targeting-features,
  .showcase__grid {
    grid-template-columns: 1fr;
  }

  .video-card--featured {
    grid-row: span 1;
  }

  .video-card--featured .video-card__thumb {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .viewing-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard__kpis,
  .dashboard__charts {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .channels {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__value-props {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .value-prop {
    padding: 20px;
  }

  .value-prop h3 {
    font-size: 0.95rem;
  }

  .contact__info-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .pricing-compare-legend {
    display: none;
  }

  .btn {
    min-height: 48px;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .pricing-card__cta {
    margin-top: 8px;
  }

  .nav__menu a {
    padding: 12px 0;
    font-size: 1rem;
  }

  .nav__cta {
    text-align: center;
    padding: 14px 20px !important;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* CTA Band */
.cta-band {
  padding: 32px 0;
  background: var(--accent-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band--dark {
  background: var(--text);
  border-color: var(--text);
}

.cta-band--dark .cta-band__text {
  color: rgba(255, 255, 255, 0.9);
}

.cta-band--dark .btn--primary {
  background: var(--white);
  color: var(--text);
}

.cta-band--dark .btn--primary:hover {
  background: var(--accent-soft);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band__text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* Pricing compare */
.pricing-compare-legend {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 0 28px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}

.pricing-compare-legend span:first-child {
  grid-column: 1;
}

.pricing__grid {
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing-card__cta.btn--full {
  margin-top: 20px;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

body.nav-open {
  overflow: hidden;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════
   PREMIUM V2 — Black/White Media Solution
   ═══════════════════════════════════════════ */

:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --off-white: #f7f6f3;
}

.btn--outline {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: none;
}

.section--dark {
  background: var(--black);
  color: #fff;
}

.section__title--light,
.section--dark .section__title { color: #fff; }

.section__desc--light,
.section--dark .section__desc { color: rgba(255, 255, 255, 0.58); }

.section--dark .section__eyebrow:not(.section__eyebrow--on-dark) {
  color: rgba(232, 210, 160, 0.72);
}

.section--dark .section__lead:not(.section__lead--on-dark) {
  color: rgba(255, 255, 255, 0.72);
}

.section--dark .section__header--center .section__lead::after,
.section--process .section__header--center .section__lead::after,
.section--pricing-premium .pricing-premium__header .section__lead::after {
  background: linear-gradient(90deg, transparent, rgba(232, 210, 160, 0.8), transparent);
}

/* Nav over dark hero */
.nav {
  background: rgba(10, 10, 10, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav__logo-text { color: rgba(255, 255, 255, 0.5); }
.nav__menu a { color: rgba(255, 255, 255, 0.72); }
.nav__menu a:hover { color: #fff; }
.nav__toggle span { background: #fff; }

.nav--scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border);
}

.nav--scrolled .nav__logo-text { color: var(--text-muted); }
.nav--scrolled .nav__menu a { color: var(--text-muted); }
.nav--scrolled .nav__menu a:hover { color: var(--text); }
.nav--scrolled .nav__toggle span { background: var(--text); }

/* Mobile open menu: white panel needs dark links (not hero white links) */
@media (max-width: 768px) {
  body.nav-open .nav__menu a {
    color: var(--text);
  }

  body.nav-open .nav__menu a:hover {
    color: var(--text-muted);
  }

  body.nav-open .nav__cta {
    background: var(--text) !important;
    color: var(--white) !important;
  }

  body.nav-open .nav__toggle span {
    background: var(--text);
  }
}

/* ═══════════════════════════════════════════
   Hero Premium — media frame center;
   main copy top + HUD rails outside the image
   ═══════════════════════════════════════════ */
/* Mobile-only soft line breaks inside copy */
.br-mobile {
  display: none;
}

.hero--premium {
  --hero-arrow-gap: 12px;
  --hero-side: 168px;
  --hero-glow-warm: rgba(196, 168, 120, 0.22);
  --hero-glow-cool: rgba(160, 185, 220, 0.16);
  --hero-glow-white: rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, #1a1814 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 50% 100%, #0c1018 0%, transparent 50%),
    linear-gradient(165deg, #0c0b0a 0%, #070708 42%, #050508 100%);
  color: #fff;
  border-bottom: none;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--nav-h) + 4px) 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* ── Ambient stage lighting (static, GPU-light) ──
   Previous version animated 3 large blur(60px) orbs + rotating ring/sheen
   + SVG noise every frame, which caused PC jank on the hero. */
.hero__ambiance {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  /* Soft glow baked into background — no filter: blur, no infinite animation */
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(196, 168, 120, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 12% 20%, rgba(160, 185, 220, 0.1) 0%, transparent 65%),
    radial-gradient(ellipse 38% 38% at 88% 78%, rgba(212, 185, 130, 0.08) 0%, transparent 68%);
  contain: strict;
}

.hero__glow {
  display: none; /* reserved hooks; light comes from .hero__ambiance bg */
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 48%, transparent 30%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, transparent 18%, transparent 82%, rgba(0, 0, 0, 0.32) 100%);
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; /* tighter H1 block → media stage */
  flex: 1;
  min-height: 0;
  justify-content: center;
}

/* Main copy — compact so video showcase leads */
.hero__top {
  position: relative;
  text-align: center;
  max-width: 640px;
  padding: 0 12px;
  flex-shrink: 0;
  margin: 0;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(212, 190, 150, 0.75);
  margin: 0 0 6px;
}

.hero--premium .hero__title {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.04em;
  margin: 0 0 12px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45), 0 0 48px rgba(196, 168, 120, 0.12);
  word-break: keep-all;
}

.hero--premium .hero__desc {
  font-size: clamp(0.95rem, 1.35vw, 1.12rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 28em;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
  word-break: keep-all;
}

/* Stage row: left HUD | frame (arrows inside) | right meta */
.hero__stage {
  display: grid;
  grid-template-columns: var(--hero-side) minmax(0, 1fr) var(--hero-side);
  gap: var(--hero-arrow-gap);
  align-items: center;
  width: 100%;
  max-width: 1520px;
  flex: 1 1 auto;
  min-height: 0;
}

/* Showcase frame — primary visual, larger share of viewport */
.hero__frame {
  position: relative;
  width: min(100%, 1280px, calc(min(76vh, 720px) * 16 / 9));
  aspect-ratio: 16 / 9;
  max-height: min(76vh, 720px);
  height: auto;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* Fewer layered shadows = less paint cost on large screens */
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 28px 64px -20px rgba(0, 0, 0, 0.75);
  background: #0c0c0c;
  justify-self: center;
  grid-column: 2;
  contain: layout paint;
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: opacity 0.35s ease;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, transparent 30%, rgba(5, 5, 5, 0.35) 100%);
  pointer-events: none;
}

/* Corner / edge chrome */
.hero__chrome {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.4);
  border-style: solid;
  border-width: 0;
}

.hero__corner--tl { top: 12px; left: 12px; border-top-width: 1px; border-left-width: 1px; }
.hero__corner--tr { top: 12px; right: 12px; border-top-width: 1px; border-right-width: 1px; }
.hero__corner--bl { bottom: 12px; left: 12px; border-bottom-width: 1px; border-left-width: 1px; }
.hero__corner--br { bottom: 12px; right: 12px; border-bottom-width: 1px; border-right-width: 1px; }

.hero__edge--top,
.hero__edge--bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(28%, 180px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.hero__edge--top { top: 12px; }
.hero__edge--bottom { bottom: 12px; }

/* Side HUD — outside the image */
.hero__hud {
  min-width: 0;
  pointer-events: none;
}

.hero__hud--left {
  grid-column: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 12px;
  justify-self: stretch;
}

.hero__hud--right {
  grid-column: 3;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 12px;
  text-align: right;
  justify-self: stretch;
}

.hero__hud-line {
  margin-bottom: 12px;
}

.hero__hud-line:last-child {
  margin-bottom: 0;
}

.hero__hud-k {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 4px;
  font-weight: 500;
}

.hero__hud-v {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.01em;
}

.hero__media-category {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(212, 190, 150, 0.85);
  margin-bottom: 6px;
  line-height: 1.3;
}

.hero__media-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
  line-height: 1.35;
  word-break: keep-all;
}

.hero__media-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 400;
}

.hero__hud-index {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.42);
  font-variant-numeric: tabular-nums;
}

/* Center play on media only */
.hero__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 68px;
  height: 68px;
}

.hero__play-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(247, 246, 243, 0.94);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s ease, background 0.15s;
  padding-left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__play:hover .hero__play-circle {
  transform: scale(1.06);
  background: #fff;
}

/* Arrows inside frame — never overflow viewport */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.45);
  /* backdrop-filter removed — expensive on large hero repaints */
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
  padding: 0;
  margin: 0;
  line-height: 0;
  box-sizing: border-box;
  pointer-events: auto;
}

.hero__arrow-icon {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.hero__arrow--prev { left: 12px; right: auto; }
.hero__arrow--next { right: 12px; left: auto; }

.hero__arrow:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* CTAs below stage */
.hero__bottom {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 4px;
  flex-shrink: 0;
}

.hero--premium .hero__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  text-decoration: none;
  cursor: pointer;
}

.hero__cta--primary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
}

.hero__cta--primary:hover {
  background: #fff;
}

.hero__cta--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero__cta--ghost:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
}

/* Card types */
.card--benefit { border-radius: 0; }
.card--info {
  padding: 32px;
  background: var(--surface);
  border: none;
  border-top: 1px solid var(--border);
}

.card--price {
  padding: 36px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  text-align: center;
}

.card--price.pricing-card--featured {
  background: #fff;
  color: var(--black);
  border-color: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

/* Problem simple */
.problem-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.problem-simple__item {
  background: var(--surface);
  padding: 40px 32px;
}

.problem-simple__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.problem-simple__item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.problem-simple__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Solution dark compare */
.section--dark .compare__card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section--dark .compare__card--before {
  opacity: 1;
}

.section--dark .compare__card--after {
  background: #fff;
  color: var(--black);
}

.section--dark .solution__banner {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* AICF hero — centered, clear hierarchy */
.aicf__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  padding: 8px 16px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
}

.aicf__eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232, 210, 160, 0.78);
  line-height: 1.2;
}

.aicf__price {
  display: none;
}

.aicf__title {
  font-size: clamp(1.65rem, 3.6vw, 2.65rem) !important;
  font-weight: 800 !important;
  color: #fff;
  margin: 0 0 16px !important;
  letter-spacing: -0.04em;
  white-space: nowrap !important;
  line-height: 1.25 !important;
  word-break: keep-all;
  max-width: none;
  text-align: center;
}

/* Benefit line under title */
.aicf__lead {
  margin: 0 0 12px;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  word-break: keep-all;
  max-width: 28em;
}

.aicf__desc {
  max-width: 28em;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.92rem;
  line-height: 1.6;
  white-space: normal;
  word-break: keep-all;
  text-align: center;
}

.aicf__hero .btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.aicf__portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.aicf__portfolio-header .aicf__eyebrow {
  margin-bottom: 12px;
}

.aicf__portfolio-title {
  font-size: clamp(1.55rem, 3vw, 2rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.03em;
  line-height: 1.25 !important;
  word-break: keep-all;
  text-align: center;
}

.aicf__portfolio-title::after {
  display: none !important;
}

.aicf__portfolio-desc {
  margin: 0;
  max-width: 30em;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.52);
  word-break: keep-all;
  text-align: center;
}

@media (max-width: 720px) {
  .aicf__title,
  .aicf__desc {
    white-space: normal;
  }
}

.section--aicf .aicf__types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

/* Portfolio merged into AICF section */
.aicf__portfolio {
  margin-top: 32px;
  padding-top: 0;
  border-top: none;
}

/* portfolio header stack — defined with aicf__hero block above; keep spacing only */
.aicf__portfolio {
  margin-top: 8px;
}

/* Portfolio arrow carousel */
.portfolio-carousel {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}

.portfolio-carousel__viewport {
  overflow: hidden;
  min-width: 0;
}

.portfolio-carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.portfolio-carousel__card {
  flex: 0 0 auto;
  min-width: 0;
  max-width: none;
  /* width set in JS from viewport */
}

.section--aicf .portfolio-carousel__card.video-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section--aicf .portfolio-carousel__card .video-card__body h3 {
  color: #fff;
}

.section--aicf .portfolio-carousel__card .video-card__body p {
  color: rgba(255, 255, 255, 0.65);
}

.section--aicf .portfolio-carousel__card .video-card__link {
  color: rgba(255, 255, 255, 0.8);
}

.portfolio-carousel__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
  padding: 0;
  margin: 0;
  line-height: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

.portfolio-carousel__arrow-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.portfolio-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.portfolio-carousel__arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .portfolio-carousel {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .portfolio-carousel__arrow {
    width: 40px;
    height: 40px;
  }

  .portfolio-carousel__arrow-icon {
    width: 18px;
    height: 18px;
  }
}

.section--aicf .showcase__grid--equal {
  margin-top: 0;
}

.showcase__note--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
}

.showcase__note--dark svg {
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
}

.section--aicf .aicf-type {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Pricing premium */
.section--pricing .pricing__grid {
  gap: 20px;
}

.pricing-card__name {
  font-size: 1rem;
  font-weight: 600;
  margin: 12px 0 20px;
  opacity: 0.8;
}

.pricing-card__amount {
  font-size: 1rem;
  margin-bottom: 24px;
  opacity: 1;
}

.pricing-card__amount em {
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
  margin-top: 4px;
  opacity: 1;
}

.card--price.pricing-card--featured .pricing-card__amount,
.card--price.pricing-card--featured .pricing-card__amount em,
.card--price.pricing-card--featured .pricing-card__name,
.card--price.pricing-card--featured .pricing-card__note {
  color: var(--black);
}

.pricing-card__metric {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.card--price.pricing-card--featured .pricing-card__metric {
  border-color: var(--border);
}

.pricing-card__metric strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-card__metric span,
.pricing-card__total span {
  font-size: 0.78rem;
  opacity: 0.55;
}

.pricing-card__total {
  margin-bottom: 16px;
}

.pricing-card__total strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-card__note {
  font-size: 0.8rem;
  opacity: 1;
  margin-bottom: 24px;
}

.card--price.pricing-card--featured .btn--primary {
  background: var(--black);
  color: #fff;
}

.section--pricing .pricing-card__badge {
  background: var(--black);
  color: #fff;
}

/* Showcase portfolio */
.section--showcase-premium {
  background: var(--off-white);
  padding: 120px 0;
}

.showcase__grid--portfolio {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.showcase__grid--portfolio .video-card--featured {
  grid-column: auto;
}

.showcase__grid--portfolio .video-card {
  border-radius: 0;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.showcase__grid--portfolio .video-card__thumb {
  min-height: 280px;
}

.showcase__grid--portfolio .video-card--featured .video-card__thumb {
  min-height: unset;
}

.showcase__grid--portfolio .video-card__play {
  width: 80px;
  height: 80px;
}

/* Process timeline */
.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 48px 0 24px;
  overflow-x: auto;
}

.process-timeline__step {
  flex: 1;
  min-width: 100px;
  text-align: center;
}

.process-timeline__step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-timeline__step--active span {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.process-timeline__step strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.process-timeline__step em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--text-light);
}

.process-timeline__line {
  flex: 0 0 40px;
  height: 2px;
  background: var(--border);
  margin-top: 20px;
}

.process-timeline__note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact sales */
.contact-sales {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-sales__card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-sales__person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-sales__person strong {
  display: block;
  font-size: 1.25rem;
  color: #fff;
}

.contact-sales__person span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-sales__channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-sales__channel {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.contact-sales__channel:hover {
  background: rgba(255, 255, 255, 0.08);
}

.contact-sales__label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.contact-sales__channel strong {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
}

.contact-sales__address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}

.section--contact .btn--primary {
  background: #fff;
  color: var(--black);
}

/* Section rhythm */
.section--about { background: var(--surface); }
.section--problem { background: var(--off-white); }
.section--why { background: var(--surface); }
.section--product { background: var(--off-white); }
.section--targeting { background: var(--surface); }
.section--process { background: var(--off-white); }
.section--report { background: var(--surface); }

@media (max-width: 1024px) {
  .hero--premium {
    --hero-side: 140px;
  }

  .hero__stage {
    gap: 10px;
  }

  .problem-simple {
    grid-template-columns: 1fr;
  }

  .section--aicf .aicf__types {
    grid-template-columns: repeat(2, 1fr);
  }

  .aicf__portfolio {
    margin-top: 40px;
    padding-top: 36px;
  }

  .contact-sales {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 960px) {
  /* Stack: copy → frame (arrows inside) → HUDs → CTA */
  .hero--premium {
    height: auto;
    min-height: 0;
    padding: calc(var(--nav-h) + 16px) 14px 28px;
  }

  .hero__layout {
    gap: 14px;
  }

  .hero__stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "frame"
      "hudL"
      "hudR";
    gap: 10px;
  }

  .hero__hud--left {
    grid-area: hudL;
    grid-column: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 4px 0;
  }

  .hero__hud--right {
    grid-area: hudR;
    grid-column: auto;
    text-align: center;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 4px 0;
  }

  .hero__frame {
    grid-area: frame;
    grid-column: auto;
    width: 100%;
    max-width: 100%;
    max-height: none;
  }

  .hero__arrow {
    width: 38px;
    height: 38px;
  }

  .hero__arrow-icon {
    width: 16px;
    height: 16px;
  }

  .hero--premium .hero__title {
    font-size: 1.45rem;
  }

  .hero--premium .hero__desc {
    font-size: 0.95rem;
  }

  .hero__play {
    width: 56px;
    height: 56px;
  }

  .hero__play-circle {
    width: 52px;
    height: 52px;
  }

  .hero__cta {
    padding: 9px 14px;
    font-size: 0.78rem;
  }

  .hero--premium .hero__actions {
    width: 100%;
  }

  .hero__cta--primary,
  .hero__cta--ghost {
    flex: 1;
  }

  .showcase__grid--portfolio {
    grid-template-columns: 1fr;
  }

  .showcase__grid--portfolio .video-card__thumb,
  .showcase__grid--portfolio .video-card--featured .video-card__thumb {
    min-height: 200px;
  }

  .process-timeline {
    padding-bottom: 16px;
  }

  .contact-sales__channels {
    grid-template-columns: 1fr;
  }

  .section--aicf .aicf__types {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   V3 — Layout, Contrast, Card Hierarchy
   ═══════════════════════════════════════════ */

:root {
  --section-pad: 72px;
  --section-pad-sm: 56px;
  --on-dark: #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.78);
  --on-dark-subtle: rgba(255, 255, 255, 0.58);
}

.section {
  padding: var(--section-pad) 0;
}

.section--problem,
.section--process,
.section--showcase-premium {
  padding: var(--section-pad-sm) 0;
}

.section--contact {
  padding: var(--section-pad) 0;
}

/* ── Card 3-tier system ── */
.card--emphasis {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.card--info {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.card--media {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* ── About / feature cards ── */
.feature-card.card--info {
  border-radius: var(--radius);
  padding: 28px 24px;
}

.feature-card__index {
  color: var(--text-muted);
  opacity: 0.65;
  font-weight: 800;
}

.stats .stat {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ── Problem section ── */
.problem-simple__item.card--info {
  border: 1px solid var(--border);
  border-top: 3px solid var(--text);
  box-shadow: var(--shadow);
}

.problem-simple__num {
  color: var(--text-muted);
  opacity: 0.35;
}

.problem-simple__item h3 {
  color: var(--text);
  font-weight: 700;
}

/* ── Solution compare (dark) ── */
.section--dark .compare__card--before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.section--dark .compare__card--before .compare__label {
  background: rgba(255, 255, 255, 0.12);
  color: var(--on-dark-muted);
}

.section--dark .compare__card--before h3,
.section--dark .compare__card--before li strong {
  color: var(--on-dark);
}

.section--dark .compare__card--before li p {
  color: var(--on-dark-muted);
}

.section--dark .compare__card--before .compare__num {
  color: rgba(255, 255, 255, 0.55);
}

.section--dark .compare__card--before li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section--dark .compare__card--after.card--emphasis {
  background: #fff;
  color: var(--text);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.section--dark .compare__arrow {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--on-dark);
}

/* ── Why section ── */
.why-card.card--info {
  border-radius: var(--radius);
  padding: 28px 24px;
}

/* (why-advantage replaced by why-compare dual panels) */

/* ── AICF dark cards ── */
.section--aicf .aicf-type.card--info {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.section--aicf .aicf-type__num {
  color: rgba(255, 255, 255, 0.45);
}

.section--aicf .aicf-type__badge {
  background: rgba(255, 255, 255, 0.14);
  color: var(--on-dark);
}

.section--aicf .aicf-type h4 {
  color: var(--on-dark);
}

.section--aicf .aicf-type p {
  color: var(--on-dark-muted);
}

.section--aicf .mini-player__time {
  color: var(--on-dark-muted);
}

/* ── Showcase equal grid (no featured) ── */
.showcase__grid--equal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-template-rows: auto;
}

.showcase__grid--equal .video-card,
.showcase__grid--equal .video-card.card--media {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.showcase__grid--equal .video-card__thumb {
  aspect-ratio: 16 / 9;
  min-height: unset !important;
  flex: none;
}

.showcase__grid--equal .video-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
  min-height: 148px;
}

.showcase__grid--equal .video-card__body h3 {
  font-size: 0.92rem;
  color: var(--text);
}

.showcase__grid--equal .video-card__body p {
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.showcase__grid--equal .video-card__meta {
  margin-bottom: 10px;
}

.showcase__grid--equal .video-card__link {
  margin-top: auto;
  font-size: 0.78rem;
}

.showcase__grid--equal .video-card__play {
  width: 56px;
  height: 56px;
}

.showcase__grid--portfolio .video-card--featured,
.video-card--featured {
  grid-row: auto;
  grid-column: auto;
}

.showcase__header {
  margin-bottom: 32px;
}

.showcase__note {
  margin-top: 24px;
}

/* ── Pricing dark cards readability ── */
.section--pricing .card--price:not(.pricing-card--featured) {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--on-dark);
}

.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__name {
  color: var(--on-dark-muted);
  opacity: 1;
}

.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__amount {
  color: var(--on-dark-muted);
  opacity: 1;
}

.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__amount em {
  color: var(--on-dark);
  opacity: 1;
}

.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__metric strong,
.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__total strong {
  color: var(--on-dark);
}

.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__metric span,
.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__total span,
.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__note {
  color: var(--on-dark-subtle);
  opacity: 1;
}

.section--pricing .card--price:not(.pricing-card--featured) .pricing-card__metric {
  border-color: rgba(255, 255, 255, 0.18);
}

.section--pricing .card--price:not(.pricing-card--featured) .btn--primary {
  background: var(--on-dark);
  color: var(--black);
}

.section--pricing .pricing-card--featured.card--emphasis {
  transform: scale(1.02);
}

.section--pricing .pricing-card__amount em {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
}

.pricing-card__cta {
  margin-top: auto;
}

.pricing-card.card--emphasis {
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

/* ── Process timeline cohesion ── */
.process-timeline {
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-timeline__step strong {
  font-weight: 700;
  color: var(--text);
}

.process-timeline__step--active strong {
  color: var(--text);
}

.process-timeline__line {
  flex: 0 0 28px;
  background: var(--border);
}

.process-timeline__note {
  margin-top: 20px;
}

/* ── Contact sales balance ── */
.contact-sales__points {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-sales__points li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--on-dark-muted);
  padding-left: 18px;
  position: relative;
}

.contact-sales__points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--on-dark);
  font-weight: 700;
}

.contact-sales__points strong {
  color: var(--on-dark);
  font-weight: 700;
}

.contact-sales__card.card--emphasis {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.contact-sales__label {
  color: var(--on-dark-subtle) !important;
}

.contact-sales__address {
  color: var(--on-dark-muted) !important;
}

.section--contact .btn--primary {
  font-size: 1rem;
  padding: 16px 28px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* ── Targeting tab active state ── */
.targeting-tab--active {
  background: var(--text) !important;
  color: var(--white) !important;
  border-color: var(--text) !important;
}

.channels__list {
  justify-content: center;
  gap: 8px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .showcase__grid--equal {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.card--emphasis {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .section--problem,
  .section--process,
  .section--showcase-premium,
  .section--contact {
    padding: 48px 0;
  }

  .showcase__grid--equal {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .showcase__grid--equal .video-card__body {
    min-height: auto;
  }

  .process-timeline {
    padding: 20px 16px;
  }

  .section--pricing .pricing-card--featured.card--emphasis {
    transform: none;
  }
}

/* ═══════════════════════════════════════════
   V4 — Premium Pricing Tiers + Dark Contrast
   ═══════════════════════════════════════════ */

:root {
  --premium-gold: #c9a962;
  --premium-gold-soft: rgba(201, 169, 98, 0.15);
  --pricing-bg: #0b0b0b;
  --pricing-card-dark: #1c1c1c;
  --pricing-card-entry: #f7f6f3;
}

/* Dark section text — all light-theme selectors overridden */
.section--dark .section__subtitle,
.section--solution .section__subtitle {
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
}

.section--dark .badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
}

.section--dark .badge::before {
  background: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
}

/* Premium pricing section */
.section--pricing-premium {
  background: linear-gradient(180deg, var(--pricing-bg) 0%, #111111 100%);
  color: var(--on-dark, #fff);
  padding: var(--section-pad) 0;
}

.pricing-premium__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.pricing-premium__header .section__title {
  color: var(--on-dark, #fff);
  margin: 0 auto 12px !important;
  max-width: none !important;
  width: max-content;
  max-width: 100%;
  font-size: clamp(1.85rem, 4vw, 2.6rem) !important;
  white-space: nowrap;
  line-height: 1.25 !important;
}

.pricing-premium__header .section__lead {
  display: none;
}

.pricing-premium__header .section__lead::after {
  display: none !important;
}

.section--pricing-premium .section__title {
  color: var(--on-dark, #fff);
}

.pricing-premium__guide {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
  max-width: 36em;
  margin: 0 auto;
  word-break: keep-all;
}

.pricing-premium__meta {
  display: none;
}

.pricing-premium__meta--legacy {
  font-size: 0.82rem;
  color: var(--on-dark-subtle, rgba(255, 255, 255, 0.55));
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-premium__meta strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .pricing-premium__meta {
    white-space: normal;
  }
}

/* Calculator left (fixed width) + loyalty text right — no boxes */
.pricing-sim-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  margin: 0 auto 32px;
  max-width: 1100px;
  min-width: 0;
}

/* ── Ad budget calculator (interactive simulator) ── */
.ad-calc {
  margin: 0;
  max-width: 880px;
  width: 100%;
  flex: 0 1 880px;
  min-width: 0;
}

/* Text-only side notes (공통 제공 + 누적 혜택) — right of calculator, no boxes */
.pricing-side-text {
  flex: 0 0 auto;
  max-width: 176px;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  word-break: keep-all;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: none;
  border: none;
  box-shadow: none;
}

.pricing-side-text__block {
  margin: 0;
}

.pricing-side-text strong {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: -0.01em;
}

.pricing-loyalty,
.pricing-loyalty-text,
.pricing-common-bar {
  display: none !important;
}

.ad-calc__panel {
  background: #f7f6f3;
  color: #111;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.14),
    0 24px 56px -24px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.ad-calc__intro {
  padding: 20px 24px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: linear-gradient(180deg, #fff 0%, #f7f6f3 100%);
}

.ad-calc__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #8a8a8a;
  margin-bottom: 8px;
}

.ad-calc__title {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #111;
  margin-bottom: 6px;
}

.ad-calc__lead {
  font-size: 0.86rem;
  color: #5b5b5b;
  line-height: 1.5;
  max-width: 52em;
}

.ad-calc__lead strong {
  color: #111;
  font-weight: 700;
}

.ad-calc__body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-width: 0;
  width: 100%;
}

.ad-calc__controls {
  padding: 18px 22px 20px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.ad-calc__field {
  margin-bottom: 16px;
}

.ad-calc__field--last {
  margin-bottom: 14px;
}

.ad-calc__field:last-of-type {
  margin-bottom: 12px;
}

.ad-calc__result-main {
  margin-bottom: 10px;
  min-width: 0;
}

.ad-calc__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #6b6b6b;
  margin-bottom: 10px;
}

.ad-calc__label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ad-calc__label-row .ad-calc__label {
  margin-bottom: 0;
}

.ad-calc__budget-value {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

.ad-calc__tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  padding: 3px;
  background: #ebeae6;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.ad-calc__tab {
  border: none;
  background: transparent;
  color: #6b6b6b;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 6px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  line-height: 1;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-height: 40px;
  min-width: 0;
  box-sizing: border-box;
  letter-spacing: -0.03em;
  overflow: hidden;
  text-overflow: clip;
}

.ad-calc__tab:hover {
  color: #111;
}

.ad-calc__tab--active {
  background: #111;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.ad-calc__tab:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.ad-calc__term-hint {
  margin: 6px 0 0;
  font-size: 0.72rem;
  color: #8a8a8a;
  line-height: 1.35;
}

/* Total (primary) vs monthly (secondary) on dark result panel */
.ad-calc__term-total-sub {
  display: block;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
  margin: 0 0 12px;
}

.ad-calc__monthly {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ad-calc__monthly-k {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

.ad-calc__monthly-v {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: -0.02em;
}

.ad-calc__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111 0%, #111 var(--calc-pct, 0%), #d8d6d0 var(--calc-pct, 0%), #d8d6d0 100%);
  outline: none;
  cursor: pointer;
  margin: 6px 0 12px;
}

.ad-calc__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  cursor: grab;
}

.ad-calc__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #111;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  cursor: grab;
}

.ad-calc__slider:focus-visible {
  outline: 2px solid #111;
  outline-offset: 4px;
}

.ad-calc__ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a8a8a;
  letter-spacing: -0.01em;
}

/* 3사 선택 시 눈금 4칸(200~500) */
.ad-calc__ticks--from-200 {
  justify-content: space-between;
}

.ad-calc__meta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
  min-width: 0;
  margin: 0 0 12px;
}

@media (min-width: 861px) {
  .ad-calc__meta-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ad-calc__meta-item {
  padding: 10px 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  min-width: 0;
  width: 100%;
  height: auto;
  min-height: 58px;
  max-height: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  overflow: visible;
}

.ad-calc__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

/* White CTA on dark result panel */
.ad-calc__result .ad-calc__cta,
.ad-calc__result .btn--primary {
  width: 100%;
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  padding: 0 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  line-height: 1;
  background: #fff !important;
  color: #111 !important;
  border: none !important;
  font-weight: 700;
  box-shadow: none !important;
}

.ad-calc__result .ad-calc__cta:hover,
.ad-calc__result .btn--primary:hover {
  background: #f0f0ee !important;
  color: #111 !important;
}

.ad-calc__meta-k {
  display: block;
  width: 100%;
  font-size: 0.66rem;
  font-weight: 600;
  color: #8a8a8a;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.ad-calc__meta-v {
  display: block;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
  line-height: 1.25;
  /* 3사 동시 송출 등 긴 상품명 전체 표시 */
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  min-width: 0;
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 선택 상품 칸: 긴 라벨 우선 확보 */
.ad-calc__meta-item:first-child .ad-calc__meta-v,
#calcProductLabel {
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
  font-size: clamp(0.72rem, 1.6vw, 0.78rem);
  line-height: 1.3;
}

.ad-calc__bonus {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  padding: 12px 14px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  min-width: 0;
  box-sizing: border-box;
}

.ad-calc__bonus[hidden] {
  display: none !important;
}

.ad-calc__bonus-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.ad-calc__bonus-text {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  min-width: 0;
  flex: 1 1 auto;
}

@media (max-width: 860px) {
  .ad-calc__bonus-text {
    font-size: 0.78rem;
  }
}

.ad-calc__result {
  padding: 22px 20px 20px;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  align-self: stretch;
  min-height: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.ad-calc__result-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
  word-break: keep-all;
}

.ad-calc__result-num {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 6px;
  color: #fff;
  transition: opacity 0.12s ease;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.ad-calc__result-num--primary {
  color: #fff;
}

.ad-calc__result-num.is-updating {
  opacity: 0.55;
}

.ad-calc__result-prefix {
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.75);
  margin-right: 0.12em;
  vertical-align: 0.12em;
}

.ad-calc__result-num em {
  font-style: normal;
  font-size: 0.42em;
  font-weight: 700;
  margin-left: 4px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.65);
  vertical-align: 0.15em;
  white-space: nowrap;
}

.ad-calc__result-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 12px;
  line-height: 1.4;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
  max-width: 100%;
}

.ad-calc__term-total-sub {
  max-width: 100%;
  word-break: keep-all;
  overflow-wrap: break-word;
  white-space: normal;
}

.ad-calc__monthly {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.ad-calc__monthly-v {
  white-space: nowrap;
  min-width: 0;
}

.ad-calc__notes {
  margin-bottom: 0;
}

.ad-calc__notes p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.45;
  margin: 0 0 3px;
}

.ad-calc__cta {
  text-align: center;
  width: 100%;
  justify-content: center;
}

.ad-calc__result .btn--primary {
  background: #fff !important;
  color: #111 !important;
  border: none !important;
}

.ad-calc__result .btn--primary:hover {
  background: #f0f0ee !important;
  color: #111 !important;
}

.ad-calc__cta--ghost,
.ad-calc__result .btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.ad-calc__cta--ghost:hover,
.ad-calc__result .btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 860px) {
  .ad-calc__body {
    grid-template-columns: 1fr;
  }

  .ad-calc__controls {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 24px 22px;
  }

  .ad-calc__intro {
    padding: 24px 22px 18px;
  }

  .ad-calc__result {
    padding: 26px 22px;
  }

  .ad-calc__meta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ad-calc__meta-item {
    height: auto;
    min-height: 58px;
    max-height: none;
  }

  .ad-calc__tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
  }

  .ad-calc__tab {
    font-size: 0.7rem;
    padding: 10px 4px;
    white-space: nowrap !important;
  }
}

/* Tier grid */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-tier {
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  min-height: 0;
}

.pricing-tier__cta {
  margin-top: auto;
}

/* Entry — light card */
.pricing-tier--entry {
  background: var(--pricing-card-entry);
  border-color: #e8e8e6;
  color: var(--text);
}

.pricing-tier--entry .pricing-tier__label {
  color: var(--text-muted);
}

.pricing-tier--entry .pricing-tier__name,
.pricing-tier--entry .pricing-tier__price-value {
  color: var(--text);
}

.pricing-tier--entry .pricing-tier__desc,
.pricing-tier--entry .pricing-tier__stat span {
  color: var(--text-muted);
}

.pricing-tier--entry .pricing-tier__stat {
  border-color: var(--border);
}

.pricing-tier--entry .btn--outline {
  color: var(--text);
  border-color: var(--text);
}

/* Popular — mid tier */
.pricing-tier--popular {
  background: var(--pricing-card-dark);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing-tier--popular .pricing-tier__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--on-dark, #fff);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

/* Premium — top tier (subtle emphasis, same size/position as siblings) */
.pricing-tier--premium {
  background: var(--pricing-card-dark);
  border-color: rgba(201, 169, 98, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing-tier__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-subtle, rgba(255, 255, 255, 0.55));
  margin-bottom: 12px;
}

.pricing-tier__label--gold {
  color: rgba(201, 169, 98, 0.85);
}

.pricing-tier__badge--gold {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(201, 169, 98, 0.12);
  color: rgba(201, 169, 98, 0.9);
  border: 1px solid rgba(201, 169, 98, 0.25);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

.pricing-tier__carriers {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pricing-tier__carrier {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pricing-tier__carrier--kt { background: rgba(0, 130, 255, 0.2); color: #7ec8ff; }
.pricing-tier__carrier--sk { background: rgba(255, 80, 80, 0.2); color: #ff9a9a; }
.pricing-tier__carrier--lg { background: rgba(180, 100, 255, 0.2); color: #d4b0ff; }

.pricing-tier--entry .pricing-tier__carrier--kt {
  background: #e8f4ff;
  color: #0066cc;
}

.pricing-tier--entry .pricing-tier__carrier--sk,
.pricing-tier--entry .pricing-tier__carrier--lg {
  background: #f4f4f2;
  color: var(--text-muted);
}

.pricing-tier__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--on-dark, #fff);
  line-height: 1.35;
}

.pricing-tier--entry .pricing-tier__name {
  color: var(--text);
}

.pricing-tier__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
}

.pricing-tier__price-label,
.pricing-tier__price-unit {
  font-size: 0.95rem;
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
}

.pricing-tier--entry .pricing-tier__price-label,
.pricing-tier--entry .pricing-tier__price-unit {
  color: var(--text-muted);
}

.pricing-tier__price-value {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--on-dark, #fff);
}

.pricing-tier--premium .pricing-tier__price-value {
  color: var(--on-dark, #fff);
}

.pricing-tier__stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.pricing-tier__stat {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-tier--entry .pricing-tier__stat {
  background: var(--surface);
}

.pricing-tier__stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--on-dark, #fff);
  margin-bottom: 2px;
}

.pricing-tier--entry .pricing-tier__stat strong {
  color: var(--text);
}

.pricing-tier__stat span {
  font-size: 0.78rem;
  color: var(--on-dark-subtle, rgba(255, 255, 255, 0.55));
}

.pricing-tier__stat--total {
  border-style: dashed;
}

.pricing-tier__desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
  margin-bottom: 20px;
  flex: 1;
  min-height: 2.8em;
}

.pricing-tier--entry .pricing-tier__desc {
  color: var(--text-muted);
}

.section--pricing-premium .pricing-tier--premium .btn--primary {
  background: var(--on-dark, #fff);
  color: var(--pricing-bg, #0b0b0b);
}

/* Common benefits bar */
.pricing-common-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.pricing-common-bar__label {
  flex-shrink: 0;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--on-dark, #fff);
}

.pricing-common-bar p {
  font-size: 0.88rem;
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
  line-height: 1.5;
}

/* Loyalty — stacked beside calculator */
.pricing-loyalty {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  min-width: 0;
  height: 100%;
}

.pricing-loyalty__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1 1 0;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
}

.pricing-loyalty__term {
  display: none;
}

.pricing-loyalty__card strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--on-dark, #fff);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
  word-break: keep-all;
}

.pricing-loyalty__card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--on-dark-muted, rgba(255, 255, 255, 0.78));
  line-height: 1.45;
  text-align: left;
  word-break: keep-all;
  min-width: 0;
}

/* Responsive pricing */
@media (max-width: 1024px) {
  .pricing-tiers {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pricing-tier--premium {
    order: -1;
  }

  .pricing-tier--popular {
    order: 0;
  }

  .pricing-tier--entry {
    order: 1;
  }

  .pricing-tier {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .pricing-loyalty {
    grid-template-columns: 1fr;
  }

  .pricing-common-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════
   V5 — Product System / Complete Viewing
   ═══════════════════════════════════════════ */

.section--product-system {
  padding: var(--section-pad-sm, 56px) 0;
}

.product-system__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}

.product-system__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.product-system__bridge {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.product-system__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 28px;
  align-items: start;
}

.product-system__flow {
  grid-column: span 5;
}

.product-system__viewing {
  grid-column: span 7;
}

.product-system__flow-head {
  margin-bottom: 20px;
}

.product-system__flow-head .section__title {
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  margin-bottom: 6px;
  white-space: nowrap;
  letter-spacing: -0.03em;
}

@media (max-width: 640px) {
  .product-system__flow-head .section__title {
    white-space: normal;
    font-size: 1.2rem;
  }
}

.product-system__flow-head .section__desc {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* Compact step flow */
.product-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.product-flow::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--border);
}

.product-flow__step {
  display: grid;
  grid-template-columns: 28px 40px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: var(--radius-sm);
  position: relative;
  background: var(--surface);
}

.product-flow__step:last-child {
  margin-bottom: 0;
}

.product-flow__num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-align: center;
  z-index: 1;
}

.product-flow__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  z-index: 1;
}

.product-flow__icon svg {
  width: 20px;
  height: 20px;
}

.product-flow__top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.product-flow__top h3,
.product-flow__top h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.product-flow__body p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.product-flow__tag {
  padding: 2px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
}

.product-flow__tag--core {
  background: var(--text);
  border-color: var(--text);
  color: var(--white);
}

.product-flow__step--core {
  border-color: var(--text);
  box-shadow: var(--shadow);
}

/* Viewing panel — emphasis */
.viewing-panel {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.badge--emphasis {
  background: var(--text);
  color: var(--white);
}

.badge--emphasis::before {
  background: var(--white);
}

.viewing-panel__head {
  margin-bottom: 18px;
}

.viewing-panel__title {
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-top: 12px;
}

.viewing-panel__rule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.viewing-panel__rule-item {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.4;
}

.viewing-panel__rule-item--yes {
  background: var(--text);
  color: var(--white);
}

.viewing-panel__rule-item--yes strong {
  font-weight: 700;
  font-size: 0.88rem;
}

.viewing-panel__rule-item--no {
  background: var(--bg);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

/* Timeline v2 */
.viewing-timeline-v2 {
  padding: 18px 18px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.viewing-timeline-v2__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.viewing-timeline-v2__header em {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.viewing-timeline-v2__track {
  position: relative;
  height: 6px;
  background: #e4e4e2;
  border-radius: 3px;
  margin-bottom: 28px;
}

.viewing-timeline-v2__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--text);
  border-radius: 3px;
}

.viewing-timeline-v2__marks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 14px;
}

.viewing-timeline-v2__marks span {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
}

.viewing-timeline-v2__marks .is-end {
  color: var(--text);
  font-weight: 700;
}

.viewing-timeline-v2__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.viewing-timeline-v2__legend i {
  font-style: normal;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  margin-right: 4px;
}

.viewing-timeline-v2__legend .is-bill {
  background: var(--text);
  color: var(--white);
}

.viewing-timeline-v2__legend .is-free {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Benefit cards v2 */
.viewing-benefits--v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.viewing-benefit-v2 {
  display: flex;
  flex-direction: column;
  padding: 14px 14px 16px;
  min-height: 118px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.viewing-benefit-v2__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.viewing-benefit-v2 strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.35;
}

.viewing-benefit-v2 p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-system__flow,
  .product-system__viewing {
    grid-column: span 12;
  }

  .product-system__viewing {
    order: 2;
  }
}

@media (max-width: 768px) {
  .section--product-system {
    padding: 48px 0;
  }

  .product-system__intro {
    margin-bottom: 28px;
  }

  .product-flow__step {
    grid-template-columns: 24px 36px 1fr;
    padding: 10px 12px;
  }

  .product-flow::before {
    left: 23px;
  }

  .viewing-panel__rule {
    grid-template-columns: 1fr;
  }

  .viewing-panel__title {
    font-size: 1.35rem;
  }

  .viewing-timeline-v2__marks {
    font-size: 0.68rem;
  }

  .viewing-benefits--v2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .viewing-benefit-v2 {
    min-height: auto;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE OVERRIDE (final cascade — 1024 / 768 / 480)
   Placed last so it wins over scattered earlier breakpoints.
   ═══════════════════════════════════════════════════════════ */

/* —— Tablet (≤1024) —— */
@media (max-width: 1024px) {
  .container,
  .nav__inner {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero--premium {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: calc(var(--nav-h) + 20px) 16px 32px;
  }

  .hero__stage {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "frame"
      "hudL"
      "hudR";
    gap: 12px;
    max-width: 100%;
  }

  .hero__frame {
    grid-area: frame;
    grid-column: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
  }

  .hero__arrow {
    width: 40px;
    height: 40px;
  }

  .hero__arrow--prev { left: 10px; }
  .hero__arrow--next { right: 10px; }

  .hero__hud--left {
    grid-area: hudL;
    grid-column: auto !important;
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 12px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .hero__hud--right {
    grid-area: hudR;
    grid-column: auto !important;
    width: 100%;
    text-align: left;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 12px 0 0;
  }

  .hero__hud--right .hero__media-desc {
    white-space: normal;
  }

  .ad-calc__body {
    grid-template-columns: 1fr;
  }

  .ad-calc__controls {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .targeting__grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }

  .targeting__text {
    grid-column: 1 / -1;
    max-width: none;
  }

  .compare {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .compare__arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .product-system__grid {
    grid-template-columns: 1fr !important;
  }

  .why-compare {
    grid-template-columns: 1fr !important;
  }

  .pricing-tiers {
    grid-template-columns: 1fr 1fr !important;
  }

  .contact-sales {
    grid-template-columns: 1fr !important;
  }

  .portfolio-carousel {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }
}

/* —— Mobile (≤768) —— */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
  }

  .container,
  .nav__inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
    overflow-x: clip;
    overflow-y: visible;
  }

  .section__title,
  .section__subtitle,
  .section__desc,
  h1, h2, h3, h4, p, li, span, strong {
    max-width: 100%;
  }

  .section__title {
    /* Keep titles bold on mobile — do not shrink to body size */
    font-size: clamp(1.7rem, 7vw, 2.15rem) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.035em !important;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100% !important;
    margin-bottom: 12px !important;
  }

  .section__lead {
    font-size: clamp(0.98rem, 3.8vw, 1.08rem) !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
    margin-bottom: 10px !important;
  }

  .section__eyebrow {
    margin-bottom: 10px !important;
    font-size: 0.68rem !important;
  }

  .hero--premium .hero__title,
  .hero__title {
    font-size: clamp(1.75rem, 7.5vw, 2.2rem) !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
  }

  .aicf__title {
    font-size: clamp(1.7rem, 7vw, 2.15rem) !important;
    max-width: 100% !important;
  }

  .targeting__headline {
    font-size: clamp(1.7rem, 7vw, 2.05rem) !important;
    max-width: 100% !important;
  }

  .section__subtitle {
    font-size: clamp(0.92rem, 3.8vw, 1.02rem);
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .section__desc {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .feature-card h3,
  .feature-card p,
  .compare__card h3,
  .compare__card li,
  .compare__card li p,
  .compare__card li strong,
  .why-card h3,
  .why-card p,
  .targeting__headline,
  .aicf__title,
  .solution__banner span {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }

  /* Kill nowrap that causes horizontal overflow / text clipping */
  .solution__intro .section__desc,
  .solution__intro .section__title,
  .aicf__title,
  .aicf__desc,
  .product-system__flow-head .section__title,
  .hero__media-desc,
  .ad-calc__bonus-text,
  .kpi__sub,
  .surcharge__grade-rate,
  .targeting__headline,
  .why-compare__panel h3,
  .feature-card h3,
  .feature-card p,
  .compare__card h3,
  .compare__card p,
  .compare__card li,
  .solution__banner span,
  .cta-band p,
  .why__title,
  .section--dark .section__title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    max-width: 100%;
  }

  .feature-card,
  .compare__card,
  .card--info,
  .card--emphasis {
    overflow: visible;
  }

  .feature-card p,
  .compare__card li p {
    overflow: visible !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
  }

  /* —— Hero —— */
  .br-mobile {
    display: block;
  }

  .hero--premium {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: calc(var(--nav-h) + 12px) 12px 28px !important;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .hero__layout {
    gap: 12px;
    max-width: 100%;
    width: 100%;
    overflow: visible;
  }

  .hero__top {
    max-width: 100%;
    width: 100%;
    padding: 0 2px;
    overflow: visible;
    box-sizing: border-box;
  }

  .hero--premium .hero__title,
  .hero__title {
    font-size: clamp(1.8rem, 7.8vw, 2.35rem) !important;
    line-height: 1.18 !important;
    font-weight: 800 !important;
    white-space: normal !important;
    word-break: keep-all;
    overflow-wrap: break-word;
    max-width: 100%;
    width: 100%;
    overflow: visible !important;
    text-overflow: clip !important;
    letter-spacing: -0.04em !important;
    hyphens: none;
    margin-bottom: 10px !important;
  }

  .hero--premium .hero__desc,
  .hero__desc {
    font-size: 0.95rem !important;
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: keep-all;
    line-height: 1.55;
  }

  .hero__stage {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "frame"
      "metaL"
      "metaR" !important;
    gap: 10px !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero__frame {
    grid-area: frame !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    aspect-ratio: 16 / 9;
    justify-self: stretch;
    position: relative;
    overflow: hidden;
  }

  .hero__visual,
  .hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Arrows stay inside the video frame */
  .hero__arrow {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    z-index: 8;
  }

  .hero__arrow--prev {
    left: 8px !important;
    right: auto !important;
  }

  .hero__arrow--next {
    right: 8px !important;
    left: auto !important;
  }

  .hero__arrow-icon {
    width: 15px;
    height: 15px;
  }

  .hero__hud--left {
    grid-area: metaL !important;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero__hud--right {
    grid-area: metaR !important;
    width: 100%;
    text-align: left;
    border: none;
    padding: 4px 0 0;
  }

  .hero__bottom,
  .hero--premium .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .hero__cta,
  .hero__cta--primary,
  .hero__cta--ghost {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
  }

  /* —— Portfolio carousel —— */
  .portfolio-carousel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "viewport"
      "nav" !important;
    gap: 12px !important;
    width: 100%;
    max-width: 100%;
  }

  .portfolio-carousel__viewport {
    grid-area: viewport;
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .portfolio-carousel__arrow {
    width: 40px;
    height: 40px;
  }

  /* Put both arrows under viewport in a centered row */
  .portfolio-carousel__arrow--prev,
  .portfolio-carousel__arrow--next {
    grid-area: nav;
    justify-self: center;
  }

  .portfolio-carousel {
    /* use flex column + arrow row via subgrid fallback */
  }

  .portfolio-carousel {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch;
  }

  .portfolio-carousel__viewport {
    order: 1;
    width: 100%;
  }

  .portfolio-carousel__arrow--prev,
  .portfolio-carousel__arrow--next {
    order: 2;
  }

  /* Wrap arrows as row under track using absolute nav strip */
  .portfolio-carousel {
    position: relative;
    padding-bottom: 52px;
  }

  .portfolio-carousel__arrow--prev {
    position: absolute !important;
    bottom: 0;
    left: calc(50% - 52px);
    top: auto !important;
  }

  .portfolio-carousel__arrow--next {
    position: absolute !important;
    bottom: 0;
    right: calc(50% - 52px);
    left: auto !important;
    top: auto !important;
  }

  .portfolio-carousel__card {
    max-width: 100%;
    width: 100% !important;
  }

  .portfolio-carousel__card img,
  .video-card__thumb img,
  .video-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    max-width: 100%;
  }

  /* —— Ad calculator —— */
  .ad-calc {
    max-width: 100%;
    margin-bottom: 28px;
    min-width: 0;
  }

  .ad-calc__panel {
    border-radius: 14px;
    overflow: hidden;
  }

  .ad-calc__intro {
    padding: 20px 16px 14px;
  }

  .ad-calc__title {
    font-size: clamp(1.1rem, 5vw, 1.35rem);
    word-break: keep-all;
  }

  .ad-calc__body {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .ad-calc__controls {
    padding: 16px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    min-width: 0;
  }

  .ad-calc__tabs {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
  }

  .ad-calc__tab {
    font-size: 0.68rem !important;
    padding: 10px 3px !important;
    min-height: 40px;
    flex: 1 1 0 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }

  .ad-calc__slider,
  .ad-calc__field,
  input[type="range"].ad-calc__slider {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  .ad-calc__ticks {
    font-size: 0.65rem;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .ad-calc__meta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px;
  }

  .ad-calc__meta-item {
    height: auto !important;
    min-height: 58px !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .ad-calc__meta-v,
  #calcProductLabel {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }

  .ad-calc__result {
    padding: 20px 16px !important;
    min-width: 0;
  }

  .ad-calc__result {
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden;
  }

  .ad-calc__result-num {
    font-size: clamp(1.35rem, 5.5vw, 1.9rem) !important;
    word-break: break-all;
    overflow-wrap: anywhere;
    max-width: 100%;
    line-height: 1.15;
  }

  .ad-calc__result-sub,
  .ad-calc__term-total-sub {
    white-space: normal !important;
    word-break: keep-all;
  }

  .ad-calc__bonus-text {
    white-space: normal !important;
    font-size: 0.78rem;
  }

  .ad-calc__actions,
  .ad-calc__cta {
    width: 100%;
    box-sizing: border-box;
  }

  .ad-calc__cta {
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
  }

  /* —— Targeting: text → UI → surcharge —— */
  .targeting__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .targeting__text {
    grid-column: auto !important;
    max-width: none !important;
    order: 1;
  }

  .targeting__panel {
    order: 2;
    min-width: 0;
    width: 100%;
  }

  .surcharge {
    order: 3;
    min-width: 0;
    width: 100%;
  }

  .targeting__headline {
    font-size: 1.3rem !important;
    word-break: keep-all;
  }

  .targeting__points li {
    padding: 10px 12px;
  }

  .targeting-tabs,
  .targeting-tablist {
    flex-wrap: wrap;
    gap: 6px;
  }

  .targeting-tab {
    flex: 1 1 auto;
    min-height: 40px;
    font-size: 0.78rem;
  }

  .targeting-content,
  .targeting-visual,
  .geo-console,
  .geo-console__body {
    min-width: 0;
    max-width: 100%;
  }

  .geo-console__body {
    grid-template-columns: 1fr !important;
  }

  .surcharge__panel {
    padding: 14px 12px;
  }

  .surcharge__filters {
    flex-wrap: wrap !important;
    justify-content: flex-start;
    gap: 4px;
  }

  .surcharge__filter {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    font-size: 0.72rem;
    padding: 8px 6px;
    min-height: 36px;
  }

  /* Card-style surcharge rows (hide table header) */
  .surcharge__thead {
    display: none !important;
  }

  .surcharge__table {
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .surcharge__row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    padding: 12px 14px !important;
    border: 1px solid var(--border, #e8e8e6);
    border-radius: 10px;
    background: #fff;
  }

  .surcharge__option {
    font-weight: 800;
    font-size: 0.9rem;
  }

  .surcharge__criteria {
    font-size: 0.8rem;
    color: var(--text-muted, #6b6b6b);
  }

  .surcharge__rate {
    text-align: left !important;
    font-size: 1rem !important;
    font-weight: 800;
    margin-top: 2px;
  }

  .surcharge__grades-list {
    grid-template-columns: 1fr !important;
  }

  .surcharge__grades-list li {
    grid-template-columns: auto 1fr !important;
    gap: 6px 8px;
  }

  .surcharge__grade-rate {
    grid-column: 2;
    justify-self: start;
  }

  .surcharge__grade-areas {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  /* —— Compare / solution (Before→After vertical) —— */
  .compare {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .compare__arrow {
    transform: rotate(90deg);
    justify-self: center;
    margin: 0 auto;
  }

  .compare__card {
    padding: 20px 16px !important;
    min-width: 0;
    width: 100%;
    overflow: visible !important;
  }

  .compare__card li {
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    gap: 8px 10px;
    align-items: start;
    min-width: 0;
  }

  .compare__card li > div {
    min-width: 0;
    max-width: 100%;
  }

  .compare__card li strong,
  .compare__card li p {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  .compare__card--before::after,
  .compare__card--after::after {
    font-size: 2.5rem;
    opacity: 0.5;
  }

  .solution__intro {
    margin-bottom: 28px;
  }

  .solution__intro .section__desc {
    white-space: normal !important;
    max-width: 100% !important;
  }

  .solution__banner {
    flex-wrap: wrap;
    border-radius: 16px !important;
    padding: 14px 16px !important;
    text-align: left;
    justify-content: flex-start;
    gap: 10px;
  }

  .solution__banner span {
    white-space: normal !important;
    overflow-wrap: anywhere;
    flex: 1 1 auto;
    min-width: 0;
    line-height: 1.45;
  }

  /* —— Why compare —— */
  .why-compare {
    grid-template-columns: 1fr !important;
  }

  .why-compare__panel--online {
    border-radius: 16px 16px 0 0 !important;
    border-right: 1px solid var(--border) !important;
  }

  .why-compare__panel--iptv {
    border-radius: 0 0 16px 16px !important;
    border-left: 1px solid rgba(255,255,255,0.08) !important;
  }

  .why-compare__vs span {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -8px auto;
  }

  /* —— Product system —— */
  .product-system__grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .product-system__flow-head .section__title {
    white-space: normal !important;
    font-size: 1.15rem !important;
    word-break: keep-all;
  }

  .product-flow__step {
    padding: 10px 12px;
    min-height: 0;
  }

  .product-flow,
  .product-flow__list {
    gap: 8px;
  }

  .viewing-benefits--v2,
  .viewing-panel__rule {
    grid-template-columns: 1fr !important;
  }

  .viewing-timeline-v2,
  .viewing-panel {
    min-width: 0;
    max-width: 100%;
  }

  .viewing-benefit-v2 {
    padding: 16px;
    min-height: auto;
  }

  /* —— Pricing —— */
  .pricing-tiers,
  .p-cards,
  .package-cards {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .pricing-tier,
  .package-card,
  .p-card {
    padding: 20px 16px;
    min-width: 0;
  }

  .pricing-tier__cta,
  .pricing-tier .btn,
  .package-card .btn,
  .p-card .btn {
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
  }

  .pricing-common-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 8px;
  }

  .pricing-loyalty {
    grid-template-columns: 1fr !important;
    display: grid;
    gap: 10px;
  }

  .pricing-premium__header,
  .pricing-premium__guide,
  .pricing-premium__meta {
    max-width: 100%;
    word-break: keep-all;
  }

  /* —— Cards / about / why / stats —— */
  .about__cards,
  .feature-card,
  .why__benefits,
  .s-cards,
  .stats,
  .benefits__grid,
  .feature-grid {
    grid-template-columns: 1fr !important;
  }

  .stats {
    display: grid;
    gap: 10px;
  }

  .dashboard__kpis {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px;
  }

  .dashboard__charts {
    grid-template-columns: 1fr !important;
  }

  .kpi {
    padding: 12px 10px;
    min-width: 0;
  }

  .kpi__sub {
    white-space: normal !important;
    font-size: 0.6rem;
  }

  /* —— AICF / portfolio —— */
  .aicf__hero {
    padding-bottom: 20px;
    margin-bottom: 24px;
  }

  .aicf__title,
  .aicf__desc {
    white-space: normal !important;
    word-break: keep-all;
  }

  .aicf__types {
    grid-template-columns: 1fr !important;
  }

  /* —— Contact —— */
  .contact-sales {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .contact-sales__channels {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .contact-sales__channel,
  .contact-sales__card .btn,
  .contact-sales a.btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
    box-sizing: border-box;
  }

  .contact-sales__channel strong {
    word-break: break-all;
    overflow-wrap: anywhere;
    font-size: 0.95rem;
  }

  .contact-sales__card {
    padding: 20px 16px;
  }

  .contact-sales__address {
    word-break: keep-all;
    overflow-wrap: anywhere;
    font-size: 0.85rem;
  }

  /* —— Process / channels —— */
  .process-timeline,
  .timeline {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .channels__list {
    flex-wrap: wrap;
    gap: 8px;
  }

  .channels__list span {
    font-size: 0.78rem;
  }

  /* —— Nav —— */
  .nav__inner {
    height: 56px;
    gap: 8px;
  }

  .nav__links {
    gap: 6px;
    font-size: 0.72rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 55%;
  }

  .nav__links a {
    white-space: nowrap;
  }

  .nav__logo {
    font-size: 0.78rem;
    min-width: 0;
  }

  /* —— Buttons —— */
  .btn {
    min-height: 44px;
    box-sizing: border-box;
  }

  .btn--full,
  .pricing-tier__cta {
    width: 100%;
  }

  /* Overflow guards */
  .hero__layout,
  .hero__stage,
  .hero__frame,
  .ad-calc,
  .ad-calc__panel,
  .ad-calc__body,
  .targeting__grid,
  .surcharge,
  .compare,
  .product-system__grid,
  .contact-sales,
  .portfolio-carousel,
  .why-compare,
  .section,
  .container {
    min-width: 0;
    max-width: 100%;
  }

  img, video, iframe {
    max-width: 100% !important;
  }

  /* Any flex row that might overflow */
  .hero__actions {
    flex-wrap: wrap;
  }
}

/* —— Small phones (≤480 / 360–430) —— */
@media (max-width: 480px) {
  .container,
  .nav__inner {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero--premium {
    padding: calc(var(--nav-h) + 10px) 10px 20px !important;
  }

  .hero--premium .hero__title,
  .hero__title {
    font-size: 1.15rem !important;
    line-height: 1.38 !important;
    padding: 0 2px;
  }

  .hero--premium .hero__desc {
    font-size: 0.82rem !important;
    line-height: 1.5;
  }

  .hero__arrow {
    width: 34px !important;
    height: 34px !important;
  }

  .hero__arrow--prev { left: 6px !important; }
  .hero__arrow--next { right: 6px !important; }

  .hero__play-circle {
    width: 48px;
    height: 48px;
  }

  .hero__hud--left {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero__hud-k { font-size: 0.66rem; }
  .hero__hud-v { font-size: 0.85rem; }

  .section__title {
    font-size: 1.25rem;
  }

  .ad-calc__intro {
    padding: 16px 14px 12px;
  }

  .ad-calc__result {
    padding: 16px 14px !important;
  }

  .ad-calc__result-num {
    font-size: 1.4rem !important;
  }

  .ad-calc__ticks span {
    font-size: 0.55rem;
  }

  .ad-calc__tab {
    font-size: 0.62rem !important;
    padding: 9px 2px !important;
    white-space: nowrap !important;
  }

  .dashboard__kpis {
    grid-template-columns: 1fr !important;
  }

  .geo-console__body {
    grid-template-columns: 1fr !important;
  }

  .targeting-tabs {
    flex-wrap: wrap;
  }

  .targeting-tab {
    flex: 1 1 calc(50% - 4px);
    font-size: 0.7rem !important;
    padding: 8px 4px !important;
  }

  .surcharge__filter {
    flex: 1 1 calc(50% - 4px);
    font-size: 0.68rem;
  }

  .card--info,
  .feature-card,
  .why-card,
  .surcharge__panel,
  .compare__card,
  .pricing-tier,
  .viewing-benefit-v2,
  .contact-sales__card {
    padding: 16px 14px;
  }

  .feature-card h3,
  .why-card h3 {
    font-size: 1rem;
  }

  .contact-sales__channel strong {
    font-size: 0.88rem;
  }

  .portfolio-carousel {
    padding-bottom: 48px;
  }

  .portfolio-carousel__arrow {
    width: 36px;
    height: 36px;
  }

  .portfolio-carousel__arrow--prev {
    left: calc(50% - 46px);
  }

  .portfolio-carousel__arrow--next {
    right: calc(50% - 46px);
  }
}


/* ═══════════════════════════════════════════════════════════
   PROCESS FLOW — premium redesign (dark stage + step cards)
   ═══════════════════════════════════════════════════════════ */
.section--process {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, #1c1812 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 80% 100%, #0e1218 0%, transparent 50%),
    linear-gradient(165deg, #0a0a0b 0%, #070709 45%, #050508 100%) !important;
  color: #fff;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 96px;
}

.process-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.process-stage__glow {
  position: absolute;
  border-radius: 50%;
  /* Soft radial only — no filter:blur for performance */
  pointer-events: none;
}

.process-stage__glow--a {
  width: min(70vw, 640px);
  height: min(70vw, 640px);
  left: 50%;
  top: 20%;
  transform: translate(-50%, -30%);
  background: radial-gradient(circle, rgba(196, 168, 120, 0.16) 0%, transparent 68%);
}

.process-stage__glow--b {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  right: -8%;
  bottom: 0;
  background: radial-gradient(circle, rgba(120, 160, 220, 0.12) 0%, transparent 70%);
}

.process-stage__grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 40%, #000 10%, transparent 75%);
}

.process-wrap {
  position: relative;
  z-index: 1;
}

.process-header {
  margin-bottom: 48px;
}

.section--process .section__title--light,
.section--process .section__title {
  color: #fff !important;
}

.section--process .section__desc--light,
.section--process .section__desc {
  color: rgba(255, 255, 255, 0.62) !important;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.section--process .process-header__desc {
  white-space: nowrap;
  width: max-content;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: clamp(0.72rem, 1.4vw, 0.95rem);
  line-height: 1.5;
  overflow: visible;
}

.section--process .badge--on-dark,
.section--process .badge {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(232, 210, 160, 0.95);
  border: 1px solid rgba(232, 210, 160, 0.22);
}

/* Flow grid */
.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}

.process-flow__track {
  display: none; /* desktop uses card-top nodes; rail drawn via nodes */
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

/* Connector between nodes (desktop) */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 23px;
  left: calc(50% + 28px);
  width: calc(100% - 24px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(232, 210, 160, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.process-step--featured:not(:last-child)::after {
  background: linear-gradient(
    90deg,
    rgba(232, 210, 160, 0.85) 0%,
    rgba(232, 210, 160, 0.25) 100%
  );
  box-shadow: 0 0 12px rgba(196, 168, 120, 0.35);
}

.process-step__node {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.process-step__num {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(145deg, #1a1a1c 0%, #0c0c0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 4px rgba(10, 10, 12, 0.9),
    0 8px 24px rgba(0, 0, 0, 0.45);
}

.process-step__ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(232, 210, 160, 0.22);
  pointer-events: none;
}

.process-step--featured .process-step__num {
  background: linear-gradient(145deg, #f0e0c0 0%, #c4a878 55%, #a08858 100%);
  color: #1a140c;
  border-color: rgba(255, 240, 210, 0.5);
  box-shadow:
    0 0 0 4px rgba(10, 10, 12, 0.9),
    0 0 28px rgba(196, 168, 120, 0.45),
    0 8px 24px rgba(0, 0, 0, 0.4);
}

.process-step--featured .process-step__ring {
  border-color: rgba(232, 210, 160, 0.55);
  box-shadow: 0 0 16px rgba(196, 168, 120, 0.3);
}

/* Cheap pulse — only opacity/scale on a thin ring, not blur */
.process-step__pulse {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(232, 210, 160, 0.4);
  animation: processPulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes processPulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .process-step__pulse { animation: none; opacity: 0; }
}

.process-step__card {
  position: relative;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 22px 18px 18px;
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 16px 40px -20px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  min-height: 200px;
  overflow: hidden;
}

.process-step__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 210, 160, 0.35), transparent);
  opacity: 0.7;
}

.process-step__card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 210, 160, 0.28);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.process-step--featured .process-step__card {
  background:
    linear-gradient(165deg, rgba(196, 168, 120, 0.16) 0%, rgba(255, 255, 255, 0.04) 55%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(232, 210, 160, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 240, 210, 0.12) inset,
    0 20px 48px -18px rgba(0, 0, 0, 0.6),
    0 0 40px -16px rgba(196, 168, 120, 0.35);
}

.process-step__tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 3px 8px;
  border-radius: 999px;
  color: #1a140c;
  background: linear-gradient(135deg, #f0e0c0, #c4a878);
}

.process-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(232, 210, 160, 0.9);
  margin-bottom: 4px;
}

.process-step__icon svg {
  width: 20px;
  height: 20px;
}

.process-step--featured .process-step__icon {
  background: rgba(196, 168, 120, 0.18);
  border-color: rgba(232, 210, 160, 0.3);
  color: #f0e0c0;
}

.process-step__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.3;
}

.process-step__desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  flex: 1;
  word-break: keep-all;
}

.process-step__time {
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(232, 210, 160, 0.95);
  background: rgba(196, 168, 120, 0.12);
  border: 1px solid rgba(232, 210, 160, 0.2);
}

.process-step--featured .process-step__time {
  background: rgba(196, 168, 120, 0.22);
  border-color: rgba(232, 210, 160, 0.35);
  color: #f5e6c8;
}

/* Footer bar */
.process-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 28px 24px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px -24px rgba(0, 0, 0, 0.5);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.process-footer__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
}

.process-footer__chips span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-footer__chips i {
  font-style: normal;
  color: rgba(232, 210, 160, 0.7);
  font-size: 0.85rem;
}

.process-footer__note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
  word-break: keep-all;
}

.process-footer__cta {
  min-height: 46px;
  padding: 0 28px;
  border-radius: 8px;
  font-weight: 700;
}

/* Hide legacy timeline styles when new flow is present */
.section--process .process-timeline {
  display: none !important;
}

/* —— Tablet —— */
@media (max-width: 1024px) {
  .process-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .process-step:nth-child(n)::after {
    display: none;
  }

  .process-step__card {
    min-height: 180px;
  }
}

/* —— Mobile —— */
@media (max-width: 768px) {
  .section--process {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .process-header {
    margin-bottom: 32px;
  }

  .process-flow {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    max-width: 100%;
  }

  .process-step {
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    padding-bottom: 16px;
  }

  .process-step:not(:last-child)::after {
    display: block;
    top: 48px;
    left: 23px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(
      180deg,
      rgba(232, 210, 160, 0.5) 0%,
      rgba(255, 255, 255, 0.1) 100%
    );
    box-shadow: none;
  }

  .process-step__node {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
  }

  .process-step__num {
    width: 46px;
    height: 46px;
  }

  .process-step__card {
    min-height: 0;
    padding: 16px 14px;
    gap: 6px;
  }

  .process-step__icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .process-step__icon svg {
    width: 17px;
    height: 17px;
  }

  .process-step__title {
    font-size: 1rem;
  }

  .process-step__desc {
    font-size: 0.78rem;
  }

  .process-footer {
    margin-top: 28px;
    padding: 20px 16px;
    gap: 12px;
  }

  .process-footer__cta {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .process-step__card {
    padding: 14px 12px;
  }

  .process-step__tag {
    top: 10px;
    right: 10px;
    font-size: 0.58rem;
  }

  .process-footer__chips span {
    font-size: 0.72rem;
    padding: 5px 9px;
  }
}

/* ═══════════════════════════════════════════════════════════
   WHY — Media Experience Comparison (phone feed vs TV)
   Primary visual impact; supersedes table-like why-compare.
   ═══════════════════════════════════════════════════════════ */
.section--why {
  background: var(--bg, #fafaf9) !important;
  overflow-x: clip;
}

.why-exp__header {
  margin-bottom: 28px;
}

.why-exp__lead {
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted, #6b6b6b);
  word-break: keep-all;
}

/* Compact insight row */
.why-insights {
  list-style: none;
  margin: 0 auto 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 820px;
}

.why-insight {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 12px;
  text-align: left;
  min-width: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.why-insight__k {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light, #9a9a9a);
}

.why-insight strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text, #111);
  line-height: 1.3;
}

.why-insight em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.35;
}

.why-exp__tagline {
  text-align: center;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text, #111);
  margin: 0 0 32px;
  word-break: keep-all;
}

/* Dual stage */
.why-exp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px 16px;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.why-exp__side {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 20px;
  padding: 24px 22px 22px;
  border: 1px solid var(--border, #e8e8e6);
  overflow: hidden;
}

.why-exp__side--online {
  background: linear-gradient(180deg, #f7f7f5 0%, #efefed 100%);
  color: #1a1a1a;
}

.why-exp__side--iptv {
  background: linear-gradient(165deg, #141414 0%, #0a0a0a 55%, #070707 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px -28px rgba(0, 0, 0, 0.45);
}

.why-exp__side-head {
  text-align: center;
  margin-bottom: 18px;
}

.why-exp__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #8a8a8a;
  margin-bottom: 8px;
}

.why-exp__eyebrow--gold {
  color: rgba(212, 190, 150, 0.85);
}

.why-exp__side-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why-exp__side--iptv .why-exp__side-title {
  color: #fff;
}

.why-exp__hook {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.why-exp__hook--weak {
  color: #8a8a8a;
}

.why-exp__hook--strong {
  color: rgba(232, 210, 160, 0.95);
}

/* Visual areas */
.why-exp__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 18px;
  min-height: 280px;
}

/* —— Phone + feed mock —— */
.phone-mock {
  width: min(100%, 200px);
  margin: 0 auto;
}

.phone-mock__shell {
  position: relative;
  border-radius: 28px;
  padding: 10px 9px 12px;
  background: linear-gradient(160deg, #2a2a2c 0%, #111 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 18px 40px -16px rgba(0, 0, 0, 0.45);
}

.phone-mock__notch {
  width: 72px;
  height: 8px;
  margin: 0 auto 8px;
  border-radius: 999px;
  background: #0a0a0a;
}

.phone-mock__screen {
  border-radius: 18px;
  overflow: hidden;
  background: #e8e8e6;
  height: 280px;
  position: relative;
}

.feed-ui {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #f2f2f0;
}

.feed-ui__bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px 6px;
  background: #fff;
  border-bottom: 1px solid #e4e4e2;
}

.feed-ui__bar span {
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  flex: 1;
}

.feed-ui__bar span:first-child {
  flex: 0 0 28px;
  border-radius: 50%;
  height: 18px;
  width: 18px;
  flex: 0 0 18px;
  background: #ccc;
}

.feed-ui__track {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}

.feed-card {
  position: relative;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e6e6e4;
  padding: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.feed-card--ad {
  border-color: #d0d0ce;
  background: #fafaf8;
}

.feed-card--faded {
  opacity: 0.45;
  transform: translateY(4px);
}

.feed-card__media {
  height: 56px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.feed-card__media--a {
  background: linear-gradient(135deg, #d8d8d6, #c4c4c2);
}

.feed-card__media--b {
  background: linear-gradient(135deg, #cececc, #b8b8b6);
}

.feed-card__media--ad {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 6px,
      rgba(0, 0, 0, 0.03) 6px,
      rgba(0, 0, 0, 0.03) 7px
    ),
    #e0e0de;
  position: relative;
}

.feed-card__media--ad::after {
  content: 'AD';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(0, 0, 0, 0.28);
}

.feed-card__ad-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 5px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.feed-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feed-card__meta i {
  display: block;
  height: 5px;
  width: 55%;
  border-radius: 2px;
  background: #e2e2e0;
  font-style: normal;
}

.feed-card__meta-w {
  width: 38% !important;
  background: #ebebe9 !important;
}

.feed-card__swipe {
  display: block;
  margin-top: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  color: #9a9a9a;
  letter-spacing: -0.01em;
  text-align: center;
}

.feed-ui__hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 8px 10px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.9));
}

.feed-ui__finger {
  width: 14px;
  height: 20px;
  border: 1.5px solid #bbb;
  border-radius: 8px 8px 10px 10px;
  position: relative;
  opacity: 0.7;
}

.feed-ui__finger::after {
  content: '';
  position: absolute;
  left: 50%;
  top: -8px;
  width: 1.5px;
  height: 8px;
  background: #bbb;
  transform: translateX(-50%);
}

.feed-ui__hint em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 700;
  color: #8a8a8a;
}

/* —— TV mock —— */
.tv-mock {
  width: min(100%, 320px);
  margin: 0 auto;
  text-align: center;
}

.tv-mock__bezel {
  border-radius: 12px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a2c 0%, #121214 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 48px -20px rgba(0, 0, 0, 0.7);
}

.tv-mock__screen {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0c0c0c;
  position: relative;
}

.tv-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(196, 168, 120, 0.12) 0%, transparent 65%),
    linear-gradient(165deg, #1a1814 0%, #0c0c0e 100%);
}

.tv-scene__glow {
  position: absolute;
  width: 55%;
  height: 40%;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tv-scene__brand {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}

.tv-scene__live {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.tv-scene__brand strong {
  display: block;
  font-size: clamp(0.95rem, 2.2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f5f0e6;
  margin-bottom: 4px;
}

.tv-scene__brand em {
  font-style: normal;
  font-size: 0.68rem;
  color: rgba(232, 210, 160, 0.75);
  letter-spacing: 0.04em;
}

.tv-scene__bar {
  position: absolute;
  bottom: 12px;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.tv-scene__bar-fill {
  display: block;
  height: 100%;
  width: 42%;
  border-radius: 2px;
  background: rgba(232, 210, 160, 0.75);
}

.tv-mock__stand {
  width: 48px;
  height: 14px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a2a2c, #1a1a1c);
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0 100%);
}

.tv-mock__base {
  width: 120px;
  height: 6px;
  margin: 0 auto;
  border-radius: 3px;
  background: #1a1a1c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.tv-mock__caption {
  margin: 10px 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.01em;
}

/* Keyword chips */
.why-exp__chips {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.why-exp__chips li {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: -0.01em;
  background: rgba(0, 0, 0, 0.05);
  color: #555;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.why-exp__chips--iptv li {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
}

.why-exp__side-note {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.45;
  color: #6b6b6b;
  word-break: keep-all;
}

.why-exp__side--iptv .why-exp__side-note {
  color: rgba(255, 255, 255, 0.5);
}

/* VS badge */
.why-exp__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  z-index: 2;
}

.why-exp__vs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111;
  background: #fff;
  border: 1px solid var(--border, #e8e8e6);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.why-exp__footer {
  margin: 28px auto 0;
  text-align: center;
  max-width: 36em;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.55;
  word-break: keep-all;
}

/* Hide legacy compare if any remnant */
.section--why .why-compare,
.section--why .why__compare,
.section--why .why__benefits {
  display: none !important;
}

/* —— Tablet —— */
@media (max-width: 1024px) {
  .why-exp {
    gap: 16px 12px;
  }

  .why-exp__side {
    padding: 20px 16px 18px;
  }

  .phone-mock {
    width: min(100%, 180px);
  }

  .phone-mock__screen {
    height: 250px;
  }

  .tv-mock {
    width: min(100%, 280px);
  }
}

/* —— Mobile: stack online → IPTV —— */
@media (max-width: 768px) {
  .why-insights {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }

  .why-insight {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
    padding: 12px 14px;
  }

  .why-insight__k {
    flex: 0 0 auto;
  }

  .why-insight strong {
    flex: 1 1 auto;
  }

  .why-insight em {
    flex: 1 1 100%;
  }

  .why-exp__tagline {
    margin-bottom: 20px;
    font-size: 0.9rem;
    white-space: normal;
    padding: 0 4px;
    line-height: 1.45;
  }

  .why-exp {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100%;
    max-width: 100%;
  }

  .why-exp__side {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .why-exp__vs {
    margin: -4px 0;
  }

  .why-exp__vs span {
    width: 40px;
    height: 40px;
    font-size: 0.68rem;
  }

  .why-exp__visual {
    min-height: 0;
  }

  .phone-mock {
    width: min(100%, 200px);
  }

  .phone-mock__screen {
    height: 240px;
  }

  .tv-mock {
    width: min(100%, 100%);
    max-width: 320px;
  }

  .why-exp__chips {
    gap: 5px;
  }

  .why-exp__chips li {
    font-size: 0.68rem;
    padding: 5px 8px;
    white-space: nowrap;
  }

  .why-exp__side-note {
    font-size: 0.76rem;
    padding: 0 2px;
  }

  .why-exp__footer {
    margin-top: 20px;
    font-size: 0.8rem;
    padding: 0 8px;
    white-space: normal;
    line-height: 1.5;
  }

  .why-exp__lead {
    white-space: normal;
    padding: 0 6px;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .why-exp__side {
    padding: 18px 14px 16px;
    border-radius: 16px;
  }

  .why-exp__side-title {
    font-size: 1.05rem;
  }

  .phone-mock {
    width: min(100%, 170px);
  }

  .phone-mock__screen {
    height: 220px;
  }
}

/* ═══════════════════════════════════════════════════════════
   WHY — B2B restrained revision (overrides prior why-exp hype)
   ═══════════════════════════════════════════════════════════ */
.section--why {
  background: var(--bg, #fafaf9) !important;
  overflow-x: clip;
}

.why-exp__header {
  margin-bottom: 24px;
}

.why-exp__lead {
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted, #6b6b6b);
  word-break: keep-all;
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Quiet insight cards */
.why-insights {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 880px;
}

.why-insight {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 10px;
  min-width: 0;
  box-shadow: none;
}

.why-insight__k { display: none; }

.why-insight strong {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text, #111);
  line-height: 1.3;
}

.why-insight em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.4;
  word-break: keep-all;
}

.why-exp__tagline {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text, #111);
  margin: 0 0 28px;
  word-break: keep-all;
}

/* Equal dual cards */
.why-exp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
  gap: 0 12px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.why-exp__side {
  display: grid;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "head"
    "visual"
    "points";
  gap: 16px;
  min-width: 0;
  min-height: 0;
  border-radius: 12px;
  padding: 24px 22px 22px;
  border: 1px solid var(--border, #e8e8e6);
  box-shadow: none;
  overflow: hidden;
}

.why-exp__side--online {
  background: #f7f7f5;
  color: #1a1a1a;
}

.why-exp__side--iptv {
  background: #141414;
  color: #fff;
  border-color: #1f1f1f;
  box-shadow: none;
}

.why-exp__side-head {
  grid-area: head;
  text-align: left;
  margin: 0;
  min-height: 4.2em;
}

.why-exp__eyebrow { display: none; }

.why-exp__side-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: inherit;
}

.why-exp__side--iptv .why-exp__side-title {
  color: #fff;
}

.why-exp__sub {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #6b6b6b;
  word-break: keep-all;
  font-weight: 400;
}

.why-exp__side--iptv .why-exp__sub {
  color: rgba(255, 255, 255, 0.58);
}

/* Hide old hooks/chips/notes if any remnant */
.why-exp__hook,
.why-exp__chips,
.why-exp__side-note {
  display: none !important;
}

/* Small supporting visuals — not the hero of the card */
.why-exp__visual {
  grid-area: visual;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  min-height: 0;
  padding: 8px 0;
  opacity: 0.92;
}

.phone-mock,
.phone-mock--sm {
  width: 88px !important;
  max-width: 88px;
  margin: 0 auto;
}

.phone-mock__shell {
  border-radius: 14px;
  padding: 5px 4px 6px;
  background: #2a2a2c;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.phone-mock__notch {
  width: 28px;
  height: 4px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: #0a0a0a;
}

.phone-mock__screen {
  border-radius: 9px;
  height: 110px !important;
  background: #e8e8e6;
  overflow: hidden;
}

.feed-ui--sm .feed-ui__bar {
  padding: 6px 6px 4px;
  gap: 3px;
}

.feed-ui--sm .feed-ui__bar span {
  height: 4px;
}

.feed-ui--sm .feed-ui__bar span:first-child {
  height: 10px;
  width: 10px;
  flex: 0 0 10px;
}

.feed-ui--sm .feed-ui__track {
  padding: 4px;
  gap: 4px;
  mask-image: none;
  -webkit-mask-image: none;
}

.feed-ui--sm .feed-card {
  padding: 4px;
  border-radius: 5px;
}

.feed-ui--sm .feed-card__media {
  height: 28px;
  margin-bottom: 3px;
  border-radius: 3px;
}

.feed-ui--sm .feed-card__meta i {
  height: 3px;
}

.feed-ui--sm .feed-card__ad-label {
  top: 6px;
  left: 6px;
  font-size: 0.45rem;
  padding: 1px 3px;
}

.feed-card__swipe,
.feed-ui__hint {
  display: none !important;
}

.tv-mock,
.tv-mock--sm {
  width: 148px !important;
  max-width: 148px;
  margin: 0 auto;
  text-align: center;
}

.tv-mock__bezel {
  border-radius: 6px;
  padding: 5px;
  background: #222;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tv-mock__screen {
  border-radius: 2px;
  aspect-ratio: 16 / 9;
  background: #0c0c0c;
}

.tv-scene--quiet,
.tv-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #161616;
  padding: 8px;
}

.tv-scene__glow,
.tv-scene__live,
.tv-scene__bar,
.tv-mock__caption {
  display: none !important;
}

.tv-scene--quiet strong,
.tv-scene__brand strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
}

.tv-scene--quiet em,
.tv-scene__brand em {
  font-style: normal;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}

.tv-mock__stand {
  width: 28px;
  height: 8px;
  margin: 0 auto;
  background: #2a2a2c;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.tv-mock__base {
  width: 72px;
  height: 4px;
  margin: 0 auto;
  border-radius: 2px;
  background: #1a1a1c;
  box-shadow: none;
}

/* Aligned point lists */
.why-exp__points {
  grid-area: points;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
}

.why-exp__points li {
  position: relative;
  padding: 0 0 0 14px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #444;
  word-break: keep-all;
  font-weight: 500;
}

.why-exp__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bbb;
}

.why-exp__points--iptv li {
  color: rgba(255, 255, 255, 0.78);
}

.why-exp__points--iptv li::before {
  background: rgba(255, 255, 255, 0.35);
}

/* Quiet VS */
.why-exp__vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  z-index: 1;
}

.why-exp__vs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: #888;
  background: #fff;
  border: 1px solid var(--border, #e8e8e6);
  box-shadow: none;
}

.why-exp__footer {
  margin: 28px auto 0;
  text-align: center;
  max-width: 36em;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.55;
  word-break: keep-all;
}

.section--why .why-compare,
.section--why .why__compare,
.section--why .why__benefits {
  display: none !important;
}

@media (max-width: 1024px) {
  .why-exp {
    max-width: 100%;
    gap: 0 10px;
  }

  .why-exp__side {
    padding: 20px 16px 18px;
  }
}

@media (max-width: 768px) {
  .why-insights {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }

  .why-insight {
    padding: 14px 16px;
  }

  .why-exp__tagline {
    margin-bottom: 20px;
    font-size: 0.9rem;
    padding: 0 4px;
  }

  .why-exp {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100%;
    max-width: 100%;
  }

  .why-exp__side {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-rows: auto auto auto;
  }

  .why-exp__side-head {
    min-height: 0;
  }

  .why-exp__vs {
    margin: 0;
  }

  .why-exp__vs span {
    width: 28px;
    height: 28px;
    font-size: 0.6rem;
  }

  .phone-mock,
  .phone-mock--sm {
    width: 76px !important;
  }

  .phone-mock__screen {
    height: 96px !important;
  }

  .tv-mock,
  .tv-mock--sm {
    width: 128px !important;
  }

  .why-exp__footer {
    margin-top: 20px;
    font-size: 0.84rem;
    padding: 0 8px;
  }

  .why-exp__lead {
    font-size: 0.9rem;
    padding: 0 6px;
  }
}

@media (max-width: 480px) {
  .why-exp__side {
    padding: 18px 14px 16px;
  }

  .why-exp__side-title {
    font-size: 1rem;
  }

  .why-exp__points li {
    font-size: 0.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   WHY — IPTV hero stage (TV-centered, mobile secondary only)
   ═══════════════════════════════════════════════════════════ */
.section--why {
  background: var(--bg, #fafaf9) !important;
  overflow-x: clip;
}

.why-hero__header {
  margin-bottom: 28px;
}

.why-hero__lead {
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted, #6b6b6b);
  word-break: keep-all;
  line-height: 1.65;
  font-size: 0.95rem;
}

/* Insights — quiet, equal cards */
.why-insights {
  list-style: none;
  margin: 0 auto 32px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
}

.why-insight {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 10px;
  min-width: 0;
  box-shadow: none;
}

.why-insight strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text, #111);
}

.why-insight em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.4;
  word-break: keep-all;
}

/* Hide legacy equal dual-card compare */
.section--why .why-exp,
.section--why .why-compare,
.section--why .why__compare,
.section--why .why__benefits {
  display: none !important;
}

/* —— TV-dominant stage —— */
.why-stage {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: 20px 28px;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
  min-width: 0;
}

/* Secondary mobile rail */
.why-stage__mobile {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 14px;
  background: #f3f3f1;
  border: 1px solid var(--border, #e8e8e6);
  border-radius: 12px;
  min-width: 0;
  opacity: 0.92;
}

.why-stage__mobile-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #8a8a8a;
}

.why-stage__phones {
  display: flex;
  justify-content: center;
  opacity: 0.75;
}

.phone-mock--mini {
  width: 72px !important;
  max-width: 72px;
}

.phone-mock--mini .phone-mock__shell {
  border-radius: 12px;
  padding: 4px 3px 5px;
  background: #2c2c2e;
  box-shadow: none;
}

.phone-mock--mini .phone-mock__notch {
  width: 22px;
  height: 3px;
  margin: 0 auto 3px;
}

.phone-mock--mini .phone-mock__screen {
  height: 96px !important;
  border-radius: 8px;
}

.feed-ui--mini .feed-ui__track {
  padding: 4px;
  gap: 4px;
  mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
}

.feed-ui--mini .feed-card {
  padding: 3px;
  border-radius: 4px;
}

.feed-ui--mini .feed-card__media {
  height: 22px;
  margin: 0;
  border-radius: 2px;
}

.feed-ui--mini .feed-card__ad-label {
  top: 4px;
  left: 4px;
  font-size: 0.4rem;
  padding: 1px 2px;
}

.feed-ui--mini .feed-card__meta,
.feed-ui--mini .feed-ui__bar,
.feed-ui--mini .feed-ui__hint {
  display: none !important;
}

.why-stage__limits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-stage__limits li {
  font-size: 0.78rem;
  font-weight: 500;
  color: #6b6b6b;
  padding-left: 12px;
  position: relative;
  line-height: 1.35;
}

.why-stage__limits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c0c0be;
}

/* Primary TV panel */
.why-stage__tv {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 28px 24px;
  background: linear-gradient(165deg, #161616 0%, #0c0c0c 100%);
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  min-width: 0;
  color: #fff;
}

.why-tv {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.why-tv__bezel {
  border-radius: 10px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a2c 0%, #18181a 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.why-tv__screen {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
}

.why-tv__scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(196, 168, 120, 0.1) 0%, transparent 65%),
    linear-gradient(165deg, #1a1814 0%, #0e0e10 100%);
}

.why-tv__badge {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.65);
}

.why-tv__brand {
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #f4efe6;
  line-height: 1.2;
}

.why-tv__meta {
  font-style: normal;
  font-size: 0.75rem;
  color: rgba(232, 210, 160, 0.7);
  letter-spacing: 0.02em;
}

.why-tv__progress {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.why-tv__progress span {
  display: block;
  height: 100%;
  width: 48%;
  border-radius: 2px;
  background: rgba(232, 210, 160, 0.7);
}

.why-tv__stand {
  width: 56px;
  height: 12px;
  margin: 0 auto;
  background: #2a2a2c;
  clip-path: polygon(18% 0, 82% 0, 100% 100%, 0 100%);
}

.why-tv__base {
  width: 140px;
  height: 5px;
  margin: 0 auto;
  border-radius: 2px;
  background: #1a1a1c;
}

.why-stage__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.why-stage__points li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.why-hero__message {
  margin: 28px auto 10px;
  max-width: 34em;
  text-align: center;
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text, #111);
  line-height: 1.5;
  word-break: keep-all;
}

.why-hero__footer {
  margin: 0 auto;
  max-width: 38em;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted, #6b6b6b);
  line-height: 1.55;
  word-break: keep-all;
}

/* —— Tablet —— */
@media (max-width: 1024px) {
  .why-stage {
    gap: 16px 18px;
  }

  .why-stage__tv {
    padding: 22px 18px 20px;
  }

  .why-tv {
    max-width: 100%;
  }
}

/* —— Mobile: stack mobile contrast then TV hero —— */
@media (max-width: 768px) {
  .why-insights {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 24px;
  }

  .why-insight {
    padding: 14px 16px;
  }

  .why-stage {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    width: 100%;
    max-width: 100%;
  }

  /* TV first on mobile for hero message; mobile contrast second */
  .why-stage__tv {
    order: 1;
    width: 100%;
    padding: 20px 16px 18px;
  }

  .why-stage__mobile {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px 14px;
    padding: 12px 14px;
  }

  .why-stage__mobile-label {
    flex: 1 1 100%;
  }

  .why-stage__phones {
    flex: 0 0 auto;
  }

  .why-stage__limits {
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 8px;
  }

  .why-stage__limits li {
    padding: 4px 8px 4px 10px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
    font-size: 0.72rem;
  }

  .why-stage__limits li::before {
    display: none;
  }

  .why-stage__points {
    gap: 6px;
  }

  .why-stage__points li {
    font-size: 0.72rem;
    padding: 6px 10px;
    white-space: normal;
  }

  .phone-mock--mini {
    width: 56px !important;
  }

  .phone-mock--mini .phone-mock__screen {
    height: 76px !important;
  }

  .why-hero__message {
    margin-top: 22px;
    font-size: 0.95rem;
    padding: 0 6px;
  }

  .why-hero__footer {
    font-size: 0.84rem;
    padding: 0 8px;
  }

  .why-hero__lead {
    font-size: 0.9rem;
    padding: 0 6px;
  }
}

@media (max-width: 480px) {
  .why-stage__tv {
    padding: 18px 14px 16px;
  }

  .why-tv__brand {
    font-size: 1.1rem;
  }

  .why-stage__points li {
    font-size: 0.68rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   WHY — restore original cards + compare (undo redesign hides)
   ═══════════════════════════════════════════════════════════ */
.section--why .why-compare,
.section--why .why__compare,
.section--why .why__benefits {
  display: revert !important;
}

.section--why .why__benefits {
  display: grid !important;
}

.section--why .why-compare {
  display: grid !important;
}

/* Hide experimental redesign blocks if any leftover markup */
.section--why .why-exp,
.section--why .why-stage,
.section--why .why-insights,
.section--why .why-hero__message,
.section--why .why-hero__footer,
.section--why .why-exp__tagline {
  display: none !important;
}

@media (max-width: 860px) {
  .section--why .why-compare {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .section--why .why__benefits {
    grid-template-columns: 1fr !important;
  }

  .section--why .why-compare {
    grid-template-columns: 1fr !important;
  }

  .section--why .why-compare__vs span {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 8px auto !important;
  }
}
@media (max-width: 480px) {
  .ad-calc__terms {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }

  .ad-calc__term {
    font-size: 0.78rem;
    padding: 10px 6px;
  }

  .ad-calc__term-total-v {
    font-size: 1.3rem;
  }
}
/* Loyalty + calc summary polish */
@media (max-width: 768px) {
  .pricing-loyalty__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 16px;
  }

  .pricing-loyalty__card strong {
    white-space: normal;
  }

  .pricing-loyalty__card p {
    text-align: left;
  }

  .ad-calc__summary {
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    padding: 10px;
  }

  .ad-calc__summary strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .pricing-loyalty__card {
    gap: 4px;
  }

  .ad-calc__summary {
    grid-template-columns: 1fr;
  }
}
/* Pricing sim row responsive */
@media (max-width: 960px) {
  .pricing-sim-row {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 880px;
  }

  .pricing-loyalty {
    flex-direction: row;
    height: auto;
  }

  .pricing-loyalty__card {
    flex: 1 1 0;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .pricing-loyalty {
    flex-direction: column;
  }
}
/* Override older loyalty grid rules — keep side column layout */
.pricing-sim-row .pricing-loyalty {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
}

@media (max-width: 960px) {
  .pricing-sim-row {
    grid-template-columns: 1fr !important;
  }

  .pricing-sim-row .pricing-loyalty {
    flex-direction: row !important;
  }
}

@media (max-width: 640px) {
  .pricing-sim-row .pricing-loyalty {
    flex-direction: column !important;
  }
}
@media (max-width: 640px) {
  .pricing-loyalty-text {
    font-size: 0.8rem;
    text-align: left;
    line-height: 1.6;
  }

  .pricing-loyalty-text__sep {
    display: block;
    height: 0;
    margin: 0;
    overflow: hidden;
  }

  .pricing-loyalty-text strong {
    display: inline;
  }
}
@media (max-width: 1024px) {
  .pricing-sim-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing-loyalty-text {
    max-width: 880px;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    text-align: center;
  }

  .pricing-loyalty-text strong {
    display: inline;
    margin-right: 4px;
  }

  .pricing-loyalty-text__line {
    display: inline;
  }
}

@media (max-width: 640px) {
  .pricing-loyalty-text {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    padding: 0 4px;
  }
}
/* FINAL: calc left fixed, loyalty TEXT only on right — no boxes */
.pricing-sim-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 24px !important;
  margin: 0 auto 32px !important;
  max-width: 1120px !important;
}

.pricing-sim-row .ad-calc {
  flex: 0 1 880px !important;
  max-width: 880px !important;
  width: 100% !important;
  margin: 0 !important;
}

.pricing-sim-row .pricing-loyalty-text {
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 160px !important;
  max-width: 160px !important;
  width: 160px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 14px !important;
  text-align: left !important;
  font-size: 0.8rem !important;
  line-height: 1.5 !important;
  color: rgba(255, 255, 255, 0.62) !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.pricing-sim-row .pricing-loyalty-text__line {
  display: block !important;
}

.pricing-sim-row .pricing-loyalty-text strong {
  display: block !important;
  margin: 0 0 3px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
}

@media (max-width: 1000px) {
  .pricing-sim-row {
    flex-wrap: wrap !important;
  }

  .pricing-sim-row .pricing-loyalty-text {
    flex: 1 1 100% !important;
    max-width: 880px !important;
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px 18px !important;
    justify-content: center !important;
  }

  .pricing-sim-row .pricing-loyalty-text strong {
    display: inline !important;
    margin-right: 4px !important;
  }

  .pricing-sim-row .pricing-loyalty-text__line {
    display: inline !important;
  }
}
/* Side text next to calculator */
.pricing-sim-row .pricing-side-text {
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 170px !important;
  max-width: 170px !important;
  width: 170px !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 14px !important;
  text-align: left !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.pricing-sim-row .pricing-side-text strong {
  display: block !important;
  margin: 0 0 3px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.8rem !important;
}

.pricing-sim-row .pricing-common-bar,
.pricing-sim-row + .pricing-common-bar {
  display: none !important;
}

@media (max-width: 1000px) {
  .pricing-sim-row .pricing-side-text {
    flex: 1 1 100% !important;
    max-width: 880px !important;
    width: 100% !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
}
@media (max-width: 768px) {
  .ad-calc__meta-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ad-calc__cta-side {
    width: 100%;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
  }
}
/* Ensure meta + CTA share one horizontal band */
@media (min-width: 861px) {
  .ad-calc__body {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) !important;
    grid-template-areas:
      "controls result"
      "meta actions"
      "bonus ." !important;
  }

  .ad-calc__meta-row {
    grid-area: meta !important;
  }

  .ad-calc__actions {
    grid-area: actions !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 20px 12px !important;
    background: #f7f6f3 !important;
  }

  .ad-calc__bonus {
    grid-area: bonus !important;
  }

  .ad-calc__controls {
    grid-area: controls !important;
  }

  .ad-calc__result {
    grid-area: result !important;
  }
}

@media (max-width: 860px) {
  .ad-calc__body {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "controls"
      "result"
      "meta"
      "actions"
      "bonus" !important;
  }

  .ad-calc__meta-row {
    border-right: none !important;
    padding: 12px 16px !important;
  }

  .ad-calc__actions {
    padding: 0 16px 16px !important;
  }

  .ad-calc__bonus {
    margin: 0 16px 16px !important;
  }
}
/* Kill broken multi-area grid overrides for ad-calc body */
@media (min-width: 861px) {
  .ad-calc__body {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) !important;
    grid-template-areas: none !important;
  }

  .ad-calc__controls,
  .ad-calc__result,
  .ad-calc__meta-row,
  .ad-calc__actions,
  .ad-calc__bonus {
    grid-area: auto !important;
  }

  .ad-calc__actions {
    background: transparent !important;
    padding: 0 !important;
  }

  .ad-calc__result .ad-calc__cta,
  .ad-calc__result .btn--primary {
    background: #fff !important;
    color: #111 !important;
    border: none !important;
  }
}

@media (max-width: 860px) {
  .ad-calc__body {
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
  }

  .ad-calc__controls,
  .ad-calc__result,
  .ad-calc__meta-row,
  .ad-calc__actions,
  .ad-calc__bonus {
    grid-area: auto !important;
  }

  .ad-calc__actions {
    background: transparent !important;
    padding: 0 !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   CONTACT CTA — refined dark stage + premium card
   ═══════════════════════════════════════════════════════════ */
.section--contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 15% 20%, rgba(196, 168, 120, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 55% 50% at 90% 80%, rgba(120, 150, 200, 0.08) 0%, transparent 50%),
    linear-gradient(165deg, #121212 0%, #0a0a0a 48%, #070708 100%) !important;
  padding: 88px 0 !important;
}

.contact-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-stage__glow {
  position: absolute;
  border-radius: 50%;
}

.contact-stage__glow--a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  left: -8%;
  top: 10%;
  background: radial-gradient(circle, rgba(196, 168, 120, 0.12) 0%, transparent 70%);
}

.contact-stage__glow--b {
  width: min(45vw, 400px);
  height: min(45vw, 400px);
  right: -5%;
  bottom: 5%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

.section--contact .container,
.section--contact .contact-sales {
  position: relative;
  z-index: 1;
}

.contact-sales {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr) !important;
  gap: 48px 56px !important;
  align-items: center !important;
}

.contact-sales__lead .badge--on-dark,
.contact-sales__lead .badge {
  display: inline-flex;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(232, 210, 160, 0.22);
  color: rgba(232, 210, 160, 0.9) !important;
}

.contact-sales__lead .section__title {
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.contact-sales__lead .section__desc {
  max-width: 28em;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62) !important;
}

.contact-sales__points {
  margin-top: 28px !important;
  gap: 12px !important;
}

.contact-sales__points li {
  padding: 12px 14px 12px 36px !important;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.92rem !important;
}

.contact-sales__points li::before {
  left: 14px !important;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(232, 210, 160, 0.85) !important;
  font-size: 0.78rem;
}

.contact-sales__points strong {
  color: #fff !important;
}

/* Right contact card — premium glass */
.contact-sales__card,
.contact-sales__card.card--emphasis {
  position: relative;
  padding: 32px 28px 28px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 24px 48px -20px rgba(0, 0, 0, 0.55) !important;
  overflow: hidden;
}

.contact-sales__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 210, 160, 0.35), transparent);
  pointer-events: none;
}

.contact-sales__person {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 24px !important;
  padding-bottom: 22px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.contact-sales__person strong {
  display: block;
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.contact-sales__person span {
  font-size: 0.82rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.contact-sales__channels {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
}

.contact-sales__channel {
  display: block;
  padding: 14px 14px !important;
  border-radius: 12px !important;
  background: rgba(0, 0, 0, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: background 0.15s, border-color 0.15s !important;
  text-decoration: none;
  min-width: 0;
}

.contact-sales__channel:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(232, 210, 160, 0.28) !important;
}

.contact-sales__label {
  display: block;
  font-size: 0.66rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42) !important;
  margin-bottom: 6px !important;
}

.contact-sales__channel strong {
  display: block;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.02em;
  word-break: break-all;
  line-height: 1.3;
}

.contact-sales__address {
  font-size: 0.8rem !important;
  color: rgba(255, 255, 255, 0.48) !important;
  margin: 0 0 20px !important;
  line-height: 1.5;
  word-break: keep-all;
}

.section--contact .btn--primary,
.contact-sales__cta {
  background: #fff !important;
  color: #111 !important;
  border: none !important;
  border-radius: 10px !important;
  min-height: 52px;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
  transition: background 0.15s, transform 0.15s !important;
}

.section--contact .btn--primary:hover,
.contact-sales__cta:hover {
  background: #f4f4f2 !important;
  transform: translateY(-1px);
}

@media (max-width: 860px) {
  .contact-sales {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .contact-sales__channels {
    grid-template-columns: 1fr !important;
  }

  .contact-sales__card {
    padding: 24px 18px 20px !important;
  }

  .section--contact {
    padding: 64px 0 !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   MOBILE: show full PC content (no clipping / hidden text)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Titles & body copy must wrap, never clip */
  .section__title,
  .section__desc,
  .section__subtitle,
  .hero__title,
  .hero__desc,
  .aicf__title,
  .aicf__desc,
  .pricing-premium__guide,
  .pricing-premium__meta,
  .ad-calc__lead,
  .ad-calc__title,
  .ad-calc__result-sub,
  .ad-calc__term-total-sub,
  .ad-calc__bonus-text,
  .why-card h3,
  .why-card p,
  .why-card__metric,
  .why-card__metric strong,
  .why-card__metric span,
  .compare__card h3,
  .compare__card p,
  .compare__card li,
  .feature-card h3,
  .feature-card p,
  .contact-sales__channel strong,
  .pricing-side-text,
  .pricing-side-text__block {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    word-break: keep-all !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }

  /* Why metric bars: show both labels fully */
  .why-card__metric {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 10px !important;
    align-items: flex-start !important;
  }

  .why-card__metric span {
    text-align: left !important;
  }

  /* Product tabs: stack so full labels show (KT / SKT,LGU+ / 3사 동시 송출) */
  .ad-calc__tabs {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
  }

  .ad-calc__tab {
    flex: 0 0 auto !important;
    width: 100% !important;
    white-space: nowrap !important;
    font-size: 0.84rem !important;
    padding: 12px 12px !important;
    justify-content: center !important;
  }

  /* Meta boxes: equal width but allow height grow for long product names */
  .ad-calc__meta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ad-calc__meta-item {
    height: auto !important;
    min-height: 58px !important;
    max-height: none !important;
    padding: 10px 10px !important;
  }

  .ad-calc__meta-v {
    white-space: normal !important;
    text-overflow: unset !important;
    overflow: visible !important;
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
  }

  /* Slider ticks: smaller so all marks fit */
  .ad-calc__ticks {
    font-size: 0.62rem !important;
    gap: 0 !important;
    flex-wrap: nowrap !important;
  }

  .ad-calc__ticks span {
    white-space: nowrap !important;
  }

  /* Targeting tabs: wrap so full labels visible */
  .targeting-tabs,
  .targeting-tablist {
    flex-wrap: wrap !important;
  }

  .targeting-tab {
    flex: 1 1 calc(50% - 4px) !important;
    white-space: normal !important;
    font-size: 0.75rem !important;
    min-height: 40px !important;
  }

  /* Side benefits text under calc: full content, readable */
  .pricing-sim-row {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }

  .pricing-sim-row .ad-calc {
    max-width: 100% !important;
    flex: 1 1 auto !important;
  }

  .pricing-sim-row .pricing-side-text {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
    text-align: left !important;
    padding: 4px 8px 0 !important;
    font-size: 0.86rem !important;
  }

  .pricing-sim-row .pricing-side-text strong {
    display: block !important;
    margin-bottom: 2px !important;
  }

  .pricing-sim-row .pricing-side-text__block {
    display: block !important;
  }

  /* Surcharge filters: full text */
  .surcharge__filter {
    white-space: nowrap !important;
    font-size: 0.78rem !important;
  }

  /* Ensure why compare full content */
  .section--why .why__benefits,
  .section--why .why-compare {
    display: grid !important;
  }

  .section--why .why__benefits {
    grid-template-columns: 1fr !important;
  }

  .section--why .why-compare {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .ad-calc__tab {
    font-size: 0.82rem !important;
  }

  .why-card__metric {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
/* Extra mobile content-visibility fixes */
@media (max-width: 768px) {
  .why-card,
  .feature-card,
  .compare__card {
    overflow: visible !important;
  }

  .section--why .section__title,
  .section__title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    font-size: clamp(1.75rem, 7.2vw, 2.2rem) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.035em !important;
    font-weight: 800 !important;
    word-break: keep-all !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
  }

  .why-card__metric {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 4px !important;
  }

  .why-card__metric strong,
  .why-card__metric span {
    display: block !important;
    width: 100% !important;
    white-space: normal !important;
    overflow: visible !important;
    text-align: left !important;
  }

  .ad-calc__ticks {
    overflow: visible !important;
    padding: 0 2px !important;
  }

  .ad-calc__ticks span:last-child {
    text-align: right !important;
  }

  /* Ensure 3사 full label (decode &nbsp; as spaces still ok) */
  .ad-calc__tab {
    letter-spacing: -0.01em !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE CALC: PC와 동일 기능 보장 (계약기간 · 총노출 · 눈금 전체)
   — 캐시/클리핑으로 기간·최근 수정이 안 보이는 문제 방지
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* 뷰포트 안에 계산기 전체를  squish — 가로 오버플로로 끝 눈금이 잘리는 문제 방지 */
  #pricing,
  #pricing .container,
  #pricing .pricing-sim-row,
  #pricing .ad-calc,
  #pricing .ad-calc__panel,
  #pricing .ad-calc__body,
  #pricing .ad-calc__controls,
  #pricing .ad-calc__result,
  .section--pricing,
  .ad-calc,
  .ad-calc__panel,
  .ad-calc__body,
  .ad-calc__controls,
  .ad-calc__result {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    max-height: none !important;
    height: auto !important;
  }

  #pricing .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .ad-calc__panel {
    overflow: hidden !important; /* radius clip only — children must fit inside */
    border-radius: 14px !important;
  }

  .ad-calc__body {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas: none !important;
  }

  .ad-calc__controls {
    padding: 16px 14px 18px !important;
  }

  .ad-calc__term-hint {
    display: block !important;
    margin: 4px 0 0 !important;
    font-size: 0.72rem !important;
    color: #6b6b6b !important;
    visibility: visible !important;
  }

  /* 상품 · 월예산 · 계약기간 필드 전부 표시 (숨김/접기 금지) */
  .ad-calc__controls,
  .ad-calc__field,
  .ad-calc__field--last,
  .ad-calc__slider,
  .ad-calc__slider--term,
  #calcBudget,
  #calcTerm,
  #calcTermTicks,
  .ad-calc__bonus,
  .ad-calc__result,
  .ad-calc__result-main {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  #calcTermLabel,
  #calcTotalExposures,
  #calcExposures,
  #calcTotalSub {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .ad-calc__tabs {
    display: flex !important;
    flex-direction: column !important;
  }

  .ad-calc__label-row {
    display: flex !important;
    visibility: visible !important;
  }

  .ad-calc__meta-row {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ad-calc__monthly {
    display: flex !important;
  }

  .ad-calc__actions {
    display: flex !important;
    width: 100% !important;
  }

  .ad-calc__cta,
  #calcCtaPackage {
    display: inline-flex !important;
    width: 100% !important;
    justify-content: center !important;
  }

  /* 눈금: equal-width columns so last mark (500만 / 36개월) always fits */
  #calcTicks {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  #calcTermTicks,
  #calcTicks.ad-calc__ticks--from-200 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .ad-calc__ticks,
  #calcTicks,
  #calcTermTicks {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    gap: 0 !important;
    overflow: visible !important;
    font-size: 0.6rem !important;
    font-weight: 600 !important;
    color: #8a8a8a !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .ad-calc__ticks span {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    letter-spacing: -0.06em !important;
    font-size: 0.6rem !important;
    line-height: 1.25 !important;
    text-align: center !important;
    padding: 0 1px !important;
  }

  .ad-calc__ticks span:first-child {
    text-align: left !important;
    padding-left: 0 !important;
  }

  .ad-calc__ticks span:last-child {
    text-align: right !important;
    padding-right: 0 !important;
  }

  /* 계약기간 값(우측 숫자) 모바일에서도 선명하게 */
  #calcTermLabel,
  .ad-calc__label-row .ad-calc__budget-value {
    display: inline-block !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #111 !important;
  }

  /* 계약 기간 필드 여백 확보 */
  .ad-calc__field--last {
    margin-bottom: 16px !important;
    padding-bottom: 2px !important;
  }

  .ad-calc__slider,
  .ad-calc__slider--term {
    width: 100% !important;
    max-width: 100% !important;
    margin: 6px 0 10px !important;
  }

  /* 총 예상 노출이 1순위 수치로 읽히도록 */
  .ad-calc__result-num--primary,
  .ad-calc__result-num--primary #calcTotalExposures {
    font-size: clamp(1.5rem, 8vw, 2rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
  }

  .ad-calc__term-total-sub,
  #calcTotalSub {
    display: block !important;
    white-space: normal !important;
  }

  /* 결과 패널: 월 노출 숫자 잘림 방지 */
  .ad-calc__result {
    overflow: visible !important;
    min-width: 0 !important;
  }

  .ad-calc__monthly {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 8px !important;
    min-width: 0 !important;
  }

  .ad-calc__monthly-v,
  .ad-calc__monthly-v #calcExposures {
    white-space: nowrap !important;
    overflow: visible !important;
    font-size: 0.9rem !important;
  }

  /* 우측 혜택 텍스트: 모바일에서는 카드 아래 전체 표시 */
  .pricing-sim-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .pricing-sim-row .pricing-side-text {
    display: flex !important;
    flex-direction: column !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .pricing-side-text__block {
    display: block !important;
  }

  .calc-surcharge {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    order: -1;
  }
}

/* ═══════════════════════════════════════════════════════════
   CALC SURCHARGE — left of budget calculator
   ═══════════════════════════════════════════════════════════ */
.pricing-sim-row {
  max-width: 1280px !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
  gap: 18px 20px !important;
}

.pricing-sim-row .calc-surcharge {
  flex: 0 0 240px;
  max-width: 250px;
  width: 240px;
  min-width: 0;
  margin: 0;
  padding: 16px 14px 14px;
  box-sizing: border-box;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.calc-surcharge__eyebrow {
  margin: 0 0 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(232, 210, 160, 0.75);
}

.calc-surcharge__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.calc-surcharge__lead {
  margin: 0 0 14px;
  font-size: 0.72rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
  word-break: keep-all;
}

.calc-surcharge__group {
  margin-bottom: 12px;
}

.calc-surcharge__label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.calc-surcharge__label em {
  font-style: normal;
  color: rgba(232, 210, 160, 0.85);
  margin-left: 4px;
}

.calc-surcharge__region,
.calc-surcharge__toggles {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-surcharge__chip {
  display: block;
  width: 100%;
  text-align: left;
  margin: 0;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.72);
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.calc-surcharge__chip strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2px;
}

.calc-surcharge__chip span {
  display: block;
  font-size: 0.66rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.45);
  word-break: keep-all;
}

.calc-surcharge__chip:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.calc-surcharge__chip--active {
  border-color: rgba(232, 210, 160, 0.45);
  background: rgba(232, 210, 160, 0.12);
  box-shadow: 0 0 0 1px rgba(232, 210, 160, 0.12);
}

.calc-surcharge__chip--active strong {
  color: #f3e6c4;
}

.calc-surcharge__chip--active span {
  color: rgba(243, 230, 196, 0.7);
}

.calc-surcharge__chip:focus-visible {
  outline: 2px solid rgba(232, 210, 160, 0.7);
  outline-offset: 2px;
}

.calc-surcharge__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 10px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
}

.calc-surcharge__summary strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f3e6c4;
  letter-spacing: -0.02em;
}

.calc-surcharge__note {
  margin: 8px 0 0;
  font-size: 0.66rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
  word-break: keep-all;
}

.ad-calc__surcharge-line {
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.62);
  word-break: keep-all;
}

.pricing-sim-row .ad-calc {
  flex: 1 1 560px !important;
  max-width: 720px !important;
}

.pricing-sim-row .pricing-side-text {
  flex: 0 0 150px !important;
  max-width: 150px !important;
  width: 150px !important;
  align-self: center;
}

@media (max-width: 1180px) {
  .pricing-sim-row {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .pricing-sim-row .calc-surcharge {
    flex: 1 1 220px;
    max-width: 280px;
    width: auto;
  }

  .pricing-sim-row .ad-calc {
    flex: 1 1 480px !important;
    max-width: 640px !important;
  }

  .pricing-sim-row .pricing-side-text {
    flex: 1 1 100% !important;
    max-width: 720px !important;
    width: 100% !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px 20px !important;
  }
}

@media (max-width: 768px) {
  .pricing-sim-row .calc-surcharge {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    order: -1;
  }

  .calc-surcharge__region,
  .calc-surcharge__toggles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .calc-surcharge__chip--region:first-child {
    grid-column: 1 / -1;
  }

  .calc-surcharge__chip span {
    font-size: 0.62rem;
  }
}

@media (min-width: 1025px) {
  .section--product-system .product-system__flow {
    align-self: center;
  }
}

.section--product-system .viewing-panel {
  padding: 24px 26px;
}

.section--product-system .viewing-panel__head {
  margin-bottom: 14px;
}

.section--product-system .viewing-panel__title {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  white-space: nowrap;
}

.section--product-system .viewing-panel__rule {
  margin-bottom: 16px;
}

.section--product-system .viewing-timeline-v2 {
  padding: 16px 18px 14px;
  margin-bottom: 14px;
}

.section--product-system .viewing-benefit-v2 {
  min-height: 104px;
  padding: 12px 14px 14px;
}

@media (max-width: 768px) {
  .section--product-system .viewing-panel__title {
    white-space: normal;
  }
}

/* ------------------------------------------------------------
   2026 visual coherence pass
   Premium broadcast proposal: warm paper, restrained depth,
   consistent card geometry, and stronger mobile typography.
   ------------------------------------------------------------ */
:root {
  --paper: #f6f3ed;
  --paper-soft: #fbfaf7;
  --paper-deep: #eee9df;
  --ink: #11110f;
  --ink-muted: #69675f;
  --brand-gold: #c4a878;
  --brand-gold-soft: rgba(196, 168, 120, 0.14);
  --border: #dedbd2;
  --bg: var(--paper-soft);
  --off-white: var(--paper);
  --surface: #fffefa;
  --text: var(--ink);
  --text-muted: var(--ink-muted);
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 10px 28px -24px rgba(18, 18, 16, 0.38);
  --shadow-lg: 0 22px 52px -36px rgba(18, 18, 16, 0.48);
}

body {
  background: var(--paper-soft);
}

.section {
  padding: 76px 0;
}

.section__header,
.pricing-premium__header {
  margin-bottom: 42px;
}

.section__title {
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.section__subtitle,
.section__desc,
.pricing-premium__guide {
  text-wrap: pretty;
}

.section__desc {
  color: var(--ink-muted);
}

.badge {
  border: 1px solid rgba(17, 17, 15, 0.08);
  background: var(--paper-deep);
  color: #4f483c;
  box-shadow: none;
}

.badge::before {
  background: var(--brand-gold);
}

.section--about {
  background: var(--paper-soft);
}

.section--why,
.section--report {
  background: #fffefa;
}

.section--product,
.section--faq {
  background: var(--paper);
}

.section--targeting {
  background: #fdfcf9;
}

.section--about,
.section--why,
.section--product,
.section--targeting,
.section--report,
.section--faq {
  border-top: 1px solid rgba(17, 17, 15, 0.06);
}

.section--dark,
.section--solution,
.section--aicf,
.section--process,
.section--contact {
  background-color: #0a0a09;
}

/* Keep one quiet depth system across information cards. */
.feature-card.card--info,
.section--why .why-card.card--info,
.product-flow__step.card--info,
.viewing-benefit-v2.card--info,
.section--report .dashboard,
.faq-item {
  border-color: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card.card--info,
.section--why .why-card.card--info,
.product-flow__step.card--info,
.viewing-benefit-v2.card--info {
  background: rgba(255, 254, 250, 0.92);
}

.feature-card--highlight.card--info,
.product-flow__step--core.card--info {
  border-color: rgba(196, 168, 120, 0.72);
  background: linear-gradient(145deg, #fffefa 0%, #f5efe3 100%);
  box-shadow: 0 16px 38px -30px rgba(109, 84, 42, 0.7);
}

.feature-card__icon,
.why-card__icon,
.product-flow__icon,
.stat__icon {
  background: var(--paper);
  border-color: var(--border);
  color: #332f28;
  box-shadow: none;
}

.feature-card__index,
.product-flow__num,
.aicf-type__num {
  letter-spacing: 0.08em;
}

.stats .stat {
  background: rgba(255, 254, 250, 0.7);
  border-color: var(--border);
  box-shadow: none;
}

.card-chips span,
.product-flow__tag,
.why-card__metric {
  background: var(--paper);
  border-color: var(--border);
}

@media (hover: hover) {
  .feature-card:hover,
  .why-card:hover,
  .product-flow__step:hover,
  .faq-item:hover {
    transform: translateY(-2px);
    border-color: #ccc6b8;
    box-shadow: 0 18px 38px -30px rgba(18, 18, 16, 0.5);
  }
}

/* Restrain decorative effects outside the hero so the films stay dominant. */
.process-stage__glow,
.contact-stage__glow,
.why-compare__glow {
  opacity: 0.42;
}

.section--solution .compare__card,
.section--aicf .aicf-type.card--info,
.section--process .process-step__card,
.section--contact .contact-sales__card {
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 18px 46px -34px rgba(0, 0, 0, 0.82) !important;
}

.section--aicf .aicf-type.card--info {
  background: rgba(255, 255, 255, 0.055);
}

.section--process .process-step__card {
  background: rgba(255, 255, 255, 0.045);
}

.why-compare__panel {
  border-color: rgba(17, 17, 15, 0.1);
}

.why-compare__panel--iptv {
  box-shadow: 0 22px 48px -38px rgba(63, 48, 24, 0.72);
}

.why-compare__badge--accent,
.product-flow__tag--core {
  background: #1a1916;
  color: #f1e6cf;
  box-shadow: none;
}

/* Portfolio cards use quieter chrome so the actual video image leads. */
.section--aicf .portfolio-carousel__card.video-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.section--aicf .portfolio-carousel__card .video-card__thumb {
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.section--aicf .portfolio-carousel__card .video-card__body {
  background: rgba(8, 8, 8, 0.72);
}

.portfolio-carousel__arrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.portfolio-carousel__arrow:hover {
  border-color: rgba(232, 210, 160, 0.5);
  background: rgba(232, 210, 160, 0.1);
}

/* Targeting and report panels share the editorial paper treatment. */
.targeting-tabs,
.targeting-visual,
.targeting-feature,
.surcharge,
.dashboard,
.chart-card,
.kpi {
  border-color: var(--border);
}

.targeting-tab--active {
  background: #171714;
  color: #fff;
  box-shadow: none;
}

.targeting-feature,
.chart-card,
.kpi {
  background: rgba(255, 254, 250, 0.72);
  box-shadow: none;
}

/* Pricing: one accent, clearer result hierarchy, less visual noise. */
.section--pricing-premium {
  background: linear-gradient(180deg, #0a0a09 0%, #12110f 100%);
}

.pricing-premium__header {
  max-width: 920px;
}

.pricing-premium__meta strong,
.calc-surcharge__eyebrow,
.calc-surcharge__label em,
.calc-surcharge__summary strong {
  color: #ead7ae;
}

.pricing-sim-row .calc-surcharge,
.ad-calc__panel {
  border-radius: var(--radius);
}

.pricing-sim-row .calc-surcharge {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow: none;
}

.ad-calc__panel {
  background: var(--paper);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px -36px rgba(0, 0, 0, 0.86);
}

.ad-calc__intro,
.ad-calc__controls {
  background: #fffefa;
}

.ad-calc__result-num--primary,
.ad-calc__monthly-v,
.ad-calc__budget-value {
  letter-spacing: -0.04em;
}

.calc-surcharge__chip--active {
  border-color: rgba(232, 210, 160, 0.5);
  background: rgba(232, 210, 160, 0.11);
  box-shadow: none;
}

.faq-item {
  background: rgba(255, 254, 250, 0.8);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(196, 168, 120, 0.58);
  background: #fffefa;
}

:where(a, button, summary, input):focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .container,
  .nav__inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section,
  .section--problem,
  .section--process,
  .section--showcase-premium,
  .section--contact {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }

  .section__header,
  .pricing-premium__header {
    margin-bottom: 32px !important;
  }

  .hero--premium .hero__title,
  .hero__title {
    font-size: clamp(1.65rem, 7.2vw, 1.9rem) !important;
    line-height: 1.28 !important;
    letter-spacing: -0.035em !important;
  }

  .hero--premium .hero__desc,
  .hero__desc {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
  }

  .section--why .section__title,
  .section__title,
  .section--product-system .section__title,
  .section--aicf .section__title,
  .aicf__title,
  .targeting__headline {
    font-size: clamp(1.8rem, 7.2vw, 2.25rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.04em !important;
    font-weight: 800 !important;
    max-width: 100% !important;
  }

  .section__subtitle {
    font-size: 1rem !important;
    line-height: 1.55 !important;
  }

  .section__desc,
  .pricing-premium__guide {
    font-size: 0.94rem !important;
    line-height: 1.68 !important;
  }

  .feature-card.card--info,
  .section--why .why-card.card--info,
  .viewing-panel,
  .section--report .dashboard,
  .contact-sales__card {
    border-radius: 14px !important;
  }

  .feature-card.card--info,
  .section--why .why-card.card--info {
    width: 100% !important;
    min-width: 0 !important;
    padding: 22px 18px !important;
    overflow: hidden !important;
  }

  .about__cards,
  .why__benefits,
  .product-system__grid,
  .pricing-sim-row,
  .contact-sales {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .section--about,
  .section--process,
  .section--contact {
    overflow-x: clip !important;
  }

  .process-stage,
  .contact-stage {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .hero__visual,
  .hero__frame {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .pricing-premium__meta {
    font-size: 0.8rem !important;
    line-height: 1.65 !important;
    letter-spacing: 0 !important;
  }

  .targeting-tab {
    border-radius: 9px !important;
  }

  .pricing-sim-row .calc-surcharge,
  .ad-calc__panel {
    border-radius: 14px !important;
  }
}

@media (max-width: 480px) {
  .hero--premium .hero__title,
  .hero__title {
    font-size: 1.65rem !important;
  }

  .section--why .section__title,
  .section__title,
  .section--product-system .section__title,
  .section--aicf .section__title {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 1120px) {
  #benefits .section__desc--center {
    max-width: 1080px;
    white-space: nowrap;
  }
}

/* Text layout recovery: prevent Korean words from splitting and
   keep each section's reading width intentional. */
.section__title,
.section__subtitle,
.section__desc,
.pricing-premium__guide,
.pricing-premium__meta,
.aicf__title,
.aicf__desc,
.product-system__bridge,
.contact-sales__lead .section__desc {
  text-wrap: wrap;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.about__intro {
  max-width: 960px;
}

.about__intro .section__desc {
  max-width: 920px;
}

.solution__intro {
  max-width: 1180px;
}

.solution__intro .section__desc {
  max-width: 1120px;
  white-space: normal;
}

.product-system__intro {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.section--product-system .product-system__intro {
  max-width: 920px;
  margin: 0 auto 42px;
}

.section--product-system .product-system__intro .section__title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.3;
  margin-bottom: 12px;
  white-space: normal;
}

.section--product-system .product-system__intro .section__desc {
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
}

.section--product-system .product-system__flow-head {
  margin-bottom: 14px;
}

.section--product-system .product-system__flow-head .badge {
  margin-bottom: 0;
}

.product-system__bridge {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.aicf__desc {
  max-width: 1180px;
  white-space: normal;
  line-height: 1.65;
}

.pricing-premium__header {
  max-width: 1320px;
}

.pricing-premium__guide {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.contact-sales__lead .section__desc {
  max-width: 38em;
}

@media (max-width: 1119px) {
  #benefits .section__desc--center {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .about__intro,
  .about__intro .section__desc,
  .solution__intro,
  .solution__intro .section__desc,
  .product-system__intro,
  .product-system__bridge,
  .aicf__desc,
  .pricing-premium__header,
  .pricing-premium__guide,
  .contact-sales__lead .section__desc {
    max-width: 100% !important;
  }
}

/* About intro: original single-column layout with sentence-based lines. */
#about .about__intro {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 40px;
}

#about .about__intro .section__desc {
  width: 100%;
  max-width: none;
  margin-bottom: 0;
}

.about__desc-line {
  display: block;
  white-space: normal;
  word-break: keep-all;
}

.about__desc-line + .about__desc-line {
  margin-top: 0.35em;
}

.aicf__desc-line,
.aicf__portfolio-desc-line {
  display: block;
  white-space: nowrap;
}

.aicf__desc {
  max-width: none;
}

.section--aicf .aicf__desc,
.section--aicf .aicf__portfolio-desc {
  color: rgba(255, 255, 255, 0.88) !important;
}

@media (max-width: 980px) {
  .about__desc-line,
  .aicf__desc-line,
  .aicf__portfolio-desc-line {
    white-space: normal;
  }
}

/* AI CF core benefit: full-width editorial emphasis without a floating card. */
.section--aicf {
  background:
    radial-gradient(ellipse 72% 24% at 24% 4%, rgba(196, 168, 120, 0.105), transparent 72%),
    radial-gradient(ellipse 62% 32% at 78% 48%, rgba(196, 168, 120, 0.055), transparent 74%),
    radial-gradient(ellipse 70% 28% at 28% 94%, rgba(196, 168, 120, 0.04), transparent 76%),
    linear-gradient(180deg, #0d0c0a 0%, #0a0a09 43%, #0c0b0a 100%);
}

/* AICF hero final layout — center stack, no nowrap overflow */
.section--aicf .aicf__hero {
  position: relative;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center;
  max-width: 720px !important;
  width: 100%;
  margin: 0 auto 44px !important;
  padding: 12px 16px 40px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center !important;
  box-sizing: border-box;
}

.section--aicf .aicf__eyebrow {
  display: block;
  margin: 0 0 14px !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  border-radius: 0 !important;
  color: rgba(232, 210, 160, 0.8) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
}

.section--aicf .aicf__title {
  max-width: none !important;
  width: auto !important;
  margin: 0 0 16px !important;
  font-size: clamp(1.65rem, 3.6vw, 2.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
  text-align: center !important;
  color: #fff !important;
}

.section--aicf .aicf__lead {
  display: block;
  margin: 0 0 12px !important;
  max-width: 28em;
  font-size: clamp(1.08rem, 1.8vw, 1.25rem) !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.95) !important;
  text-align: center !important;
  word-break: keep-all;
  white-space: normal;
}

.section--aicf .aicf__desc {
  max-width: 28em !important;
  margin: 0 auto !important;
  padding: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.52) !important;
  text-align: center !important;
  word-break: keep-all;
}

.section--aicf .aicf__desc-line + .aicf__desc-line {
  margin-top: 0;
}

.section--aicf .aicf__desc strong {
  color: #f1d79f;
  font-weight: 700;
}

.section--aicf .aicf__portfolio-header {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  max-width: 640px !important;
  margin: 0 auto 28px !important;
}

.section--aicf .aicf__portfolio-title {
  margin: 0 0 10px !important;
  max-width: 12em;
  font-size: clamp(1.55rem, 3vw, 2rem) !important;
  white-space: normal !important;
  text-align: center !important;
}

.section--aicf .aicf__portfolio-title::after {
  display: none !important;
}

.section--aicf .aicf__portfolio-desc {
  margin: 0 auto !important;
  max-width: 30em !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 768px) {
  .section--aicf .aicf__hero {
    padding: 8px 12px 32px !important;
    margin-bottom: 36px !important;
  }

  .section--aicf .aicf__title {
    max-width: 100% !important;
    font-size: clamp(1.35rem, 5.8vw, 1.85rem) !important;
    margin-bottom: 14px !important;
    white-space: nowrap !important;
  }

  .section--aicf .aicf__lead {
    font-size: 1.02rem !important;
    max-width: 100%;
  }

  .section--aicf .aicf__desc {
    max-width: 100% !important;
    font-size: 0.9rem !important;
  }
}

.section--contact .contact-sales__points li {
  padding-left: 14px !important;
}

.section--contact .contact-sales__points li::before {
  content: none !important;
}

/* ═══════════════════════════════════════════════════════════
   TYPE HIERARCHY FINAL — titles must dominate (wins cascade)
   ═══════════════════════════════════════════════════════════ */
.section__title,
.section--dark .section__title,
.section--pricing-premium .section__title,
.pricing-premium__header .section__title,
.aicf__title,
.targeting__headline,
.aicf__portfolio-title {
  font-size: clamp(2.1rem, 4.5vw, 3.05rem) !important;
  font-weight: 800 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.04em !important;
  max-width: min(100%, 18em) !important;
}

.hero--premium .hero__title,
.hero__title {
  font-size: clamp(2rem, 4.8vw, 2.9rem) !important;
  font-weight: 800 !important;
  line-height: 1.16 !important;
  letter-spacing: -0.04em !important;
}

.section__lead,
.section__lead--center,
.section__lead--on-dark {
  font-size: clamp(1.08rem, 1.55vw, 1.22rem) !important;
  line-height: 1.5 !important;
  font-weight: 500 !important;
}

.section__header--center .section__title::after,
.pricing-premium__header .section__title::after {
  display: none !important; /* accent lives on lead */
}

@media (max-width: 768px) {
  .section__title,
  .section--dark .section__title,
  .section--pricing-premium .section__title,
  .pricing-premium__header .section__title,
  .aicf__title,
  .targeting__headline,
  .aicf__portfolio-title,
  .section--why .section__title,
  .section--product-system .section__title,
  .section--aicf .section__title {
    font-size: clamp(1.85rem, 7.6vw, 2.3rem) !important;
    line-height: 1.2 !important;
    max-width: 100% !important;
    margin-bottom: 12px !important;
  }

  .hero--premium .hero__title,
  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.4rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 10px !important;
  }

  .section__lead,
  .section__lead--center,
  .section__lead--on-dark {
    font-size: clamp(1rem, 3.9vw, 1.1rem) !important;
  }

  .section__header,
  .section__header--center,
  .pricing-premium__header,
  .about__intro,
  .solution__intro {
    text-align: center;
  }

  .about__intro .section__title,
  .solution__intro .section__title,
  .targeting__headline {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .about__intro .section__lead,
  .about__intro .section__desc,
  .solution__intro .section__lead,
  .solution__intro .section__desc,
  .targeting__text .section__lead,
  .targeting__lead {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .about__intro .section__eyebrow,
  .solution__intro .section__eyebrow,
  .targeting__text .section__eyebrow {
    text-align: center;
  }
}
/* AICF title must stay ONE LINE + exact lead copy layout */
.section--aicf .aicf__title,
.aicf__title {
  white-space: nowrap !important;
  max-width: none !important;
  width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(1.5rem, 3.2vw, 2.55rem) !important;
  line-height: 1.3 !important;
}

.section--aicf .aicf__lead,
.aicf__lead {
  white-space: normal !important;
  max-width: 32em !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  .section--aicf .aicf__title,
  .aicf__title {
    white-space: nowrap !important;
    font-size: clamp(1.15rem, 4.6vw, 1.55rem) !important;
    max-width: none !important;
    width: max-content !important;
    overflow: visible !important;
  }
}

@media (max-width: 480px) {
  .section--aicf .aicf__title,
  .aicf__title {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem) !important;
  }
}
/* Hero H1 + desc: each ONE line (final) */
.hero--premium .hero__title,
.hero__title {
  white-space: nowrap !important;
  max-width: none !important;
  width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(1.55rem, 3.4vw, 2.55rem) !important;
  line-height: 1.25 !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

.hero--premium .hero__desc,
.hero__desc {
  white-space: nowrap !important;
  max-width: none !important;
  width: max-content !important;
  margin-left: auto !important;
  margin-right: auto !important;
  font-size: clamp(0.88rem, 1.35vw, 1.08rem) !important;
  line-height: 1.4 !important;
  display: block !important;
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
}

.hero__top {
  max-width: 100% !important;
  overflow: visible !important;
}

@media (max-width: 900px) {
  .hero--premium .hero__title,
  .hero__title {
    font-size: clamp(1.2rem, 4.2vw, 1.7rem) !important;
  }
  .hero--premium .hero__desc,
  .hero__desc {
    font-size: clamp(0.78rem, 2.4vw, 0.95rem) !important;
  }
}

@media (max-width: 480px) {
  .hero--premium .hero__title,
  .hero__title {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem) !important;
  }
  .hero--premium .hero__desc,
  .hero__desc {
    font-size: clamp(0.72rem, 3.2vw, 0.85rem) !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   PACKAGE RAIL — horizontal 4-step flow (option A)
   ═══════════════════════════════════════════════════════════ */
.section--product-system {
  padding: clamp(64px, 8vw, 96px) 0 !important;
  background: #faf9f7;
}

.section--product-system .product-system__intro {
  margin-bottom: 40px !important;
  max-width: 720px;
}

.section--product-system .product-system__intro .section__desc {
  display: none; /* lead is enough */
}

.package-rail {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1080px;
  position: relative;
}

/* connecting line behind steps */
.package-rail::before {
  content: '';
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 22px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(17, 17, 17, 0.12) 8%,
    rgba(17, 17, 17, 0.12) 92%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.package-rail__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  min-width: 0;
}

.package-rail__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(17, 17, 17, 0.55);
}

.package-rail__title {
  margin: 0 0 8px;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: #111;
  word-break: keep-all;
}

.package-rail__desc {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.52);
  word-break: keep-all;
  max-width: 14em;
}

.package-rail__desc strong {
  color: #111;
  font-weight: 700;
}

/* Only step 03 is visually emphasized */
.package-rail__step--core .package-rail__num {
  background: #111;
  border-color: #111;
  color: #f3e6c4;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.package-rail__step--core .package-rail__title {
  color: #111;
}

.package-rail__step--core .package-rail__desc {
  color: rgba(17, 17, 17, 0.62);
}

@media (max-width: 900px) {
  .package-rail {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
    max-width: 520px;
  }

  .package-rail::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .package-rail {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 320px;
    padding-left: 8px;
  }

  .package-rail::before {
    display: block;
    left: 21px;
    right: auto;
    top: 22px;
    bottom: 22px;
    width: 1px;
    height: auto;
    background: rgba(17, 17, 17, 0.1);
  }

  .package-rail__step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 14px 0 14px 0;
  }

  .package-rail__num {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .package-rail__title {
    margin-bottom: 4px;
  }

  .package-rail__desc {
    max-width: none;
  }
}
/* Process detail on package rail (5 steps) */
.package-rail--process {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  max-width: 1160px !important;
}

.package-rail--process::before {
  left: 10% !important;
  right: 10% !important;
  top: 22px !important;
}

.package-rail__time {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.08);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(17, 17, 17, 0.55);
  line-height: 1.2;
}

.package-rail--process .package-rail__desc {
  max-width: 12.5em;
  font-size: 0.8rem;
  line-height: 1.45;
}

.package-rail--process .package-rail__step--core .package-rail__time {
  background: rgba(196, 168, 120, 0.15);
  border-color: rgba(196, 168, 120, 0.35);
  color: rgba(120, 90, 40, 0.9);
}

@media (max-width: 1024px) {
  .package-rail--process {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 28px 8px !important;
  }

  .package-rail--process::before {
    display: none !important;
  }
}

@media (max-width: 700px) {
  .package-rail--process {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 560px) {
  .package-rail--process {
    grid-template-columns: 1fr !important;
  }

  .package-rail--process .package-rail__step {
    flex-wrap: wrap;
  }

  .package-rail--process .package-rail__desc {
    max-width: none;
  }

  .package-rail--process .package-rail__time {
    margin-top: 8px;
    margin-left: 58px;
  }
}

/* ═══════════════════════════════════════════════════════════
   PACKAGE RAIL — soft black & muted gold (subtle)
   ═══════════════════════════════════════════════════════════ */
.section--product-system {
  position: relative !important;
  padding: clamp(72px, 9vw, 108px) 0 !important;
  background:
    radial-gradient(ellipse 75% 50% at 50% 0%, rgba(196, 168, 120, 0.1) 0%, transparent 58%),
    linear-gradient(180deg, #0c0c0c 0%, #0a0a0a 100%) !important;
  overflow: hidden !important;
}

.section--product-system::before,
.section--product-system::after {
  display: none !important;
  animation: none !important;
  content: none !important;
}

.section--product-system .container {
  position: relative;
  z-index: 1;
}

.section--product-system .product-system__intro {
  margin-bottom: 44px !important;
}

.section--product-system .section__eyebrow {
  color: rgba(212, 190, 150, 0.7) !important;
  text-shadow: none !important;
}

.section--product-system .section__title {
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
}

.section--product-system .section__lead {
  color: rgba(255, 255, 255, 0.9) !important;
}

.section--product-system .section__header--center .section__lead::after {
  width: 40px !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(196, 168, 120, 0.55), transparent) !important;
  box-shadow: none !important;
}

.package-rail,
.package-rail--process {
  list-style: none;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
  max-width: 1180px !important;
  position: relative;
  align-items: stretch;
}

.package-rail::before,
.package-rail--process::before {
  content: '' !important;
  display: block !important;
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196, 168, 120, 0.18) 20%,
    rgba(196, 168, 120, 0.28) 50%,
    rgba(196, 168, 120, 0.18) 80%,
    transparent
  );
  box-shadow: none !important;
  z-index: 0;
  pointer-events: none;
}

.package-rail__step {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  text-align: left !important;
  padding: 0 !important;
  min-width: 0;
  height: 100%;
}

.package-rail__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  min-height: 220px;
  padding: 24px 18px 18px;
  border-radius: 14px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.07) 0%, transparent 38%),
    linear-gradient(200deg, rgba(196, 168, 120, 0.06) 0%, transparent 46%),
    linear-gradient(180deg, #1a1918 0%, #121211 55%, #0f0f0e 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 12px 32px -24px rgba(0, 0, 0, 0.65);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.package-rail__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(125deg, transparent 35%, rgba(255, 255, 255, 0.035) 50%, transparent 65%);
  opacity: 1;
}

.package-rail__card:hover {
  transform: none;
  border-color: rgba(196, 168, 120, 0.2);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.09) 0%, transparent 40%),
    linear-gradient(200deg, rgba(196, 168, 120, 0.08) 0%, transparent 48%),
    linear-gradient(180deg, #1d1c1b 0%, #141312 55%, #11100f 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 14px 36px -24px rgba(0, 0, 0, 0.72);
}

.package-rail__num {
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 16px !important;
  padding: 0 !important;
  border: none !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.32) !important;
  color: rgba(255, 255, 255, 0.32) !important;
  box-shadow: none !important;
  filter: none !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  line-height: 1 !important;
  position: relative;
  z-index: 1;
}

.package-rail__title {
  margin: 0 0 10px !important;
  font-size: clamp(1rem, 1.25vw, 1.12rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.3 !important;
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
  position: relative;
  z-index: 1;
  word-break: keep-all;
}

.package-rail__desc {
  margin: 0 0 auto !important;
  font-size: 0.84rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  position: relative;
  z-index: 1;
  word-break: keep-all;
  max-width: none !important;
}

.package-rail__desc strong {
  color: rgba(232, 210, 160, 0.92) !important;
  font-weight: 700 !important;
  text-shadow: none !important;
}

.package-rail__time {
  display: inline-flex !important;
  align-items: center;
  margin-top: 18px !important;
  width: auto !important;
  padding: 5px 11px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-image: none !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.2 !important;
  position: relative;
  z-index: 1;
  box-shadow: none !important;
}

/* Core: soft gold only */
.package-rail__step--core .package-rail__card {
  background:
    linear-gradient(155deg, rgba(196, 168, 120, 0.12) 0%, transparent 40%),
    linear-gradient(200deg, rgba(196, 168, 120, 0.07) 0%, transparent 48%),
    linear-gradient(180deg, #1c1914 0%, #131210 55%, #100f0d 100%);
  border-color: rgba(196, 168, 120, 0.28);
  box-shadow:
    0 1px 0 rgba(232, 210, 160, 0.08) inset,
    0 14px 36px -26px rgba(0, 0, 0, 0.7);
}

.package-rail__step--core .package-rail__card:hover {
  transform: none;
  border-color: rgba(196, 168, 120, 0.36);
  background:
    linear-gradient(155deg, rgba(196, 168, 120, 0.14) 0%, transparent 42%),
    linear-gradient(200deg, rgba(196, 168, 120, 0.09) 0%, transparent 50%),
    linear-gradient(180deg, #1e1b16 0%, #15130f 55%, #12100e 100%);
  box-shadow:
    0 1px 0 rgba(232, 210, 160, 0.1) inset,
    0 16px 40px -26px rgba(0, 0, 0, 0.72);
}

.package-rail__step--core .package-rail__num {
  color: rgba(212, 190, 150, 0.72) !important;
  -webkit-text-fill-color: rgba(212, 190, 150, 0.72) !important;
  filter: none !important;
}

.package-rail__step--core .package-rail__title {
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
}

.package-rail__step--core .package-rail__time {
  background: rgba(196, 168, 120, 0.08) !important;
  border-color: rgba(196, 168, 120, 0.22) !important;
  color: rgba(212, 190, 150, 0.78) !important;
  box-shadow: none !important;
}

.package-rail__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(196, 168, 120, 0.1);
  border: 1px solid rgba(196, 168, 120, 0.3);
  color: rgba(232, 210, 160, 0.9);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  box-shadow: none;
  z-index: 2;
}

@media (max-width: 1100px) {
  .package-rail,
  .package-rail--process {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .package-rail::before,
  .package-rail--process::before {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .package-rail,
  .package-rail--process {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  .package-rail__card {
    min-height: 190px;
    padding: 20px 16px 16px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .package-rail,
  .package-rail--process {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .package-rail__card {
    min-height: 0;
  }
}

/* ═══════════════════════════════════════════════════════════
   WHY VS BOARD v2 — refined single stage (not stacked boxes)
   ═══════════════════════════════════════════════════════════ */
.section--why {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(196, 168, 120, 0.09) 0%, transparent 58%),
    linear-gradient(180deg, #0d0c0b 0%, #0a0a0a 100%) !important;
  padding: clamp(80px, 10vw, 120px) 0 !important;
  color: #fff;
  overflow: hidden;
}

.section--why::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 35%, transparent 70%, rgba(0,0,0,0.2) 100%);
}

.why-vs-block {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.why-vs-block__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.why-vs-block__head .section__eyebrow {
  color: rgba(232, 210, 160, 0.75) !important;
}

.why-vs-block__head .section__title {
  color: #fff !important;
  max-width: 12em !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.why-vs-block__head .section__lead {
  color: rgba(255, 255, 255, 0.62) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.why-vs-block__head .section__lead::after {
  display: block !important;
  content: '';
  width: 40px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, rgba(196, 168, 120, 0.55), transparent);
}

/* One stage, two columns — not card stacks */
.why-vs-board {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    #121212;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 24px 60px -30px rgba(0, 0, 0, 0.75);
}

.why-vs-board__col {
  padding: 36px 32px 40px;
  min-width: 0;
  background: transparent;
}

.why-vs-board__col--online {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  border-right: none;
  padding-right: 28px;
}

.why-vs-board__col--tv {
  background:
    linear-gradient(155deg, rgba(196, 168, 120, 0.1) 0%, transparent 46%),
    linear-gradient(180deg, rgba(28, 24, 18, 0.9) 0%, rgba(18, 16, 14, 0.4) 100%);
  padding-left: 28px;
  position: relative;
}

.why-vs-board__col--tv::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(196, 168, 120, 0.35), transparent);
}

.why-vs-board__label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.why-vs-board__col--tv .why-vs-board__label {
  color: rgba(232, 210, 160, 0.78);
}

.why-vs-board__title {
  margin: 0 0 28px;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.72);
  word-break: keep-all;
}

.why-vs-board__col--online .why-vs-board__title {
  color: rgba(255, 255, 255, 0.7);
}

.why-vs-board__col--tv .why-vs-board__title {
  color: #fff;
}

.why-vs-board__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-vs-board__list li {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: none;
}

.why-vs-board__list li:first-child {
  border-top: none;
  padding-top: 0;
}

.why-vs-board__list li:last-child {
  padding-bottom: 0;
}

.why-vs-board__list strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  word-break: keep-all;
}

.why-vs-board__col--online .why-vs-board__list strong {
  color: rgba(255, 255, 255, 0.78);
}

.why-vs-board__list span {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
  word-break: keep-all;
}

.why-vs-board__col--tv .why-vs-board__list span {
  color: rgba(255, 255, 255, 0.68);
}

.why-vs-board__col--online .why-vs-board__list span {
  color: rgba(255, 255, 255, 0.55);
}

.why-vs-board__mid {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.why-vs-board__mid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(196, 168, 120, 0.3);
  background: linear-gradient(160deg, #1c1a17 0%, #12110f 100%);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(232, 210, 160, 0.85);
  box-shadow:
    0 0 0 6px rgba(10, 10, 10, 0.9),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

/* hide older why layouts */
.section--why .why__benefits,
.section--why .why__compare,
.section--why .why-strip,
.section--why .why-diff,
.section--why .why-grid,
.section--why .why-vs,
.section--why .why-edit {
  display: none !important;
}

@media (max-width: 860px) {
  .why-vs-board {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .why-vs-board__col {
    padding: 28px 22px;
  }

  .why-vs-board__col--online {
    padding-right: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .why-vs-board__col--tv {
    padding-left: 22px;
  }

  .why-vs-board__col--tv::before {
    display: none;
  }

  .why-vs-board__mid {
    padding: 0;
    margin: -18px 0;
  }

  .why-vs-board__mid span {
    width: 44px;
    height: 44px;
  }
}
/* ═══════════════════════════════════════════════════════════
   SURFACE BANDS — enterprise rhythm (final)
   1 dark open | 2 light story | 3 dark value | 4 light proof | 5 dark convert
   ═══════════════════════════════════════════════════════════ */
:root {
  --band-light: #f7f6f3;
  --band-light-2: #f3f1ec;
  --band-dark: #0b0b0b;
  --band-dark-2: #111111;
  --band-ink: #111111;
  --band-ink-soft: rgba(17, 17, 17, 0.62);
  --band-paper: rgba(255, 255, 255, 0.92);
  --band-line: rgba(17, 17, 17, 0.08);
  --band-gold: rgba(196, 168, 120, 0.55);
}

/* --- Band 1: open (hero + benefits) --- */
.hero--premium {
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(196, 168, 120, 0.12) 0%, transparent 55%),
    linear-gradient(165deg, #10100f 0%, var(--band-dark) 45%, #0a0a0a 100%) !important;
}

.section--why {
  background: var(--band-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* keep why board readable on continuous dark open */
.section--why .why-vs-board {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
    #121212 !important;
}

/* --- Band 2: light story (about → solution → targeting) --- */
.section--about,
.section--solution,
.section--targeting {
  background: var(--band-light) !important;
  color: var(--band-ink) !important;
}

.section--about .section__title,
.section--solution .section__title,
.section--targeting .section__title,
.section--targeting .targeting__headline {
  color: var(--band-ink) !important;
  -webkit-text-fill-color: var(--band-ink) !important;
  background: none !important;
}

.section--about .section__eyebrow,
.section--solution .section__eyebrow,
.section--targeting .section__eyebrow {
  color: rgba(17, 17, 17, 0.4) !important;
}

.section--about .section__lead,
.section--solution .section__lead,
.section--targeting .section__lead,
.section--about .section__desc,
.section--solution .section__desc,
.section--targeting .section__desc,
.section--targeting .targeting__lead {
  color: var(--band-ink-soft) !important;
}

/* solution was dark: force light-safe compare/banner */
.section--solution.section--dark,
.section--solution {
  color: var(--band-ink);
}

.section--solution .section__title--light,
.section--solution .section__title {
  color: var(--band-ink) !important;
}

.section--solution .section__desc--light,
.section--solution .section__desc,
.section--solution .section__lead--on-dark,
.section--solution .section__lead {
  color: var(--band-ink-soft) !important;
}

.section--solution .section__eyebrow--on-dark,
.section--solution .section__eyebrow {
  color: rgba(17, 17, 17, 0.4) !important;
}

.section--solution .compare__card {
  background: #fff !important;
  border: 1px solid var(--band-line) !important;
  color: var(--band-ink) !important;
  box-shadow: 0 10px 30px -22px rgba(0, 0, 0, 0.18);
}

.section--solution .compare__card--after,
.section--solution .compare__card--after.card--emphasis {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

.section--solution .compare__card--after h3,
.section--solution .compare__card--after strong,
.section--solution .compare__card--after p {
  color: inherit !important;
}

.section--solution .solution__banner {
  background: rgba(17, 17, 17, 0.04) !important;
  color: rgba(17, 17, 17, 0.72) !important;
  border: 1px solid var(--band-line) !important;
}

.section--solution .solution__banner svg {
  color: #111 !important;
}

/* subtle separators inside light band instead of color flips */
.section--about {
  border-bottom: 1px solid var(--band-line);
}

.section--solution {
  border-bottom: 1px solid var(--band-line);
}

/* --- Band 3: dark value (process + aicf) --- */
.section--product,
.section--product-system,
.section--aicf {
  background: var(--band-dark) !important;
  color: #fff !important;
}

.section--product-system {
  /* keep soft gold wash, still same dark family */
  background:
    radial-gradient(ellipse 75% 50% at 50% 0%, rgba(196, 168, 120, 0.1) 0%, transparent 58%),
    var(--band-dark) !important;
}

.section--aicf {
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(196, 168, 120, 0.08) 0%, transparent 55%),
    var(--band-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* --- Band 4: light proof (report + faq) --- */
.section--report,
.section--faq {
  background: var(--band-light) !important;
  color: var(--band-ink) !important;
}

.section--report {
  border-bottom: 1px solid var(--band-line);
}

.section--report .section__title,
.section--faq .section__title {
  color: var(--band-ink) !important;
  -webkit-text-fill-color: var(--band-ink) !important;
  background: none !important;
}

.section--report .section__eyebrow,
.section--faq .section__eyebrow {
  color: rgba(17, 17, 17, 0.4) !important;
}

.section--report .section__lead,
.section--report .section__desc,
.section--faq .section__lead,
.section--faq .section__desc {
  color: var(--band-ink-soft) !important;
}

.section--faq .faq-item {
  background: #fff !important;
  border-color: var(--band-line) !important;
}

.section--faq .faq-item__q {
  color: #111 !important;
}

.section--faq .faq-item__a p {
  color: rgba(17, 17, 17, 0.68) !important;
}

/* --- Band 5: convert (pricing + contact) --- */
.section--pricing,
.section--pricing-premium,
.section--contact {
  background: var(--band-dark) !important;
  color: #fff !important;
}

.section--pricing-premium {
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(196, 168, 120, 0.08) 0%, transparent 55%),
    var(--band-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section--contact {
  background:
    radial-gradient(ellipse 60% 45% at 20% 20%, rgba(196, 168, 120, 0.08) 0%, transparent 50%),
    var(--band-dark) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* kill leftover pure-white / pure-black flip overrides that fight the band system */
.section--about,
.section--solution,
.section--targeting,
.section--report,
.section--faq {
  background-image: none;
}

/* body base follows light paper */
body {
  background: var(--band-light) !important;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE COMPATIBILITY FINAL — 320px to tablet
   Keep the Grok redesign while preventing fixed-line overflow.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .nav__inner {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero__top,
  .hero--premium .hero__title,
  .hero__title,
  .hero--premium .hero__desc,
  .hero__desc,
  .section--aicf .aicf__title,
  .aicf__title {
    width: auto !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: keep-all !important;
  }

  .hero--premium .hero__title,
  .hero__title,
  .hero--premium .hero__desc,
  .hero__desc {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .section__title,
  .section__lead,
  .section__desc,
  .targeting__headline,
  .aicf__portfolio-title,
  .pricing-premium__guide,
  .pricing-premium__meta {
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: keep-all !important;
  }

  .targeting__grid > *,
  .targeting__panel,
  .surcharge,
  .ad-calc,
  .ad-calc__panel,
  .ad-calc__body > *,
  .contact-sales > *,
  .report__grid > *,
  .why-vs-board > *,
  .package-rail > * {
    min-width: 0 !important;
    max-width: 100%;
  }

  .targeting-tab,
  .surcharge__filter,
  .ad-calc__tab,
  .btn,
  button,
  summary {
    min-height: 44px;
  }

  .contact-sales__channel strong,
  .contact-sales__address,
  .targeting-report__badge,
  .targeting-report__caption {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .container,
  .nav__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero--premium .hero__title,
  .hero__title {
    font-size: clamp(1.45rem, 7vw, 1.8rem) !important;
  }

  .hero--premium .hero__desc,
  .hero__desc {
    font-size: 0.84rem !important;
    line-height: 1.55 !important;
  }

  .section--aicf .aicf__title,
  .aicf__title {
    width: auto !important;
    font-size: clamp(1.45rem, 7vw, 1.8rem) !important;
    white-space: normal !important;
  }
}

/* WHY comparison: exact 50:50 split with VS over the center seam. */
.section--why .why-vs-board {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section--why .why-vs-board__col {
  width: 100%;
  min-width: 0;
  padding: 36px 40px 40px;
}

.section--why .why-vs-board__col--online {
  grid-column: 1;
  padding-right: 52px;
}

.section--why .why-vs-board__col--tv {
  grid-column: 2;
  padding-left: 52px;
}

.section--why .why-vs-board__mid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
}

.section--why .why-vs-board__list li {
  min-height: 76px;
  padding: 14px 0;
  justify-content: center;
}

.section--why .why-vs-board__list li:first-child,
.section--why .why-vs-board__list li:last-child {
  padding-top: 14px;
  padding-bottom: 14px;
}

@media (max-width: 860px) {
  .section--why .why-vs-board {
    grid-template-columns: 1fr;
  }

  .section--why .why-vs-board__col--online,
  .section--why .why-vs-board__col--tv {
    grid-column: 1;
    padding: 28px 22px;
  }

  .section--why .why-vs-board__mid {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: -18px 0;
  }

  .section--why .why-vs-board__list li {
    min-height: 0;
    padding: 16px 0;
  }

  .section--why .why-vs-board__list li:first-child {
    padding-top: 0;
  }

  .section--why .why-vs-board__list li:last-child {
    padding-bottom: 0;
  }
}
