/* ============================================================
   PT NEXUS DIGITAL KARYA — Website Stylesheet
   Design: Deep navy + gold, "constellation network" identity
   Fonts: Space Grotesk (display), Inter (body), Space Mono (data)
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy-950: #080f22;
  --navy-900: #0b1630;
  --navy-850: #0f1c3d;
  --navy-800: #13234a;
  --navy-700: #1b2f5f;
  --navy-600: #26407c;

  --gold: #c9a227;
  --gold-light: #e6c65c;
  --gold-deep: #a8851b;

  --ink: #f4f6fb;
  --muted: #97a3c0;
  --muted-dim: #6b779a;

  --line: rgba(201, 162, 39, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;

  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 20px 50px -20px rgba(201, 162, 39, 0.35);

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

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;
}

/* ---------- 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-body);
  background: var(--navy-950);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Ambient background layer for the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(201, 162, 39, 0.10), transparent 60%),
    radial-gradient(900px 600px at 0% 30%, rgba(38, 64, 124, 0.35), transparent 55%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
}

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section-tight { padding: clamp(56px, 7vw, 96px) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.h-xl { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 5.2vw, 3.9rem); line-height: 1.04; letter-spacing: -0.02em; }
.h-lg { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.6vw, 2.9rem); line-height: 1.1; letter-spacing: -0.015em; }
.h-md { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.25rem, 2.1vw, 1.6rem); line-height: 1.2; letter-spacing: -0.01em; }

.lead { color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 60ch; }
.gold { color: var(--gold-light); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -18px rgba(201, 162, 39, 0.55); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); transform: translateY(-3px); }
.btn-wa {
  background: #25d366; color: #06331a; font-weight: 700;
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 20px 45px -18px rgba(37, 211, 102, 0.6); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8, 15, 34, 0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(150deg, var(--gold-light), var(--gold-deep));
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--navy-950);
  box-shadow: 0 8px 20px -8px rgba(201, 162, 39, 0.6);
}
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em; line-height: 1.15; }
.brand-name span { display: block; font-size: 0.66rem; letter-spacing: 0.28em; color: var(--gold-light); font-family: var(--font-mono); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 100px; font-size: 0.9rem; color: var(--muted);
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255, 255, 255, 0.04); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border: 1px solid var(--line-soft); }
.burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.25s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8, 15, 34, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 90px 32px 40px;
  transform: translateY(-100%);
  opacity: 0; pointer-events: none;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  padding: 14px 0; border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), color 0.2s;
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-menu .btn { margin-top: 24px; justify-content: center; font-size: 1rem; }
/* stagger */
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.40s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.46s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: 120px; overflow: hidden; }
#constellation { position: absolute; inset: 0; z-index: 0; opacity: 0.9; }
.hero-glow {
  position: absolute; top: 20%; right: -5%; width: 620px; height: 620px; z-index: 0;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 860px; }
.hero h1 { margin: 22px 0 26px; }
.hero .lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 48px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(255, 255, 255, 0.02);
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.03em; color: var(--muted);
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold); }
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.24em; color: var(--muted-dim);
  display: flex; flex-direction: column; align-items: center; gap: 10px; text-transform: uppercase;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: cue 2.2s infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============================================================
   STATS BAND
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat {
  padding: 32px 28px; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: linear-gradient(160deg, var(--navy-850), var(--navy-900));
  position: relative; overflow: hidden;
}
.stat::after { content: ""; position: absolute; top: 0; left: 0; width: 40%; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; color: var(--ink); }
.stat-num .gold { color: var(--gold-light); }
.stat-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.about-copy p { color: var(--muted); margin-top: 20px; max-width: 54ch; }
.about-list { display: grid; gap: 16px; margin-top: 34px; }
.about-list li { display: flex; align-items: flex-start; gap: 14px; }
.about-list .tick { flex-shrink: 0; width: 26px; height: 26px; border-radius: 8px; background: rgba(201, 162, 39, 0.12); display: grid; place-items: center; color: var(--gold-light); margin-top: 2px; }
.about-list .tick svg { width: 14px; height: 14px; }
.about-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.about-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, rgba(8, 15, 34, 0.25), rgba(8, 15, 34, 0.85)); }
.about-badge {
  position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2;
  padding: 20px 22px; border-radius: var(--radius);
  background: rgba(11, 22, 48, 0.72); backdrop-filter: blur(10px);
  border: 1px solid var(--line); display: flex; align-items: center; gap: 16px;
}
.about-badge .bm { width: 46px; height: 46px; border-radius: 12px; background: linear-gradient(150deg, var(--gold-light), var(--gold-deep)); display: grid; place-items: center; color: var(--navy-950); flex-shrink: 0; }
.about-badge .bm svg { width: 22px; height: 22px; }
.about-badge strong { display: block; font-family: var(--font-display); font-size: 1rem; }
.about-badge span { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   VISION & MISSION
   ============================================================ */
.vm { position: relative; }
.vision-card {
  border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line); position: relative; overflow: hidden;
  margin-bottom: 28px;
}
.vision-card .quote-mark { font-family: var(--font-display); font-size: 6rem; line-height: 0.6; color: var(--gold); opacity: 0.25; position: absolute; top: 30px; right: 34px; }
.vision-card p { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 2rem); line-height: 1.35; letter-spacing: -0.01em; max-width: 28ch; position: relative; z-index: 1; }
.vision-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.vision-tags .chip { background: rgba(201, 162, 39, 0.06); }

.mission-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mission-card {
  padding: 30px 26px; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: rgba(255, 255, 255, 0.015);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.mission-card:hover { transform: translateY(-6px); border-color: var(--line); background: rgba(201, 162, 39, 0.04); }
.mission-num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--gold-light); letter-spacing: 0.1em; }
.mission-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; margin: 16px 0 10px; }
.mission-card p { color: var(--muted); font-size: 0.92rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service {
  padding: 34px 30px; border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(165deg, rgba(19, 35, 74, 0.5), rgba(11, 22, 48, 0.4));
  position: relative; overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.service:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service:hover::before { opacity: 1; }
.service-ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(201, 162, 39, 0.1); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-light); margin-bottom: 22px; transition: background 0.4s, transform 0.4s var(--ease); }
.service:hover .service-ic { background: rgba(201, 162, 39, 0.18); transform: scale(1.05); }
.service-ic svg { width: 24px; height: 24px; }
.service h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; margin-bottom: 12px; }
.service p { color: var(--muted); font-size: 0.93rem; }

/* ============================================================
   WHY / FEATURES
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-item {
  display: flex; gap: 20px; padding: 28px 26px; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: rgba(255, 255, 255, 0.015);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.why-item:hover { transform: translateX(6px); border-color: var(--line); }
.why-ic { flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(150deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05)); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-light); }
.why-ic svg { width: 22px; height: 22px; }
.why-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   CREDENTIALS / LEGALITY
   ============================================================ */
.creds { background: linear-gradient(180deg, transparent, rgba(11, 22, 48, 0.5), transparent); }
.creds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.cred {
  background: var(--navy-900); padding: 26px 24px;
  transition: background 0.4s var(--ease);
}
.cred:hover { background: var(--navy-850); }
.cred-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dim); }
.cred-val { font-family: var(--font-mono); font-size: 1.05rem; color: var(--ink); margin-top: 10px; word-break: break-word; }
.cred-val .gold { color: var(--gold-light); }
.creds-note { margin-top: 24px; font-size: 0.85rem; color: var(--muted-dim); display: flex; align-items: center; gap: 10px; }
.creds-note svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.process-grid::before { content: ""; position: absolute; top: 26px; left: 8%; right: 8%; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); z-index: 0; }
.step { position: relative; z-index: 1; text-align: left; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--navy-900); border: 1px solid var(--gold);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--gold-light);
  margin-bottom: 22px; transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.step:hover .step-num { background: linear-gradient(150deg, var(--gold-light), var(--gold)); color: var(--navy-950); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.step h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 80px);
  background: linear-gradient(140deg, var(--navy-800), var(--navy-950));
  border: 1px solid var(--line); text-align: center; position: relative; overflow: hidden;
}
.cta-inner::before { content: ""; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(201, 162, 39, 0.14), transparent 60%); }
.cta-inner h2 { position: relative; margin-bottom: 20px; }
.cta-inner .lead { position: relative; margin: 0 auto 36px; }
.cta-actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line-soft); padding: 72px 0 32px; background: rgba(8, 15, 34, 0.6); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.4fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; margin-top: 20px; max-width: 38ch; }
.footer h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: var(--muted); font-size: 0.92rem; transition: color 0.25s, padding-left 0.25s; }
.footer-links a:hover { color: var(--ink); padding-left: 6px; }
.footer-contact { display: grid; gap: 16px; }
.footer-contact a, .footer-contact span { display: flex; gap: 12px; color: var(--muted); font-size: 0.92rem; align-items: flex-start; transition: color 0.25s; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-top: 28px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--muted-dim); font-family: var(--font-mono); }
.footer-bottom .footer-legal { display: flex; gap: 22px; }
.footer-bottom .footer-legal a { font-size: 0.82rem; color: var(--muted); }
.footer-bottom .footer-legal a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero { position: relative; padding: clamp(140px, 18vw, 200px) 0 clamp(50px, 7vw, 90px); overflow: hidden; }
.page-hero #constellation { opacity: 0.5; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: 20px 0 18px; }
.breadcrumb { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--muted-dim); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-info { display: grid; gap: 18px; }
.info-card {
  display: flex; gap: 18px; padding: 26px; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.info-card:hover { border-color: var(--line); transform: translateY(-4px); }
.info-ic { flex-shrink: 0; width: 50px; height: 50px; border-radius: 13px; background: rgba(201, 162, 39, 0.1); border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold-light); }
.info-ic svg { width: 22px; height: 22px; }
.info-card .label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dim); margin-bottom: 6px; }
.info-card .val { font-size: 1rem; color: var(--ink); word-break: break-word; }
.info-card a.val:hover { color: var(--gold-light); }

.form-card {
  padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: linear-gradient(160deg, var(--navy-850), var(--navy-900));
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.field label .req { color: var(--gold-light); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(8, 15, 34, 0.6); border: 1px solid var(--line-soft);
  color: var(--ink); font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-dim); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: rgba(8, 15, 34, 0.9);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted-dim); margin-top: 16px; }

.map-wrap { margin-top: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(0.3) contrast(1.05); }

/* ============================================================
   PRIVACY / PROSE
   ============================================================ */
.prose { max-width: 780px; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: 48px 0 16px; letter-spacing: -0.01em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin: 28px 0 12px; color: var(--gold-light); }
.prose p { color: var(--muted); margin-bottom: 16px; }
.prose ul { display: grid; gap: 12px; margin: 8px 0 20px; }
.prose ul li { color: var(--muted); padding-left: 26px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.prose a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }
.prose .update-tag { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-dim); padding: 8px 16px; border: 1px solid var(--line-soft); border-radius: 100px; display: inline-block; margin-bottom: 40px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* Hero load animation */
.hero-anim { opacity: 0; transform: translateY(24px); animation: heroIn 1s var(--ease) forwards; }
.hero-anim.d1 { animation-delay: 0.15s; }
.hero-anim.d2 { animation-delay: 0.3s; }
.hero-anim.d3 { animation-delay: 0.45s; }
.hero-anim.d4 { animation-delay: 0.6s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-cta .btn { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { min-height: 340px; }
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .process-grid::before { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  .stats { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .scroll-cue { display: none; }
}

/* Accessibility */
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-anim { opacity: 1; transform: none; }
}
