@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================
   ORBITECH — Design System v2
   Deep-space dark · logo teal-green accent · editorial type
   ============================================================ */

:root {
  --bg: #04060b;
  --bg-soft: #090d15;
  --card: rgba(255, 255, 255, 0.025);
  --card-hover: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f2f5f8;
  --muted: #8b95a5;
  --accent: #2dd4bf;
  --accent-deep: #0f9d8f;
  --accent-soft: rgba(45, 212, 191, 0.1);
  --accent-border: rgba(45, 212, 191, 0.25);
  --display: 'Space Grotesk', sans-serif;
  --body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --r-sm: 12px;
  --r: 18px;
  --r-lg: 28px;
  --wrap: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(45, 212, 191, 0.3) var(--bg);
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
svg { width: 18px; height: 18px; stroke-width: 2; vertical-align: middle; }

::selection { background: var(--accent); color: #04060b; }

/* Ambient aurora background */
.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 45% at 70% -10%, rgba(45, 212, 191, 0.13), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 25%, rgba(15, 157, 143, 0.09), transparent 60%),
    radial-gradient(ellipse 45% 40% at 90% 80%, rgba(45, 212, 191, 0.05), transparent 55%);
}
.aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 0%, transparent 75%);
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
}
.header-inner {
  width: min(var(--wrap), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 8px 10px 8px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  background: rgba(7, 10, 17, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-scrolled .header-inner {
  background: rgba(6, 9, 15, 0.85);
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.brand img {
  width: min(170px, 40vw);
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav a {
  position: relative;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  transition: color 0.3s ease, background 0.3s ease;
}
.main-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.main-nav a.is-active { color: var(--accent); background: var(--accent-soft); }
.main-nav .nav-mobile-cta { display: none; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}
.btn-lg { padding: 15px 30px; font-size: 15px; }
.btn-primary {
  color: #03110e;
  background: linear-gradient(135deg, #43e6d0, var(--accent-deep));
  box-shadow: 0 10px 32px rgba(45, 212, 191, 0.28);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(45, 212, 191, 0.4);
}
.btn-primary svg { stroke-width: 2.4; }
.btn-ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.btn-ghost:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn:active { transform: translateY(0) scale(0.99); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.35s var(--ease), opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ============ Flash ============ */
.flash {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 110px auto -60px;
  padding: 15px 20px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid;
}
.flash svg { flex: 0 0 auto; }
.flash-success { background: rgba(16, 185, 129, 0.08); border-color: rgba(16, 185, 129, 0.3); color: #34d399; }
.flash-error { background: rgba(248, 113, 113, 0.08); border-color: rgba(248, 113, 113, 0.3); color: #f87171; }

/* ============ Typography ============ */
h1, h2, h3 { font-family: var(--display); font-weight: 700; }
h1 em, h2 em, .page-hero em {
  font-style: normal;
  background: linear-gradient(120deg, #5eead4, var(--accent) 55%, var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 18px;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pill svg { width: 14px; height: 14px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  margin: 28px 0 24px;
  font-size: clamp(40px, 7.2vw, 92px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}
.hero-sub {
  max-width: 640px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.hero-actions.center { justify-content: center; }

/* Rotating word */
.rotator-wrap {
  display: inline-block;
  position: relative;
}
.rotator {
  display: inline-block;
  background: linear-gradient(120deg, #5eead4, var(--accent) 55%, var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: opacity 0.35s ease, transform 0.35s var(--ease);
}
.rotator.is-out { opacity: 0; transform: translateY(-14px); }

/* Orbit field — brand visual */
.orbit-field {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(45, 212, 191, 0.13);
  border-radius: 50%;
}
.orbit-1 { width: min(520px, 90vw); height: min(520px, 90vw); animation: spin 26s linear infinite; }
.orbit-2 { width: min(780px, 130vw); height: min(780px, 130vw); border-color: rgba(45, 212, 191, 0.08); animation: spin 44s linear infinite reverse; }
.orbit-3 { width: min(1060px, 170vw); height: min(1060px, 170vw); border-color: rgba(255, 255, 255, 0.045); animation: spin 70s linear infinite; }
.orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent), 0 0 36px rgba(45, 212, 191, 0.5);
}
.orbit-2 .orbit-dot { width: 6px; height: 6px; opacity: 0.7; }
.orbit-3 .orbit-dot { width: 5px; height: 5px; opacity: 0.4; }
.orbit-core {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.16), transparent 70%);
  filter: blur(20px);
  animation: pulse 6s ease-in-out infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 0.6; transform: scale(1); } 50% { opacity: 1; transform: scale(1.18); } }

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--accent);
  animation: hint 2s ease-in-out infinite;
}
@keyframes hint { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0; } }

/* ============ Ticker ============ */
.ticker {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.012);
  padding: 22px 0;
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(242, 245, 248, 0.5);
  text-transform: uppercase;
}
.ticker-track svg { width: 13px; height: 13px; color: var(--accent); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ Stats ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: clamp(48px, 7vw, 88px) 0 0;
}
.stat {
  padding: 26px 0 26px 24px;
  border-left: 1px solid var(--border);
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
.stat strong span { color: var(--accent); }
.stat > span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ Sections ============ */
.section { padding: clamp(64px, 9vw, 130px) 0 0; }
.section:last-of-type { padding-bottom: clamp(64px, 9vw, 130px); }

.sec-head { margin-bottom: clamp(36px, 5vw, 60px); max-width: 820px; }
.sec-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.sec-index {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.sec-index::after {
  content: '';
  display: inline-block;
  width: 42px;
  height: 1px;
  margin-left: 14px;
  vertical-align: middle;
  background: var(--accent-border);
}
.sec-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-head h2 {
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.sec-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16.5px;
  max-width: 640px;
}

/* ============ Service rows (home) ============ */
.service-rows { border-top: 1px solid var(--border-soft); }
.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1.5fr 1fr;
  align-items: center;
  gap: 28px;
  padding: 34px 18px;
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.4s ease, padding 0.4s var(--ease);
  overflow: hidden;
}
.service-row:hover {
  background: var(--card-hover);
  padding-left: 30px;
}
.row-index {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.3s ease;
}
.service-row:hover .row-index { color: var(--accent); }
.row-main h3 {
  font-size: clamp(20px, 2.6vw, 28px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.service-row:hover .row-main h3 { color: var(--accent); }
.row-main p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 480px;
}
.row-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}
.row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.row-tags span {
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.row-arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  transition: all 0.35s var(--ease);
}
.service-row:hover .row-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #03110e;
  transform: rotate(45deg);
}
.row-thumb {
  position: absolute;
  right: 16%;
  top: 50%;
  width: 230px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: translateY(-50%) rotate(-4deg) scale(0.92);
  transition: opacity 0.4s ease, transform 0.45s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.service-row:hover .row-thumb {
  opacity: 1;
  transform: translateY(-50%) rotate(-2deg) scale(1);
}

/* ============ Service cards (services page) ============ */
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-border);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}
.service-card figure {
  position: relative;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
}
.service-card figure::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(4, 6, 11, 0.92));
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-card:hover img { transform: scale(1.05); }
.card-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(4, 6, 11, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}
.service-card-body { padding: 26px 28px 30px; }
.service-card-body h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.service-card-body h3 svg {
  color: var(--accent);
  transition: transform 0.35s var(--ease);
}
.service-card:hover h3 svg { transform: translate(3px, -3px); }
.service-card-body p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.service-card-body .row-tags { justify-content: flex-start; }

/* ============ Bento ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-three { grid-template-columns: repeat(3, 1fr); }
.bento-card {
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
  transition: border-color 0.4s ease, transform 0.4s var(--ease), background 0.4s ease;
}
.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
  background: var(--card-hover);
}
.bento-card > svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.bento-card h3 {
  margin: 18px 0 10px;
  font-size: 19px;
  letter-spacing: -0.015em;
}
.bento-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}
.bento > .bento-card:last-child:nth-child(3n) { grid-column: span 2; }
.bento-feature {
  grid-row: span 2;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bento-feature img {
  width: 100%;
  flex: 1;
  min-height: 220px;
  object-fit: cover;
}
.bento-feature-body { padding: 28px 30px 32px; }
.bento-feature-body > svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 14px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.bento-feature-body h3 { margin: 16px 0 10px; font-size: 21px; }
.bento-feature-body p { color: var(--muted); font-size: 14.5px; }

/* ============ Process ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.process-step {
  position: relative;
  padding: 30px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
}
.step-num {
  position: absolute;
  top: -18px;
  right: 6px;
  font-family: var(--display);
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(45, 212, 191, 0.18);
  pointer-events: none;
}
.process-step h3 {
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
  color: var(--accent);
}
.process-step p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 90%;
}

/* ============ Quotes / testimonials ============ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.quote-card {
  position: relative;
  padding: 34px 32px 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.quote-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
}
.quote-mark {
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: var(--display);
  font-size: 110px;
  line-height: 1;
  color: rgba(45, 212, 191, 0.12);
  pointer-events: none;
}
.quote-card blockquote {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.client-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: #03110e;
  background: linear-gradient(135deg, #5eead4, var(--accent-deep));
}
.quote-card figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: 15.5px;
}
.quote-card figcaption small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
}

/* ============ Chips ============ */
.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.3s ease;
}
.chip:hover {
  border-color: var(--accent-border);
  color: var(--text);
  transform: translateY(-2px);
}
.chip svg { width: 16px; height: 16px; color: var(--accent); }
.chip-solid {
  background: var(--accent-soft);
  border-color: var(--accent-border);
  color: var(--text);
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 860px;
  border-top: 1px solid var(--border-soft);
}
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 6px;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--accent); }
.faq-item summary svg {
  flex: 0 0 auto;
  color: var(--accent);
  transition: transform 0.35s var(--ease);
}
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item p {
  padding: 0 6px 26px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  max-width: 740px;
}

/* ============ CTA panel ============ */
.cta-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 5vw, 60px);
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(45, 212, 191, 0.1), transparent 55%),
    var(--bg-soft);
  overflow: hidden;
}
.cta-copy .sec-tag { color: var(--accent); }
.cta-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.cta-copy p { color: var(--muted); font-size: 16px; }
.cta-copy .check-list { margin-top: 26px; }

.check-list { display: grid; gap: 13px; margin-top: 22px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
}
.check-list svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent);
}

/* ============ Forms ============ */
.lead-form { display: grid; gap: 16px; }
.lead-form label { display: grid; gap: 7px; }
.lead-form label > span {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  font-size: 14.5px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.lead-form textarea { resize: vertical; min-height: 120px; }
.lead-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238b95a5' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 42px;
}
.lead-form select option { background: #0b0f18; color: var(--text); }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus {
  outline: none;
  border-color: var(--accent-border);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.lead-form ::placeholder { color: rgba(139, 149, 165, 0.55); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============ Page hero (inner pages) ============ */
.page-hero {
  padding: clamp(150px, 18vw, 210px) 0 clamp(20px, 4vw, 40px);
}
.page-hero h1 {
  margin: 26px 0 22px;
  font-size: clamp(36px, 5.6vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  max-width: 920px;
}
.page-hero .hero-sub { margin: 0; max-width: 660px; }
.page-hero.center { text-align: center; }
.page-hero.center h1, .page-hero.center .hero-sub { margin-left: auto; margin-right: auto; }
.page-hero.center .hero-actions { margin-top: 34px; }

/* Service detail hero */
.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.service-hero h1 { font-size: clamp(34px, 4.6vw, 60px); }
.service-hero .hero-actions { justify-content: flex-start; margin-top: 32px; }
.service-hero-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
}
.service-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

/* Detail boxes */
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.detail-box {
  padding: 32px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
}
.detail-box-accent {
  background:
    radial-gradient(ellipse 80% 100% at 100% 0%, rgba(45, 212, 191, 0.08), transparent 60%),
    var(--card);
  border-color: var(--accent-border);
}
.detail-box h3 {
  font-size: 19px;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
}

/* Related */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
}
.related-card > svg {
  width: 44px;
  height: 44px;
  padding: 11px;
  border-radius: 13px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  margin-bottom: 12px;
}
.related-card strong {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.related-card > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13.5px;
}
.related-card > span svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.related-card:hover > span svg { transform: translate(3px, -3px); }

/* ============ Split (about) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.split-flip .split-media { order: 2; }
.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.split-copy .sec-head { margin-bottom: 20px; }
.split-copy > p { color: var(--muted); font-size: 16px; }

/* ============ Clients ============ */
.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.client-card {
  padding: 28px 26px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
.client-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-border);
}
.client-card h3 {
  margin: 18px 0 5px;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.client-card p { color: var(--muted); font-size: 13px; }
.client-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--accent);
  font-weight: 700;
  font-size: 13.5px;
}
.client-card a svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.client-card a:hover svg { transform: translate(3px, -3px); }

/* ============ Contact ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.contact-form-panel {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-soft);
}
.contact-form-panel h2 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.contact-aside { display: grid; gap: 16px; }
.contact-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--card);
  transition: border-color 0.4s ease, transform 0.4s var(--ease);
}
a.contact-tile:hover {
  transform: translateY(-4px);
  border-color: var(--accent-border);
}
.contact-tile > svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 11px;
  border-radius: 12px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
}
.contact-tile h3 { font-size: 16px; margin-bottom: 4px; letter-spacing: -0.01em; }
.contact-tile p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.tile-arrow {
  margin-left: auto;
  color: var(--muted);
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
}

/* ============ Legal ============ */
.legal-page h1 { margin-bottom: 30px; }
.legal-body { max-width: 760px; padding-bottom: clamp(64px, 9vw, 130px); }
.legal-body p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-body a { color: var(--accent); font-weight: 600; }

/* ============ Footer ============ */
.footer {
  margin-top: clamp(64px, 9vw, 130px);
  border-top: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--bg) 0%, #060a12 100%);
  overflow: hidden;
}
.footer-cta {
  padding: clamp(50px, 7vw, 90px) 0 clamp(30px, 4vw, 50px);
  border-bottom: 1px solid var(--border-soft);
}
.footer-cta-tag {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 2vw, 22px);
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  transition: color 0.3s ease;
}
.footer-cta-link:hover { color: var(--accent); }
.footer-cta-link svg {
  width: clamp(34px, 5vw, 64px);
  height: clamp(34px, 5vw, 64px);
  color: var(--accent);
  transition: transform 0.4s var(--ease);
}
.footer-cta-link:hover svg { transform: translate(6px, -6px); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr 1.1fr;
  gap: 40px;
  padding: clamp(40px, 6vw, 64px) 0;
}
.footer-logo { width: 180px; margin-bottom: 16px; }
.footer-col p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-col p strong { color: var(--text); }
.footer-col h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col a:hover { color: var(--accent); }

.newsletter-form { margin-top: 20px; }
.newsletter-input-group {
  display: flex;
  align-items: center;
  max-width: 300px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease;
}
.newsletter-input-group:focus-within { border-color: var(--accent-border); }
.newsletter-input-group input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
}
.newsletter-input-group input:focus { outline: none; }
.newsletter-input-group input::placeholder { color: rgba(139, 149, 165, 0.55); }
.newsletter-input-group button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #03110e;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.newsletter-input-group button:hover { transform: scale(1.08); }

.footer-wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(70px, 14.5vw, 218px);
  line-height: 0.8;
  text-align: center;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
  user-select: none;
  pointer-events: none;
  transform: translateY(18%);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0 26px;
  border-top: 1px solid var(--border-soft);
  color: rgba(139, 149, 165, 0.6);
  font-size: 13px;
  position: relative;
  background: inherit;
}

/* ============ Floating WhatsApp ============ */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}
.floating-whatsapp svg { width: 26px; height: 26px; }

/* ============ Responsive ============ */
@media (max-width: 1080px) {
  .row-thumb { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  /* backdrop-filter on the pill would trap the fixed-position menu overlay inside it */
  .header-inner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(6, 9, 15, 0.92);
  }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(4, 6, 11, 0.96);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; }
  .main-nav a {
    font-family: var(--display);
    font-size: 26px;
    font-weight: 600;
    padding: 12px 26px;
  }
  .main-nav .nav-mobile-cta {
    display: inline-flex;
    margin-top: 22px;
    font-size: 16px !important;
    font-family: var(--body) !important;
    color: #03110e;
  }
  .main-nav .nav-mobile-cta:hover {
    color: #03110e;
    background: linear-gradient(135deg, #43e6d0, var(--accent-deep));
  }
  .header-cta { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 100; }

  .hero h1 { font-size: clamp(38px, 9.5vw, 64px); }
  .service-row { grid-template-columns: 48px 1fr; }
  .row-side { grid-column: 2; justify-content: flex-start; }
  .row-tags { justify-content: flex-start; }
  .service-cards, .quote-grid, .detail-grid { grid-template-columns: 1fr; }
  .bento, .bento-three { grid-template-columns: 1fr 1fr; }
  .bento-feature { grid-row: auto; grid-column: span 2; }
  .process-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split-flip, .cta-panel, .contact-layout, .service-hero { grid-template-columns: 1fr; }
  .split-flip .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 28px); }
  .brand img { width: 140px; }
  .header-inner { min-height: 58px; padding-left: 16px; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(32px, 10.5vw, 44px); }
  .hero-actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .stat { padding-left: 16px; }
  .bento, .bento-three, .process-grid, .related-grid, .client-grid, .form-row { grid-template-columns: 1fr; }
  .bento-feature { grid-column: auto; }
  .service-row { padding: 26px 8px; gap: 16px; }
  .row-arrow { width: 44px; height: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .ticker-track span { font-size: 14px; gap: 32px; }
  .ticker-track { gap: 32px; }
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
