/* ============================================================
   Authentic Media & IT — Design System
   Display: Space Grotesk · Body: Manrope
   Deep-blue, trustworthy, agency energy
   ============================================================ */

:root {
  /* Ink / dark surfaces */
  --ink:        #060C18;
  --navy-900:   #0A1224;
  --navy-800:   #0F1B33;
  --navy-700:   #16264A;
  --navy-line:  rgba(146, 176, 255, 0.14);

  /* Light surfaces */
  --paper:      #F5F7FC;
  --paper-2:    #EAEEF8;
  --paper-line: rgba(13, 29, 64, 0.10);

  /* Blue accents (shared chroma/lightness, varied hue) */
  --blue:       oklch(0.62 0.19 258);   /* electric primary  */
  --blue-bright:oklch(0.70 0.17 245);   /* brighter cyan-blue */
  --blue-deep:  oklch(0.55 0.18 268);   /* indigo lean        */
  --blue-glow:  rgba(60, 116, 255, 0.55);

  /* Text */
  --on-dark:        #EAF0FF;
  --on-dark-soft:   rgba(214, 226, 255, 0.66);
  --on-dark-faint:  rgba(176, 195, 240, 0.42);
  --on-light:       #0B1733;
  --on-light-soft:  rgba(20, 38, 78, 0.68);

  --maxw: 1280px;
  --gut:  clamp(20px, 5vw, 88px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", "Space Grotesk Fallback", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--on-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  line-height: 1.55;
}

::selection { background: var(--blue); color: #fff; }

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ---------- Type scale ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.02; letter-spacing: -0.02em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  white-space: nowrap;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: currentColor;
  opacity: 0.85;
  display: inline-block;
}
.mono {
  font-family: var(--font-display);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gut);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 12, 24, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--navy-line);
  padding-block: 12px;
}

.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  /* background: linear-gradient(140deg, var(--blue-bright), var(--blue-deep)); */
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  /* box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 8px 24px -8px var(--blue-glow); */
}
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--font-display); font-weight: 600; font-size: 0.98rem; letter-spacing: -0.01em; }
.brand-name span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.86rem; font-weight: 600;
  color: var(--on-dark-soft);
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--on-dark); background: rgba(255,255,255,0.05); }

.btn {
  --bg: var(--blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--bg);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 10px 30px -12px var(--blue-glow);
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: translateX(-130%);
  transition: transform .6s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--blue-glow); }
.btn:hover::after { transform: translateX(130%); }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }

.btn-ghost {
  background: transparent;
  border: 1px solid var(--navy-line);
  color: var(--on-dark);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(255,255,255,0.04); box-shadow: none; }

.btn-dark {
  background: var(--ink);
  color: var(--on-dark);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.5);
}

.nav-cta { z-index: 2; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 42px; height: 42px;
  z-index: 2;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--on-dark); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(47, 107, 255, 0.22), transparent 55%),
    radial-gradient(90% 70% at 0% 110%, rgba(86, 64, 255, 0.16), transparent 55%),
    var(--ink);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--navy-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--navy-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(120% 100% at 70% 30%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 100% at 70% 30%, #000 30%, transparent 78%);
  opacity: 0.6;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  width: 520px; height: 520px;
  right: -120px; top: 8%;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--blue-bright), var(--blue-deep), var(--blue), var(--blue-bright));
  filter: blur(90px);
  opacity: 0.42;
  pointer-events: none;
  animation: float 14s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform: translateY(0) scale(1);} 50%{ transform: translateY(40px) scale(1.06);} }
@media (prefers-reduced-motion: reduce){ .hero-orb{ animation: none; } }

.hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em;
  color: var(--on-dark-soft);
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--navy-line);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 30px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-bright); box-shadow: 0 0 0 4px rgba(60,116,255,0.18); }

.hero h1 {
  font-size: clamp(2.9rem, 8.2vw, 7.2rem);
  font-weight: 600;
  max-width: 16ch;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(100deg, var(--blue-bright), var(--blue-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  font-weight: 500;
}
.hero h1 .outline {
  -webkit-text-stroke: 1.4px var(--on-dark-soft);
  color: transparent;
}
.hero-sub {
  margin-top: 30px;
  font-size: clamp(1.02rem, 1.7vw, 1.32rem);
  color: var(--on-dark-soft);
  max-width: 54ch;
  text-wrap: pretty;
}
.hero-actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-meta {
  margin-top: 64px;
  display: flex; flex-wrap: wrap; gap: 14px 44px;
  align-items: baseline;
  border-top: 1px solid var(--navy-line);
  padding-top: 26px;
}
.hero-meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero-meta .stat b { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; letter-spacing: -0.01em; }
.hero-meta .stat span { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 700; }

.scroll-hint {
  position: absolute; left: var(--gut); bottom: 26px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 700;
  z-index: 2;
}
.scroll-hint .line { width: 46px; height: 1px; background: var(--on-dark-faint); position: relative; overflow: hidden; }
.scroll-hint .line::after { content:""; position:absolute; inset:0; width:40%; background: var(--blue-bright); animation: slide 2.2s var(--ease) infinite; }
@keyframes slide { 0%{ transform: translateX(-100%);} 100%{ transform: translateX(250%);} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--navy-900);
  border-block: 1px solid var(--navy-line);
  padding-block: 22px;
  overflow: hidden;
  display: flex;
  user-select: none;
}
.marquee-track { display: flex; flex-shrink: 0; gap: 0; animation: marquee 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee-track .m-item {
  display: inline-flex; align-items: center; gap: 18px;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.1rem, 2.2vw, 1.7rem);
  padding-inline: 28px;
  color: var(--on-dark-soft);
  white-space: nowrap;
}
.marquee-track .m-item::after { content:"✦"; color: var(--blue-bright); font-size: 0.7em; }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; } }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding-block: clamp(80px, 11vw, 150px); position: relative; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 56px; }
.section-head .title-block { max-width: 40ch; }
.section h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin-top: 18px; text-wrap: balance; }
.section-lead { font-size: clamp(1rem, 1.5vw, 1.18rem); margin-top: 20px; color: inherit; opacity: 0.72; max-width: 50ch; text-wrap: pretty; }

.idx { font-family: var(--font-display); font-size: 0.8rem; color: var(--blue-bright); font-weight: 600; letter-spacing: 0.1em; }

/* Light section variant */
.section.light { background: var(--paper); color: var(--on-light); border-radius: 40px 40px 0 0; }
.section.light .eyebrow { color: var(--blue-deep); }
.section.light .section-lead { color: var(--on-light-soft); opacity: 1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-copy p { font-size: clamp(1.05rem, 1.7vw, 1.35rem); color: var(--on-light-soft); text-wrap: pretty; margin-bottom: 22px; line-height: 1.6; }
.about-copy p .hl { color: var(--on-light); font-weight: 700; }
.about-points { display: grid; gap: 2px; margin-top: 34px; border-top: 1px solid var(--paper-line); }
.about-points .pt { display: flex; align-items: baseline; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--paper-line); }
.about-points .pt b { font-family: var(--font-display); color: var(--blue-deep); font-size: 0.85rem; min-width: 34px; }
.about-points .pt span { font-weight: 600; color: var(--on-light); }
.about-points .pt em { color: var(--on-light-soft); font-style: normal; font-weight: 500; margin-left: auto; text-align: right; font-size: 0.92rem; }

.about-visual { position: relative; }

/* Image fill for placeholders that now hold dummy images */
.ph img, .work-card .work-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.work-card .work-img { transition: transform .6s var(--ease); }
.work-card:hover .work-img { transform: scale(1.05); }

/* Image placeholder */
.ph {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(13,29,64,0.05) 0 12px, rgba(13,29,64,0.09) 12px 24px);
  border: 1px solid var(--paper-line);
  display: block;
  aspect-ratio: 4 / 5;
}
.ph.dark {
  background: repeating-linear-gradient(135deg, rgba(146,176,255,0.05) 0 12px, rgba(146,176,255,0.09) 12px 24px);
  border-color: var(--navy-line);
}
.ph .ph-label {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--on-dark);
  background: rgba(10,18,36,0.62);
  backdrop-filter: blur(6px);
  padding: 7px 13px; border-radius: 999px;
  border: 1px solid var(--navy-line);
}
.ph.dark .ph-label { color: var(--blue-bright); background: var(--navy-800); border-color: var(--navy-line); }
.about-badge {
  position: absolute; left: -22px; bottom: 36px;
  background: var(--navy-900); color: var(--on-dark);
  border-radius: 16px; padding: 18px 22px;
  box-shadow: 0 24px 60px -20px rgba(6,12,24,0.5);
  border: 1px solid var(--navy-line);
}
.about-badge b { font-family: var(--font-display); font-size: 1.5rem; display:block; }
.about-badge span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 700; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.svc {
  position: relative;
  background: var(--navy-900);
  border: 1px solid var(--navy-line);
  border-radius: 22px;
  padding: 38px 34px 34px;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.svc::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(47,107,255,0.16), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.svc:hover { transform: translateY(-6px); border-color: rgba(108,150,255,0.4); background: var(--navy-800); }
.svc:hover::before { opacity: 1; }
.svc-num {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
  color: var(--blue-bright); letter-spacing: 0.1em;
}
.svc-ico {
  width: 52px; height: 52px; border-radius: 14px;
  border: 1px solid var(--navy-line);
  background: rgba(47,107,255,0.08);
  display: grid; place-items: center;
  margin: 22px 0 24px;
  position: relative;
}
.svc-ico svg { width: 26px; height: 26px; stroke: var(--blue-bright); fill: none; stroke-width: 1.6; }
.svc h3 { font-size: 1.5rem; position: relative; }
.svc p { margin-top: 12px; color: var(--on-dark-soft); position: relative; font-size: 0.98rem; line-height: 1.6; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; position: relative; }
.svc-tags span {
  font-size: 0.74rem; font-weight: 600; color: var(--on-dark-soft);
  padding: 6px 12px; border-radius: 999px; border: 1px solid var(--navy-line);
  background: rgba(255,255,255,0.02);
}

/* ============================================================
   APPROACH / PROCESS
   ============================================================ */
.approach { background: var(--navy-900); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step {
  padding: 30px 26px; border-radius: 18px;
  border: 1px solid var(--navy-line);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  transition: transform .35s var(--ease), border-color .35s;
}
.step:hover { transform: translateY(-5px); border-color: rgba(108,150,255,0.4); }
.step .step-n { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: rgba(108,150,255,0.32); line-height: 1; }
.step h3 { font-size: 1.18rem; margin: 16px 0 10px; }
.step p { color: var(--on-dark-soft); font-size: 0.92rem; line-height: 1.55; }

/* ============================================================
   WORK
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: clamp(230px, 27vw, 320px); gap: 16px; }
.work-card {
  position: relative; border-radius: 20px; overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--paper-line);
  cursor: pointer;
}
.wcA { grid-column: span 7; }
.wcB { grid-column: span 5; }
.wcC { grid-column: span 5; }
.wcD { grid-column: span 7; }
.work-card .ph-fill {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(13,29,64,0.05) 0 12px, rgba(13,29,64,0.09) 12px 24px);
  display: grid; place-items: center;
  transition: transform .6s var(--ease);
}
.work-card:hover .ph-fill { transform: scale(1.04); }
.work-card .ph-label2 {
  font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-deep); background: var(--paper); padding: 6px 12px; border-radius: 999px; border: 1px solid var(--paper-line);
}
.work-meta {
  position: absolute; inset: auto 0 0 0;
  padding: 22px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  background: linear-gradient(to top, rgba(6,12,24,0.82), transparent);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.work-card:hover .work-meta { opacity: 1; transform: translateY(0); }
.work-meta h3 { color: #fff; font-size: 1.16rem; }
.work-meta span { color: rgba(214,226,255,0.7); font-size: 0.78rem; font-weight: 600; }
.work-meta .go {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); display: grid; place-items: center;
}
.work-meta .go svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); position: relative; overflow: hidden; }
.contact-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; right: -160px; top: -120px; background: radial-gradient(circle, rgba(47,107,255,0.18), transparent 65%); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 72px); position: relative; align-items: stretch; }
.contact h2 { font-size: clamp(2.2rem, 5vw, 4rem); }

.contact-aside { display: flex; flex-direction: column; }
.contact-aside .section-lead { margin-bottom: 6px; }
.contact-form-panel {
  background: var(--navy-900);
  border: 1px solid var(--navy-line);
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px);
}

.form { display: grid; gap: 16px; margin-top: 0; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--on-dark-faint); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 0.98rem;
  background: var(--navy-900); color: var(--on-dark);
  border: 1px solid var(--navy-line); border-radius: 12px;
  padding: 14px 16px; transition: border-color .25s, box-shadow .25s, background .25s;
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--on-dark-faint); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(60,116,255,0.16);
  background: var(--navy-800);
}
.field .err { color: #ff8a8a; font-size: 0.78rem; font-weight: 600; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: rgba(255,120,120,0.6); }
.form-note { font-size: 0.82rem; color: var(--on-dark-faint); margin-top: 4px; }
.form-success {
  display: none; align-items: center; gap: 12px;
  background: rgba(47,107,255,0.1); border: 1px solid rgba(60,116,255,0.32);
  color: var(--on-dark); padding: 16px 18px; border-radius: 14px; font-weight: 600; font-size: 0.92rem;
}
.form-success.show { display: flex; }

/* Contact info / offices */
.contact-info { display: grid; gap: 18px; align-content: start; margin-top: auto; padding-top: 44px; }
.office {
  border: 1px solid var(--navy-line); border-radius: 18px; padding: 24px;
  background: var(--navy-900);
  transition: border-color .3s, transform .3s var(--ease);
}
.office:hover { border-color: rgba(108,150,255,0.4); transform: translateY(-3px); }
.office .o-tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: var(--blue-bright); display: inline-flex; align-items: center; gap: 8px; }
.office h3 { font-size: 1.15rem; margin: 12px 0 8px; }
.office address { font-style: normal; color: var(--on-dark-soft); font-size: 0.94rem; line-height: 1.6; }
.contact-direct { display: grid; gap: 10px; padding-top: 4px; }
.contact-direct a { display: flex; align-items: center; gap: 12px; color: var(--on-dark-soft); font-weight: 600; font-size: 0.96rem; transition: color .25s; }
.contact-direct a:hover { color: var(--on-dark); }
.contact-direct a svg { width: 18px; height: 18px; stroke: var(--blue-bright); fill: none; stroke-width: 1.7; }

/* ============================================================
   WHY / DIFFERENTIATORS  (light)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  position: relative;
  border: 1px solid var(--paper-line);
  border-radius: 22px;
  padding: 34px 30px 30px;
  background: #fff;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px -28px rgba(13,29,64,0.3); border-color: rgba(60,116,255,0.35); }
.why-card .why-n {
  font-family: var(--font-display); font-weight: 600; font-size: 0.82rem;
  color: var(--blue-deep); letter-spacing: 0.08em;
  display: inline-flex; align-items: center; gap: 10px;
}
.why-card .why-ico { width: 30px; height: 30px; border-radius: 9px; background: rgba(47,107,255,0.1); border: 1px solid rgba(60,116,255,0.25); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-card .why-ico svg { width: 15px; height: 15px; stroke: var(--blue-bright); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 1.4rem; margin: 22px 0 12px; color: var(--on-light); }
.why-card p { color: var(--on-light-soft); font-size: 0.98rem; line-height: 1.62; }
.why-card .bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(var(--blue-bright), var(--blue-deep)); opacity: 0; transition: opacity .4s; }
.why-card:hover .bar { opacity: 1; }

/* ============================================================
   INDUSTRIES  (dark)
   ============================================================ */
.industries { background: var(--navy-900); }
.ind-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ind {
  position: relative;
  border: 1px solid var(--navy-line);
  border-radius: 16px;
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
  min-height: 132px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
  overflow: hidden;
}
.ind:hover { transform: translateY(-5px); border-color: rgba(108,150,255,0.45); background: var(--navy-800); }
.ind .ind-n { font-family: var(--font-display); font-size: 0.78rem; color: var(--blue-bright); font-weight: 600; letter-spacing: 0.08em; }
.ind h3 { font-size: 1.18rem; letter-spacing: -0.01em; }
.ind::after { content: "↗"; position: absolute; right: 18px; top: 20px; color: var(--on-dark-faint); font-size: 1rem; opacity: 0; transform: translate(-4px,4px); transition: opacity .3s, transform .3s var(--ease); }
.ind:hover::after { opacity: 1; transform: translate(0,0); }

/* ============================================================
   TESTIMONIALS  (light)
   ============================================================ */
.section.tint { background: var(--paper-2); color: var(--on-light); }
.section.tint .eyebrow { color: var(--blue-deep); }
.section.tint .section-lead { color: var(--on-light-soft); opacity: 1; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.quote {
  background: #fff;
  border: 1px solid var(--paper-line);
  border-radius: 22px;
  padding: 32px 30px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-5px); box-shadow: 0 28px 60px -30px rgba(13,29,64,0.28); }
.quote .mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.4; color: var(--blue); height: 24px; }
.quote p { color: var(--on-light); font-size: 1.04rem; line-height: 1.6; font-weight: 500; text-wrap: pretty; flex: 1; }
.quote .who { display: flex; align-items: center; gap: 14px; padding-top: 6px; border-top: 1px solid var(--paper-line); }
.quote .ava {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--blue-bright), var(--blue-deep));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
}
.quote img.ava { object-fit: cover; display: block; }
.quote .who b { display: block; color: var(--on-light); font-family: var(--font-body); font-weight: 700; font-size: 0.96rem; }
.quote .who span { color: var(--on-light-soft); font-size: 0.84rem; }

/* ============================================================
   FAQ  (dark accordion)
   ============================================================ */
.faq { background: var(--ink); }
.faq-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--navy-line); }
.faq-item { border-bottom: 1px solid var(--navy-line); }
.faq-q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none; color: var(--on-dark);
  font-family: var(--font-display); font-weight: 500; font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  letter-spacing: -0.01em;
  padding: 26px 0; display: flex; align-items: center; gap: 20px; justify-content: space-between;
  transition: color .25s;
}
.faq-q:hover { color: var(--blue-bright); }
.faq-q .sign { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--navy-line); display: grid; place-items: center; position: relative; transition: background .3s, border-color .3s; }
.faq-q .sign::before, .faq-q .sign::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-q .sign::before { width: 12px; height: 2px; }
.faq-q .sign::after { width: 2px; height: 12px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .sign { background: var(--blue); border-color: var(--blue); color: #fff; }
.faq-item.open .faq-q .sign::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--on-dark-soft); font-size: 1rem; line-height: 1.65; padding-bottom: 26px; max-width: 60ch; }
.faq-aside h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.faq-aside .section-lead { margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); border-top: 1px solid var(--navy-line); padding-block: 64px 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--navy-line); }
.footer-brand p { color: var(--on-dark-soft); margin-top: 18px; max-width: 38ch; font-size: 0.95rem; line-height: 1.6; }
.footer-col h4 { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 700; margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; color: var(--on-dark-soft); font-size: 0.92rem; margin-bottom: 11px; transition: color .25s; }
.footer-col a:hover { color: var(--on-dark); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 26px; }
.footer-bottom p { font-size: 0.82rem; color: var(--on-dark-faint); }
.footer-bottom .legal { display: flex; gap: 8px 22px; flex-wrap: wrap; }
.footer-bottom .legal span { font-size: 0.82rem; color: var(--on-dark-faint); }
.footer-bottom .legal b { color: var(--on-dark-soft); font-weight: 700; }

.cin-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--navy-line); background: rgba(255,255,255,0.02);
  color: var(--on-dark-soft); margin-top: 18px;
}
.cin-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue-bright); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 440px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { margin-top: 8px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { 
    position: fixed; inset: 0 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: rgba(6,12,24,0.96); backdrop-filter: blur(20px);
    padding: 92px var(--gut) 30px; gap: 6px;
    transform: translateY(-100%); transition: transform .45s var(--ease);
    border-bottom: 1px solid var(--navy-line);
  }
  .nav-cta { padding-top: 0; border-bottom: 1px solid var(--navy-line); }
  body.menu-open .nav-links, body.menu-open .nav-cta { transform: translateY(0); }
  body.menu-open .nav-cta { transform: translateY(0); padding-top: 0; }
  .nav-links a { padding: 14px 8px; font-size: 1.05rem; border-radius: 10px; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { width: 100%; justify-content: center; margin-top: 10px; }
  .menu-open { overflow: hidden; }
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: 1fr; }
  .work-card { grid-column: 1 / -1 !important; }
  .work-grid { grid-template-columns: 1fr; grid-auto-rows: clamp(200px, 56vw, 300px); }
  .field.row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-meta { gap: 18px 30px; }
}
