/* ============================================================
   DESIGN TOKENS — Premium Editorial System
   ============================================================ */
:root {
  /* Brand colours */
  --primary:   #262752;
  --secondary: #00917e;
  --ink:       #0f172a;
  --text:      #1f2937;
  --muted:     #64748b;
  --light:     #f8fafc;
  --white:     #ffffff;
  --line:      #e5e7eb;

  /* Geometry */
  --radius-pill:    9999px;  /* buttons, search inputs */
  --radius-card:    18px;    /* feature/utility cards */
  --radius-section: 0px;     /* full-bleed tiles */
  --radius:         18px;    /* legacy alias → card radius */

  /* Elevation */
  --shadow: 0 20px 60px rgba(38, 39, 82, 0.12);

  /* Layout */
  --container:      1180px;
  --section-py:     80px;    /* default section vertical padding */
  --card-pad:       24px;    /* internal card padding */
  --base-unit:      8px;     /* spacing base unit */

  /* Typography — SF Pro system stack */
  --font-display: "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  --font-body:    "SF Pro Text",    system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;

  /* Typographic scale */
  --text-hero:    56px;
  --text-h2:      40px;
  --text-h3:      34px;
  --text-body:    17px;
  --text-caption: 14px;

  /* Weights — ONLY 300 | 400 | 600 | 700 */
  --w-light:    300;
  --w-regular:  400;
  --w-semibold: 600;
  --w-bold:     700;
}

/* ── Reset ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ── Base body — SF Pro Text ── */
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--w-regular);
  line-height: 1.47;
  letter-spacing: -0.374px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* ── Global heading scale ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--w-semibold);
  color: var(--ink);
  margin: 0;
}

h1 {
  font-size: var(--text-hero);        /* 56px */
  line-height: 1.07;
  letter-spacing: -0.28px;
}

h2 {
  font-size: var(--text-h2);          /* 40px */
  line-height: 1.10;
  letter-spacing: 0px;
}

h3 {
  font-size: var(--text-h3);          /* 34px */
  line-height: 1.47;
  letter-spacing: -0.374px;
}

p {
  font-size: var(--text-body);        /* 17px */
  font-weight: var(--w-regular);
  line-height: 1.47;
  letter-spacing: -0.374px;
}

small, caption, .caption {
  font-size: var(--text-caption);     /* 14px */
  font-weight: var(--w-regular);
  line-height: 1.43;
  letter-spacing: -0.224px;
}

/* ── Layout ── */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* All major sections default to 80px vertical padding, 0 gap */
.section {
  padding: var(--section-py) 0;
  border-radius: var(--radius-section);
}

/* ── Utility text ── */
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--w-bold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(24px, 2.6vw, var(--text-h2));
  line-height: 1.10;
  font-weight: var(--w-semibold);
  letter-spacing: 0px;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-desc {
  max-width: 760px;
  color: var(--muted);
  font-size: var(--text-body);
  font-weight: var(--w-regular);
  line-height: 1.47;
  letter-spacing: -0.374px;
}

/* ── Buttons — pill, standardised padding 11/22px ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: var(--w-semibold);
  font-size: 14px;
  letter-spacing: -0.224px;
  line-height: 1.43;
  transition: 0.22s ease;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(38, 39, 82, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #1e1f42;
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 145, 126, 0.22);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #007d6d;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: rgba(38, 39, 82, 0.2);
}

.btn-outline:hover {
  background: #f8f9ff;
  border-color: rgba(38, 39, 82, 0.35);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.nav-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.brand-name {
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-size: 13px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
}

.nav-menu a:hover,
.footer-links a:hover {
  color: var(--primary);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  margin-top: 10px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  z-index: 1010;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 16px;
  color: var(--primary) !important;
  font-weight: 600;
  transition: background 0.2s;
  display: block;
}

.nav-dropdown-menu a:hover {
  background: #f1f5f9;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
}

.nav-panel {
  display: none;
}

/* ============================================================
   HERO — full-bleed video background
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--primary);           /* fallback if video doesn't load */
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: none;
  padding: 0;
}

/* ── Background video ── */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* ── Dark overlay for readability ── */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 10, 28, 0.68) 0%,
    rgba(10, 18, 50, 0.60) 55%,
    rgba(4, 68, 62, 0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Main content area ── */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  padding-bottom: 48px;
}

/* ── Left-aligned copy block ── */
.hero-copy {
  max-width: 620px;
}

/* ── Eyebrow label ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(111, 244, 230, 0.90);
  margin-bottom: 22px;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 1.5px;
  background: rgba(111, 244, 230, 0.80);
  border-radius: 2px;
}

/* ── Headline — white on dark ── */
.hero-copy h1 {
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.14;
  letter-spacing: -1px;
  font-weight: 700;
  color: #ffffff;
  max-width: 15ch;
  margin-top: 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.hero-copy h1 .text-highlight {
  color: rgba(111, 244, 230, 0.95);
}

/* ── Subheadline — white, softer ── */
.hero-copy .hero-subtitle {
  max-width: 46ch;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.78;
  letter-spacing: 0.01em;
}

.hero-copy p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
  max-width: 720px;
  margin-top: 18px;
}

/* ── CTA group ── */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

/* Secondary CTA — white outline on dark/video background */
.btn-hero-outline-video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  min-height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.48);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(4px);
}

.btn-hero-outline-video:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.72);
}

/* Legacy outline class (kept for compatibility) */
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  min-height: 44px;
  border: 1px solid rgba(38, 39, 82, 0.24);
  color: var(--primary);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-hero-outline:hover {
  background: rgba(38, 39, 82, 0.04);
  border-color: rgba(38, 39, 82, 0.38);
}

.hero-copy .eyebrow {
  color: rgba(111, 244, 230, 0.90);
  margin-bottom: 16px;
}

/* ── Metrics bar — frosted glass strip at bottom of hero ── */
.hero-metrics-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(8, 12, 32, 0.52);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0;
  margin-top: auto;
}

/* ── Metric card inside the bar ── */
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.hero-metrics::before {
  content: none;
}

/* Each stat cell */
.metric {
  position: relative;
  isolation: isolate;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 20px 16px;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.metric:last-child {
  border-right: none;
}

.metric:first-child {
  border-radius: 0;
}

.metric::before {
  content: none;
}

.metric::after {
  content: none;
}

/* ── Icon above each stat ── */
.metric-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(111, 244, 230, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.metric-icon svg {
  width: 13px;
  height: 13px;
  stroke: rgba(111, 244, 230, 0.90);
  stroke-width: 2;
}

/* Numbers — white, readable */
.metric strong {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
  font-size: 0;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.metric-number {
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "zero" 1;
  color: #ffffff;
}

.metric-suffix {
  font-size: 14px;
  line-height: 1;
  color: rgba(111, 244, 230, 0.90);
  font-weight: 700;
  margin-bottom: 1px;
}

/* Label — soft white */
.metric > span {
  display: block;
  margin-top: 5px;
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
  position: relative;
  padding-top: 0;
  line-height: 1.4;
}

.metric > span::before {
  content: none;
}

/* ── Slider styles kept for possible future reuse ── */
.hero-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  padding: 0;
  overflow: visible;
}

.hero-card::after {
  content: none;
}

.hero-slider {
  position: relative;
  height: 320px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, #1a4c6b 65%, var(--secondary) 100%);
  box-shadow: 0 4px 24px rgba(38, 39, 82, 0.10);
  isolation: isolate;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.02) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0,0,0,0.10) 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.14) 0%, transparent 50%);
}

.hero-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(6px);
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider-btn:hover {
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  transform: translateY(calc(-50% - 1px));
}

.hero-slider-btn.prev { left: 14px; }
.hero-slider-btn.next { right: 14px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 4;
}

.hero-dot {
  width: 5px;
  height: 5px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 20px;
  background: #ffffff;
}

.hero-note {
  margin-top: 22px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.note-item {
  background: #f8fafc;
  border: 1px solid #e8edf4;
  border-radius: 18px;
  padding: 18px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.note-item h4 {
  font-size: 14px;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.note-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

.trust {
  background: var(--white);
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
}

.trust-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 700;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, #262752 0%, #1f4f72 58%, #00917e 100%);
  border-radius: 22px;
  padding: 28px 20px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 18px 40px rgba(38, 39, 82, 0.18);
  transition: 0.3s ease;
}

.trust-item::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.trust-item::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  bottom: -60px;
  left: -35px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.trust-item svg,
.trust-item span {
  position: relative;
  z-index: 1;
}

.trust-item svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(38, 39, 82, 0.24);
}

.about-clean {
  position: relative;
  padding: var(--section-py) 0;
  background: linear-gradient(90deg, #eef4f6 0%, #f8fafb 36%, #f8fafb 100%);
}

.about-clean .container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.about-clean-wrap {
  display: grid;
  grid-template-columns: 420px 560px;
  justify-content: center;
  align-items: center;
  column-gap: 80px;
}

.about-clean-copy {
  max-width: 332px;
}

.about-clean .eyebrow {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
}

.about-clean-copy h2 {
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  max-width: 7ch;
}

.about-clean-copy p {
  font-size: 14px;
  line-height: 1.9;
  color: #5b6b7f;
  max-width: 29ch;
}

.about-clean-visual {
  position: relative;
  width: 560px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.about-clean-visual::before {
  content: "";
  position: absolute;
  inset: 34px 48px 26px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(236, 242, 246, 0.12) 48%, rgba(236, 242, 246, 0) 78%);
  opacity: 0.42;
  pointer-events: none;
}

.about-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.about-shot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 384px;
  height: 216px;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1), filter 0.82s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.82s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-shot::after {
  content: none;
}

.about-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: transparent;
}

.about-shot-left {
  transform: translate(-75%, -50%) scale(0.84);
  opacity: 0.16;
  filter: blur(0.5px);
  z-index: 2;
}

.about-shot-center {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  filter: blur(0);
  z-index: 4;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.about-shot-right {
  transform: translate(-25%, -50%) scale(0.84);
  opacity: 0.16;
  filter: blur(0.5px);
  z-index: 2;
}

.about-shot-hidden {
  transform: translate(-50%, -50%) scale(0.54);
  opacity: 0;
  filter: blur(1px);
  z-index: 1;
  pointer-events: none;
}

.about-shot-left img,
.about-shot-right img {
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.03));
}

.about-shot-center img {
  filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.04));
}

.stories {
  background: #ffffff;
  padding: var(--section-py) 0;
}

.stories-wrap {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  align-items: stretch;
}

.story-main,
.story-side,
.story-mini {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.story-main {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(0, 145, 126, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.story-main h3 {
  font-size: var(--text-h3);
  line-height: 1.15;
  color: var(--ink);
  font-weight: var(--w-semibold);
  margin-bottom: 16px;
}

.story-main p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 16px;
  max-width: 620px;
}

.story-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(0, 145, 126, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-tagline i {
  width: 15px;
  height: 15px;
}

.story-side {
  padding: 30px;
  background: linear-gradient(180deg, #262752 0%, #1f4f72 100%);
  color: #ffffff;
}

.story-side h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 18px;
  font-weight: 700;
  color: #ffffff;
}

.story-points {
  list-style: none;
  display: grid;
  gap: 16px;
}

.story-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-icon i {
  width: 20px;
  height: 20px;
}

.story-points h4 {
  font-size: 15px;
  line-height: 1.3;
  margin-bottom: 6px;
  font-weight: 700;
}

.story-points p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

.story-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.story-mini {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  background-position: center;
  background-size: cover;
}

.story-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 23, 42, 0.1) 0%, rgba(13, 23, 42, 0.78) 100%);
}

.story-mini strong,
.story-mini p {
  position: relative;
  z-index: 1;
}

.story-mini strong {
  font-size: 21px;
  line-height: 1.12;
  margin-bottom: 10px;
}

.story-mini p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.story-mini-individu {
  background-image: url("story-mini-individu.jpg");
}

.story-mini-tim {
  background-image: url("story-mini-tim.jpg");
}

.story-mini-institusi {
  background-image: url("story-mini-corporate.jpg");
}

.portfolio {
  background: #ffffff;
  padding: 56px 0 60px;
  overflow: hidden;
}

.portfolio-head {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.portfolio-label {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.show-on-mobile {
  display: none;
}

.portfolio-title {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.logo-marquee {
  overflow: hidden;
  margin-top: 16px;
}

/* Baris kedua — diberi jarak atas dari baris pertama */
.logo-marquee--reverse {
  margin-top: 12px;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: logo-marquee 28s linear infinite;
}

/* Baris kedua: arah berlawanan (kanan ke kiri terbalik) */
.logo-track--reverse {
  animation: logo-marquee-reverse 32s linear infinite;
}

.logo-marquee:hover .logo-track,
.logo-marquee--reverse:hover .logo-track--reverse {
  animation-play-state: paused;
}

.logo-card {
  width: 186px;
  height: 104px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(251, 253, 255, 0.82));
  border: none;
  box-shadow:
    0 8px 18px rgba(15, 23, 42, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
}

.logo-card img {
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

/* Animasi arah terbalik — mulai dari -50% kembali ke 0 */
@keyframes logo-marquee-reverse {
  from {
    transform: translateX(calc(-50% - 8px));
  }

  to {
    transform: translateX(0);
  }
}

.social-proof {
  background: #ffffff;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.social-proof-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.social-proof-copy {
  color: #0f172a;
  padding: 10px 0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.social-proof-copy .eyebrow {
  color: #64748b;
  margin-bottom: 14px;
}

.social-proof-copy h2 {
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.social-proof-copy p {
  font-size: 15px;
  line-height: 1.85;
  color: #475569;
  max-width: 100%;
}

.social-proof-video {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.3);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-action {
  margin-top: 10px;
}

.social-proof-metrics {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-top: 10px;
}

.sp-metric {
  flex: 1 1 240px;
  max-width: 280px;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.sp-stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.sp-value {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.sp-label {
  font-size: 14px;
  font-weight: 600;
  color: #00917e;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.sp-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.programs {
  background: #f4f8fb;
  padding: var(--section-py) 0;
}

.program-head {
  max-width: 620px;
  margin-bottom: 22px;
}

.program-head .eyebrow {
  margin-bottom: 10px;
}

.program-head h2 {
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.14;
  color: var(--ink);
  font-weight: 700;
  max-width: 9ch;
  margin-bottom: 10px;
}

.program-head p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 34ch;
}

.program-stack {
  display: grid;
  gap: 12px;
}

.program-item {
  display: grid;
  grid-template-columns: 230px 1fr;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.program-side {
  padding: 20px 18px;
  border-right: 1px solid #e8edf3;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 190px;
}

.program-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.76) 0%,
    rgba(15, 23, 42, 0.48) 48%,
    rgba(15, 23, 42, 0.22) 100%
  );
  z-index: 1;
}

.program-side::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -16px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.program-side-ai {
  background-image: url("slide-1.png");
}

.program-side-bi {
  background-image: url("slide-4.png");
}

.program-side-excel {
  background-image: url("slide-about-data.png");
}

.program-badge,
.program-title,
.program-subtitle {
  position: relative;
  z-index: 2;
}

.program-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  backdrop-filter: blur(6px);
}

.program-title {
  font-size: 22px;
  line-height: 1.08;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 8px;
}

.program-subtitle {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 17ch;
}

.program-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 12px;
}

.program-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.program-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #334155;
  padding-left: 18px;
  position: relative;
}

.program-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}

.program-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.testimonials {
  background:
    radial-gradient(circle at top 18% right 12%, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at bottom 8% left 16%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(135deg, #262752 0%, #21466c 55%, #0f8b81 100%);
  padding: var(--section-py) 0;
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -88px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: -158px;
  left: -92px;
  width: 288px;
  height: 288px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
}

.testimonial-slider-wrap::before {
  content: "";
  position: absolute;
  inset: 10px 0 -10px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  opacity: 0.62;
  pointer-events: none;
}

.testimonial-head {
  max-width: 980px;
  margin: 0 auto 12px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testimonial-head .eyebrow {
  color: #d7fff8;
  margin-bottom: 8px;
}

.testimonial-head h2 {
  font-size: clamp(32px, 3.2vw, 58px);
  line-height: 1.08;
  color: #ffffff;
  font-weight: 700;
  margin: 0 auto 14px;
  letter-spacing: -0.02em;
}

.testimonial-head p {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  margin: 0 auto;
}

.testimonial-slider-wrap {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 40px) / 3);
  position: relative;
  overflow: visible;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-height: 388px;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 14px 18px 12px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(34, 67, 142, 0.12), rgba(18, 143, 138, 0.04));
  pointer-events: none;
  opacity: 0.58;
}

.testimonial-card::after {
  content: none;
}

.testimonial-shell {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-top: 28px;
}

.testimonial-nameplate {
  position: relative;
  margin-right: 100px;
  min-height: 70px;
  background: linear-gradient(180deg, #32529d 0%, #294886 100%);
  border-radius: 26px 0 22px 0;
  padding: 16px 22px 14px;
  box-shadow:
    0 10px 22px rgba(18, 37, 82, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border-left: 6px solid #244a8f;
}

.testimonial-nameplate::after {
  content: "";
  position: absolute;
  inset: auto 0 -10px 0;
  height: 10px;
  background: linear-gradient(180deg, rgba(23, 41, 88, 0.18), transparent);
  border-radius: 0 0 18px 18px;
  opacity: 0.4;
}

.testimonial-avatar {
  position: absolute;
  top: -12px;
  right: 10px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 34%, rgba(231, 243, 246, 0.98), rgba(188, 214, 224, 0.94));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #ffffff;
  box-shadow: 0 10px 22px rgba(18, 37, 82, 0.18);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-meta {
  display: grid;
  gap: 2px;
}

.testimonial-meta h3 {
  font-size: 18px;
  line-height: 1.16;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.testimonial-role {
  font-size: 11px;
  line-height: 1.35;
  color: rgba(232, 240, 255, 0.88);
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-body {
  position: relative;
  margin-top: -8px;
  background: #fffefe;
  border: 5px solid #2f5a9d;
  border-top-width: 0;
  border-radius: 0 0 30px 30px;
  padding: 24px 22px 26px;
  min-height: 246px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.testimonial-stars-top {
  margin-bottom: 10px;
  color: #ffd24f;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.testimonial-tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: #50647d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-quote {
  font-size: 13px;
  line-height: 1.4;
  color: #40526c;
  margin-bottom: 0;
  padding-top: 0;
  min-height: 150px;
}

.testimonial-mark {
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  color: #f6cd43;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 6px 16px rgba(15, 23, 42, 0.08);
}

.testimonial-bottom {
  display: none;
}

.schedule-section {
  background: linear-gradient(to bottom right, #0f172a, #1e293b, #0f172a);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.schedule-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.schedule-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.schedule-head h2 {
  font-size: 36px;
  line-height: 1.12;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.schedule-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 28rem;
  margin: 0 auto;
}

.mockup-container {
  max-width: 64rem;
  margin: 0 auto;
}

.mockup-wrapper {
  border-radius: 16px;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.6), 
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.08), 
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.mockup-bezel {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dots {
  display: flex;
  gap: 8px;
  width: 60px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.mockup-addressbar {
  flex: 1;
  max-width: 320px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.address-icon {
  width: 14px;
  height: 14px;
}

.mockup-spacer {
  width: 60px;
}

.mockup-screen {
  background: #f8fafc;
  padding: 24px 24px 32px;
  min-height: 520px;
}

.mockup-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.mockup-title-left h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.mockup-title-left span {
  font-size: 13px;
  color: #64748b;
}

.btn-mockup-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.btn-mockup-white i {
  width: 14px;
  height: 14px;
  color: #64748b;
}

.mockup-tab-switcher {
  display: inline-flex;
  background: #e2e8f0;
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 20px;
}

.mockup-tab {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  border-radius: 999px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.mockup-tab.active {
  background: #ffffff;
  color: #1e293b;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.mockup-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.chip {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.chip.active {
  background: #1e293b;
  color: #ffffff;
  border-color: #1e293b;
  box-shadow: 0 2px 8px rgba(30, 41, 59, 0.25);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.sc-card {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #f1f5f9;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.sc-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.sc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.sc-icon-block {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-blue { background: rgba(59, 130, 246, 0.15); }
.text-blue { color: #2563eb; width: 20px; height: 20px; }

.bg-emerald { background: rgba(16, 185, 129, 0.15); }
.text-emerald { color: #059669; width: 20px; height: 20px; }

.bg-purple { background: rgba(168, 85, 247, 0.15); }
.text-purple { color: #9333ea; width: 20px; height: 20px; }

.bg-orange { background: rgba(249, 115, 22, 0.15); }
.text-orange { color: #ea580c; width: 20px; height: 20px; }

.bg-slate { background: rgba(100, 116, 139, 0.15); }
.text-slate { color: #475569; width: 20px; height: 20px; }

.sc-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-upcoming {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.status-full {
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.sc-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
  line-height: 1.3;
}

.sc-instructor {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 16px;
}

.sc-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.sc-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #64748b;
}

.sc-meta i {
  width: 14px;
  height: 14px;
}

.sc-progress-wrap {
  margin-bottom: 20px;
  margin-top: auto;
}

.sc-progress-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 8px;
}

.sc-progress-bar {
  height: 4px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
}

.sc-fill {
  height: 100%;
  border-radius: 999px;
}

.sc-fill.bg-blue { background: #3b82f6; }
.sc-fill.bg-emerald { background: #10b981; }
.sc-fill.bg-purple { background: #a855f7; }
.sc-fill.bg-slate { background: #cbd5e1; }

.sc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.sc-btn-active {
  background: #1e293b;
  color: #ffffff;
}

.sc-btn-active:hover {
  background: #0f172a;
  color: #ffffff;
}

.sc-btn-secondary {
  background: #f1f5f9;
  color: #475569;
}

.sc-btn-secondary:hover {
  background: #e2e8f0;
  color: #1e293b;
}

.sc-btn i {
  width: 14px;
  height: 14px;
}

.mockup-hinge {
  width: 85%;
  height: 14px;
  background: linear-gradient(to bottom, #1e293b, #0f172a);
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.mockup-hinge-inner {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 2px;
}

.mockup-stand {
  width: 95%;
  height: 6px;
  background: linear-gradient(to bottom, #0f172a, #1a2332);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-section {
  background: #f8fbff;
  padding: 72px 0 78px;
}

.contact-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.contact-head .eyebrow {
  margin-bottom: 12px;
}

.contact-head h2 {
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 1.12;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-head p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.contact-cta {
  background: #ffffff;
  border: 1px solid #e6edf4;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.contact-panel {
  padding: 30px;
}

.contact-panel h3,
.contact-cta h3 {
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-panel p,
.contact-cta p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-list li {
  padding: 18px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e8edf4;
  font-size: 14px;
  line-height: 1.7;
  color: #42556d;
}

.contact-list strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.contact-cta {
  padding: 30px;
  background: linear-gradient(135deg, #262752 0%, #1f4f72 58%, #00917e 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.contact-cta h3,
.contact-cta p,
.contact-cta-actions {
  position: relative;
  z-index: 1;
}

.contact-cta h3,
.contact-cta p {
  color: #ffffff;
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-cta .btn-primary {
  background: #ffffff;
  color: var(--primary);
  box-shadow: none;
}

.contact-cta .btn-primary:hover {
  background: #f1f5f9;
}

.contact-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.26);
  color: #ffffff;
}

.contact-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
}

.anchor-spacer {
  height: 1px;
}

.footer {
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .social-proof-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-copy h2 {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .about-clean .container {
    width: min(1180px, calc(100% - 36px));
  }

  .about-clean-wrap,
  .stories-wrap,
  .story-mini-grid {
    grid-template-columns: 1fr;
  }

  .about-clean-wrap {
    gap: 24px;
  }

  .about-clean-copy {
    max-width: 100%;
  }

  .about-clean-copy p {
    max-width: 42ch;
  }

  .about-clean-visual {
    width: 100%;
    height: 320px;
  }

  .about-shot {
    width: 176px;
    height: 242px;
    border-radius: 0;
    box-shadow: none;
  }

  .about-shot-left {
    transform: translate(-108%, -50%) scale(0.78);
    opacity: 0.12;
    filter: blur(0.4px);
  }

  .about-shot-right {
    transform: translate(8%, -50%) scale(0.78);
    opacity: 0.12;
    filter: blur(0.4px);
  }

  .program-item {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .program-side {
    min-height: 180px;
    border-right: none;
    border-bottom: 1px solid #e8edf3;
  }

  .program-content {
    padding: 18px;
  }

  .program-title {
    font-size: 24px;
  }

  .program-subtitle {
    max-width: none;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  .schedule-item {
    grid-template-columns: 1fr;
  }

  .schedule-main-link {
    grid-template-columns: 1fr;
  }

  .schedule-date {
    border-right: none;
    border-bottom: 1px solid rgba(205, 218, 232, 0.52);
  }

  .schedule-cta {
    justify-content: flex-start;
    border-left: none;
    border-top: 1px solid rgba(205, 218, 232, 0.52);
    padding-top: 16px;
  }

  .schedule-spiral {
    width: calc(100% - 60px);
  }

  .schedule-topbar,
  .schedule-item {
    grid-template-columns: 1fr;
  }

  .schedule-topbar-left,
  .schedule-date {
    border-right: none;
    border-bottom: 1px solid rgba(205, 218, 232, 0.52);
  }

  .schedule-cta {
    justify-content: flex-start;
    padding-top: 0;
  }

  .schedule-pill {
    width: 60px;
    height: 60px;
    min-height: 0;
    min-width: 0;
    border-radius: 50%;
    padding: 5px;
  }
}

@media (max-width: 860px) {
  .nav-menu,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open .nav-panel {
    display: flex;
  }

  .nav-panel {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    flex-direction: column;
    gap: 12px;
  }

  .nav-panel a {
    padding: 12px 8px;
    font-weight: 600;
    color: #334155;
  }

  .nav-panel .btn {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    padding: 38px 0 74px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 5.8vw, 38px);
    max-width: 18ch;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-slider {
    min-height: 240px;
    border-radius: 22px;
  }

  .hero-slider-btn {
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .hero-note,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 0;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.12em;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .trust-label {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  /* ── Hero mobile (≤768px) — video-bg layout ── */
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding-top: 80px;
    padding-bottom: 36px;
  }

  .hero-copy {
    max-width: 100%;
  }

  /* Eyebrow */
  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 14px;
  }

  /* Headline — smaller on mobile */
  .hero-copy h1 {
    font-size: clamp(26px, 7.5vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.5px;
    max-width: 100%;
    margin-top: 0;
  }

  /* Subheadline */
  .hero-copy .hero-subtitle {
    max-width: 100%;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.78);
  }

  /* Social proof metrics horizontal side-by-side on mobile */
  .social-proof-metrics {
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 4px;
  }
  
  .sp-metric {
    min-width: 0;
    flex: 1 1 0;
    padding: 12px 4px;
    border-radius: 12px;
  }
  
  .sp-stars {
    font-size: 9px;
    margin-bottom: 4px;
    letter-spacing: 0;
  }
  
  .sp-value {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .sp-label {
    font-size: 7.5px;
    letter-spacing: 0;
    margin-bottom: 4px;
  }
  
  .sp-desc {
    font-size: 8px;
    line-height: 1.3;
  }

  .hero-copy .hero-subtitle {
    font-size: 14px;
    line-height: 1.72;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.8;
    max-width: none;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.72);
  }

  /* CTA — stack, left-aligned, auto width */
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
  }

  .hero-cta .btn {
    width: auto;
    min-width: 152px;
  }

  .hero-cta .btn-hero-outline-video {
    width: auto;
    min-width: 152px;
  }

  /* Metrics bar */
  .hero-metrics-bar {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .hero-metrics {
    border-radius: 0;
  }

  .metric {
    padding: 14px 8px 13px;
  }

  .metric-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 7px;
  }

  .metric-icon svg {
    width: 11px;
    height: 11px;
  }

  .metric-number {
    font-size: 18px;
  }

  .metric-suffix {
    font-size: 12px;
  }

  .metric > span {
    font-size: 7.5px;
    letter-spacing: 0.13em;
    white-space: nowrap;
  }

  .hero-note {
    margin-top: 14px;
    gap: 12px;
  }

  .note-item {
    min-height: auto;
    padding: 16px;
  }

  .about-clean {
    padding: 50px 0 54px;
  }

  .about-clean .container {
    width: min(1180px, calc(100% - 24px));
  }

  .about-clean-copy h2 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .about-clean-visual {
    height: 330px;
    margin-top: 4px;
  }

  .about-shot {
    width: 174px;
    height: 244px;
    border-radius: 0;
    box-shadow: none;
  }

  .about-shot-left {
    transform: translate(-100%, -49%) scale(0.66);
    opacity: 0.09;
    filter: blur(0.45px);
  }

  .about-shot-center {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: none;
  }

  .about-shot-right {
    transform: translate(2%, -49%) scale(0.66);
    opacity: 0.09;
    filter: blur(0.45px);
  }

  .story-main,
  .story-side,
  .social-proof-card,
  .contact-panel,
  .contact-cta {
    padding: 22px;
  }

  .story-main h3 {
    font-size: 26px;
  }

  .story-side h3 {
    font-size: 21px;
  }

  .portfolio {
    padding: 34px 0 40px;
  }

  .portfolio-head {
    margin: 0 auto 24px;
    max-width: 340px;
  }

  .hide-on-mobile {
    display: none;
  }

  .show-on-mobile {
    display: inline;
  }

  .portfolio-title {
    font-size: clamp(22px, 5.8vw, 28px);
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.25;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }

  .portfolio-label {
    margin-bottom: 12px;
    letter-spacing: 0.16em;
  }

  .logo-marquee {
    margin-top: 20px;
  }

  .logo-track {
    gap: 14px;
    animation-duration: 24s;
  }

  .logo-card {
    width: 176px;
    height: 100px;
    border-radius: 18px;
    padding: 14px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(251, 253, 255, 0.78));
    box-shadow:
      0 8px 16px rgba(15, 23, 42, 0.022),
      inset 0 1px 0 rgba(255, 255, 255, 0.38);
  }

  .logo-card img {
    max-height: 40px;
  }

  .schedule-section {
    padding: 64px 0;
  }

  .schedule-spiral {
    top: -18px;
    height: 30px;
    width: calc(100% - 40px);
    background:
      radial-gradient(circle at 10px 14px, rgba(0, 0, 0, 0.35) 0 3px, transparent 4px),
      radial-gradient(circle at 10px 14px, #d8dbe2 0 6px, transparent 7px);
    background-size: 24px 30px;
    background-repeat: repeat-x;
  }

  .schedule-card {
    border-radius: 24px;
  }

  .schedule-topbar-left,
  .schedule-topbar-right,
  .schedule-date,
  .schedule-info,
  .schedule-cta {
    padding: 18px;
  }

  .schedule-info h4 {
    font-size: 17px;
  }

  .schedule-date strong {
    font-size: 15px;
  }

  .contact-head h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .contact-cta-actions .btn {
    width: 100%;
  }

  .testimonial-card {
    flex: 0 0 100%;
    min-height: auto;
    padding: 0;
  }

  .testimonial-slider-wrap {
    margin-top: 18px;
  }

  .testimonial-nameplate {
    margin-right: 72px;
    min-height: 60px;
    padding: 14px 16px 12px;
    border-radius: 24px 0 20px 0;
  }

  .testimonial-avatar {
    top: -8px;
    right: 8px;
    width: 70px;
    height: 70px;
    border-width: 4px;
    font-size: 22px;
  }

  .testimonial-body {
    padding: 20px 16px 24px;
    border-width: 4px;
    border-radius: 0 0 24px 24px;
    min-height: 220px;
  }

  .testimonial-meta h3 {
    font-size: 16px;
  }

  .testimonial-role {
    font-size: 10px;
  }

  .testimonial-quote {
    font-size: 13px;
    line-height: 1.42;
    min-height: 0;
  }

  .testimonial-tag {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .testimonial-stars-top {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .testimonial-mark {
    bottom: -6px;
    font-size: 36px;
  }

  .nav-inner {
    height: 56px;
  }

  .brand-logo {
    height: 28px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .menu-toggle {
    font-size: 22px;
  }
}

@media (max-width: 560px) {
  .btn {
    width: 100%;
  }

  /* Hero CTA buttons: don't stretch full width */
  .hero-cta .btn,
  .hero-cta .btn-hero-outline {
    width: auto;
    min-width: 150px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 9vw, 34px);
    max-width: none;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .about-clean-visual {
    height: 296px;
  }

  .about-shot {
    width: 158px;
    height: 222px;
    border-radius: 16px;
  }

  .about-shot-left {
    transform: translate(-92%, -49%) scale(0.6);
    opacity: 0.12;
  }

  .about-shot-right {
    transform: translate(0%, -49%) scale(0.6);
    opacity: 0.12;
  }

  .schedule-bottom-actions .btn,
  .contact-cta-actions {
    width: 100%;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hero — small screens (≤560px): compact video hero */
  .hero {
    min-height: 85vh;
  }

  .hero-content {
    padding-top: 70px;
    padding-bottom: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(22px, 8.5vw, 30px);
    max-width: 100%;
  }

  .hero-cta {
    margin-top: 20px;
    gap: 8px;
  }

  .metric {
    padding: 12px 6px 11px;
  }

  .metric-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    margin-bottom: 5px;
  }

  .metric-number {
    font-size: 16px;
  }

  .metric-suffix {
    font-size: 11px;
  }

  .metric > span {
    font-size: 7px;
    letter-spacing: 0.1em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Image Accordion (Vanilla equivalent of Framer Motion)
   ============================================================ */
.solutions-accordion-section {
  width: 100%;
  background-color: #f8fafc;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.accordion-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accordion-eyebrow {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  color: #64748b;
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.accordion-title {
  margin-bottom: 40px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.accordion-wrapper {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  height: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  gap: 0;
}

.accordion-item {
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  min-width: 0;
  flex-grow: 1; /* Default collapsed */
  transition: flex-grow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:last-child {
  border-right: none;
}

/* Hover/Active States */
@media (min-width: 861px) {
  .accordion-wrapper:hover .accordion-item {
    flex-grow: 0.55; /* Other items shrink slightly */
  }
  .accordion-wrapper .accordion-item:hover,
  .accordion-wrapper .accordion-item.active {
    flex-grow: 3.2; /* Hovered item grows */
  }
}

/* On mobile, stack them vertically */
@media (max-width: 860px) {
  .accordion-wrapper {
    flex-direction: column;
    height: 600px;
  }
  .accordion-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .accordion-wrapper:hover .accordion-item {
    flex-grow: 1;
  }
  .accordion-wrapper .accordion-item:hover,
  .accordion-wrapper .accordion-item.active {
    flex-grow: 1.5;
  }
}

.accordion-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.accordion-item:hover .accordion-bg,
.accordion-item.active .accordion-bg {
  transform: scale(1.05);
}

.accordion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,12,35,0.92) 0%, rgba(4,12,35,0.45) 50%, rgba(4,12,35,0.18) 100%);
}

.accordion-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #0A1F44;
  opacity: 0;
  transition: opacity 0.3s;
}

.accordion-item:hover .accordion-accent,
.accordion-item.active .accordion-accent {
  opacity: 1;
}

.accordion-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.accordion-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.accordion-icon::after {
  content: '+';
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.accordion-item:hover .accordion-icon,
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.3);
}

.accordion-label {
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
}

.accordion-expanded {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(12px);
  visibility: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s 0.1s, transform 0.25s 0.1s, visibility 0s 0.4s, margin-top 0.4s;
}

.accordion-item:hover .accordion-expanded,
.accordion-item.active .accordion-expanded {
  margin-top: 12px;
  opacity: 1;
  max-height: 400px;
  transform: translateY(0);
  visibility: visible;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s 0.1s, transform 0.25s 0.1s, visibility 0s 0s, margin-top 0.4s;
}

.accordion-desc {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 380px;
  margin: 0;
}

.accordion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.accordion-chips .chip {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
}

.accordion-cta {
  align-self: flex-start;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 8px 20px;
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.accordion-cta:hover {
  background: #ffffff;
  color: #1e293b;
}

.accordion-number {
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.12em;
}

.accordion-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.accordion-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #cbd5e1;
  transition: all 0.35s ease;
}

.accordion-dots .dot.active {
  width: 24px;
  background: #1e293b;
}
