/* ═══════════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════════ */
:root {
  --color-bg: #0d0d0d;
  --color-surface: #141414;
  --color-foreground: #f5f4f0;
  --color-muted: #6b6b6b;
  --color-hairline: rgba(255, 255, 255, 0.08);
  --color-primary: #f3bd00;
  --color-primary-fg: #0d0d0d;
  --font-display:  "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  /* spacing scale */
  --sp-sm: 48px;
  --sp-md: 80px;
  --sp-lg: 128px;
  --sp-xl: 192px;
}

/* ═══════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

/* ═══════════════════════════════════════════════
   GRAIN
═══════════════════════════════════════════════ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   UTILS
═══════════════════════════════════════════════ */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 600px) {
  .container {
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}
.eyebrow .num {
  color: var(--color-primary);
  font-size: 15px;
}
.eyebrow .line {
  height: 1px;
  width: 28px;
  background: var(--color-hairline);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.025em;
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  margin-top: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--color-primary);
}

/* Sub-headline under every section title */
.sec-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(245, 244, 240, 0.68);
  line-height: 1.7;
  max-width: 52ch;
  margin-top: 16px;
}

.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.link-underline:hover::after {
  width: 100%;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-primary-fg);
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(243, 189, 0, 0.3);
  transition: box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  box-shadow: 0 6px 24px rgba(243, 189, 0, 0.4);
}
.btn-primary svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.2s;
}
.reveal-d3 {
  transition-delay: 0.32s;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 0;
}
@media (min-width: 768px) {
  #hero {
    padding: 80px 0 0;
  }
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(var(--color-foreground) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-foreground) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 30%,
    black 40%,
    transparent 80%
  );
}
.hero-glow {
  position: absolute;
  top: 12%;
  left: 50%;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(243, 189, 0, 0.28) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-muted);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-top: 20px;
  max-width: 22ch;
  opacity: 0;
  animation: fadeUp 0.9s 0.55s ease forwards;
}
h1 em {
  font-style: italic;
  color: var(--color-primary);
}

/* Sub-headline directly below h1 */
.hero-sub {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.65;
  color: rgba(245, 244, 240, 0.75);
  max-width: 44ch;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.68s ease forwards;
}

/* CTA directly below sub-headline */
.hero-cta-block {
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 0.9s 0.82s ease forwards;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-foreground);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 11px 22px;
  transition:
    border-color 0.2s,
    color 0.2s;
  text-decoration: none;
}
.hero-cta-secondary::after {
  display: none !important;
}
.hero-cta-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Stats bar below CTA */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--color-hairline);
  font-size: 16px;
  color: var(--color-muted);
  opacity: 0;
  animation: fadeUp 0.9s 0.96s ease forwards;
  padding-bottom: 24px;
}
.hero-stat-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-foreground);
}
.hero-stat-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--color-hairline);
  align-self: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════ */
#ticker {
  border-top: 1px solid var(--color-hairline);
  border-bottom: 1px solid var(--color-hairline);
  padding: 36px 0;
  margin-top: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  #ticker {
    margin-top: 0;
    padding: 44px 0;
  }
}

.ticker-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0 20px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 600px) {
  .ticker-head {
    padding: 0 32px;
  }
}
@media (min-width: 768px) {
  .ticker-head {
    flex-direction: row;
    align-items: flex-end;
    padding: 0 48px;
  }
}
.ticker-sub {
  font-size: 14px;
  color: var(--color-muted);
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 48px;
  padding: 0 20px;
  animation: marquee 30s linear infinite;
  animation-play-state: paused;
}
.marquee-wrap.visible .marquee-track {
  animation-play-state: running;
}
.marquee-wrap.visible .marquee-item {
  opacity: 1;
}
@media (min-width: 600px) {
  .marquee-track {
    gap: 72px;
    padding: 0 32px;
  }
}
@media (min-width: 1024px) {
  .marquee-track {
    gap: 96px;
    padding: 0 48px;
  }
}
#ticker:hover .marquee-track {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 12px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 10px;
  transition:
    box-shadow 0.2s,
    transform 0.2s,
    opacity 0.4s ease;
  opacity: 0.7;
}
.marquee-item:hover {
  box-shadow: 0 4px 16px rgba(243, 189, 0, 0.25);
  transform: translateY(-2px);
}
.marquee-item img {
  height: 32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
}
.marquee-fade.l {
  left: 0;
  background: linear-gradient(to right, var(--color-bg), transparent);
}
.marquee-fade.r {
  right: 0;
  background: linear-gradient(to left, var(--color-bg), transparent);
}

/* ═══════════════════════════════════════════════
   SECTION SPACING HELPER
═══════════════════════════════════════════════ */
.sec {
  padding: 72px 0;
}
@media (min-width: 600px) {
  .sec {
    padding: 96px 0;
  }
}
@media (min-width: 1024px) {
  .sec {
    padding: 140px 0;
  }
}
.sec-surface {
  background: var(--color-surface);
  border-top: 1px solid var(--color-hairline);
}

/* ═══════════════════════════════════════════════
   GAP SECTION
═══════════════════════════════════════════════ */
#gap {
}

.cards-3 {
  display: grid;
  gap: 1px;
  background: var(--color-hairline);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
@media (min-width: 600px) {
  .cards-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gap-card {
  background: var(--color-bg);
  padding: 28px;
  transition: background 0.2s;
}
@media (min-width: 768px) {
  .gap-card {
    padding: 36px;
  }
}
.gap-card:hover {
  background: var(--color-surface);
}
.gap-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-primary);
}
.gap-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 20px;
}
.gap-card p {
  font-size: 14px;
  color: rgba(245, 244, 240, 0.68);
  margin-top: 16px;
  line-height: 1.65;
}
.gap-card-line {
  height: 1px;
  width: 40px;
  background: var(--color-primary);
  margin-top: 32px;
  transition: width 0.7s ease;
}
.gap-card:hover .gap-card-line {
  width: 100%;
}

/* ═══════════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════════ */
.why-head {
  margin-top: 24px;
}
.why-sub {
  color: rgba(245, 244, 240, 0.68);
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  max-width: 52ch;
  margin-top: 16px;
}

.compare-table {
  margin-top: 48px;
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  overflow: hidden;
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--color-hairline);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}
.compare-header span {
  padding: 14px 16px;
}
@media (min-width: 600px) {
  .compare-header span {
    padding: 14px 28px;
  }
}
@media (min-width: 900px) {
  .compare-header span {
    padding: 16px 40px;
  }
}
.compare-header span:last-child {
  border-left: 1px solid var(--color-hairline);
  color: var(--color-primary);
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--color-hairline);
  transition: background 0.2s;
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.compare-bad,
.compare-good {
  padding: 20px 16px;
  font-size: 13px;
  line-height: 1.5;
}
@media (min-width: 600px) {
  .compare-bad,
  .compare-good {
    padding: 24px 28px;
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .compare-bad,
  .compare-good {
    padding: 28px 40px;
  }
}

.compare-bad {
  color: rgba(245, 244, 240, 0.4);
  text-decoration: line-through;
  text-decoration-color: rgba(245, 244, 240, 0.18);
}
.compare-good {
  border-left: 1px solid var(--color-hairline);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compare-good svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════
   WHAT WE TRAIN — FULL-WIDTH ACCORDION
═══════════════════════════════════════════════ */
.what-layout {
  margin-top: 32px;
  border-top: 1px solid var(--color-hairline);
}

.acc-item {
  border-bottom: 1px solid var(--color-hairline);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.acc-item.is-hidden {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}
.what-layout [hidden] {
  display: none;
}

/* Tech / Non-Tech filter toggle — reads "For [Tech/Non-Tech] Teams" */
.track-toggle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px auto 0;
}
.track-toggle-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 22px);
  letter-spacing: -0.01em;
  color: var(--color-foreground);
}
.track-toggle {
  position: relative;
  display: flex;
  width: max-content;
  padding: 5px;
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  background: var(--color-surface);
}
.track-thumb {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(50% - 5px);
  height: calc(100% - 10px);
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 4px 16px rgba(243, 189, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.track-toggle.is-non-tech .track-thumb {
  transform: translateX(100%);
}
.track-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 9px 45px 9px 24px;
  font-family: var(--font-body);
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 600;
  color: var(--color-muted);
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .track-btn:not(.is-active):hover {
    color: var(--color-foreground);
  }
}
.track-btn.is-active {
  color: var(--color-primary-fg);
}
@media (max-width: 480px) {
  .track-btn {
    padding: 9px 40px 9px 20px;
    font-size: 14px;
  }
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
}
@media (min-width: 600px) {
  .acc-trigger {
    padding: 26px 0;
  }
}
@media (min-width: 1024px) {
  .acc-trigger {
    padding: 30px 0;
  }
}

/* Open on hover — desktop only */
@media (hover: hover) {
  .acc-item:hover .acc-title {
    color: var(--color-primary);
    transform: translateX(6px);
  }
}
.acc-item.open .acc-title {
  color: var(--color-primary);
  transform: translateX(6px);
}

.acc-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
  min-width: 0;
}
.acc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--color-muted);
  flex-shrink: 0;
}
.acc-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 3.5vw, 34px);
  letter-spacing: -0.01em;
  color: var(--color-foreground);
  transition:
    color 0.25s,
    transform 0.25s;
}

.acc-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.acc-badge {
  display: none;
  border: 1px solid rgba(243, 189, 0, 0.4);
  color: var(--color-primary);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (min-width: 600px) {
  .acc-badge {
    display: inline-block;
  }
}

.acc-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-hairline);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    border-color 0.2s;
  color: var(--color-muted);
}
.acc-chevron svg {
  width: 14px;
  height: 14px;
  transition: transform 0.35s ease;
}

@media (hover: hover) {
  .acc-item:hover .acc-chevron {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-primary-fg);
  }
  .acc-item:hover .acc-chevron svg {
    transform: rotate(180deg);
  }
}
.acc-item.open .acc-chevron {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-fg);
}
.acc-item.open .acc-chevron svg {
  transform: rotate(180deg);
}

/* Collapsible body — expand on hover (desktop) OR open class (mobile click) */
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .acc-item:hover .acc-body {
    grid-template-rows: 1fr;
  }
}
.acc-item.open .acc-body {
  grid-template-rows: 1fr;
}
.acc-body-inner {
  overflow: hidden;
}

/* Inner content */
.acc-content {
  display: grid;
  gap: 32px;
  padding: 0 0 32px;
}
@media (min-width: 768px) {
  .acc-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 4px 0 36px;
  }
}
@media (min-width: 1024px) {
  .acc-content {
    grid-template-columns: 5fr 4fr;
    gap: 64px;
  }
}

.acc-desc {
  font-size: 15px;
  color: rgba(245, 244, 240, 0.75);
  line-height: 1.7;
}
.acc-desc .pc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-primary);
  margin-top: 20px;
}
.acc-desc .pc-link svg {
  width: 13px;
  height: 13px;
}

/* Tool pills column */
.acc-tools {
}
.acc-tools-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin-bottom: 14px;
}
.tool-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  padding: 7px 14px 7px 8px;
  font-size: 13px;
  color: rgba(245, 244, 240, 0.8);
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.tool-pill:hover {
  border-color: rgba(243, 189, 0, 0.3);
  background: rgba(243, 189, 0, 0.05);
}
/* tool icon container */
.tool-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  padding: 3px;
  box-sizing: border-box;
}
.tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════
   METHOD
═══════════════════════════════════════════════ */
.method-cards {
  display: grid;
  gap: 1px;
  background: var(--color-hairline);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
@media (min-width: 600px) {
  .method-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 900px) {
  .method-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.method-card {
  background: var(--color-surface);
  padding: 28px;
}
@media (min-width: 768px) {
  .method-card {
    padding: 40px;
  }
}
.method-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.method-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(48px, 8vw, 72px);
  color: var(--color-primary);
  line-height: 1;
}
.method-step {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-muted);
}
.method-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.8vw, 26px);
  letter-spacing: -0.01em;
  margin-top: 32px;
  line-height: 1.2;
}
.method-card p {
  font-size: 14px;
  color: rgba(245, 244, 240, 0.68);
  margin-top: 12px;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   CASE STUDIES — IMAGE CARD REDESIGN
═══════════════════════════════════════════════ */
.cs-grid {
  display: grid;
  gap: 20px;
  margin-top: 48px;
}
@media (min-width: 640px) {
  .cs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .cs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Featured card — spans 2 cols on large */
.cs-grid-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .cs-grid-card.featured {
    grid-column: span 2;
  }
}

.cs-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-surface);
}
.cs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.8);
}
.cs-grid-card:hover .cs-img-wrap img {
  transform: scale(1.04);
}

.cs-grid-card.featured .cs-img-wrap {
  height: 280px;
}
@media (min-width: 768px) {
  .cs-grid-card.featured .cs-img-wrap {
    height: 340px;
  }
}
.cs-grid-card:not(.featured) .cs-img-wrap {
  height: 200px;
}
@media (min-width: 768px) {
  .cs-grid-card:not(.featured) .cs-img-wrap {
    height: 240px;
  }
}

/* Overlay gradient on image */
.cs-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(13, 13, 13, 0.85) 100%
  );
}

/* Tag on image */
.cs-img-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(13, 13, 13, 0.7);
  color: var(--color-muted);
  border: 1px solid var(--color-hairline);
  border-radius: 999px;
  padding: 4px 10px;
  backdrop-filter: blur(6px);
}

/* Company logo/mark on image bottom-left */
.cs-img-co {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-img-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(243, 189, 0, 0.15);
  border: 1px solid rgba(243, 189, 0, 0.3);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-primary);
}
.cs-img-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-foreground);
}

/* Card body below image */
.cs-body {
  background: var(--color-surface);
  border: 1px solid var(--color-hairline);
  border-top: none;
  border-radius: 0 0 18px 18px;
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-body-prog {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--color-primary);
}
.cs-body-quote {
  font-size: 14px;
  color: rgba(245, 244, 240, 0.8);
  line-height: 1.6;
  flex: 1;
}
.cs-body-quote em {
  font-style: italic;
  color: var(--color-foreground);
}
.cs-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid var(--color-hairline);
}
.cs-metric-val {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 400;
  line-height: 1;
}
.cs-metric-lbl {
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 2px;
  line-height: 1.3;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS — SLIDER + POINTERS
═══════════════════════════════════════════════ */
.flip-intro {
  font-size: 14px;
  color: var(--color-muted);
  margin-top: 8px;
  margin-bottom: 40px;
}

.testi-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .testi-layout {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: stretch;
  }
}

/* Slider (left) */
.testi-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-hairline);
  border-radius: 16px;
  padding: 40px;
}
@media (max-width: 600px) {
  .testi-slider {
    padding: 28px;
  }
}

.testi-track {
  flex: 1;
}

.testi-slide {
  display: none;
  flex-direction: column;
}
.testi-slide.active {
  display: flex;
  animation: testiFadeIn 0.4s ease;
}
@keyframes testiFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testi-logo {
  /* height: 50px; */
  max-width: 150px;
  width: fit-content;
  object-fit: contain;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 28px;
}

.testi-quote {
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--color-foreground);
  min-height: 7.25em; /* reserves space for 5 lines so card height stays constant across slides */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-quote::before {
  content: '"';
  color: var(--color-primary);
}
.testi-quote::after {
  content: '"';
  color: var(--color-primary);
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-foreground);
  margin-top: 28px;
}
.testi-role {
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 2px;
}

.testi-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--color-hairline);
}
.testi-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--color-hairline);
  background: rgba(243, 189, 0, 0.08);
  color: var(--color-foreground);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.testi-arrow svg {
  width: 16px;
  height: 16px;
}
.testi-arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-primary-fg);
  box-shadow: 0 6px 16px rgba(243, 189, 0, 0.3);
  transform: translateY(-1px);
}
.testi-arrow:active {
  transform: translateY(0) scale(0.94);
}
.testi-dots {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 8px;
}
.testi-dot {
  width: 7px;
  height: 7px;
  border-radius: 4px;
  background: var(--color-hairline);
  border: none;
  cursor: pointer;
  padding: 0;
  transition:
    width 0.2s,
    background 0.2s;
}
.testi-dot.active {
  width: 20px;
  background: var(--color-primary);
}

/* Pointers (right) */
.testi-pointers {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testi-pointers-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  margin-bottom: 20px;
}
.testi-pointers-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--color-hairline);
  border-radius: 14px;
  overflow: hidden;
}
.testi-pointers-list li {
  background: var(--color-bg);
  padding: 22px 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.testi-pointer-val {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--color-primary);
}
.testi-pointer-lbl {
  font-size: 12px;
  color: var(--color-muted);
  text-align: right;
  max-width: 140px;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
#cta {
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: -140px;
  left: 50%;
  width: min(800px, 120vw);
  height: min(600px, 100vw);
  transform: translateX(-50%);
  background: rgba(243, 189, 0, 0.16);
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
}

.cta-layout {
  display: grid;
  gap: 48px;
}
@media (min-width: 900px) {
  .cta-layout {
    grid-template-columns: 5fr 6fr;
    gap: 64px;
  }
}

.cta-copy p {
  font-size: 15px;
  color: rgba(245, 244, 240, 0.8);
  line-height: 1.7;
}
.cta-perks {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cta-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--color-muted);
}
.cta-perks li span {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* ── Corporate CTA form card ── */
.cp-form-card {
  border: 1px solid var(--color-hairline);
  border-radius: 20px;
  background: var(--color-surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.cp-modal-box {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
}
.cp-modal-box .cp-form-row {
  display: flex;
  gap: 14px;
}
.cp-modal-box .cp-form-row .cp-form-group {
  flex: 1;
  min-width: 0;
}
.cp-modal-box .cp-form-group {
  margin-bottom: 0.8rem;
}
.cp-modal-box .cp-form-header {
  padding: 1.3rem 1.8rem 0.9rem;
}
.cp-modal-box .cp-form-body {
  padding: 1.2rem 1.8rem 1.6rem;
}
.cp-modal-box .cp-form-textarea {
  min-height: 56px;
}
.cp-modal-box .cp-consent-label {
  margin-bottom: 12px;
}
@media (max-width: 560px) {
  .cp-modal-box .cp-form-row {
    flex-direction: column;
    gap: 0;
  }
}
.cp-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-foreground);
  cursor: pointer;
  z-index: 1;
  transition: background 0.2s;
}
.cp-modal-close:hover {
  background: rgba(255, 255, 255, 0.16);
}
.cp-form-state,
.cp-otp-state {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cp-otp-state {
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.8rem;
}
.cp-otp-state.show {
  display: flex;
}
.cp-form-header {
  padding: 1.6rem 1.8rem 1rem;
  border-bottom: 1px solid var(--color-hairline);
}
.cp-form-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-foreground);
  line-height: 1.3;
}
.cp-form-body {
  padding: 1.4rem 1.8rem 1.8rem;
}
.cp-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.cp-form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(245, 244, 240, 0.7);
  letter-spacing: 0.02em;
}
.cp-form-label span {
  color: var(--color-primary);
  margin-left: 2px;
}
.cp-form-input,
.cp-form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--color-foreground);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.cp-form-input::placeholder,
.cp-form-textarea::placeholder {
  color: rgba(245, 244, 240, 0.3);
  font-size: 0.85rem;
}
.cp-form-input:focus,
.cp-form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(243, 189, 0, 0.12);
}
.cp-form-input.error,
.cp-form-textarea.error {
  border-color: #e8602f;
  box-shadow: 0 0 0 3px rgba(232, 96, 47, 0.1);
}
.cp-form-textarea {
  resize: none;
  min-height: 80px;
}
.cp-phone-group {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.5rem;
}
.cp-country-code {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 13px;
  color: var(--color-foreground);
  font-weight: 500;
  white-space: nowrap;
  padding: 10px 8px;
}
.cp-field-error {
  font-size: 0.74rem;
  color: #e8602f;
  display: none;
  align-items: center;
  gap: 0.3rem;
}
.cp-field-error.show {
  display: flex;
}
.cp-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(245, 244, 240, 0.55);
  line-height: 1.4;
  margin-bottom: 16px;
  cursor: pointer;
}
.cp-consent-label input[type="checkbox"] {
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}
.cp-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-primary-fg);
  border: none;
  border-radius: 12px;
  padding: 13px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(243, 189, 0, 0.3);
  transition: box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.cp-submit-btn:hover:not(:disabled) {
  box-shadow: 0 6px 24px rgba(243, 189, 0, 0.4);
}
.cp-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cp-btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(13, 13, 13, 0.25);
  border-top-color: #0d0d0d;
  border-radius: 50%;
  animation: cpSpin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes cpSpin {
  to {
    transform: rotate(360deg);
  }
}
.cp-submit-btn.loading .cp-btn-spinner {
  display: block;
}
.cp-submit-btn.loading .cp-btn-text {
  display: none;
}
/* OTP state */
.cp-otp-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-foreground);
  margin-bottom: 8px;
}
.cp-otp-title em {
  font-style: italic;
  color: var(--color-primary);
}
.cp-otp-sub {
  font-size: 0.82rem;
  color: rgba(245, 244, 240, 0.55);
  line-height: 1.55;
  margin-bottom: 1.8rem;
}
.cp-otp-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.cp-otp-input {
  width: 60px;
  height: 64px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-foreground);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  font-family: var(--font-body);
  caret-color: var(--color-primary);
}
.cp-otp-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(243, 189, 0, 0.15);
  transform: translateY(-2px);
}
.cp-otp-input.error {
  border-color: #e8602f;
  box-shadow: 0 0 0 4px rgba(232, 96, 47, 0.1);
}
.cp-resend-row {
  font-size: 0.85rem;
  color: rgba(245, 244, 240, 0.45);
  margin-top: 1rem;
}
.cp-resend-row a {
  color: var(--color-primary);
  text-decoration: none;
}
.cp-resend-row a:hover {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--color-hairline);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 20px;
  max-width: 1500px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--color-muted);
}
@media (min-width: 600px) {
  .footer-inner {
    padding: 36px 32px;
  }
}
@media (min-width: 900px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 48px;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a:hover {
  color: var(--color-foreground);
}

/* ── Corporate: force dark nav & footer to match page design ── */
#nav-container {
  position: sticky;
  top: 0;
  z-index: 1201;
  transition: transform 0.35s ease-in-out;
}

/* Nav background */
#nav-container nav {
  background: rgba(13, 13, 13, 0.92) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
nav .nav-links a,
nav .nav-dropbtn {
  color: #f5f4f0 !important;
  font-family: Poppins, "Poppins Fallback", sans-serif !important;
}

nav .menu-toggle span {
  background: #f5f4f0 !important;
}
#nav-container .logo-white {
  display: block !important;
}
#nav-container .logo-dark {
  display: none !important;
}

/* Nav dropdown — dark card */
.nav-dropdown-content {
  background-color: #141414 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.nav-dropdown-content::before {
  background-color: #141414 !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}
.nav-dropdown-content a {
  color: #f5f4f0 !important;
}
.nav-dropdown-content a:hover {
  color: #f3bd00 !important;
  background-color: rgba(243, 189, 0, 0.06) !important;
}

/* Full-screen mobile menu */
.fs-menu {
  background: rgba(13, 13, 13, 0.95) !important;
}
.fs-menu .fs-link,
.fs-menu .fs-dropdown-btn,
.fs-menu .fs-dropdown-content a {
  color: #f5f4f0 !important;
}

/* Footer — dark */
.footer-overlap {
  background: #141414 !important;
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}
.footer-section h4 {
  color: #f5f4f0 !important;
}
.footer-section ul li a,
.footer-links a,
.social-links a,
.address-item address,
.contact-item a,
.copyright,
.footer-links {
  color: rgba(245, 244, 240, 0.7) !important;
}
.footer-section ul li a:hover,
.footer-links a:hover,
.social-links a:hover,
.contact-item a:hover {
  color: #f3bd00 !important;
}
.address-item i,
.contact-item i {
  color: #f3bd00 !important;
}

nav .nav-links a.nav-active,
.fs-menu .fs-link.nav-active {
  color: #f3bd00 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px !important;
}

/* #nav-container.nav-hidden {
  transform: translateY(-100%);
} */
