:root {
  --blue: #000A13;
  --blue2: #050F1C;
  --white: #FCFCFC;
  --mint: #4FD1C5;
  --coral: #E25A3C;
  --muted: rgba(252,252,252,0.45);
  --border: rgba(252,252,252,0.08);

  --nav-bg: rgba(0,10,19,0.92);
  --panel-head: #020D17;
  --soft-track: rgba(252,252,252,0.05);
  --ghost-text: rgba(252,252,252,0.03);
  --faint-text: rgba(252,252,252,0.18);
  --tag-text: rgba(252,252,252,0.3);
  --quote-text: rgba(252,252,252,0.7);

  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Libre Baskerville', Georgia, serif;
}

body.light-mode {
  --blue: #F7FAFC;
  --blue2: #FFFFFF;
  --white: #07111F;
  --mint: #007C78;
  --coral: #D94D32;
  --muted: rgba(7,17,31,0.62);
  --border: rgba(7,17,31,0.10);

  --nav-bg: rgba(255,255,255,0.88);
  --panel-head: #F1F5F9;
  --soft-track: rgba(7,17,31,0.08);
  --ghost-text: rgba(7,17,31,0.04);
  --faint-text: rgba(7,17,31,0.28);
  --tag-text: rgba(7,17,31,0.42);
  --quote-text: rgba(7,17,31,0.72);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 130px;
}

.logo-img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.logo-light-mode {
  display: none;
}

body.light-mode .logo-dark-mode {
  display: none;
}

body.light-mode .logo-light-mode {
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}


.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--mint) !important;
  color: var(--blue) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  font-size: 11px !important;
}

.theme-toggle {
  width: 50px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--blue2);
  display: inline-flex;
  align-items: center;
  padding: 4px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.theme-toggle:hover {
  border-color: rgba(79,209,197,0.35);
}

.theme-toggle span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue);
  transition: transform 0.25s ease, background 0.25s ease;
}

body.light-mode .theme-toggle span {
  transform: translateX(20px);
  background: var(--coral);
  color: #fff;
}


.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--blue2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
  border-color: rgba(79,209,197,0.35);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 88px;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 36px;
  animation: fadeUp 0.5s ease both;
}

.kicker-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--mint);
}

h1 {
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.08s ease both;
}

h1 .serif-em,
h2 .serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--mint);
  letter-spacing: -1px;
}

h1 .coral-word,
h2 .coral-word {
  color: var(--coral);
}

.hero-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 48px;
  animation: fadeUp 0.5s 0.16s ease both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  animation: fadeUp 0.5s 0.24s ease both;
}

.btn-mint,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
}

.btn-mint {
  background: var(--mint);
  color: var(--blue);
}

.btn-mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79,209,197,0.25);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: rgba(79,209,197,0.35);
  color: var(--white);
}

.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  background: var(--blue2);
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(79,209,197,0.08), transparent),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(226,90,60,0.06), transparent);
}

.hero-right-inner {
  padding: 60px;
  position: relative;
  z-index: 1;
}

.big-ghost {
  font-size: 160px;
  font-weight: 800;
  letter-spacing: -8px;
  line-height: 1;
  color: var(--ghost-text);
  position: absolute;
  top: 40px;
  right: -10px;
  pointer-events: none;
  user-select: none;
}

.stat-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.stat-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-num.mint {
  color: var(--mint);
}

.stat-num.coral {
  color: var(--coral);
}

.stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.stat-sub {
  font-size: 12px;
  color: var(--muted);
}

.hero-values {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.val-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
}

.val-chip.on {
  border-color: rgba(79,209,197,0.3);
  color: var(--mint);
  background: rgba(79,209,197,0.06);
}

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
  background: var(--blue2);
}

.marquee-track {
  display: flex;
  animation: marq 30s linear infinite;
  width: max-content;
}

@keyframes marq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mitem {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--faint-text);
  white-space: nowrap;
}

.mitem .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--mint);
  opacity: 0.5;
}

.mitem.hi {
  color: var(--mint);
}

/* GENERAL SECTIONS */
section {
  position: relative;
  z-index: 1;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 64px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--mint);
}

h2 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.lead {
  font-size: 17px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 520px;
}

/* SERVICES */
#services {
  padding: 120px 0;
}

.services-top,
.testi-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 48px;
}

.services-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.svc {
  padding: 44px 48px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.svc:nth-child(2n) {
  border-right: none;
}

.svc:nth-last-child(-n+2) {
  border-bottom: none;
}

.svc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  transition: width 0.4s ease;
}

.svc.coral-v::after {
  background: var(--coral);
}

.svc:hover::after {
  width: 100%;
}

.svc:hover {
  background: rgba(79,209,197,0.03);
}

.svc.coral-v:hover {
  background: rgba(226,90,60,0.03);
}

.svc-n {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--mint);
  margin-bottom: 20px;
  opacity: 0.5;
}

.svc.coral-v .svc-n {
  color: var(--coral);
}

.svc-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
}

.svc-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.svc-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--tag-text);
}

/* AI */
#ai,
#who {
  padding: 120px 0;
  background: var(--blue2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ai-split,
.who-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.who-split {
  grid-template-columns: 1.1fr 1fr;
}

.ai-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
}

.ai-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s, border-color 0.3s;
  cursor: default;
}

.ai-item:last-child {
  border-bottom: none;
}

.ai-item:hover {
  padding-left: 10px;
  border-color: rgba(79,209,197,0.2);
}

.ai-n {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--mint);
  font-style: italic;
  margin-top: 3px;
}

.ai-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ai-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.ai-panel,
.who-visual {
  background: var(--blue);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.ai-panel-head {
  background: var(--panel-head);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.panel-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
}

.panel-live {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--mint);
  padding: 4px 10px;
  border-radius: 2px;
}

.ai-panel-body {
  padding: 28px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.metric:last-of-type {
  border-bottom: none;
}

.metric-lbl {
  font-size: 13px;
  color: var(--muted);
}

.metric-track {
  flex: 1;
  margin: 0 16px;
  height: 3px;
  background: var(--soft-track);
  border-radius: 2px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  border-radius: 2px;
  animation: grow 1.5s ease both;
  transform-origin: left;
}

.metric-87 { width: 87%; }
.metric-64 { width: 64%; }
.metric-42 { width: 42%; }
.metric-55 { width: 55%; }
.metric-73 { width: 73%; }

.delay-03 { animation-delay: 0.3s; }
.delay-05 { animation-delay: 0.5s; }
.delay-07 { animation-delay: 0.7s; }
.delay-09 { animation-delay: 0.9s; }

.mf-mint {
  background: var(--mint);
}

.mf-coral {
  background: var(--coral);
}

@keyframes grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.metric-pct {
  font-size: 13px;
  font-weight: 700;
  width: 34px;
  text-align: right;
}

.panel-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.ptag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.pt-mint {
  background: rgba(79,209,197,0.1);
  color: var(--mint);
  border: 1px solid rgba(79,209,197,0.2);
}

.pt-coral {
  background: rgba(226,90,60,0.08);
  color: var(--coral);
  border: 1px solid rgba(226,90,60,0.2);
}

.pt-plain {
  background: rgba(252,252,252,0.04);
  color: var(--muted);
  border: 1px solid var(--border);
}

body.light-mode .pt-plain {
  background: rgba(7,17,31,0.04);
}

/* PROCESS */
#process,
#testimonials,
#cta {
  padding: 120px 0;
}

.process-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.process-head .eyebrow {
  justify-content: center;
}

.process-head .lead {
  margin: 0 auto;
  text-align: center;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 96px;
  right: 96px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), var(--coral), var(--mint));
  opacity: 0.2;
}

.pstep {
  padding: 0 24px;
  text-align: center;
}

.p-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: border-color 0.3s, background 0.3s;
}

.p-circle:hover {
  border-color: var(--mint);
  background: rgba(79,209,197,0.05);
}

.p-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: var(--mint);
}

.p-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}

.p-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* WHO WE HELP */
.who-cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.who-cell {
  background: var(--blue);
  padding: 28px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
  cursor: default;
}

.who-cell:hover {
  border-color: rgba(79,209,197,0.2);
}

.who-icon {
  font-size: 22px;
  margin-bottom: 12px;
  display: block;
}

.who-ctitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.who-cdesc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.who-visual {
  padding: 48px;
  position: relative;
}

.who-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(79,209,197,0.06), transparent 70%);
}

.who-top {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
}

.who-flag {
  font-size: 56px;
  display: block;
  margin-bottom: 16px;
}

.who-vt {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.who-vs {
  font-size: 12px;
  color: var(--muted);
}

.who-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  position: relative;
}

.city {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--muted);
  border: 1px solid var(--border);
  text-align: center;
  transition: color 0.2s, border-color 0.2s;
}

.city.on {
  color: var(--mint);
  border-color: rgba(79,209,197,0.2);
}

/* TESTIMONIALS */
.testi-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.tcard {
  background: var(--blue2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 44px;
}

.tcard.feat {
  background: linear-gradient(135deg, rgba(79,209,197,0.04), rgba(226,90,60,0.04));
  border-color: rgba(79,209,197,0.12);
}

.tcard-stars {
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--coral);
  margin-bottom: 20px;
}

.tcard-q {
  font-family: var(--font-serif);
  font-size: 56px;
  line-height: 0.8;
  color: var(--mint);
  opacity: 0.25;
  display: block;
  margin-bottom: 16px;
}

.tcard-text {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--quote-text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tcard-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(79,209,197,0.1);
  border: 1px solid rgba(79,209,197,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--mint);
}

.coral-avatar {
  background: rgba(226,90,60,0.1);
  border-color: rgba(226,90,60,0.2);
  color: var(--coral);
}

.tcard-name {
  font-size: 14px;
  font-weight: 700;
}

.tcard-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* CTA */
.cta-inner {
  background: var(--blue2);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-left {
  padding: 80px 64px;
  border-right: 1px solid var(--border);
  position: relative;
}

.cta-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--coral));
}

.cta-left p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cta-right {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.crow {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.crow:last-child {
  border-bottom: none;
}

.crow-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.linkedin-icon {
  font-size: 13px;
  font-weight: 700;
}

.crow-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.crow-val {
  font-size: 14px;
  font-weight: 600;
}

.crow-val a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.crow-val a:hover {
  color: var(--mint);
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}

.footer-logo-light {
  display: none;
}

body.light-mode .footer-logo-dark {
  display: none;
}

body.light-mode .footer-logo-light {
  display: block;
}

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: 11px;
  color: var(--faint-text);
  letter-spacing: 0.5px;
}

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  nav {
    padding: 20px 24px;
  }

  .logo-img {
    height: 30px;
  }

  .menu-toggle {
    display: inline-flex;
  }


  .nav-actions {
    gap: 10px;
  }


  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: var(--nav-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    backdrop-filter: blur(24px);
    box-shadow: 0 24px 70px rgba(0,0,0,0.22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    display: block;
  }

  .nav-links a {
    display: block;
    padding: 13px 12px;
    font-size: 13px;
    color: var(--white);
  }

  .nav-links .nav-cta {
    display: inline-flex;
    margin-top: 8px;
  }

  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 100px 24px 56px;
  }

  .hero-left::after {
    display: none;
  }

  .hero-right {
    min-height: 360px;
  }

  .hero-right-inner {
    padding: 36px 24px;
  }

  .wrap {
    padding: 0 24px;
  }

  .services-top,
  .testi-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-table {
    grid-template-columns: 1fr;
  }

  .svc {
    border-right: none;
  }

  .svc:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .svc:last-child {
    border-bottom: none;
  }

  .ai-split,
  .who-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .process-track::before {
    display: none;
  }

  .testi-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 48px 24px;
  }

  .cta-right {
    padding: 48px 24px;
  }

  footer {
    padding: 40px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  h1 {
    letter-spacing: -2px;
  }

  h2 {
    letter-spacing: -1.5px;
  }

  .who-cells,
  .who-tags,
  .process-track {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-num {
    font-size: 44px;
  }

  .svc {
    padding: 36px 24px;
  }

  .tcard {
    padding: 32px 24px;
  }

  .who-visual {
    padding: 32px 24px;
  }
}

/* CONTACT FORM + CLOUDFLARE TURNSTILE */
.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.form-status {
  display: none;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  color: var(--white);
  background: rgba(79,209,197,0.07);
}

.form-status.show { display: block; }

.form-status.error {
  background: rgba(226,90,60,0.08);
  border-color: rgba(226,90,60,0.25);
}

.form-status.success {
  background: rgba(79,209,197,0.08);
  border-color: rgba(79,209,197,0.25);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.5;
  border-radius: 3px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

.form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.optional-label {
  color: var(--faint-text);
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 4px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(79,209,197,0.55);
  box-shadow: 0 0 0 3px rgba(79,209,197,0.10);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.cf-turnstile {
  min-height: 65px;
}

.form-submit {
  width: fit-content;
  border: 0;
  font-family: var(--font-main);
  cursor: pointer;
}

.form-note {
  font-size: 12px !important;
  margin-bottom: 0 !important;
}

.contact-security-card {
  margin-top: 28px;
  border: 1px solid var(--border);
  background: var(--blue);
  padding: 22px;
  border-radius: 4px;
}

.contact-security-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}

.contact-security-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.contact-security-card code {
  color: var(--white);
}

@media (max-width: 1100px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .form-submit { width: 100%; }
}





/* CONTACT CARD */
.contact-card {
  margin-top: 34px;
  background: var(--blue);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(79,209,197,0.09), transparent 45%),
    radial-gradient(ellipse at 90% 20%, rgba(226,90,60,0.06), transparent 42%);
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-card-kicker {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 8px;
}

.contact-card h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin: 0;
}

.contact-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--mint);
  padding: 6px 10px;
  border-radius: 2px;
}

body.light-mode .contact-card {
  box-shadow: 0 18px 60px rgba(7,17,31,0.08);
}


/* CTA right-column alignment fix */
.contact-layout {
  align-items: stretch;
}

.contact-layout .cta-right {
  min-height: 100%;
  justify-content: center;
  align-self: stretch;
}
