/* =========================================================
   AXISCO — STYLESHEET
   Modern tech-forward dark theme for B2B AEC audience
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette — dark navy + electric blue (per brand direction) */
  --bg: #0A1628;
  --bg-elev: #0F1E35;
  --surface: #152544;
  --surface-2: #1C2E52;
  --border: #203156;
  --border-strong: #2D4474;

  --text: #ffffff;
  --text-muted: #CBD5E1;
  --text-dim: #94A3B8;

  --accent: #60A5FA;          /* bright blue for subtle highlights */
  --brand: #2563EB;            /* electric blue — primary accent */
  --brand-bright: #3B82F6;     /* hover / highlight */
  --brand-strong: #1D4ED8;     /* deeper variant */
  --brand-glow: rgba(37, 99, 235, 0.35);
  --warn: #fb923c;             /* orange for selective highlights */

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #2563EB 0%, #60A5FA 100%);
  --grad-surface: linear-gradient(180deg, rgba(37,99,235,0.05), rgba(37,99,235,0));

  /* Typography */
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Menlo, Consolas, monospace;

  /* Layout */
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;

  /* Shadows */
  --shadow-card: 0 10px 40px -15px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 0 1px var(--border), 0 20px 60px -20px var(--brand-glow);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.5rem, 5.5vw + 0.5rem, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.875rem, 3vw + 0.5rem, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-muted); }

.text-accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-lede { color: var(--text-muted); font-size: 1.125rem; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 999px;
}
.eyebrow__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(37, 99, 235, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 10px;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn--primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 10px 30px -10px var(--brand-glow);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--brand-bright);
  box-shadow: 0 16px 40px -12px var(--brand-glow), 0 0 0 1px rgba(96, 165, 250, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.btn--sm { padding: 10px 16px; font-size: 0.875rem; }
.btn--lg { padding: 16px 28px; font-size: 1rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(7, 11, 22, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(7, 11, 22, 0.9);
  border-bottom-color: var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.nav__logo { display: flex; align-items: center; }
.nav__links {
  display: flex;
  gap: 32px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s var(--ease);
  position: relative;
  padding: 8px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--brand);
  transition: width 0.25s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s var(--ease);
}
.nav__toggle:hover { background: var(--surface); }
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(37,99,235,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(96,165,250,0.12), transparent 60%),
    var(--bg);
}
#pointcloud {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.9;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 85%);
}

.hero__inner {
  position: relative;
  z-index: 1;
}
.hero__content { max-width: 820px; }
.hero__title { margin-bottom: 24px; }
.hero__sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.1vw + 0.6rem, 1.25rem);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 600px;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.hero__meta-item strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.hero__meta-item span {
  font-size: 0.8125rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 1.5px solid var(--border-strong);
  border-radius: 12px;
}
.hero__scroll span {
  display: block;
  width: 3px; height: 6px;
  background: var(--brand);
  border-radius: 2px;
  margin: 6px auto;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- Trust ---------- */
.trust {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elev);
}
.trust__label {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trust__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  opacity: 0.85;
}
.trust__logos span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* ---------- Problem ---------- */
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.problem__card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.problem__card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}
.problem__num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--brand);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.problem__card h3 { margin-bottom: 12px; color: var(--text); }
.problem__card p { color: var(--text-muted); }

.problem__close {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ---------- Services ---------- */
.services { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.service-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad-surface);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), var(--surface) 60%);
  box-shadow: 0 0 0 1px var(--brand), 0 20px 50px -20px var(--brand-glow);
}

.service-card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand);
  border-radius: 12px;
  margin-bottom: 24px;
}
.service-card__icon svg { width: 26px; height: 26px; }

.service-card__tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.service-card--featured .service-card__tag { color: var(--brand); }

.service-card h3 { margin-bottom: 12px; font-size: 1.375rem; }
.service-card > p { color: var(--text-muted); margin-bottom: 24px; }

.service-card__list {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.service-card__list li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  padding: 8px 0 8px 24px;
  position: relative;
  border-top: 1px solid var(--border);
}
.service-card__list li:first-child { border-top: 0; }
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 2px;
  background: var(--brand);
}

.service-card__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.price-from {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.service-card__price strong {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.service-card__caveat {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(100, 116, 139, 0.15);
  line-height: 1.5;
}

.services__cta {
  text-align: center;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.services__cta p { color: var(--text-muted); }

/* ---------- Process ---------- */
.process__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  counter-reset: step;
}
.process__step {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process__step:hover { transform: translateY(-4px); border-color: var(--border-strong); }

.process__step-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: transparent;
  background: var(--grad-brand);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process__step-body h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.125rem;
}
.process__step-body p { color: var(--text-muted); font-size: 0.9375rem; }

.pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 3px 8px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 999px;
  font-weight: 500;
}

/* ---------- Why Axisco ---------- */
.why {
  background: var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why__intro .section-eyebrow { margin-bottom: 16px; }
.why__intro h2 { margin-bottom: 20px; }
.why__intro p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

.why__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.why__card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why__card:hover { transform: translateY(-4px); border-color: var(--brand); }
.why__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--brand);
  border-radius: 10px;
  margin-bottom: 18px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.why__icon svg { width: 22px; height: 22px; }
.why__card:hover .why__icon {
  background: rgba(37, 99, 235, 0.18);
  border-color: var(--brand);
}
.why__card h3 { font-size: 1rem; margin-bottom: 10px; }
.why__card p { color: var(--text-muted); font-size: 0.9375rem; }

/* ---------- Credentials ---------- */
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.credential {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.credential:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.credential__stat {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.credential__stat span {
  font-size: 1rem;
  color: var(--text-dim);
  margin-left: 6px;
  font-weight: 500;
  -webkit-text-fill-color: var(--text-dim);
  letter-spacing: 0.02em;
}
.credential h3 { margin-bottom: 12px; font-size: 1.125rem; margin-top: 16px; }
.credential p { color: var(--text-muted); font-size: 0.9375rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-elev); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq__layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.faq__head { position: sticky; top: 96px; }
.faq__head h2 { margin: 16px 0; }
.faq__head p { color: var(--text-muted); }
.faq__head a { color: var(--brand); border-bottom: 1px solid rgba(37,99,235,0.3); transition: border-color 0.2s; }
.faq__head a:hover { border-color: var(--brand); }

.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq__item[open] { border-color: var(--border-strong); }
.faq__item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--brand);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--brand); }

.faq__content {
  padding: 0 24px 24px;
  color: var(--text-muted);
}
.faq__content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  padding: 2px 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--brand);
}

/* ---------- Contact ---------- */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 { margin: 16px 0 20px; }
.contact__lede {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 40px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.contact__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
}
.contact__label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact__row a {
  color: var(--brand);
  border-bottom: 1px solid rgba(37, 99, 235, 0.3);
  transition: border-color 0.2s;
}
.contact__row a:hover { border-color: var(--brand); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}
.field__opt { color: var(--text-dim); font-weight: 400; }
.field input,
.field textarea,
.field select {
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  font-family: inherit;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%23aab4cc' stroke-width='2'><polyline points='3 5 6 8 9 5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact__submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px;
}
.contact__note {
  font-size: 0.875rem;
  color: var(--text-dim);
}
.contact__note a { color: var(--brand); }

.form-status {
  grid-column: 1 / -1;
  font-size: 0.9375rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.is-success {
  display: block;
  background: rgba(94, 234, 212, 0.1);
  border: 1px solid rgba(94, 234, 212, 0.3);
  color: var(--accent);
}
.form-status.is-error {
  display: block;
  background: rgba(251, 146, 60, 0.1);
  border: 1px solid rgba(251, 146, 60, 0.3);
  color: var(--warn);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand img { margin-bottom: 20px; }
.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 340px;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.8125rem;
}
.footer__cols a,
.footer__cols span {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s var(--ease);
}
.footer__cols a:hover { color: var(--brand); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.875rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .why__grid,
  .faq__layout,
  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .faq__head { position: static; }
  .why__cards { grid-template-columns: 1fr 1fr; }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Hide the mobile CTA link inside the menu on desktop */
.nav__mobile-cta { display: none; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__inner > .btn { display: none; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
  }
  .nav.is-open .nav__links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav.is-open .nav__links a:last-child { border-bottom: 0; }
  .nav__mobile-cta {
    display: inline-flex !important;
    margin-top: 16px;
    padding: 14px 22px !important;
    border-bottom: none !important;
    justify-content: center;
  }

  .hero { padding: 110px 0 60px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .trust__logos { gap: 24px; }

  .why__cards { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .contact__form { grid-template-columns: 1fr; padding: 28px 24px; }
  .contact__row { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }

  .service-card,
  .problem__card,
  .process__step,
  .credential,
  .why__card { padding: 24px 20px; }
}

/* ---------- Print / Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
