/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── DESIGN TOKENS (Calm Refresh) ─── */
:root {
  /* Gold — single source of truth. Use sparingly. */
  --gold:        #E29105;
  --gold-deep:   #B56F04;
  --gold-pale:   rgba(226,145,5,0.08);
  --gold-border: rgba(226,145,5,0.28);

  /* Ink */
  --ink:         #1A1E2E;
  --ink-soft:    #3D4452;
  --ink-muted:   #6B7280;
  --ink-faint:   #B6B2A6;

  /* Surfaces */
  --bg:          #FAF8F1;
  --bg-cool:     #F7F7F5;
  --card:        #FFFFFF;
  --border:      #E8E2D2;
  --border-cool: #E5E7EB;

  /* Legacy aliases — DO NOT REMOVE */
  --gold-hover:  var(--gold-deep);
  --gold-light:  #FFB83D;
  --dark:        var(--ink);
  --dark-mid:    #2C3248;
  --charcoal:    var(--ink-soft);
  --mid:         var(--ink-muted);
  --light:       var(--ink-faint);
  --white:       #FFFFFF;
  --bg-warm:     var(--bg);

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(26,30,46,0.04);
  --shadow-sm:   0 2px 6px rgba(26,30,46,0.05);
  --shadow-md:   0 10px 24px rgba(26,30,46,0.08);
  --shadow-lg:   0 22px 48px rgba(26,30,46,0.10);

  /* Radii */
  --r:           4px;
  --r-sm:        4px;
  --r-lg:        6px;
  --nav-h:       68px;
}

/* ─── BASE TYPE ─── */
body {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  background: var(--card);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(40px, 4.5vw, 58px); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; }
h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.025em; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: -0.015em; }
p  { color: var(--ink-soft); line-height: 1.6; }
a  { text-decoration: none; color: var(--gold); }
a:hover { color: var(--gold-deep); }

/* ─── MONO UTILITIES ─── */
.mono, .mono-kicker, .mono-code, .mono-tag {
  font-family: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  letter-spacing: 0.05em;
}
.mono-kicker {
  font-size: 11px; font-weight: 500; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 12px;
}
.mono-kicker::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--gold);
}
.mono-code {
  font-size: 11px; color: var(--gold); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mono-tag {
  font-size: 10.5px; color: var(--ink-soft); letter-spacing: 0.06em;
  border: 1px solid var(--border); padding: 3px 9px; border-radius: 2px;
  text-transform: uppercase;
}

/* ─── LAYOUT ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-white   { background: var(--white); }
.bg-light   { background: var(--bg); }
.bg-warm    { background: var(--bg-warm); }
.bg-dark    { background: var(--dark); }

/* ─── EYEBROW — alias of .mono-kicker ─── */
.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--gold); border-radius: 0;
}

/* ─── SECTION HEADINGS ─── */
.section-h2 { margin-bottom: 10px; }
.section-sub {
  font-size: 1.05rem; color: var(--charcoal);
  margin-bottom: 0; max-width: 620px;
}
.section-rule {
  width: 100%; height: 1px;
  background: var(--border); margin: 32px 0;
}
.section-cta { margin-top: 40px; text-align: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter Tight', sans-serif; font-weight: 600; font-size: 13.5px;
  padding: 12px 22px; border-radius: var(--r); border: none;
  cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  text-decoration: none; white-space: nowrap; letter-spacing: 0.005em;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: none; }
.btn-gold:hover { background: var(--gold-deep); color: #fff; transform: none; box-shadow: none; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--dark-mid); color: #fff; }
.btn-outline {
  background: transparent; color: var(--ink); border: 1px solid var(--ink);
}
.btn-outline:hover {
  border-color: var(--ink); color: var(--ink); background: var(--gold-pale);
}
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold-border);
}
.btn-outline-gold:hover { background: var(--gold-pale); border-color: var(--gold); }
.btn-lg { padding: 14px 26px; font-size: 14.5px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── PILLS ─── */
.pill {
  display: inline-flex; align-items: center;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.03em;
  padding: 6px 14px; border-radius: 20px; text-decoration: none;
  transition: all 0.18s;
}
.pill-outline {
  background: transparent; color: var(--charcoal);
  border: 1px solid var(--border);
}
.pill-gold {
  background: rgba(226,145,5,0.10); color: var(--gold);
  border: 1px solid rgba(226,145,5,0.30);
}
.pill-gold:hover { background: rgba(226,145,5,0.18); color: var(--gold); }

/* ─── LOGO ─── */
.logo-mark {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon-img { width: 34px; height: 40px; object-fit: contain; flex-shrink: 0; }
.logo-wordmark-img { width: 138px; height: auto; object-fit: contain; flex-shrink: 0; display: block; }

/* ─── NAV ─── */
.site-nav {
  position: sticky; top: 0; z-index: 900;
  background: var(--bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  height: 100%;
  display: flex; align-items: center; gap: 32px;
}
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1;
}
.nav-links a, .nav-contact-btn {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  padding: 6px 12px; border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
  text-decoration: none; background: none; border: none; cursor: pointer;
}
.nav-links a.active { color: var(--ink); font-weight: 600; background: transparent; }
.nav-links a:hover, .nav-contact-btn:hover { color: var(--ink); background: transparent; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ─── ACCOUNT DROPDOWN ─── */
.account-dropdown-wrap { position: relative; }
.account-toggle {
  display: flex; flex-direction: column; gap: 4px;
  background: none; border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer; padding: 9px 10px;
  transition: border-color 0.15s, background 0.15s;
}
.account-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: background 0.15s;
}
.account-toggle:hover {
  border-color: var(--gold); background: var(--gold-pale);
}
.account-toggle:hover span { background: var(--gold); }
.account-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  width: 210px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-md);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 950;
}
.account-dropdown.open { display: flex; }
.account-dropdown button,
.account-dropdown a {
  display: block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: var(--dark);
  padding: 13px 18px;
  background: none; border: none; cursor: pointer;
  text-align: left; text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.account-dropdown button:last-child,
.account-dropdown a:last-child { border-bottom: none; }
.account-dropdown button:hover,
.account-dropdown a:hover { background: var(--bg); color: var(--gold); }

/* ─── MOBILE TOGGLE ─── */
.mob-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mob-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: all 0.2s;
}

/* ─── MOBILE DRAWER ─── */
.mob-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.35); z-index: 1000;
}
.mob-drawer {
  position: fixed; top: 0; right: -320px; bottom: 0;
  width: 300px; background: var(--white);
  box-shadow: var(--shadow-lg); z-index: 1001;
  transition: right 0.28s ease;
  display: flex; flex-direction: column;
}
.mob-drawer.open { right: 0; }
.mob-overlay.open { display: block; }
.mob-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.mob-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--mid); padding: 4px 8px;
}
.mob-nav {
  display: flex; flex-direction: column; gap: 4px;
  padding: 20px;
}
.mob-nav a {
  font-size: 1rem; font-weight: 500; color: var(--charcoal);
  padding: 12px 16px; border-radius: var(--r-sm);
  text-decoration: none; transition: background 0.15s;
}
.mob-nav a:hover { background: var(--bg); color: var(--dark); }
.mob-nav a.active { color: var(--dark); font-weight: 600; }
.mob-nav .btn { margin-top: 12px; justify-content: center; }

/* ─── MODALS ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.48); z-index: 2000;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-box h3 {
  font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
  margin-bottom: 6px;
}
.modal-subtitle { font-size: 0.9rem; color: var(--mid); margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 1.1rem; color: var(--mid); padding: 6px 10px;
  border-radius: var(--r-sm);
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.modal-close:hover { background: var(--bg); color: var(--dark); }
.modal-fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.modal-fg label {
  font-size: 0.82rem; font-weight: 600; color: var(--dark);
  letter-spacing: 0.02em;
}
.modal-fg input,
.modal-fg select,
.modal-fg textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.92rem; color: var(--ink);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  outline: none; transition: border-color 0.15s;
  width: 100%;
}
.modal-fg input::placeholder,
.modal-fg textarea::placeholder { color: var(--ink-faint); }
.modal-fg input:focus,
.modal-fg select:focus,
.modal-fg textarea:focus {
  border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.modal-fg textarea { resize: vertical; min-height: 110px; }
.modal-fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 10px;
  padding-right: 32px; cursor: pointer;
}
.modal-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.modal-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.modal-divider span { font-size: 0.8rem; color: var(--mid); white-space: nowrap; }
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.modal-success {
  text-align: center; padding: 20px 0;
}
.modal-success-icon {
  width: 56px; height: 56px;
  background: rgba(226,145,5,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--gold);
}
.modal-success h3 { margin-bottom: 8px; }
.modal-success p { font-size: 0.95rem; color: var(--charcoal); }

/* ─── HERO — white bg, keep diagonal glow behind image, drop grid + pills ─── */
.hero {
  position: relative; overflow: hidden;
  padding: 64px 0 0;
  background: var(--card);
}
.hero-grid-bg { display: none !important; }
.hero-pills    { display: none !important; }

/* Keep the diagonal gold glow — calm direction tuning */
.hero-glow {
  position: absolute; right: -6%; top: 0;
  width: 62%; height: 88%; pointer-events: none;
  background: linear-gradient(135deg, rgba(226,145,5,0.14), rgba(226,145,5,0));
  clip-path: polygon(20% 0, 100% 0, 84% 100%, 0 100%);
  z-index: 0;
}

/* Hero content sits above the glow */
.hero .container, .hero-layout, .stats-strip { position: relative; z-index: 1; }

.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding-bottom: 48px;
}
.hero-left { max-width: 540px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: 16px; color: var(--ink-soft);
  margin-bottom: 32px; line-height: 1.6; max-width: 520px; font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero visual — flat, no shadow */
.hero-lab-visual {
  position: relative;
  min-height: 420px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: none;
  background: var(--border-cool);
}
.hero-lab-visual::after { content: none; }
.hero-lab-visual img {
  width: 100%; height: 100%; min-height: 420px;
  object-fit: cover; display: block;
  filter: contrast(0.98) saturate(0.92);
}

/* Caption panel — full-width bottom strip, no gold left border */
.hero-lab-panel {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: auto;
  background: #fff;
  border: none; border-top: 1px solid var(--border-cool);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 22px;
  padding: 18px 22px;
  font-size: 13px; line-height: 1.45;
}
.hero-lab-panel strong {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 18px; color: var(--ink);
  line-height: 1; letter-spacing: -0.02em;
}
.panel-kicker {
  font-family: 'JetBrains Mono', monospace;
  color: var(--gold); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.panel-line { width: 1px; height: 32px; background: var(--border); }

/* Stats strip — hairline rules, no gold top border */
.stats-strip {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--card);
  border-top: 1px solid var(--border-cool);
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.stat-item {
  display: flex; flex-direction: column; gap: 7px;
  padding: 22px 24px;
  border-right: 1px solid var(--border-cool);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--ink);
  letter-spacing: -0.025em; line-height: 1.1;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 500; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.stat-divider { display: none; }

/* ─── SERVICE CARDS — no icon tiles, mono codes, hairline grid ─── */
.service-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.service-card {
  background: transparent;
  border: none; border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 26px 26px 24px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 200px;
  transition: background 0.15s;
}
.service-card:last-child { border-right: none; }
.service-card:hover {
  background: var(--gold-pale);
  box-shadow: none; transform: none; border-color: var(--border);
}
.service-card-icon { display: none; }
.service-card h3 { font-size: 22px; margin: 0; line-height: 1.15; }
.service-card p { font-size: 13.5px; margin: 0; flex: 1; color: var(--ink-soft); }
.card-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; color: var(--ink);
  letter-spacing: 0.05em; text-transform: uppercase;
  text-decoration: none;
}
.card-link:hover { color: var(--gold); }

/* Card header row (code + tag) */
.service-card-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}

/* ─── PROCESS / HOW IT WORKS ─── */
.process-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.process-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 32px;
}
.process-box-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500;
}
.step-body strong {
  display: block;
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--ink); letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.step-body p { font-size: 0.88rem; margin: 0; }

/* Custom panel box — flat, no gradient */
.custom-panel-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  justify-content: center;
}
.custom-panel-box h3 { font-size: 22px; letter-spacing: -0.025em; }
.custom-panel-box p { font-size: 0.95rem; }
.custom-panel-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ─── ACCENT — shared color utility ─── */
.accent { color: var(--gold); }

/* ─── PAGE HERO (inner pages) — flat, no grid pattern ─── */
.page-hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 56px 0 48px;
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 14px; letter-spacing: -0.03em; }
.page-hero p { font-size: 16px; color: var(--ink-soft); max-width: 580px; }

/* ─── CTA BANNER ─── */
.cta-banner { background: var(--ink); padding: 72px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner h2 .accent { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.68); margin-bottom: 32px; font-size: 16px; }
.cta-banner .btn-gold { box-shadow: none; }

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item .ci-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: rgba(226,145,5,0.10);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-info-item .ci-icon svg { width: 18px; height: 18px; }
.contact-info-item h4 { font-size: 0.85rem; color: var(--mid); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem; color: var(--charcoal); line-height: 1.6;
  text-decoration: none;
}
.contact-info-item a:hover { color: var(--gold); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg.full { grid-column: 1 / -1; }
.fg label {
  font-size: 0.82rem; font-weight: 600; color: var(--dark);
  letter-spacing: 0.02em;
}
.fg input, .fg select, .fg textarea {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.92rem; color: var(--ink);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 11px 14px;
  outline: none; transition: border-color 0.15s;
  width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--ink-faint); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 10px; padding-right: 32px; }

.form-note {
  font-size: 0.78rem; color: var(--mid);
  margin-top: 16px; line-height: 1.6;
}
.form-success {
  display: none; text-align: center; padding: 40px 0;
}
.form-success-icon {
  width: 56px; height: 56px;
  background: rgba(226,145,5,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--gold);
}
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; }

/* ─── VERIFY COA ─── */
.verify-box {
  max-width: 600px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.verify-input-row { display: flex; gap: 12px; margin-top: 8px; }
.verify-input-row input { flex: 1; }
.verify-result {
  display: none; margin-top: 24px;
  border-radius: var(--r);
  padding: 20px 24px;
  border: 1px solid;
}
.verify-result.valid {
  background: var(--gold-pale); border-color: rgba(226,145,5,0.30); color: rgb(102,62,0);
}
.verify-result.invalid {
  background: #fff7ed; border-color: #fdba74; color: #9a3412;
}

/* ─── SERVICES PAGE ─── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-full-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-full-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}
.service-full-card .service-card-head { margin-bottom: 12px; }
.service-full-card h3 { margin-bottom: 10px; }
.service-full-card p { font-size: 0.92rem; margin-bottom: 16px; }
.service-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 0.74rem; font-weight: 600;
  padding: 4px 10px; border-radius: 20px;
  background: rgba(226,145,5,0.10);
  color: var(--gold);
  border: 1px solid rgba(226,145,5,0.25);
  letter-spacing: 0.03em;
}

/* Pricing table */
.pricing-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.92rem;
}
.pricing-table th {
  background: var(--dark); color: #fff;
  padding: 14px 20px; text-align: left;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.pricing-table th:first-child { border-radius: var(--r-sm) 0 0 0; }
.pricing-table th:last-child  { border-radius: 0 var(--r-sm) 0 0; }
.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--bg); }
.price-tag {
  font-weight: 700; color: var(--dark); font-size: 1rem;
}

/* ─── ABOUT PAGE ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
}
.value-card .service-card-icon { display: none; }
.value-card h4 {
  font-family: 'Inter Tight', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: -0.02em; margin-bottom: 6px;
}
.value-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-mark { margin-bottom: 16px; }
.footer-tagline { font-size: 0.88rem; color: var(--mid); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); transition: all 0.18s;
  text-decoration: none;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-pale); }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.88rem; color: var(--mid);
  text-decoration: none; transition: color 0.15s;
}
.footer-col a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.88rem; color: var(--mid);
  text-decoration: none; transition: color 0.15s;
  line-height: 1.4;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact-item:hover { color: var(--gold); }
a.footer-contact-item:hover { color: var(--gold); }

.footer-bottom { padding: 24px 0; }
.footer-disc {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 12px; line-height: 1.65;
  color: var(--ink-soft); margin-bottom: 16px;
}
.footer-disc strong { color: var(--ink); }
.footer-bottom-bar {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 0.76rem; color: var(--mid);
}
.footer-legal { display: flex; align-items: center; gap: 8px; }
.footer-legal a { color: var(--mid); text-decoration: none; }
.footer-legal a:hover { color: var(--gold); }
.footer-note { margin-left: auto; }

/* ─── PAYMENT PAGE ─── */
.payment-section {
  min-height: calc(100vh - var(--nav-h));
  background: var(--bg);
  padding: 64px 0;
}
.payment-wrap {
  max-width: 680px; margin: 0 auto; padding: 0 28px;
}
.payment-page-title {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--dark); margin-bottom: 28px;
}
.payment-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.payment-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 10px;
}
.payment-card-header h3 {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 1.15rem; font-weight: 700;
}
.encrypted-badge {
  font-size: 0.76rem; font-weight: 600;
  color: var(--mid); display: flex; align-items: center; gap: 4px;
  flex-shrink: 0;
}
.payment-subtext {
  font-size: 0.92rem; color: var(--charcoal); margin-bottom: 28px; line-height: 1.6;
}
.payment-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.payment-note { font-size: 0.78rem; color: var(--mid); margin-top: 6px; }
.payment-fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.payment-fg label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.payment-fg input {
  font-family: 'Inter Tight', sans-serif; font-size: 0.92rem; color: var(--ink);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 11px 14px;
  outline: none; transition: border-color 0.15s; width: 100%;
}
.payment-fg input::placeholder { color: var(--ink-faint); }
.payment-fg input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-pale);
}
.payment-divider { height: 1px; background: var(--border); margin: 24px 0; }
.card-note-row {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
  font-size: 0.78rem; color: var(--mid);
}

/* ─── ACCOUNT PAGE ─── */
.account-hero {
  background: var(--dark); padding: 48px 0 40px;
}
.account-hero h1 { color: #fff; font-size: 2rem; margin-bottom: 6px; }
.account-hero p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.account-body { background: var(--bg); min-height: 60vh; padding: 48px 0; }
.account-wrap { max-width: 900px; margin: 0 auto; padding: 0 28px; }
.account-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px; margin-bottom: 24px;
}
.account-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.account-section-head h3 { font-size: 1.1rem; }
.coa-empty {
  text-align: center; padding: 48px 0;
  color: var(--mid); font-size: 0.95rem;
}
.coa-empty svg { width: 40px; height: 40px; color: var(--light); margin: 0 auto 12px; display: block; }
.coa-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.coa-table th {
  text-align: left; font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mid);
  padding: 0 0 10px; border-bottom: 2px solid var(--border);
  font-weight: 600;
}
.coa-table td { padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--charcoal); }
.coa-table tr:last-child td { border-bottom: none; }
.status-badge {
  display: inline-flex; align-items: center;
  font-size: 0.74rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; letter-spacing: 0.04em;
}
.status-ready { background: rgba(226,145,5,0.12); color: var(--gold); border: 1px solid rgba(226,145,5,0.30); }
.status-pending { background: rgba(107,114,128,0.10); color: var(--mid); border: 1px solid var(--border); }
.saved-card-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.saved-card-row:last-of-type { border-bottom: none; }
.saved-card-info { display: flex; align-items: center; gap: 12px; }
.saved-card-icon {
  width: 36px; height: 36px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.saved-card-num { font-size: 0.9rem; color: var(--dark); font-weight: 600; }
.saved-card-exp { font-size: 0.8rem; color: var(--mid); }

/* ─── SIGNUP PAGE ─── */
.auth-section {
  min-height: calc(100vh - var(--nav-h));
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 64px 28px;
}
.auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  width: 100%; max-width: 440px;
  box-shadow: var(--shadow-md);
}
.auth-card h2 { font-size: 1.75rem; margin-bottom: 6px; }
.auth-subtitle { font-size: 0.9rem; color: var(--mid); margin-bottom: 32px; }
.auth-footer-text {
  text-align: center; margin-top: 20px;
  font-size: 0.88rem; color: var(--mid);
}
.auth-footer-text a { color: var(--gold); font-weight: 600; }
.auth-error {
  background: #fff7ed; border: 1px solid #fdba74;
  border-radius: var(--r-sm); padding: 12px 16px;
  font-size: 0.88rem; color: #9a3412;
  margin-bottom: 16px; display: none;
}

/* ─── ANIMATIONS ─── */
.fade {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade.in { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; gap: 32px; }
  .hero-right { order: -1; }
  .hero-lab-visual { min-height: 320px; }
  .hero-lab-visual img { min-height: 320px; }
  .stats-strip { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-right: 1px solid var(--border-cool); }
  .service-cards { grid-template-columns: 1fr; border-top: 1px solid var(--border); }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-note { margin-left: 0; }
}
@media (max-width: 680px) {
  :root { --nav-h: 56px; }
  h1 { font-size: clamp(32px, 8vw, 44px); }
  h2 { font-size: clamp(24px, 6vw, 32px); }
  .nav-links { display: none; }
  .mob-toggle { display: flex; }
  .hero { padding: 48px 0 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .form-card { padding: 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(30px, 7vw, 40px); }
  .hero-lab-panel { padding: 14px 16px; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .auth-card { padding: 32px 24px; }
  .payment-card { padding: 24px; }
  .payment-row { grid-template-columns: 1fr; }
  .modal-box { padding: 28px 24px; }
}

/* ─── Coming-Soon Overlay ─── */
.coming-soon-wrap { position: relative; }
.coming-soon-overlay {
  position: absolute;
  inset: -12px;
  background: rgba(250,248,241,0.90);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: var(--r-lg);
  border: 1px dashed var(--gold-border);
  gap: 10px;
  padding: 40px 24px;
  text-align: center;
}
.coming-soon-badge {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  padding: 5px 14px;
}
.coming-soon-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
}
.coming-soon-sub {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 380px;
  margin: 0;
}

/* ─── Multi-select (Testing Needed) ─── */
select[multiple] {
  height: auto;
  min-height: 148px;
  padding: 4px 0;
  cursor: default;
}
select[multiple] option {
  padding: 7px 12px;
  line-height: 1.5;
}
select[multiple] option:disabled {
  color: var(--ink-faint);
  cursor: not-allowed;
  font-style: italic;
}

/* ─── Submit button disabled state ─── */
.btn:disabled,
.btn[disabled] {
  opacity: 0.40;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── Pricing: price amount and contact link ─── */
.price-amt {
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.price-link {
  color: var(--gold);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.price-link:hover { text-decoration: underline; }
