/* Impact Origins — main stylesheet
 * NBC-inspired: editorial, bold, alternating light/dark sections
 * Now with more color punch in hero + sections
 */

:root {
  --bg: #fafaf5;
  --bg-dark: #0a0a0a;
  --bg-stats: #111111;
  --fg: #0f0f0f;
  --fg-dim: #666666;
  --fg-light: #f5f5f5;
  --fg-light-dim: #9a9a9a;
  --accent: #ff3d00;
  --accent-hover: #ff5722;
  --accent-soft: #ffede5;
  --border: #e6e6de;
  --border-dark: #2a2a2a;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 840px;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 245, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--fg) !important;
  color: var(--bg) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--accent) !important; }

@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* HERO — now with more color punch */
.hero {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #fff7f2 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 61, 0, 0.08), transparent 70%);
  pointer-events: none;
}
.hero-pill-filled {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 40px;
  box-shadow: 0 4px 16px rgba(255, 61, 0, 0.25);
}
.pill-dot-white {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.hero-headline {
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.hero-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 900;
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: "";
  position: absolute;
  bottom: 0.05em;
  left: 0;
  right: 0;
  height: 0.12em;
  background: var(--accent);
  opacity: 0.2;
  border-radius: 4px;
  z-index: -1;
}
.hero-sub {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.4;
}
.hero-body {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 720px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-fine {
  font-size: 13px;
  color: var(--fg-dim);
}

/* HERO GRID (split layout) */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero-cta { margin-bottom: 0 !important; }

/* HERO BENTO (visual right side) */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bento-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  transition: all 0.25s;
}
.bento-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(255, 61, 0, 0.08);
}
.bento-stat { }
.bento-num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: block;
}
.bento-label {
  color: var(--fg-dim);
  font-size: 14px;
  font-weight: 500;
}
.bento-anker {
  grid-column: span 2;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border-color: var(--border-dark);
  color: var(--fg-light);
  padding: 24px 28px;
}
.bento-anker:hover {
  border-color: var(--accent);
}
.bento-anker-inner {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: center;
}
.bento-anker-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  flex-shrink: 0;
}
.bento-anker-caption {
  font-size: 15px;
  color: var(--fg-light-dim);
  line-height: 1.5;
}
.bento-anker-caption strong {
  color: var(--fg-light);
  font-weight: 600;
}
.ticker-track span { flex-shrink: 0; }
.ticker-track span:nth-child(even) { color: var(--accent); opacity: 0.5; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 61, 0, 0.3);
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* SECTIONS */
.section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border);
}
.section-dark {
  padding: 100px 0;
  background: var(--bg-dark);
  color: var(--fg-light);
}
.section-header {
  max-width: 760px;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.section-label.light { color: var(--fg-light-dim); }
.section-dark .section-label { color: var(--accent); }
.section-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--fg-dim);
  max-width: 640px;
  line-height: 1.5;
}
.section-dark .section-sub { color: var(--fg-light-dim); }
.section-sub-small {
  font-size: 14px;
  color: var(--fg-dim);
  margin-top: 12px;
}
.section-body {
  font-size: 17px;
  color: var(--fg-dim);
  max-width: 640px;
  margin-top: 20px;
}
.section-outro {
  text-align: center;
  font-size: 18px;
  color: var(--fg-light-dim);
  margin-top: 64px;
  font-weight: 500;
}

/* GRIDS */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

/* CARDS */
.card-dark {
  background: #141414;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.2s;
}
.card-dark:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.card-dark .card-num {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 20px;
}
.card-dark h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.card-dark p {
  color: var(--fg-light-dim);
  font-size: 15px;
  line-height: 1.55;
}
.card-dark ul {
  list-style: none;
  margin-top: 12px;
}
.card-dark ul li {
  color: var(--fg-light-dim);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  line-height: 1.5;
}
.card-dark ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.card-light {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  transition: all 0.2s;
}
.card-light:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}
.card-light h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.card-light p {
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-light ul {
  list-style: none;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.card-light ul li {
  color: var(--fg-dim);
  font-size: 14px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.card-light ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* LOGO WALL */
.logo-wall {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.logo-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.logo-cell {
  background: #ffffff;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: all 0.2s;
}
.logo-cell:hover {
  transform: scale(1.05);
  background: var(--accent-soft);
}
.logo-cell img {
  max-height: 96px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.75;
  transition: all 0.2s;
}
.logo-cell:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.logo-more {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--fg-dim);
  font-weight: 500;
}
.brand-list-text {
  color: var(--fg-dim);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 32px;
  max-width: 900px;
}
@media (max-width: 960px) {
  .logo-row { grid-template-columns: repeat(4, 1fr); }
  .logo-cell img { max-height: 56px; }
}
@media (max-width: 560px) {
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .logo-cell { padding: 16px; }
  .logo-cell img { max-height: 48px; }
}

/* VIDEO SECTION */
.section-video .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .section-video .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .section-video .video-grid { grid-template-columns: 1fr; }
}
.video-placeholder {
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 20px;
}
.video-placeholder::before {
  content: attr(data-placeholder);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-light-dim);
  letter-spacing: 0.02em;
}
.video-placeholder::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 61, 0, 0.15);
  border: 2px solid var(--accent);
}
video.video-clip {
  aspect-ratio: 9/16;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* STATS */
.section-stats {
  padding: 100px 0;
  background: var(--bg-stats);
  color: var(--fg-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-stats::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 61, 0, 0.15), transparent 60%);
  pointer-events: none;
}
.section-stats > * { position: relative; z-index: 1; }
.stats-header { margin-bottom: 64px; }
.stats-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0;
}
.stats-sub {
  font-size: 18px;
  color: var(--fg-light-dim);
  max-width: 640px;
  margin: 0 auto;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-big { padding: 40px 20px; }
.stat-num {
  display: block;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 14px;
  color: var(--fg-light-dim);
}
.stats-quote {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--fg-light);
  padding: 32px;
  border-left: 3px solid var(--accent);
  text-align: left;
  font-style: italic;
}

/* PACKAGES */
.packages { align-items: stretch; }
.pkg {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}
.pkg:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); }
.pkg-popular {
  border-color: var(--accent);
  border-width: 2px;
  background: #fffefb;
  box-shadow: 0 12px 32px rgba(255, 61, 0, 0.08);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(255, 61, 0, 0.3);
}
.pkg h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pkg-desc {
  font-size: 16px;
  color: var(--fg);
  font-weight: 600;
  margin-bottom: 12px;
}
.pkg-for {
  font-size: 14px;
  color: var(--fg-dim);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.pkg h4 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.pkg ul {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.pkg ul li {
  font-size: 14px;
  color: var(--fg);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pkg ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}
.pkg-type {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-dim);
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.packages-footer {
  text-align: center;
  color: var(--fg-dim);
  margin-top: 48px;
  font-size: 15px;
}
.packages-footer a { color: var(--accent); font-weight: 500; }

/* ABOUT */
.about-body {
  font-size: 18px;
  color: var(--fg);
  line-height: 1.7;
}
.about-body p { margin-bottom: 20px; }
.about-sig {
  font-family: var(--mono);
  font-size: 14px !important;
  color: var(--fg-dim);
  margin-top: 32px !important;
}

/* FAQ */
.faq {
  background: #141414;
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  overflow: hidden;
}
.faq details {
  border-bottom: 1px solid var(--border-dark);
}
.faq details:last-child { border-bottom: none; }
.faq summary {
  padding: 24px 32px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--accent);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  padding: 0 32px 24px;
  color: var(--fg-light-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* CTA SECTION */
.section-cta {
  padding: 100px 0;
  background: var(--fg);
  color: var(--fg-light);
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 61, 0, 0.2), transparent 70%);
  pointer-events: none;
}
.section-cta > * { position: relative; z-index: 1; }
.section-cta .section-header {
  margin: 0 auto 48px;
  text-align: center;
}
.section-cta .section-label { color: var(--accent); }
.section-cta .section-sub { color: var(--fg-light-dim); margin: 0 auto; }
.section-cta .section-body { color: var(--fg-light-dim); margin: 20px auto 0; }

/* FORM */
.book-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 20px;
  background: #1a1a1a;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--fg-light);
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: #666; }
.form-row select { color: var(--fg-light); cursor: pointer; }
.form-row textarea { resize: vertical; }
.book-form .btn { margin-top: 12px; }
.section-cta .btn-primary { background: var(--accent); color: var(--fg-light); }
.section-cta .btn-primary:hover { background: var(--accent-hover); }

/* FOOTER */
.footer {
  padding: 40px 0;
  background: var(--bg-dark);
  color: var(--fg-light-dim);
  font-size: 13px;
  font-family: var(--mono);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* FAQ internal lists */
.faq details p + p { margin-top: 12px; }
.faq .faq-list {
  list-style: none;
  padding: 0 32px 0 20px;
  margin: 12px 0;
}
.faq .faq-list li {
  color: var(--fg-light-dim);
  font-size: 15px;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.faq .faq-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.faq .faq-list li strong { color: var(--fg-light); }
.faq details p strong { color: var(--fg-light); }

/* Hero pill moved below Anker card */
.hero-pill-below {
  grid-column: span 2;
  justify-self: flex-start;
  margin-bottom: 0;
  margin-top: 4px;
}

/* VIDEO WRAPPER */
.video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #1a1a1a;
}
.video-wrapper .video-clip {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.video-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-light-dim);
  letter-spacing: 0.02em;
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: 999px;
}

/* MOBILE FIXES */
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 16px 20px; }

  /* Hero */
  .hero { padding: 40px 0 56px; }
  .hero-headline { font-size: clamp(38px, 11vw, 60px); }
  .hero-sub { font-size: 16px; }
  .hero-visual { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bento-card { padding: 20px; min-height: 120px; }
  .bento-num { font-size: 36px; }
  .bento-anker-inner { flex-direction: column; gap: 14px; }
  .bento-anker-logo { height: 48px; }
  .hero-pill-below { grid-column: span 2; font-size: 12px; padding: 8px 14px; }

  /* Stats section (One Operator. Both Worlds.) */
  .section-stats { padding: 72px 0; }
  .stats-headline { font-size: clamp(32px, 9vw, 52px); }
  .stats-header { margin-bottom: 48px; padding: 0 4px; }
  .stats-sub { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat-big { padding: 28px 12px; }
  .stat-num { font-size: clamp(40px, 10vw, 60px); }
  .stats-quote {
    font-size: 16px;
    padding: 20px;
    border-left: none;
    border-top: 3px solid var(--accent);
    margin: 0 4px;
  }

  /* Section padding */
  .section, .section-dark { padding: 72px 0; }
  .section-cta { padding: 72px 0; }
  .section-headline { font-size: clamp(30px, 8vw, 48px); }
  .section-header { margin-bottom: 40px; }

  /* Cards */
  .card-light, .card-dark { padding: 24px; }

  /* FAQ */
  .faq summary { padding: 20px 24px; font-size: 15px; }
  .faq details p { padding: 0 24px 20px; }

  /* Packages */
  .pkg { padding: 28px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 8px; }

  /* Book form */
  .book-form { max-width: 100%; }
}

/* NAV LOGO MARK */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

/* ANALYSIS BLOCK */
.analysis-block {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 28px;
  margin-top: 56px;
  font-family: var(--mono);
  overflow: hidden;
}
.analysis-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #1a1a1a;
}
.analysis-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.analysis-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.analysis-title {
  font-size: 11px;
  color: var(--fg-light-dim);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.analysis-score {
  font-size: 11px;
  color: var(--fg-light-dim);
  letter-spacing: 0.05em;
}
.analysis-score strong {
  color: #4ade80;
  font-size: 20px;
  font-weight: 700;
  margin: 0 2px;
}
.analysis-timeline-wrap { margin-bottom: 24px; }
.timeline-time-markers {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #444;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.timeline-track {
  display: flex;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  gap: 2px;
  margin-bottom: 14px;
}
.seg {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  cursor: default;
  transition: filter 0.15s;
}
.seg:hover { filter: brightness(1.2); }
.seg-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 6px;
}
.seg-name {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
}
.seg-dur {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
}
.seg-hook    { background: var(--accent); }
.seg-problem { background: #8b5cf6; }
.seg-demo    { background: #0ea5e9; }
.seg-proof   { background: #10b981; }
.seg-cta     { background: #f59e0b; }
.annotation-track {
  position: relative;
  height: 32px;
}
.annotation {
  position: absolute;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.annotation-pin {
  width: 1px;
  height: 10px;
  background: #333;
}
.annotation-label {
  font-size: 9px;
  color: #555;
  white-space: nowrap;
  margin-top: 4px;
  letter-spacing: 0.03em;
}
.analysis-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  margin-bottom: 20px;
}
.metric-label {
  display: block;
  font-size: 9px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.metric-bar {
  height: 3px;
  background: #1e1e1e;
  border-radius: 99px;
  margin-bottom: 8px;
  overflow: hidden;
}
.metric-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
}
.metric-val {
  font-size: 13px;
  color: var(--fg-light);
  font-weight: 600;
}
.analysis-footer {
  font-size: 10px;
  color: #444;
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px solid #1a1a1a;
}
@media (max-width: 720px) {
  .analysis-metrics { grid-template-columns: repeat(2, 1fr); }
  .seg-name { font-size: 8px; }
}
@media (max-width: 480px) {
  .annotation-label { display: none; }
  .analysis-block { padding: 20px 16px; }
}