/* ==========================================================================
   Boldtive — shared stylesheet
   Design tokens: near-black base, electric violet accent, gold + crimson
   used sparingly for highlights. Space Grotesk for display, Inter for body.
   ========================================================================== */

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-Variable.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand palette (from Boldtive brand kit) */
  --violet: #6d3eff;
  --violet-light: #9c7bff;
  --violet-dim: #4b2bb3;
  --red: #d72638;
  --gold: #c7a14a;
  --charcoal: #2a2a2a;

  /* Surfaces */
  --bg: #08080b;
  --bg-alt: #0e0e13;
  --surface: #16161d;
  --surface-2: #1d1d26;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Text */
  --fg: #f4f4f7;
  --fg-dim: #a9a9b5;
  --fg-mute: #75757f;

  /* Type */
  --font-display: "Space Grotesk", "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-light);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--violet);
  transform: rotate(45deg);
  flex: none;
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

section { position: relative; }

.section-pad { padding-block: clamp(64px, 10vw, 120px); }
.section-pad-sm { padding-block: clamp(48px, 7vw, 80px); }

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 8px 30px -8px rgba(109, 62, 255, 0.65);
}
.btn-primary:hover { background: var(--violet-light); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { border-color: var(--violet-light); color: var(--violet-light); }

.btn-light {
  background: var(--fg);
  color: var(--bg);
}
.btn-light:hover { background: var(--violet-light); color: #fff; }

.btn-arrow {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}
.btn-arrow svg { width: 100%; height: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8, 8, 11, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
  padding-block: 12px;
}

.nav-logo img { height: 26px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--fg-dim);
  position: relative;
  padding-block: 4px;
  transition: color 0.2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-strong);
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { top: 0; transform: rotate(45deg); background: var(--fg); }
.nav-toggle.is-open span::after { top: 0; transform: rotate(-45deg); background: var(--fg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 100px var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--fg);
}
.mobile-menu .btn { align-self: flex-start; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
  padding-top: clamp(140px, 20vw, 200px);
  padding-bottom: clamp(72px, 10vw, 120px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 82% 8%, rgba(109, 62, 255, 0.35) 0%, transparent 60%),
    radial-gradient(45% 40% at 8% 30%, rgba(215, 38, 56, 0.14) 0%, transparent 60%),
    var(--bg);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-inner { max-width: 900px; }
.hero h1 {
  font-size: clamp(40px, 6.4vw, 84px);
  margin-top: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--violet-light);
}
.hero-sub {
  margin-top: 26px;
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--fg-dim);
  max-width: 620px;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero-note { font-size: 13.5px; color: var(--fg-mute); }

.hero-strip {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-strip div {
  background: rgba(255, 255, 255, 0.02);
  padding: 22px 20px;
}
.hero-strip .num {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--fg);
}
.hero-strip .label {
  margin-top: 4px;
  font-size: 13px;
  color: var(--fg-mute);
}

/* ---------- Marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 22px;
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg-mute);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Section headers ---------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(36px, 5vw, 56px);
  flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 14px; max-width: 640px; }
.section-head p { color: var(--fg-dim); max-width: 420px; font-size: 15.5px; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: 34px 28px 30px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition: background 0.35s ease;
}
.service-card:hover { background: var(--surface-2); }
.service-card .icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(109, 62, 255, 0.14);
  border: 1px solid rgba(109, 62, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-light);
  margin-bottom: 26px;
}
.service-card .icon svg { width: 22px; height: 22px; }
.service-card .index {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--fg-mute);
  margin-bottom: 14px;
}
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--fg-dim); font-size: 14.5px; flex: 1; }
.service-card .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-card .tags span {
  font-size: 12px;
  color: var(--fg-mute);
  border: 1px solid var(--border-strong);
  padding: 5px 10px;
  border-radius: 100px;
}
.service-card .learn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}
.service-card .learn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.service-card:hover .learn svg { transform: translateX(4px); }

/* ---------- Value props / why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.why-list { margin-top: 30px; display: flex; flex-direction: column; gap: 26px; }
.why-item { display: flex; gap: 18px; }
.why-item .num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--violet-light);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-item h4 { font-size: 17px; margin-bottom: 6px; }
.why-item p { color: var(--fg-dim); font-size: 14.5px; }

.why-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(109, 62, 255, 0.5), transparent 60%),
    linear-gradient(160deg, var(--surface-2), var(--bg-alt));
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-visual .mark {
  width: 46%;
  opacity: 0.94;
  filter: drop-shadow(0 30px 60px rgba(109, 62, 255, 0.35));
}
.why-visual .ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.why-visual .ring.r1 { width: 70%; aspect-ratio: 1; }
.why-visual .ring.r2 { width: 95%; aspect-ratio: 1; }

/* ---------- Work / portfolio ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.work-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, transform 0.4s var(--ease);
}
.work-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.work-thumb {
  aspect-ratio: 16/10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.work-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55));
}
.work-thumb-mark {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.work-body { padding: 22px 24px 26px; display: flex; justify-content: space-between; gap: 16px; }
.work-body h3 { font-size: 18px; margin-bottom: 6px; }
.work-body p { font-size: 13.5px; color: var(--fg-mute); }
.work-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--violet-light);
  border: 1px solid rgba(109, 62, 255, 0.3);
  background: rgba(109, 62, 255, 0.1);
  padding: 6px 12px;
  border-radius: 100px;
  white-space: nowrap;
  height: fit-content;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg-dim);
  transition: all 0.25s ease;
}
.filter-btn.active, .filter-btn:hover { background: var(--violet); border-color: var(--violet); color: #fff; }

/* ---------- Process ---------- */
.process-list { display: flex; flex-direction: column; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding-block: 32px;
  border-top: 1px solid var(--border);
}
.process-item:last-child { border-bottom: 1px solid var(--border); }
.process-item .step {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--fg-mute);
}
.process-item h3 { font-size: 21px; margin-bottom: 8px; }
.process-item p { color: var(--fg-dim); font-size: 14.5px; max-width: 560px; }

/* ---------- Stats ---------- */
.stats-band {
  background: linear-gradient(120deg, var(--violet-dim), #23134f 60%, var(--bg-alt));
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stats-band .stat .num { font-family: var(--font-display); font-size: clamp(30px, 4vw, 46px); color: #fff; }
.stats-band .stat .label { margin-top: 6px; font-size: 13.5px; color: rgba(255,255,255,0.72); }

/* ---------- Testimonial ---------- */
.testimonial {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: clamp(36px, 6vw, 64px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.testimonial .quote-mark { font-family: var(--font-display); font-size: 90px; color: var(--violet); line-height: 1; }
.testimonial blockquote { font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; line-height: 1.35; }
.testimonial figcaption { margin-top: 22px; font-size: 14px; color: var(--fg-mute); }
.testimonial figcaption strong { color: var(--fg); font-weight: 600; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 96px);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(109, 62, 255, 0.4), transparent 70%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { font-size: clamp(30px, 5vw, 52px); max-width: 760px; margin: 18px auto 0; }
.cta-banner p { margin-top: 18px; color: var(--fg-dim); max-width: 520px; margin-inline: auto; }
.cta-banner .hero-actions { justify-content: center; margin-top: 34px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding-top: clamp(56px, 8vw, 88px); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand img { height: 24px; margin-bottom: 18px; }
.footer-brand p { color: var(--fg-mute); font-size: 14px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-social a:hover { border-color: var(--violet-light); color: var(--violet-light); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--fg-mute); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14.5px; color: var(--fg-dim); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-block: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-mute);
}
.footer-bottom a { color: var(--fg-mute); }
.footer-bottom a:hover { color: var(--fg); }

/* ---------- Page header (interior pages) ---------- */
.page-header { padding-top: clamp(140px, 18vw, 190px); padding-bottom: clamp(48px, 6vw, 72px); }
.page-header .eyebrow { margin-bottom: 18px; }
.page-header h1 { font-size: clamp(36px, 5.4vw, 64px); max-width: 780px; }
.page-header p { margin-top: 20px; font-size: 17px; color: var(--fg-dim); max-width: 600px; }
.crumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--fg-mute); margin-bottom: 22px; }
.crumb a:hover { color: var(--fg); }

/* ---------- Generic content blocks ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); }
.card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
}

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-row span {
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-strong);
  color: var(--fg-dim);
}

.divider { height: 1px; background: var(--border); width: 100%; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--surface-2), var(--bg-alt));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--violet-light);
}
.team-info { padding: 18px 20px 22px; }
.team-info h4 { font-size: 16px; margin-bottom: 3px; }
.team-info span { font-size: 13px; color: var(--fg-mute); }

/* ---------- Values ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { padding: 30px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.value-card .icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(199, 161, 74, 0.14);
  border: 1px solid rgba(199, 161, 74, 0.3);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card .icon svg { width: 20px; height: 20px; }
.value-card h4 { font-size: 17px; margin-bottom: 8px; }
.value-card p { font-size: 14px; color: var(--fg-dim); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(40px, 6vw, 80px); }
.contact-info-item { display: flex; gap: 16px; padding-block: 20px; border-top: 1px solid var(--border); }
.contact-info-item:last-child { border-bottom: 1px solid var(--border); }
.contact-info-item .icon {
  width: 40px; height: 40px; border-radius: 10px; flex: none;
  background: rgba(109, 62, 255, 0.14);
  border: 1px solid rgba(109, 62, 255, 0.3);
  color: var(--violet-light);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 15px; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 14px; color: var(--fg-dim); }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 9px; color: var(--fg-dim); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--fg);
  font-size: 14.5px;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--violet-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note { font-size: 12.5px; color: var(--fg-mute); margin-top: 6px; }

.faq-item { border-top: 1px solid var(--border); padding-block: 22px; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  gap: 20px;
}
.faq-q h4 { font-size: 16px; font-weight: 500; }
.faq-q .plus { width: 20px; height: 20px; flex: none; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--fg-dim);
  transition: transform 0.3s ease;
}
.faq-q .plus::before { width: 100%; height: 1.5px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-q .plus::after { width: 1.5px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p { padding-top: 14px; color: var(--fg-dim); font-size: 14.5px; max-width: 640px; }
.faq-item.is-open .faq-a { max-height: 300px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0 !important; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .testimonial { grid-template-columns: 1fr; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .process-item { grid-template-columns: 1fr; gap: 10px; }
}
