/* ===== DESIGN TOKENS ===== */
:root {
  /* Brand colors */
  --color-primary: #042454;
  --color-primary-2: #222E54;
  --color-accent: #5783FF;
  --color-accent-text: #3461D4; /* WCAG AA 4.5:1 on light bg */
  --color-accent-soft: rgba(87, 131, 255, 0.12);
  --color-accent-border: rgba(87, 131, 255, 0.3);

  /* Neutral */
  --color-bg: #FDFEFF;
  --color-bg-alt: #F3F3F3;
  --color-border: #E4E4E4;
  --color-footer: #0A0A0A;

  /* Feedback */
  --color-star: #F68431;
  --color-alert: #FF6A6A;

  /* Overlays on dark */
  --on-dark-strong: rgba(255, 255, 255, 0.92);
  --on-dark-med: rgba(255, 255, 255, 0.7);
  --on-dark-soft: rgba(255, 255, 255, 0.55);

  /* Fonts */
  --font-display: 'Host Grotesk', 'Plus Jakarta Sans', sans-serif;
  --font-ui: 'Archivo', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Motion */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration-fast: 0.2s;
  --duration-base: 0.3s;
  --duration-slow: 0.6s;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 10rem;

  /* Layout */
  --header-height: 72px;
  --container-max: 1200px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

@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;
  }
}

body {
  font-family: var(--font-display);
  color: var(--color-primary);
  background-color: var(--color-bg);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Skip to content link (A11y 2.4.1) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  z-index: 1100;
  transition: top var(--duration-base);
}

.skip-link:focus {
  top: 12px;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

body.menu-open {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

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

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 36, 84, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  backdrop-filter: blur(4px);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== HEADER / NAVBAR ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(253, 254, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background var(--duration-base), box-shadow var(--duration-base), border-color var(--duration-base);
  border-bottom: 1px solid rgba(4, 36, 84, 0.08);
}

.header.scrolled {
  background: rgba(253, 254, 255, 0.97);
  box-shadow: 0 2px 20px rgba(4, 36, 84, 0.06);
  border-bottom-color: rgba(4, 36, 84, 0.12);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header .logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
}

.header .logo img {
  height: 36px;
  width: auto;
}

.header .logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  transition:
    color var(--duration-base) var(--ease-smooth),
    background var(--duration-base) var(--ease-smooth),
    transform var(--duration-base) var(--ease-smooth);
  font-family: var(--font-ui);
  position: relative;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

/* Animated underline indicator (slides from center) */
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  height: 2px;
  width: calc(100% - 28px);
  background: var(--color-accent);
  border-radius: 2px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--duration-base) var(--ease-smooth), opacity var(--duration-base);
  opacity: 0;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--color-accent-text);
  background: rgba(87, 131, 255, 0.07);
  transform: translateY(-1px);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: translateX(-50%) scaleX(0.7);
  opacity: 1;
}

.nav-menu a.is-active {
  color: var(--color-accent-text);
}

.nav-menu a.is-active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.nav-menu a:active {
  transform: translateY(0);
}

.nav-menu a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-menu .nav-cta {
  margin-left: 14px;
}

/* Mobile-only menu parts (hidden on desktop) */
.nav-menu-header,
.nav-menu-label,
.nav-menu-footer,
.nav-menu a .nav-arrow {
  display: none;
}

.nav-menu-header {
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 18px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.nav-menu-logo {
  height: 32px;
  width: auto;
  display: block;
}

.nav-close {
  background: var(--color-bg-alt);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  transition: background var(--duration-base);
}

.nav-close:hover { background: var(--color-border); }
.nav-close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== ANIMATED BUTTON (Uiverse) ===== */
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, var(--color-primary-2) 0%, var(--color-accent) 100%);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  padding: 0.875rem 1.5rem 0.875rem 22px;
  min-height: 44px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background var(--duration-base), box-shadow var(--duration-base), transform var(--duration-base);
  font-family: var(--font-display);
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(87, 131, 255, 0.25);
  position: relative;
}

.button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  color: var(--color-primary-2);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-primary-2) 100%);
  box-shadow: 0 8px 22px rgba(87, 131, 255, 0.4);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(87, 131, 255, 0.25);
}

.button:hover .button__icon-wrapper {
  color: var(--color-primary);
}

/* Nav CTA - slightly smaller and more refined */
.nav-menu .nav-cta {
  font-size: 13px;
  padding: 0.7rem 1.3rem 0.7rem 18px;
  min-height: 40px;
  box-shadow: 0 2px 10px rgba(87, 131, 255, 0.22);
}

.nav-menu .nav-cta:hover {
  box-shadow: 0 6px 18px rgba(87, 131, 255, 0.38);
}

/* Secondary / ghost variant */
.button--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid rgba(4, 36, 84, 0.18);
  box-shadow: none;
}

.button--ghost:hover {
  background: rgba(87, 131, 255, 0.08);
  border-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: none;
}

.button--ghost .button__icon-wrapper {
  background: var(--color-primary);
  color: #fff;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--duration-base) var(--ease-smooth);
}

.hamburger:hover { background: rgba(87, 131, 255, 0.08); }
.hamburger:hover span { background: var(--color-accent-text); }
.hamburger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  transition: transform 0.35s var(--ease-smooth), opacity 0.2s var(--ease-smooth), background var(--duration-base), width 0.35s var(--ease-smooth);
  display: block;
  border-radius: 2px;
  transform-origin: center;
}

.hamburger span:nth-child(2) { width: 16px; align-self: flex-end; }

.hamburger:hover span:nth-child(2) { width: 22px; }

/* When menu is open, hide hamburger — close (X) inside the panel takes over */
.hamburger.active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.85);
  transition: opacity 0.2s var(--ease-smooth), transform 0.2s var(--ease-smooth), visibility 0s linear 0.2s;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 56px) 20px 80px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-bg);
  background-image:
    radial-gradient(circle at 1px 1px, rgba(4, 36, 84, 0.05) 1px, transparent 0);
  background-size: 32px 32px;
}

/* Blue blob effects - 3 blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-blob--1 {
  top: -80px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(87, 131, 255, 0.3) 0%, rgba(87, 131, 255, 0.05) 60%, transparent 80%);
  animation: blobFloat1 8s ease-in-out infinite alternate;
}

.hero-blob--2 {
  bottom: -60px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(87, 131, 255, 0.25) 0%, rgba(87, 131, 255, 0.05) 60%, transparent 80%);
  animation: blobFloat2 10s ease-in-out infinite alternate;
}

.hero-blob--3 {
  top: 30%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(87, 131, 255, 0.12) 0%, transparent 70%);
  animation: blobFloat3 12s ease-in-out infinite alternate;
}

@keyframes blobFloat1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.2); }
}

@keyframes blobFloat2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -40px) scale(1.15); }
}

@keyframes blobFloat3 {
  0% { transform: translate(-50%, 0) scale(1); }
  100% { transform: translate(-50%, -30px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  width: 100%;
}

/* New: Hero badge replaces generic subtitle */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 14px rgba(4, 36, 84, 0.06);
}

.hero-badge__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-accent);
  display: grid;
  place-items: center;
  position: relative;
}

.hero-badge__dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hero-content h1 {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  font-family: var(--font-display);
}

.hero-content h1 .hl {
  color: var(--color-accent);
  white-space: nowrap;
}

.hero-content > p {
  font-size: 16px;
  color: rgba(4, 36, 84, 0.82);
  max-width: 620px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-family: var(--font-body);
}

.hero-content p b {
  font-weight: 700;
  color: var(--color-primary);
}

/* Dual CTA row */
.hero-actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

/* Trust row */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--font-ui);
}

.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(4, 36, 84, 0.75);
}

.hero-trust__item strong {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
}

.hero-trust__divider {
  width: 1px;
  height: 20px;
  background: rgba(4, 36, 84, 0.12);
}

.hero-trust__stars {
  color: var(--color-star);
  letter-spacing: 1px;
  font-size: 14px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(4, 36, 84, 0.5);
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll-cue__line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(4, 36, 84, 0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 6px); }
}

/* ===== "A MIDUM" SECTION (Dark Blue) ===== */
.about-midum {
  padding: 100px 0;
  background-color: var(--color-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern on dark bg */
.about-midum::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.about-midum .container {
  display: flex;
  align-items: stretch;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.about-left {
  flex: 1.05;
  min-width: 0;
}

/* Eyebrow label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
  padding: 6px 12px;
  background: rgba(87, 131, 255, 0.12);
  border: 1px solid rgba(87, 131, 255, 0.25);
  border-radius: var(--radius-pill);
}

.eyebrow--light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--color-accent);
}

.about-left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 520px;
}

.hl-light {
  color: var(--color-accent);
  white-space: nowrap;
}

.about-left .intro-text {
  font-size: 15px;
  color: var(--on-dark-med);
  margin-bottom: 36px;
  line-height: 1.7;
  font-family: var(--font-body);
  max-width: 520px;
}

.about-left .intro-text b {
  color: #fff;
  font-weight: 700;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-bullet {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background var(--duration-base) var(--ease-smooth),
              border-color var(--duration-base) var(--ease-smooth),
              transform var(--duration-base) var(--ease-smooth),
              opacity var(--duration-base) var(--ease-smooth);
  opacity: 0.7;
}

.about-bullet:hover {
  background: rgba(87, 131, 255, 0.08);
  border-color: rgba(87, 131, 255, 0.3);
  transform: translateX(4px);
  opacity: 1;
}

.about-bullet:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  opacity: 1;
}

.about-bullet:hover .bullet-number {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Active state (tab currently selected) */
.about-bullet.is-active {
  background: rgba(87, 131, 255, 0.1);
  border-color: rgba(87, 131, 255, 0.35);
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.about-bullet.is-active .bullet-number {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* Progress bar (bottom of each card, visible only on active) */
.bullet-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity var(--duration-base);
}

.about-bullet.is-active .bullet-progress {
  opacity: 1;
}

.bullet-progress__fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-accent), #7FA5FF);
  border-radius: 0 2px 2px 0;
}

.about-bullet.is-active .bullet-progress__fill {
  animation: bulletProgress var(--bullet-duration, 6s) linear forwards;
}

.about-bullets.is-paused .about-bullet.is-active .bullet-progress__fill {
  animation-play-state: paused;
}

@keyframes bulletProgress {
  from { width: 0; }
  to   { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .about-bullet.is-active .bullet-progress__fill { animation: none; width: 100%; }
}

.bullet-number {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(87, 131, 255, 0.10);
  border: 1px solid rgba(87, 131, 255, 0.22);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: background var(--duration-base), color var(--duration-base), border-color var(--duration-base);
}

.bullet-content { min-width: 0; }

.about-bullet h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-display);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.about-bullet p {
  font-size: 13.5px;
  color: var(--on-dark-soft);
  line-height: 1.6;
  font-family: var(--font-body);
}

.about-right {
  flex: 0.95;
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 450px;
  z-index: 1;
  display: flex;
  align-items: stretch;
}

.about-image-stack {
  position: relative;
  flex: 1;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.7s var(--ease-smooth), transform 1.2s var(--ease-smooth);
  pointer-events: none;
}

.about-img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Floating stat card */
.about-stat {
  position: absolute;
  left: -20px;
  bottom: 30px;
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  z-index: 3;
}

.about-stat::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(87, 131, 255, 0.2);
}

.about-stat__value {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}

.about-stat__label {
  font-family: var(--font-ui);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.35;
  max-width: 160px;
}

.about-right .big-m {
  position: absolute;
  right: -30px;
  bottom: -20px;
  font-size: 280px;
  font-weight: 900;
  color: rgba(87, 131, 255, 0.08);
  z-index: 0;
  font-family: var(--font-display);
  line-height: 1;
  user-select: none;
}

/* ===== ABC METHOD SECTION ===== */
.method {
  padding: 100px 0 80px;
  background-color: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.method::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -200px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 131, 255, 0.08) 0%, rgba(87, 131, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.method .container {
  position: relative;
  z-index: 1;
}

.method-header {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 760px;
}

.method-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 6px 0 16px;
}

.method-header .hl {
  color: var(--color-accent);
  white-space: nowrap;
}

/* Utility: keep a phrase together + force a line break on >=600px screens */
.method-header .nowrap { white-space: nowrap; }

.br-md { display: none; }
@media (min-width: 600px) {
  .br-md { display: inline; }
}

.method-intro {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(4, 36, 84, 0.75);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

/* A -> B -> C display */
.abc-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 32px auto 72px;
  padding: 26px 32px;
  width: fit-content;
  background: linear-gradient(180deg, rgba(87, 131, 255, 0.06) 0%, rgba(87, 131, 255, 0) 100%);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-lg);
}

.abc-letter {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
}

.abc-letter::after {
  content: attr(data-step);
  position: absolute;
  inset: 0;
  color: var(--color-accent);
  opacity: 0.12;
  transform: translate(4px, 4px);
  z-index: -1;
}

.abc-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent);
}

.abc-arrow svg {
  width: clamp(24px, 3vw, 36px);
  height: auto;
  animation: abcArrowPulse 2.2s var(--ease-smooth) infinite;
}

.abc-display > :nth-child(2) svg { animation-delay: 0s; }
.abc-display > :nth-child(4) svg { animation-delay: 0.4s; }

@keyframes abcArrowPulse {
  0%, 100% { transform: translateX(0); opacity: 0.7; }
  50%      { transform: translateX(4px); opacity: 1; }
}

/* Timeline layout */
.method-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Vertical center line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-border);
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 3px;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg,
    rgba(87, 131, 255, 0.95) 0%,
    rgba(87, 131, 255, 0.75) 50%,
    rgba(87, 131, 255, 1) 100%);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(87, 131, 255, 0.35);
}

.method-step {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 72px;
}

.method-step:last-child {
  margin-bottom: 0;
}

.method-step-left {
  width: 45%;
  padding-right: 48px;
  text-align: right;
}

.method-step-center {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 6px var(--color-bg), 0 8px 24px rgba(87, 131, 255, 0.22);
  transition: transform 0.45s var(--ease-smooth),
              background 0.45s var(--ease-smooth),
              color 0.45s var(--ease-smooth),
              box-shadow 0.45s var(--ease-smooth);
  position: relative;
}

.method-step:hover .step-letter {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px var(--color-bg), 0 12px 30px rgba(87, 131, 255, 0.35);
}

/* Activated state — set by IntersectionObserver as user scrolls past */
.step-letter.is-active {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.06);
  box-shadow: 0 0 0 6px var(--color-bg), 0 12px 32px rgba(87, 131, 255, 0.5);
}

.step-letter.is-active::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(87, 131, 255, 0.45);
  animation: stepRipple 1.4s var(--ease-smooth) infinite;
  pointer-events: none;
}

@keyframes stepRipple {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

.method-step-right {
  width: 45%;
  padding-left: 48px;
}

.step-phase {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent-text);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-accent-soft);
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.step-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(4, 36, 84, 0.7);
  line-height: 1.55;
  font-style: italic;
}

.step-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(4, 36, 84, 0.78);
  line-height: 1.7;
}

.step-image {
  margin-top: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(4, 36, 84, 0.12);
  transition: transform 0.45s var(--ease-smooth), box-shadow 0.45s var(--ease-smooth);
}

.method-step:hover .step-image {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(4, 36, 84, 0.18);
}

.step-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* Method closing */
.method-closing {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 100px;
  padding: 44px;
  background: linear-gradient(135deg, rgba(87, 131, 255, 0.05) 0%, rgba(4, 36, 84, 0.03) 100%);
  border: 1px solid var(--color-accent-border);
  border-radius: var(--radius-lg);
}

.method-closing-image {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(4, 36, 84, 0.16);
}

.method-closing-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.method-closing-text {
  flex: 1;
}

.method-closing-text .eyebrow {
  margin-bottom: 14px;
}

.method-closing-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.method-closing-text .hl {
  color: var(--color-accent);
}

.method-closing-text p {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(4, 36, 84, 0.78);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== SERVICES / DELIVERABLES ===== */
.services {
  padding: 100px 0;
  background: radial-gradient(1200px 500px at 85% -10%, rgba(87, 131, 255, 0.18), transparent 60%),
              linear-gradient(180deg, #042454 0%, #031c44 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 80%, transparent 100%);
}

.services .container {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.services-left {
  flex: 0.85;
  padding-top: 12px;
  position: sticky;
  top: 120px;
}

.services-left .eyebrow--light {
  background: rgba(87, 131, 255, 0.14);
  border-color: rgba(87, 131, 255, 0.28);
  color: #9FB9FF;
  margin-bottom: 18px;
}

.services-left h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 18px;
  max-width: 440px;
}

.services-left .hl-light {
  color: var(--color-accent);
}

.services-lead {
  font-family: var(--font-body);
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 28px;
}

/* ---- Scope card ---- */
.services-scope {
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 18px 20px;
  max-width: 440px;
  background: linear-gradient(135deg, rgba(87, 131, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(87, 131, 255, 0.28);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.services-scope::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87, 131, 255, 0.22) 0%, rgba(87, 131, 255, 0) 70%);
  pointer-events: none;
}

.services-scope__num {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 10px 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 16px;
  margin-right: -2px;
}

.services-scope__num span {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.services-scope__num small {
  display: block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-top: 6px;
}

.services-scope__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.services-scope__body strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}

.services-scope__body p {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  margin: 0;
}

/* ---- Highlights list ---- */
.services-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
}

.services-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.services-highlights .hl-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(87, 131, 255, 0.18);
  border: 1px solid rgba(87, 131, 255, 0.4);
  color: var(--color-accent);
  margin-top: 1px;
}

.hl-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hl-text strong {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

.hl-text span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* ---- Mini CTA row ---- */
.services-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 440px;
  flex-wrap: wrap;
}

.services-cta-row .button--ghost {
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.services-cta-row .button--ghost:hover {
  border-color: var(--color-accent);
  background: rgba(87, 131, 255, 0.12);
  color: #fff;
}

.services-cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.services-cta-hint::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3BD671;
  box-shadow: 0 0 0 3px rgba(59, 214, 113, 0.2);
  animation: pulseDotGreen 2s ease-in-out infinite;
}

@keyframes pulseDotGreen {
  0%, 100% { box-shadow: 0 0 0 3px rgba(59, 214, 113, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(59, 214, 113, 0); }
}

/* ---- Small button variant ---- */
.button--small {
  padding: 8px 14px;
  font-size: 13px;
  gap: 10px;
}

.button--small .button__icon-wrapper {
  width: 22px;
  height: 22px;
}

.services-right {
  flex: 1.15;
  min-width: 0; /* allow overflow clipping inside carousel */
}

.services-carousel {
  position: relative;
  overflow: hidden;
  padding-bottom: 2px;
}

.services-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease-smooth);
  will-change: transform;
}

.service-card {
  flex: 0 0 calc(50% - 10px);
  max-width: 340px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease-smooth),
              border-color 0.3s ease,
              box-shadow 0.45s var(--ease-smooth),
              background 0.3s ease;
  flex-shrink: 0;
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(87, 131, 255, 0.5);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(87, 131, 255, 0.25) inset;
  background: linear-gradient(180deg, rgba(87, 131, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.service-card .card-image {
  position: relative;
  width: 100%;
  height: clamp(260px, 22vw, 340px);
  overflow: hidden;
}

.service-card .card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 36, 84, 0) 40%, rgba(4, 36, 84, 0.55) 100%);
  pointer-events: none;
}

.service-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.service-card:hover .card-image img {
  transform: scale(1.06);
}

.card-number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(4, 36, 84, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.card-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  padding: 5px 10px;
  background: rgba(87, 131, 255, 0.18);
  border: 1px solid rgba(87, 131, 255, 0.35);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
}

.service-card .card-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 8px;
}

.service-card p {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 16px;
  align-self: flex-start;
  border-radius: 50%;
  background: rgba(87, 131, 255, 0.15);
  border: 1px solid rgba(87, 131, 255, 0.3);
  color: var(--color-accent);
  transition: transform 0.35s var(--ease-smooth),
              background 0.3s ease,
              color 0.3s ease;
}

.service-card:hover .card-arrow {
  background: var(--color-accent);
  color: #fff;
  transform: translateX(4px);
}

/* ===== CAROUSEL CONTROLS ===== */
.carousel-controls {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.carousel-counter {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.85);
}

.carousel-current {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.carousel-sep {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  margin: 0 2px;
}

.carousel-total {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.carousel-progress {
  flex: 1;
  max-width: 260px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.carousel-progress-fill {
  position: absolute;
  inset: 0;
  width: 16.66%; /* 1/6 by default */
  background: linear-gradient(90deg, var(--color-accent) 0%, #9FB9FF 100%);
  border-radius: 3px;
  transition: width 0.55s var(--ease-smooth);
}

.carousel-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease,
              border-color 0.25s ease,
              transform 0.25s var(--ease-smooth),
              color 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.carousel-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

.carousel-btn:active {
  transform: translateY(0);
}

.carousel-btn:disabled,
.carousel-btn[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.carousel-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.carousel-btn svg {
  display: block;
}

/* ===== FOUNDER — QUEM FAZ A MIDUM ===== */
.founder {
  position: relative;
  padding: 110px 0 120px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 900px 500px at 12% 0%, rgba(87, 131, 255, 0.22) 0%, rgba(87, 131, 255, 0) 60%),
    radial-gradient(ellipse 700px 450px at 92% 100%, rgba(44, 82, 230, 0.24) 0%, rgba(44, 82, 230, 0) 65%),
    linear-gradient(180deg, #050712 0%, #070B1E 45%, #04060F 100%);
}

.founder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000 40%, transparent 85%);
  z-index: 0;
}

.founder .container {
  position: relative;
  z-index: 1;
}

.founder-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.founder-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: founderOrbFloat 14s ease-in-out infinite;
}

.founder-orb--1 {
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(87, 131, 255, 0.45) 0%, rgba(87, 131, 255, 0) 70%);
}

.founder-orb--2 {
  bottom: -140px;
  right: -60px;
  background: radial-gradient(circle, rgba(44, 82, 230, 0.4) 0%, rgba(44, 82, 230, 0) 70%);
  animation-delay: -7s;
}

@keyframes founderOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(24px, -18px) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .founder-orb { animation: none; }
}

/* Header */
.founder-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.founder-header .eyebrow {
  color: var(--color-accent);
  background: rgba(87, 131, 255, 0.12);
  border-color: rgba(87, 131, 255, 0.28);
}

.founder-header h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.founder-header h2 .hl {
  color: var(--color-accent);
}

.founder-lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.founder-lead strong {
  color: #fff;
  font-weight: 600;
}

/* Photo marquee — full-width infinite scroll */
.founder-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 0 0 64px;
  padding: 6px 0;
  touch-action: pan-y;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.founder-marquee-track {
  display: flex;
  align-items: stretch;
  width: max-content;
  animation: founderMarquee 45s linear infinite;
  will-change: transform;
}

.founder-marquee:hover .founder-marquee-track,
.founder-marquee:focus-within .founder-marquee-track {
  animation-play-state: paused;
}

.founder-marquee.is-dragging {
  cursor: grabbing;
}

.founder-marquee.is-dragging .founder-strip-item {
  pointer-events: none;
  user-select: none;
}

.founder-marquee .founder-strip-item img {
  -webkit-user-drag: none;
  user-select: none;
}

@keyframes founderMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .founder-marquee-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .founder-marquee-track .founder-strip-item {
    scroll-snap-align: start;
  }
  .founder-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

.founder-strip-item {
  position: relative;
  margin: 0 14px 0 0;
  flex-shrink: 0;
  width: clamp(240px, 22vw, 300px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--duration-base) var(--ease-smooth),
              border-color var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth);
}

.founder-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
  transition: transform 600ms var(--ease-smooth), filter 400ms ease;
}

.founder-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 18, 0) 50%, rgba(5, 8, 18, 0.82) 100%);
  pointer-events: none;
}

.founder-strip-item:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 131, 255, 0.4);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.founder-strip-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

/* Object-position tuning — repeats every 4 items to match duplicate set */
.founder-strip-item:nth-child(4n+1) img { object-position: center 30%; } /* iFood — face top */
.founder-strip-item:nth-child(4n+2) img { object-position: center 42%; } /* Elite trophy — center */
.founder-strip-item:nth-child(4n+3) img { object-position: center 32%; } /* group — faces */
.founder-strip-item:nth-child(4n+4) img { object-position: center top; } /* solo banner — head */

/* Featured tile — Elite trophy, subtle blue ring */
.founder-strip-item--featured {
  border-color: rgba(87, 131, 255, 0.25);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(87, 131, 255, 0.1);
}

.founder-strip-item--featured:hover {
  border-color: rgba(87, 131, 255, 0.55);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(87, 131, 255, 0.3);
}

.founder-strip-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.founder-strip-tag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 4px 10px;
  background: rgba(87, 131, 255, 0.28);
  border: 1px solid rgba(87, 131, 255, 0.5);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.founder-strip-label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11.5px;
}

/* Identity — name + role centered */
.founder-identity {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 560px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.founder-role {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}

/* Credentials — horizontal row of 3 cards */
.founder-credentials {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.founder-cred {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-base) var(--ease-smooth),
              background var(--duration-base) var(--ease-smooth),
              transform var(--duration-base) var(--ease-smooth);
}

.founder-cred:hover {
  border-color: rgba(87, 131, 255, 0.4);
  background: rgba(87, 131, 255, 0.06);
  transform: translateY(-3px);
}

.founder-cred-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(87, 131, 255, 0.14);
  border: 1px solid rgba(87, 131, 255, 0.32);
  color: var(--color-accent);
  transition: transform var(--duration-base) var(--ease-smooth),
              background var(--duration-base) var(--ease-smooth);
}

.founder-cred:hover .founder-cred-icon {
  transform: rotate(-6deg) scale(1.06);
  background: rgba(87, 131, 255, 0.22);
}

.founder-cred-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.founder-cred-text strong {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.founder-cred-text span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13.5px;
  line-height: 1.45;
}

/* Quote — centered, larger, editorial */
.founder-quote {
  position: relative;
  max-width: 780px;
  margin: 0 auto 64px;
  padding: 32px 36px;
  text-align: center;
  background: linear-gradient(135deg, rgba(87, 131, 255, 0.08) 0%, rgba(87, 131, 255, 0.02) 100%);
  border: 1px solid rgba(87, 131, 255, 0.15);
  border-radius: var(--radius-lg);
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -8px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.35;
  pointer-events: none;
}

.founder-quote p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: #fff;
  font-style: italic;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}

.founder-quote cite {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Videos row — compact, centered */
.founder-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
  justify-content: center;
}

.founder-video {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  width: 100%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: transform var(--duration-base) var(--ease-smooth),
              border-color var(--duration-base) var(--ease-smooth);
}

.founder-video:hover {
  transform: translateY(-4px);
  border-color: rgba(87, 131, 255, 0.4);
}

.founder-video .tv-player {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Accessibility — focus states */
.founder-strip-item:focus-within,
.founder-video:focus-within,
.founder-cred:focus-within {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 960px) {
  .founder-credentials {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 12px;
  }
  .founder-marquee {
    margin-bottom: 48px;
  }
}

@media (max-width: 900px) {
  .founder {
    padding: 80px 0 90px;
  }
  .founder-videos {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .founder-marquee-track {
    animation-duration: 35s;
  }
}

@media (max-width: 560px) {
  .founder-header {
    margin-bottom: 36px;
  }
  .founder-strip-item {
    width: clamp(200px, 65vw, 240px);
    margin-right: 10px;
  }
  .founder-strip-caption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
  }
  .founder-cred {
    padding: 16px;
  }
  .founder-quote {
    padding: 24px 22px;
    margin-bottom: 48px;
  }
  .founder-quote::before {
    font-size: 60px;
    top: -4px;
    left: 16px;
  }
  .founder-quote p {
    font-size: 16px;
  }
}

/* ===== RESULTS + TESTIMONIAL VIDEOS ===== */
.results {
  padding: 100px 0 90px;
  background: radial-gradient(120% 80% at 50% 0%, #F6F9FF 0%, #FDFEFF 60%);
  position: relative;
  overflow: hidden;
}

.results::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(4, 36, 84, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
  mask-image: radial-gradient(70% 55% at 50% 30%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(70% 55% at 50% 30%, #000 40%, transparent 85%);
}

.results .container { position: relative; z-index: 1; }

.results-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.results-header .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent-text);
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent-border);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.results-lead {
  font-family: var(--font-body);
  color: var(--color-primary);
  opacity: 0.7;
  font-size: 16px;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto;
}

.results-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.metric {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(4, 36, 84, 0.04);
  transition: transform var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth),
              border-color var(--duration-base) var(--ease-smooth);
}

.metric:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent-border);
  box-shadow: 0 14px 36px rgba(4, 36, 84, 0.08);
}

.metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-value-sub {
  font-size: 0.55em;
  font-weight: 600;
  opacity: 0.7;
  -webkit-text-fill-color: initial;
  color: var(--color-primary);
}

.metric-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-primary);
  opacity: 0.72;
}

.testimonial-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-video {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tv-player {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  overflow: hidden;
  background: #0B1A3A;
  box-shadow: 0 18px 40px rgba(4, 36, 84, 0.18),
              0 2px 6px rgba(4, 36, 84, 0.08);
  isolation: isolate;
}

.tv-player::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 3;
}

.tv-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0B1A3A;
}

.tv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(4, 36, 84, 0.55) 0%, rgba(4, 36, 84, 0) 30%, rgba(4, 36, 84, 0) 55%, rgba(4, 36, 84, 0.85) 100%);
  transition: opacity var(--duration-base) var(--ease-smooth);
}

.tv-player.is-playing .tv-overlay {
  opacity: 0;
}

.tv-player.is-playing:hover .tv-overlay {
  opacity: 1;
}

.tv-overlay-top,
.tv-overlay-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tv-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.tv-stars {
  color: var(--color-star);
  font-size: 13px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.tv-author {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.tv-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #fff;
}

.tv-role {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 2px;
}

.tv-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: transform var(--duration-base) var(--ease-smooth),
              background var(--duration-base) var(--ease-smooth),
              opacity var(--duration-base) var(--ease-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.tv-play svg { transform: translateX(2px); }

.tv-play:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translate(-50%, -50%) scale(1.06);
}

.tv-play:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.tv-player.is-playing .tv-play {
  opacity: 0;
  pointer-events: none;
}

.tv-sound {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(4, 36, 84, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity var(--duration-base) var(--ease-smooth),
              transform var(--duration-base) var(--ease-smooth),
              background var(--duration-base) var(--ease-smooth);
}

.tv-player.is-playing .tv-sound {
  opacity: 1;
  transform: translateY(0);
}

.tv-sound:hover {
  background: var(--color-accent);
}

.tv-sound:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.tv-sound .tv-sound-off { display: none; }
.tv-sound[data-muted="true"] .tv-sound-on  { display: none; }
.tv-sound[data-muted="true"] .tv-sound-off { display: block; }

/* ===== TV PLAYER — CUSTOM CONTROLS BAR ===== */
.tv-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(4, 10, 24, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity var(--duration-base) var(--ease-smooth),
              transform var(--duration-base) var(--ease-smooth);
  font-family: var(--font-ui);
  color: #fff;
}

.tv-player.is-playing .tv-controls,
.tv-player:hover .tv-controls,
.tv-player:focus-within .tv-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tv-ctrl {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background var(--duration-base) var(--ease-smooth),
              transform var(--duration-base) var(--ease-smooth);
}

.tv-ctrl:hover { background: rgba(255, 255, 255, 0.12); }
.tv-ctrl:active { transform: scale(0.94); }
.tv-ctrl:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Play/pause icon swap */
.tv-ctrl-toggle .tv-ico-pause { display: none; }
.tv-ctrl-toggle[data-paused="false"] .tv-ico-play  { display: none; }
.tv-ctrl-toggle[data-paused="false"] .tv-ico-pause { display: block; }

/* Fullscreen icon swap */
.tv-ctrl-full .tv-ico-exit { display: none; }
.tv-ctrl-full[data-fullscreen="true"] .tv-ico-full { display: none; }
.tv-ctrl-full[data-fullscreen="true"] .tv-ico-exit { display: block; }

/* Progress track */
.tv-progress {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 28px;
  display: flex;
  align-items: center;
}

.tv-progress-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  overflow: hidden;
  transition: height var(--duration-base) var(--ease-smooth);
}

.tv-progress:hover .tv-progress-bar,
.tv-progress-range:focus-visible ~ .tv-progress-bar {
  height: 6px;
}

.tv-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, var(--color-accent) 0%, #6E97FF 100%);
  border-radius: inherit;
  box-shadow: 0 0 8px rgba(87, 131, 255, 0.6);
}

.tv-progress-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
}

.tv-progress-range:focus { outline: none; }

/* Native range thumbs — invisible but needed for interaction */
.tv-progress-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: transparent;
  cursor: pointer;
}
.tv-progress-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* Time display */
.tv-time {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tv-time-sep {
  opacity: 0.4;
}

/* Always visible on touch devices (no hover) */
@media (hover: none) {
  .tv-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ===== CLIENTS / LOGOS ===== */
.clients {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, #FDFEFF 0%, #F6F9FF 100%);
  border-top: 1px solid var(--color-border);
}

.clients-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.clients-header .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-accent-text);
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent-border);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-header h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-primary);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.clients-lead {
  font-family: var(--font-body);
  color: var(--color-primary);
  opacity: 0.7;
  font-size: 15px;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.client-logo {
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth),
              border-color var(--duration-base) var(--ease-smooth);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: transform var(--duration-base) var(--ease-smooth);
}

.client-logo:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent-border);
  box-shadow: 0 10px 26px rgba(4, 36, 84, 0.08);
}

.client-logo:hover img {
  transform: scale(1.05);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(165deg, #03060F 0%, #050B1E 45%, #080F28 100%);
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(700px 360px at 15% 10%, rgba(87, 131, 255, 0.22), transparent 65%),
    radial-gradient(500px 280px at 92% 92%, rgba(44, 82, 230, 0.14), transparent 70%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, auto, 28px 28px;
  pointer-events: none;
  opacity: 0.85;
}

.cta-section .container { position: relative; z-index: 1; }

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  border: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  box-shadow: none;
  text-align: center;
}

.cta-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 720px;
}

.cta-lead .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #fff;
  background: rgba(87, 131, 255, 0.18);
  border: 1px solid rgba(87, 131, 255, 0.4);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-card h2 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
  margin-bottom: 14px;
  color: #FFFFFF;
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
}

.cta-card h2 .hl-soft {
  background: linear-gradient(120deg, #5783FF 0%, #B7CDFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 24px;
  line-height: 1.65;
  font-family: var(--font-body);
  text-align: center;
  max-width: 620px;
}

.cta-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
}

.cta-perks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  font-size: 14px;
}

.cta-perks svg {
  color: var(--color-accent);
  flex-shrink: 0;
  background: rgba(87, 131, 255, 0.18);
  border-radius: 50%;
  padding: 3px;
  width: 22px;
  height: 22px;
}

.cta-card .ms-form {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

/* ===== MULTI-STEP FORM ===== */
.ms-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ms-progress {
  margin-bottom: 24px;
}

.ms-progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--font-ui);
}

.ms-progress-count {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ms-progress-sep { opacity: 0.4; margin: 0 2px; }

.ms-progress-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ms-progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.ms-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent) 0%, #B7CDFF 100%);
  border-radius: var(--radius-pill);
  transition: width 0.45s var(--ease-smooth);
  box-shadow: 0 0 12px rgba(87, 131, 255, 0.5);
}

.ms-steps {
  position: relative;
  min-height: 130px;
  display: flex;
  align-items: flex-start;
}

.ms-step {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
}

.ms-step.is-active,
.ms-success:not([hidden]) {
  animation: msStepIn 0.45s var(--ease-smooth) both;
}

@keyframes msStepIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ms-question {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 14px;
  padding: 0;
}

.ms-step-num {
  display: inline-block;
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-right: 6px;
}

.ms-help {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  margin: -8px 0 18px;
}

.ms-field {
  position: relative;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  transition: border-color var(--duration-base) var(--ease-smooth),
              background var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ms-field:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.ms-field:focus-within {
  border-color: var(--color-accent);
  background: rgba(87, 131, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(87, 131, 255, 0.18),
              inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ms-field.has-error {
  border-color: var(--color-alert);
  background: rgba(255, 106, 106, 0.08);
}

.ms-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.ms-input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 18px 20px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.ms-input::placeholder {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

.ms-input:-webkit-autofill,
.ms-input:-webkit-autofill:hover,
.ms-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 100px rgba(255, 255, 255, 0.06) inset;
  transition: background-color 9999s;
  caret-color: #fff;
}

.ms-error {
  color: var(--color-alert);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  margin-top: 8px;
  min-height: 16px;
}

.ms-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ms-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color var(--duration-base) var(--ease-smooth),
              background var(--duration-base) var(--ease-smooth),
              transform var(--duration-base) var(--ease-smooth);
}

.ms-option:hover {
  border-color: rgba(87, 131, 255, 0.55);
  background: rgba(87, 131, 255, 0.08);
  transform: translateY(-1px);
}

.ms-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ms-option-letter {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all var(--duration-base) var(--ease-smooth);
}

.ms-option-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

.ms-option-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all var(--duration-base) var(--ease-smooth);
  flex-shrink: 0;
}

.ms-option:has(input:checked) {
  border-color: var(--color-accent);
  background: rgba(87, 131, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(87, 131, 255, 0.2);
}

.ms-option:has(input:checked) .ms-option-letter {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.ms-option:has(input:checked) .ms-option-check {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.ms-option input:focus-visible ~ .ms-option-letter {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Success */
.ms-success {
  text-align: center;
  padding: 20px 10px;
}

.ms-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, #B7CDFF 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(87, 131, 255, 0.4);
  animation: msPopIn 0.5s var(--ease-smooth) both;
}

@keyframes msPopIn {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}

.ms-success h3 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ms-success p {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* Controls */
.ms-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ms-controls-right {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--duration-base) var(--ease-smooth);
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.005em;
}

/* Make sure [hidden] wins over .ms-btn's display */
.ms-btn[hidden],
.ms-step[hidden],
[hidden] { display: none !important; }

.ms-btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #6E97FF 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(87, 131, 255, 0.38),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ms-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(87, 131, 255, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.ms-btn--primary svg {
  transition: transform var(--duration-base) var(--ease-smooth);
}

.ms-btn--primary:hover svg {
  transform: translateX(3px);
}

.ms-btn--primary:focus-visible {
  outline: 3px solid rgba(87, 131, 255, 0.5);
  outline-offset: 3px;
}

.ms-btn--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ms-btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.18);
}

.ms-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.ms-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.4;
  margin: 14px 0 0;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  letter-spacing: 0.005em;
}

.ms-privacy::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11V11.99z' fill='white'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11V11.99z' fill='white'/></svg>") center / contain no-repeat;
  opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 88px 0 28px;
  color: rgba(255, 255, 255, 0.65);
  /* Layered gradient: deep black floor + blue aurora top-left + violet-blue top-right */
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(87, 131, 255, 0.35) 0%, rgba(87, 131, 255, 0) 60%),
    radial-gradient(ellipse 700px 450px at 90% 0%, rgba(44, 82, 230, 0.28) 0%, rgba(44, 82, 230, 0) 65%),
    radial-gradient(ellipse 600px 400px at 50% 110%, rgba(87, 131, 255, 0.12) 0%, rgba(87, 131, 255, 0) 70%),
    linear-gradient(180deg, #050610 0%, #070A1A 35%, #04050C 100%);
  overflow: hidden;
  isolation: isolate;
}

/* Luminous top edge (hairline highlight) */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(87, 131, 255, 0.0) 10%,
    rgba(87, 131, 255, 0.55) 50%,
    rgba(87, 131, 255, 0.0) 90%,
    transparent 100%);
  z-index: 1;
}

/* Subtle dot-grid texture overlay */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 70%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* Floating orbs */
.footer .container {
  display: block;
  position: relative;
  z-index: 2;
}

.footer .container::before,
.footer .container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(50px);
  z-index: -1;
}

.footer .container::before {
  width: 220px;
  height: 220px;
  left: -80px;
  top: 40px;
  background: radial-gradient(circle, rgba(87, 131, 255, 0.35) 0%, transparent 70%);
  animation: footerOrbFloat 14s var(--ease-smooth) infinite;
}

.footer .container::after {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(120, 80, 255, 0.22) 0%, transparent 70%);
  animation: footerOrbFloat 18s var(--ease-smooth) infinite reverse;
}

@keyframes footerOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .footer .container::before,
  .footer .container::after {
    animation: none;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  /* Invert the dark logo to pure white over the dark footer background */
  filter: brightness(0) invert(1);
}

.footer-logo:focus-visible {
  outline: 2px solid #5783FF;
  outline-offset: 4px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  max-width: 340px;
  transition: color 0.5s var(--ease-smooth);
}

.footer-brand:hover .footer-tagline {
  color: rgba(255, 255, 255, 0.75);
}

.footer-wa {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #1EBE58 0%, #128C3E 100%);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--duration-base) var(--ease-smooth),
              box-shadow var(--duration-base) var(--ease-smooth),
              filter var(--duration-base) var(--ease-smooth);
  box-shadow: 0 6px 18px rgba(18, 140, 62, 0.25);
  overflow: hidden;
  isolation: isolate;
}

/* Shine sweep on hover */
.footer-wa::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease-smooth);
  z-index: 0;
  pointer-events: none;
}

.footer-wa:hover::before {
  left: 140%;
}

.footer-wa > * {
  position: relative;
  z-index: 1;
}

.footer-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(18, 140, 62, 0.38);
  filter: brightness(1.05);
}

.footer-wa:focus-visible {
  outline: 3px solid #0A4D24;
  outline-offset: 3px;
}

.footer-wa svg {
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-smooth);
}

.footer-wa:hover svg {
  transform: rotate(-12deg) scale(1.1);
}

.footer-heading {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #5783FF 0%, rgba(87, 131, 255, 0) 100%);
  border-radius: 2px;
  transition: width 0.4s var(--ease-smooth);
}

.footer-nav:hover .footer-heading::after,
.footer-contact:hover .footer-heading::after {
  width: 44px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.35s var(--ease-smooth),
              transform 0.35s var(--ease-smooth),
              padding-left 0.35s var(--ease-smooth);
  border-radius: 4px;
  padding-left: 0;
}

/* Animated peek arrow ▸ on the left (hidden until hover) */
.footer-list a::before {
  content: '→';
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  color: #5783FF;
  opacity: 0;
  transition: opacity 0.35s var(--ease-smooth),
              transform 0.35s var(--ease-smooth);
  pointer-events: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
  padding-left: 14px;
}

.footer-list a:hover::before,
.footer-list a:focus-visible::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.footer-list a:focus-visible {
  outline: 2px solid #5783FF;
  outline-offset: 3px;
}

.footer-list svg {
  opacity: 0.55;
  flex-shrink: 0;
  transition: opacity 0.35s var(--ease-smooth),
              transform 0.35s var(--ease-smooth),
              color 0.35s var(--ease-smooth);
}

.footer-list a:hover svg,
.footer-list a:focus-visible svg {
  opacity: 1;
  color: #5783FF;
  transform: scale(1.1) rotate(-4deg);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.footer-credit-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-decoration: none;
  padding: 5px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  isolation: isolate;
  transition: background 0.4s var(--ease-smooth),
              border-color 0.4s var(--ease-smooth),
              color 0.4s var(--ease-smooth),
              transform 0.4s var(--ease-smooth),
              box-shadow 0.4s var(--ease-smooth);
}

/* Blue glow fills from the left on hover */
.footer-credit-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(87, 131, 255, 0.35) 0%,
    rgba(87, 131, 255, 0.15) 60%,
    transparent 100%);
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease-smooth);
  z-index: -1;
}

.footer-credit-link > * {
  position: relative;
  z-index: 1;
}

.footer-credit-link:hover,
.footer-credit-link:focus-visible {
  background: rgba(87, 131, 255, 0.08);
  border-color: rgba(87, 131, 255, 0.5);
  color: #C9D7FF;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(87, 131, 255, 0.25);
}

.footer-credit-link:hover::before,
.footer-credit-link:focus-visible::before {
  transform: translateX(0);
}

.footer-credit-link:focus-visible {
  outline: 2px solid #5783FF;
  outline-offset: 2px;
}

.footer-credit-link svg {
  opacity: 0.7;
  transition: transform 0.4s var(--ease-smooth),
              opacity 0.4s var(--ease-smooth);
}

.footer-credit-link:hover svg,
.footer-credit-link:focus-visible svg {
  opacity: 1;
  transform: translate(2px, -2px) rotate(8deg);
}

.footer-credit-sep {
  color: rgba(255, 255, 255, 0.25);
}

.footer-credit-url {
  position: relative;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.35s var(--ease-smooth);
  border-radius: 4px;
  padding-bottom: 2px;
  background-image: linear-gradient(90deg, #5783FF, #A9C2FF);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.footer-credit-url:hover,
.footer-credit-url:focus-visible {
  color: #C9D7FF;
  background-size: 100% 1px;
  transition: color 0.35s var(--ease-smooth), background-size 0.4s var(--ease-smooth);
}

.footer-credit-url:focus-visible {
  outline: 2px solid #5783FF;
  outline-offset: 3px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-midum {
    padding: 80px 0;
  }

  .about-midum .container {
    flex-direction: column;
    gap: 48px;
  }

  .about-left h2,
  .about-left .intro-text {
    max-width: none;
  }

  .about-right {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about-image-wrap img {
    height: auto;
    min-height: 0;
    object-fit: cover;
  }

  .about-stat {
    left: auto;
    right: -10px;
    bottom: 20px;
  }

  .services .container {
    flex-direction: column;
    gap: 36px;
  }

  .services-left {
    position: static;
  }

  .services-right {
    width: 100%;
  }

  .method-closing {
    flex-direction: column;
  }

  .service-card {
    flex: 0 0 calc(50% - 10px);
    max-width: 320px;
  }

  .carousel-progress {
    max-width: none;
  }

  .results-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-videos {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-video:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
  }

  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }

}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Smaller logo on mobile header */
  .header .logo img {
    height: 28px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 340px;
    max-width: 88vw;
    height: 100vh;
    background: linear-gradient(180deg, #FDFEFF 0%, #F6F9FF 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 20px 22px 28px;
    transition: right 0.45s var(--ease-smooth);
    gap: 2px;
    box-shadow: -8px 0 40px rgba(4, 36, 84, 0.14);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu-header {
    display: flex;
  }

  .nav-menu-label {
    display: block;
  }

  .nav-menu-footer {
    display: block;
  }

  .nav-menu a .nav-arrow {
    display: inline-block;
  }

  /* Staggered reveal animation on open */
  .nav-menu > :not(.nav-menu-header) {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  }

  .nav-menu.active > :not(.nav-menu-header) {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.active > :nth-child(2)  { transition-delay: 0.08s; }
  .nav-menu.active > :nth-child(3)  { transition-delay: 0.14s; }
  .nav-menu.active > :nth-child(4)  { transition-delay: 0.20s; }
  .nav-menu.active > :nth-child(5)  { transition-delay: 0.26s; }
  .nav-menu.active > :nth-child(6)  { transition-delay: 0.32s; }
  .nav-menu.active > :nth-child(7)  { transition-delay: 0.38s; }
  .nav-menu.active > :nth-child(8)  { transition-delay: 0.44s; }
  .nav-menu.active > :nth-child(9)  { transition-delay: 0.50s; }

  /* Section label */
  .nav-menu-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(4, 36, 84, 0.4);
    padding: 12px 4px 8px;
  }

  /* Links */
  .nav-menu a {
    font-size: 17px;
    font-weight: 600;
    font-family: var(--font-display);
    padding: 16px 16px;
    min-height: 52px;
    border-radius: var(--radius-md);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border: 1px solid transparent;
    transition: background var(--duration-base) var(--ease-smooth), color var(--duration-base), border-color var(--duration-base), transform var(--duration-base);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a .nav-arrow {
    font-size: 16px;
    color: rgba(4, 36, 84, 0.35);
    transition: transform var(--duration-base) var(--ease-smooth), color var(--duration-base);
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(87, 131, 255, 0.09);
    color: var(--color-accent-text);
    transform: translateX(2px);
    border-color: rgba(87, 131, 255, 0.18);
  }

  .nav-menu a:hover .nav-arrow,
  .nav-menu a:focus-visible .nav-arrow {
    color: var(--color-accent-text);
    transform: translateX(4px);
  }

  .nav-menu a.is-active {
    background: rgba(87, 131, 255, 0.12);
    color: var(--color-accent-text);
    border-color: rgba(87, 131, 255, 0.25);
  }

  .nav-menu a.is-active .nav-arrow {
    color: var(--color-accent-text);
  }

  /* CTA in mobile menu */
  .nav-menu .nav-cta {
    margin: 20px 0 0;
    align-self: stretch;
    justify-content: center;
    font-size: 14px;
    min-height: 52px;
    padding: 0.95rem 1.4rem 0.95rem 20px;
  }

  /* Footer tagline */
  .nav-menu-footer {
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(4, 36, 84, 0.08);
  }

  .nav-menu-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.5;
    color: rgba(4, 36, 84, 0.5);
    margin: 14px 4px 0;
  }

  /* Improve close button */
  .nav-close {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding: calc(var(--header-height) + 32px) 20px 80px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .hero-content > p {
    font-size: 15px;
    margin-bottom: 26px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 28px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    gap: 14px;
  }

  .hero-trust__divider { display: none; }

  .hero-scroll-cue { display: none; }

  .hero-blob--1 {
    width: 300px;
    height: 300px;
  }

  .hero-blob--2 {
    width: 250px;
    height: 250px;
  }

  .hero-blob--3 {
    display: none;
  }

  .method {
    padding: 64px 0 48px;
  }

  .abc-display {
    gap: 10px;
    padding: 18px 20px;
    margin: 24px auto 48px;
  }

  .abc-letter {
    font-size: 48px;
  }

  /* ---- Mobile timeline: vertical lateral layout ---- */
  .method-timeline {
    padding-left: 0;
  }

  .timeline-line {
    display: block;
    left: 28px;
    transform: none;
    width: 2px;
    top: 14px;
    bottom: 14px;
  }

  .method-step {
    display: grid !important;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    margin-bottom: 44px;
    text-align: left;
    align-items: start;
  }

  .method-step-center {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: auto;
    margin: 0;
    padding-top: 2px;
    align-self: start;
    justify-self: center;
  }

  .method-step-left,
  .method-step-right {
    width: 100%;
    padding: 0;
    text-align: left;
    grid-column: 2;
  }

  .method-step-left  { grid-row: 1; }
  .method-step-right { grid-row: 2; }

  /* Step B has content sides swapped in HTML — fix reading order on mobile */
  .method-step[data-step="B"] .method-step-left  { grid-row: 2; }
  .method-step[data-step="B"] .method-step-right { grid-row: 1; }

  .step-letter {
    width: 48px;
    height: 48px;
    font-size: 18px;
    box-shadow: 0 0 0 4px var(--color-bg), 0 6px 18px rgba(87, 131, 255, 0.28);
    transition: background 0.4s var(--ease-smooth),
                color 0.4s var(--ease-smooth),
                transform 0.4s var(--ease-smooth),
                box-shadow 0.4s var(--ease-smooth);
  }

  .step-letter.is-active {
    background: var(--color-accent);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 0 4px var(--color-bg), 0 10px 26px rgba(87, 131, 255, 0.45);
  }

  /* Slight text shift when the badge activates */
  .method-step .step-phase,
  .method-step .step-title,
  .method-step .step-tagline,
  .method-step .step-text,
  .method-step .step-image {
    transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
  }

  .method-step:not(.is-reached) .step-phase,
  .method-step:not(.is-reached) .step-title,
  .method-step:not(.is-reached) .step-tagline,
  .method-step:not(.is-reached) .step-text {
    opacity: 0.55;
  }

  .method-step .step-image {
    margin-top: 12px;
    aspect-ratio: 4 / 3;
    max-height: 240px;
    overflow: hidden;
  }

  .method-step .step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .method-closing {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
    margin-top: 64px;
    gap: 28px;
  }

  .method-closing-image img {
    max-height: 260px;
  }

  .services {
    padding: 56px 0 64px;
  }

  .services .container {
    gap: 28px;
  }

  .services-left h2 {
    font-size: clamp(26px, 7vw, 32px);
    margin-bottom: 12px;
  }

  .services-lead {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Scope card — more compact on mobile */
  .services-scope {
    padding: 14px 16px;
    gap: 14px;
    margin-bottom: 22px;
    border-radius: var(--radius-md);
  }

  .services-scope__num {
    min-width: 52px;
    padding: 6px 4px;
    padding-right: 14px;
  }

  .services-scope__num span {
    font-size: 28px;
  }

  .services-scope__num small {
    font-size: 9px;
    letter-spacing: 0.1em;
    margin-top: 4px;
  }

  .services-scope__body strong { font-size: 14px; }
  .services-scope__body p     { font-size: 12.5px; }

  /* Highlights list */
  .services-highlights {
    gap: 12px;
    margin-bottom: 22px;
  }

  .services-highlights .hl-icon {
    width: 22px;
    height: 22px;
  }

  .hl-text strong { font-size: 13.5px; }
  .hl-text span   { font-size: 12.5px; }

  /* CTA row — stack to avoid cramped horizontal layout */
  .services-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .services-cta-row .button--small {
    align-self: flex-start;
  }

  /* Carousel — single card per view */
  .service-card {
    flex: 0 0 100%;
    max-width: none;
  }

  .service-card .card-image {
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 480px;
  }

  .service-card .card-content {
    padding: 18px 18px 20px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .card-number,
  .card-tag {
    top: 12px;
    font-size: 10.5px;
    padding: 4px 8px;
  }

  .card-number { left: 12px; min-width: 30px; height: 28px; }
  .card-tag { right: 12px; }

  /* Carousel controls — cleaner stacking on narrow screens */
  .carousel-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .carousel-meta {
    gap: 12px;
    justify-content: space-between;
  }

  .carousel-current { font-size: 24px; }
  .carousel-sep     { font-size: 16px; }
  .carousel-total   { font-size: 13px; }

  .carousel-buttons {
    align-self: stretch;
    justify-content: space-between;
  }

  .carousel-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .results {
    padding: 70px 0 60px;
  }

  .results-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 40px;
  }

  .metric {
    padding: 18px 16px;
  }

  .metric-value {
    font-size: 26px;
  }

  .metric-label {
    font-size: 12px;
  }

  .testimonial-videos {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .testimonial-video:last-child {
    grid-column: auto;
    max-width: 100%;
    margin: 0;
  }

  .tv-player {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }

  .tv-play {
    width: 58px;
    height: 58px;
  }

  .tv-controls {
    left: 8px;
    right: 8px;
    bottom: 8px;
    gap: 6px;
    padding: 6px 8px;
  }

  .tv-ctrl { width: 30px; height: 30px; }
  .tv-time { font-size: 10.5px; }

  .clients {
    padding: 60px 0 70px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .client-logo {
    padding: 10px;
    border-radius: var(--radius-sm);
  }

  .services-left h2,
  .results-header h2,
  .clients-header h2,
  .method-header h2,
  .cta-card h2 {
    font-size: 24px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-card {
    gap: 28px;
  }

  .cta-lead .eyebrow { margin-bottom: 12px; }

  .cta-perks {
    gap: 8px 14px;
  }

  .cta-perks li { font-size: 12px; }

  .ms-form {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .ms-question {
    font-size: 17px;
  }

  .ms-input {
    font-size: 16px; /* prevents iOS zoom */
    padding: 15px 16px;
  }

  .ms-prefix {
    padding: 0 12px;
    font-size: 14px;
  }

  .ms-option {
    padding: 10px 12px;
    gap: 12px;
  }

  .ms-option-letter {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .ms-option-text { font-size: 13.5px; }

  .ms-btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  /* Ghost "Voltar" becomes an icon-only circle on mobile */
  .ms-btn--ghost .ms-btn-label { display: none; }

  .ms-btn--ghost {
    padding: 0;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
  }

  /* Primary fills remaining space */
  .ms-controls {
    gap: 10px;
  }

  .ms-controls-right {
    flex: 1 1 auto;
  }

  .ms-btn--primary {
    width: 100%;
    padding: 14px 18px;
  }

  .ms-steps {
    min-height: 110px;
  }

  .ms-question {
    font-size: 16px;
  }

  .ms-question .ms-step-num {
    font-size: 13px;
  }

  .footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
    padding-bottom: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 22px;
  }

  .footer-credit {
    font-size: 12px;
  }

  .about-right .big-m {
    font-size: 180px;
  }

  .about-midum {
    padding: 64px 0;
  }

  .about-bullet {
    padding: 16px 18px;
    gap: 14px;
  }

  .bullet-number {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .about-stat {
    padding: 14px 18px;
    min-width: 160px;
    left: 12px;
    right: auto;
    bottom: -16px;
  }

  .about-stat__value {
    font-size: 28px;
  }

  .about-image-wrap {
    max-width: 100%;
  }
}

/* ===== CTA / FORM RESPONSIVE REFINEMENTS ===== */
@media (min-width: 1025px) {
  .cta-card {
    gap: 48px;
  }
}

/* Tablet refinement */
@media (max-width: 1024px) and (min-width: 769px) {
  .cta-card {
    gap: 36px;
  }

  .cta-perks {
    gap: 12px 18px;
  }
}
