:root {
  --ink: #0a0e17;
  --ink-soft: #1a1f2e;
  --ink-muted: #2d3348;
  --slate: #6b7394;
  --silver: #9ba3c2;
  --pearl: #c8cde0;
  --cloud: #e8ebf4;
  --white: #f5f6fa;
  --pure: #ffffff;
  --accent: #3b6cf5;
  --accent-soft: #5a86ff;
  --accent-glow: rgba(59, 108, 245, 0.12);
  --warm: #f0ece4;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  background: var(--pure);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── UTILITY ──────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ─── ANIMATIONS ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes subtlePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAV ─────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(10,14,23,0.06);
  transition: all 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 1px 24px rgba(10,14,23,0.06);
}
.nav__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.nav__logo-mark::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2.5px solid white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0 60%);
}
.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}
.nav__logo-text {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.nav__logo-badge {
  font-size: 11px;
  font-weight: 500;
  color: var(--slate);
  background: var(--cloud);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  text-decoration: none;
  color: var(--slate);
  font-size: 14px;
  font-weight: 450;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--ink);
  color: var(--pure) !important;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.nav__cta:hover {
  background: var(--ink-soft);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10,14,23,0.15);
}

/* ─── HERO ────────────────────────── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--pure);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  animation: subtlePulse 6s ease-in-out infinite;
  pointer-events: none;
}
.hero__content {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid rgba(59,108,245,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  animation: fadeIn 0.6s ease both;
}
.hero__eyebrow svg {
  width: 14px;
  height: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 28px;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero__sub {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.65;
  font-weight: 400;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}
.btn--primary {
  background: var(--ink);
  color: var(--pure);
}
.btn--primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,14,23,0.18);
}
.btn--secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--cloud);
}
.btn--secondary:hover {
  border-color: var(--silver);
  background: var(--white);
  transform: translateY(-2px);
}
.btn--secondary svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.btn--accent {
  background: var(--accent);
  color: var(--pure);
}
.btn--accent:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,108,245,0.25);
}

/* ─── SOCIAL PROOF BAR ────────────── */
.proof {
  padding: 64px 0;
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
  background: var(--white);
  overflow: hidden;
}
.proof__testimonial {
  display: flex;
  align-items: center;
  gap: 56px;
  max-width: 860px;
  margin: 0 auto;
}
.proof__photo-wrap {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cloud);
  box-shadow: 0 8px 32px rgba(10,14,23,0.08);
}
.proof__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(15%);
  transition: filter 0.3s ease;
}
.proof__testimonial:hover .proof__photo {
  filter: grayscale(0%);
}
.proof__content {
  flex: 1;
  position: relative;
}
.proof__quote-mark {
  width: 32px;
  height: 26px;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 12px;
}
.proof__content blockquote {
  font-family: var(--serif);
  font-size: clamp(19px, 1.6vw, 24px);
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.proof__attribution {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.proof__name {
  font-family: var(--sans);
  font-style: normal;
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.proof__role {
  font-size: 13px;
  color: var(--slate);
  font-weight: 450;
}
.proof__detail {
  font-size: 12px;
  color: var(--silver);
  font-weight: 400;
  margin-top: 1px;
}

/* ─── PROBLEM ─────────────────────── */
.problem {
  padding: 120px 0;
  background: var(--pure);
}
.problem__inner {
  text-align: center;
}
.problem__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.problem h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.problem__body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--slate);
  line-height: 1.75;
}
.problem__body p + p {
  margin-top: 20px;
  color: var(--ink-muted);
  font-weight: 450;
}

/* ─── SOLUTION TABS ───────────────── */
.solutions {
  padding: 100px 0 120px;
  background: var(--ink);
  color: var(--pure);
  position: relative;
  overflow: hidden;
}
.solutions::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,108,245,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.solutions__header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.solutions__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.solutions h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
/* ─── CAPABILITIES SCROLL ─────────── */
.cap-scroll {
  padding: 20px 0 100px;
  position: relative;
  z-index: 1;
}
.cap-scroll__item {
  padding: 80px 0;
}
.cap-scroll__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.cap-scroll__number {
  flex-shrink: 0;
  font-family: var(--serif);
  font-size: 64px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  font-weight: 400;
  letter-spacing: -0.03em;
  padding-top: 4px;
  min-width: 90px;
}
.cap-scroll__content {
  flex: 1;
  max-width: 680px;
}
.cap-scroll__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--pure);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.cap-scroll__body {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--pearl);
  line-height: 1.75;
  opacity: 0.85;
}
.cap-scroll__divider {
  padding: 0;
}
.cap-scroll__line {
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.feature {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.feature:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.feature__icon {
  width: 40px;
  height: 40px;
  background: rgba(59,108,245,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature__icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent-soft);
}
.feature h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 14px;
  color: var(--silver);
  line-height: 1.65;
}
.feature__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(59,108,245,0.12);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-soft);
  margin-top: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ─── MID CTA ─────────────────────── */
.mid-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #2952cc 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.mid-cta h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--pure);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
}
.mid-cta .btn {
  position: relative;
}

/* ─── USE CASES ───────────────────── */
.use-cases {
  padding: 120px 0;
  background: var(--white);
}
.use-cases__header {
  text-align: center;
  margin-bottom: 64px;
}
.use-cases__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.use-cases h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  border-color: rgba(59,108,245,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(10,14,23,0.08);
}
.card:hover::before { opacity: 1; }
.card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.card__item {
  padding: 14px 0;
  border-top: 1px solid var(--cloud);
}
.card__item:last-child {
  padding-bottom: 0;
}
.card__item-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.card__item-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

/* ─── TRUST ───────────────────────── */
.trust {
  padding: 80px 0;
  background: var(--pure);
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}
.trust__header {
  text-align: center;
  margin-bottom: 48px;
}
.trust__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}
.trust h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--cloud);
  transition: all 0.25s ease;
}
.trust__item:hover {
  border-color: rgba(59,108,245,0.15);
  box-shadow: 0 4px 16px rgba(10,14,23,0.04);
}
.trust__badge {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--pure);
  letter-spacing: 0.03em;
}
.trust__badge--outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}
.trust__meta h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}
.trust__meta p {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
}

/* ─── FAQ ─────────────────────────── */
.faq {
  padding: 120px 0;
  background: var(--white);
}
.faq__header {
  text-align: center;
  margin-bottom: 56px;
}
.faq__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 20px;
}
.faq h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.accordion {
  max-width: 720px;
  margin: 0 auto;
}
.accordion__item {
  border-bottom: 1px solid var(--cloud);
}
.accordion__trigger {
  width: 100%;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}
.accordion__trigger:hover { color: var(--accent); }
.accordion__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cloud);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.accordion__icon svg {
  width: 14px;
  height: 14px;
  color: var(--slate);
  transition: transform 0.3s ease;
}
.accordion__item.open .accordion__icon {
  background: var(--accent-glow);
}
.accordion__item.open .accordion__icon svg {
  transform: rotate(45deg);
  color: var(--accent);
}
.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.accordion__item.open .accordion__body {
  max-height: 300px;
}
.accordion__content {
  padding-bottom: 24px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 600px;
}

/* ─── FINAL CTA ───────────────────── */
.final-cta {
  padding: 120px 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59,108,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.final-cta__text h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--pure);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.final-cta__text p {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.65;
  margin-bottom: 8px;
}
.final-cta__reassurance {
  font-size: 13px !important;
  color: var(--slate) !important;
  margin-top: 4px;
}
.final-cta__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px;
}
.final-cta__form h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--pure);
  font-weight: 400;
  margin-bottom: 28px;
}
.form__group {
  margin-bottom: 16px;
}
.form__group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--pearl);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form__group input,
.form__group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--pure);
  font-family: var(--sans);
  font-size: 14px;
  transition: all 0.25s ease;
  outline: none;
}
.form__group input::placeholder {
  color: var(--slate);
}
.form__group input:focus,
.form__group select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(59,108,245,0.15);
}
.form__group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7394' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__group select option {
  background: var(--ink);
  color: var(--pure);
}
.form__submit {
  width: 100%;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--pure);
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.form__submit:hover {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(59,108,245,0.3);
}
.form__note {
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  margin-top: 12px;
}

/* ─── FOOTER ──────────────────────── */
.footer {
  padding: 40px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-size: 13px;
  color: var(--slate);
}
.footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer__links a {
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--pearl); }

/* ─── RESPONSIVE ──────────────────── */
@media (max-width: 1024px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .final-cta__inner { grid-template-columns: 1fr; gap: 48px; }
}

/* Hamburger */
.nav__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; z-index: 101; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--ink-muted); transition: all 0.3s ease; border-radius: 2px; }
.nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav__hamburger { display: flex; }
  .nav__links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--ink); flex-direction: column; padding: 24px 32px; gap: 8px; border-top: 1px solid rgba(255,255,255,0.08); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav__links--open { display: flex; }
  .nav__links li a { color: var(--pearl); font-size: 1rem; padding: 12px 0; display: block; }
  .nav__links .nav__cta { margin-top: 8px; text-align: center; }
  .hero { padding: 120px 0 80px; }
  .cards { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; }
  .cap-scroll__inner { flex-direction: column; gap: 16px; }
  .cap-scroll__number { font-size: 48px; min-width: auto; }
  .cap-scroll__item { padding: 48px 0; }
  .features { grid-template-columns: 1fr; }
  .proof__logos { gap: 24px; }
  .proof__testimonial { flex-direction: column; text-align: center; gap: 28px; }
  .proof__quote-mark { margin: 0 auto 12px; }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── GET STARTED PAGE ────────────── */
.gs-hero {
  padding: calc(var(--nav-height) + 64px) 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--pure) 100%);
}
.gs-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.gs-hero__subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.gs-options { padding: 32px 0 80px; }
.gs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gs-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.gs-card:hover {
  border-color: var(--pearl);
  box-shadow: 0 8px 32px rgba(10, 14, 23, 0.06);
}
.gs-card__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 6px 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.gs-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 12px;
}
.gs-card__desc {
  font-size: 1rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 24px;
}
.gs-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}
.gs-card__bullets li {
  position: relative;
  padding-left: 24px;
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}
.gs-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 2px solid var(--accent);
}
.gs-card__btn {
  align-self: stretch;
  text-align: center;
  padding: 18px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.gs-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 14, 23, 0.18);
}

/* ─── TUTORIALS ──────────────────── */
.gs-tutorials {
  padding: 80px 0;
  background: var(--white);
}
.gs-tutorials__header {
  text-align: center;
  margin-bottom: 48px;
}
.gs-tutorials__label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.gs-tutorials__header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.gs-tutorials__subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto;
}
.gs-tutorials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gs-video-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.gs-video-card:hover {
  border-color: var(--pearl);
  box-shadow: 0 8px 32px rgba(10, 14, 23, 0.06);
}
.gs-video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--ink);
}
.gs-video-card__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.gs-video-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  padding: 24px 24px 8px;
}
.gs-video-card__desc {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
  padding: 0 24px 24px;
}

/* ─── MODALS ─────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 14, 23, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }

.modal {
  background: var(--pure);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal--form { max-width: 440px; }

.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--silver);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.modal__close:hover { color: var(--ink); }

.modal__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.modal__subtitle {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 24px;
}
/* ─── DOWNLOAD MODAL ─────────────── */
.modal--download {
  max-width: 680px;
  text-align: center;
}
.dl-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.dl-subtitle {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 28px;
}
.dl-subtitle strong { color: var(--ink-muted); }
.dl-subtitle--mobile {
  display: none;
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 28px;
}

.dl-primary { margin-bottom: 28px; }
.dl-section-label {
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.dl-primary-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--accent);
  color: var(--pure);
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.dl-primary-btn:hover {
  background: var(--accent-soft);
  box-shadow: 0 6px 20px rgba(59, 108, 245, 0.3);
}
.dl-primary-btn__icon { display: flex; align-items: center; }
.dl-primary-btn__icon svg { width: 32px; height: 32px; }
.dl-primary-btn__text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}
.dl-primary-btn__text strong { font-size: 1.15rem; }
.dl-primary-btn__text small { font-size: 0.82rem; opacity: 0.8; }

/* ─── ANDROID NOTICE ──────────────── */
.dl-android-notice {
  text-align: center;
  padding: 24px;
  margin-bottom: 24px;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 12px;
}
.dl-android-notice p {
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.dl-android-notice a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.dl-android-notice a:hover { color: var(--accent-soft); }

.dl-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--silver);
  font-size: 0.85rem;
}
.dl-divider::before, .dl-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cloud);
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.dl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.dl-card:hover { border-color: var(--pearl); }
.dl-card__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.dl-card__arrow {
  width: 16px;
  height: 16px;
  color: var(--silver);
}
.dl-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--pure);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.dl-card__btn:hover { background: var(--accent-soft); }
.dl-card__store {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--slate);
}

.dl-message {
  font-size: 0.9rem;
  color: var(--slate);
  padding-top: 20px;
  border-top: 1px solid var(--cloud);
  margin-bottom: 8px;
}
.dl-sync {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--silver);
}

/* Mobile download variants (hidden on desktop) */
.dl-mobile-divider, .dl-list, .dl-mobile-message { display: none; }

.dl-mobile-divider {
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--slate);
  font-size: 0.9rem;
}
.dl-mobile-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cloud);
}

.dl-list {
  flex-direction: column;
  border: 1px solid var(--cloud);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.dl-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
}
.dl-list__item:not(:last-child) {
  border-bottom: 1px solid var(--cloud);
}
.dl-list__item:hover { background: var(--white); }
.dl-list__icon { display: flex; color: var(--accent); }
.dl-list__icon svg { width: 22px; height: 22px; }
.dl-list__name {
  flex: 1;
  font-size: 1rem;
  font-weight: 500;
}
.dl-list__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.dl-mobile-message {
  justify-content: center;
  font-size: 0.9rem;
  color: var(--slate);
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid var(--cloud);
}

/* ─── MODAL FORM ─────────────────── */
.modal__form .form__group { margin-bottom: 16px; }
.modal__form .form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.modal__form .form__required { color: var(--accent); }
.modal__form .form__input,
.modal__form .form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cloud);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s;
}
.modal__form .form__input:focus,
.modal__form .form__select:focus {
  outline: none;
  border-color: var(--accent);
}
.modal__form .form__input::placeholder { color: var(--silver); }
.modal__form .form__submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--pure);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.modal__form .form__submit:hover { background: var(--accent-soft); }
.modal__form .form__note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--silver);
  margin-top: 12px;
}

/* ─── GET STARTED RESPONSIVE ─────── */
@media (max-width: 768px) {
  .gs-grid { grid-template-columns: 1fr; }
  .gs-tutorials__grid { grid-template-columns: 1fr; }
  .gs-card { padding: 28px; }
  .modal { padding: 28px; margin: 16px; }

  /* Mobile download modal: swap grid for list */
  .modal--download { max-width: 100%; padding: 28px 24px; }
  .dl-title { font-size: 1.5rem; }
  .dl-section-label { display: none; }
  .dl-primary-btn__text strong { font-size: 1.05rem; }
  .dl-primary-btn__text small { font-size: 0.78rem; }
  .dl-divider, .dl-grid, .dl-message, .dl-sync { display: none !important; }
  .dl-mobile-divider, .dl-list { display: flex; }
  .dl-mobile-message { display: none; }
  .dl-subtitle { display: none; }
  .dl-subtitle--mobile { display: block; }
  .dl-primary-btn__text small { display: none; }
}

/* ─── CONTACT PAGE ───────────────── */
.contact-hero {
  padding: calc(var(--nav-height) + 64px) 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--pure) 100%);
}
.contact-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 16px;
}
.contact-hero__subtitle {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-form-section { padding: 16px 0 80px; }
.contact-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 48px;
}

/* ─── FORM FIELDS ────────────────── */
.cf-group { margin-bottom: 24px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.cf-required { color: var(--accent); }
.cf-input, .cf-select, .cf-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cloud);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.cf-input::placeholder, .cf-textarea::placeholder { color: var(--silver); }
.cf-input--small { max-width: 160px; }
.cf-textarea { resize: vertical; min-height: 120px; }
.cf-select { cursor: pointer; }

/* ─── RADIO & CHECKBOX ───────────── */
.cf-radio-grid, .cf-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-radio-item, .cf-checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--cloud);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--ink-muted);
  transition: all 0.2s;
  background: var(--white);
}
.cf-radio-item:hover, .cf-checkbox-item:hover {
  border-color: var(--pearl);
  background: var(--pure);
}
.cf-radio-item:has(input:checked), .cf-checkbox-item:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--accent);
}
.cf-radio-item input, .cf-checkbox-item input {
  accent-color: var(--accent);
  margin: 0;
}
.cf-radio-item--other, .cf-checkbox-item--other {
  flex-wrap: wrap;
}
.cf-other-input {
  width: 140px;
  padding: 6px 10px;
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ─── SUBMIT ─────────────────────── */
.cf-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--pure);
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
}
.cf-submit:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 108, 245, 0.25);
}
.cf-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--silver);
  margin-top: 16px;
}

/* ─── CONTACT RESPONSIVE ─────────── */
@media (max-width: 768px) {
  .contact-card { padding: 28px; }
  .cf-row { grid-template-columns: 1fr; }
  .cf-radio-grid, .cf-checkbox-grid { flex-direction: column; }
}

/* ─── COMPANY PAGE ───────────────── */
.co-hero {
  padding: calc(var(--nav-height) + 64px) 0 80px;
  background: linear-gradient(180deg, var(--pure) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--cloud);
}
.co-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.co-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  background: var(--pure);
  border: 1px solid var(--cloud);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.co-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}
.co-hero__desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 20px;
  max-width: 600px;
}
.co-hero__tagline {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 32px;
}
.co-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Stats grid */
.co-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.co-stat {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.co-stat__value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.2;
}
.co-stat__label {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 6px;
}

/* Shared section styles */
.co-section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--ink);
  margin-bottom: 12px;
}
.co-section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 560px;
}
.co-two-col {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

/* Our Story */
.co-story { padding: 80px 0; }
.co-story__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.co-story__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--slate);
}

/* Why Firms Trust */
.co-why {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--pure) 0%, var(--white) 100%);
  border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
}
.co-why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.co-why-card {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.co-why-card--wide { grid-column: 1 / -1; }
.co-why-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.co-why-card__body {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--slate);
}

/* Leadership */
.co-leadership { padding: 80px 0; }
.co-leadership__header { margin-bottom: 40px; }
.co-leaders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.co-leader {
  background: var(--pure);
  border: 1px solid var(--cloud);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  gap: 20px;
}
.co-leader__photo {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.co-leader__name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.co-leader__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}
.co-leader__bio {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--slate);
  margin-top: 12px;
}

/* Trusted by */
.co-clients {
  padding: 64px 0;
  border-top: 1px solid var(--cloud);
}

/* Final CTA */
.co-cta {
  background: var(--ink);
  padding: 80px 0;
  border-top: 1px solid var(--ink-muted);
}
.co-cta__inner { max-width: 640px; }
.co-cta__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--pure);
  margin-bottom: 16px;
}
.co-cta__desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 32px;
}
.co-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.co-cta__btn-primary {
  background: var(--pure) !important;
  color: var(--ink) !important;
}
.co-cta__btn-primary:hover { opacity: 0.9; }
.co-cta__btn-secondary {
  border-color: var(--ink-muted) !important;
  color: var(--pure) !important;
}
.co-cta__btn-secondary:hover {
  border-color: var(--slate) !important;
  background: rgba(255,255,255,0.05) !important;
}

/* ─── COMPANY RESPONSIVE ─────────── */
@media (max-width: 768px) {
  .co-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .co-stats { grid-template-columns: 1fr 1fr; }
  .co-two-col { grid-template-columns: 1fr; gap: 24px; }
  .co-why__cards { grid-template-columns: 1fr; }
  .co-leaders { grid-template-columns: 1fr; }
  .co-leader { flex-direction: column; }
}
