/*
Theme Name:   Abisco Child
Theme URI:    https://www.abiscos.com
Description:  Child theme for Hello Elementor — Abisco Solutions dark technical design.
Author:       Abisco Solutions
Template:     hello-elementor
Version:      1.0.0
Text Domain:  abisco-child
*/

/* ============================================================
   1. BRAND TOKENS  (from tokens.css)
   ============================================================ */
:root {
  /* Brand palette (from logo) */
  --abisco-navy-900: #0a1f3d;
  --abisco-navy-800: #0d2a4e;
  --abisco-navy-700: #133762;
  --abisco-blue-600: #1e4d8c;
  --abisco-blue-500: #2a63a8;
  --abisco-teal-500: #2ea39e;
  --abisco-teal-400: #3fbcb6;
  --abisco-teal-300: #6fd4cf;

  /* Neutrals */
  --bone-50: #faf7f2;
  --bone-100: #f5f1ea;
  --bone-200: #ece6dc;
  --bone-300: #d8cfbf;
  --ink-900: #0c1424;
  --ink-700: #2b3a55;
  --ink-500: #5a6883;
  --ink-300: #9aa3b7;

  /* Editorial accent */
  --gold-500: #b08842;
  --gold-300: #d4b87a;

  /* Type */
  --font-serif: "Source Serif 4", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:  "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  /* Layout */
  --container:        1280px;
  --container-narrow: 1040px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  /* ---- Dark theme tokens (Direction 03) ---- */
  --brand-primary:   #163A5F;
  --brand-secondary: #4B5B6A;
  --brand-accent:    #1F7A8C;
  --brand-text:      #1E1E1E;

  --tech-bg:    #091624;
  --tech-bg-2:  #0E2236;
  --tech-bg-3:  #13314C;
  --tech-line:  rgba(255,255,255,0.08);
  --tech-line-2:rgba(255,255,255,0.14);
  --tech-text:  rgba(255,255,255,0.92);
  --tech-muted: rgba(255,255,255,0.60);
  --tech-faint: rgba(255,255,255,0.38);

  --accent:       #1F7A8C;
  --accent-bright:#3FA7BC;
  --accent-glow:  #7CC3D1;
  --panel:        #0E2236;

  --t-fz-h1: clamp(40px, 6vw, 76px);
  --t-fz-h2: clamp(32px, 4vw, 52px);
}

/* ============================================================
   2. GLOBAL RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--tech-bg);
  color: var(--tech-text);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* ambient gradient overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(31,122,140,0.10), transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(22,58,95,0.30), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* Elementor content above the gradient */
.elementor-section-wrap,
.elementor-inner,
main.site-main,
#content {
  position: relative;
  z-index: 1;
}

/* ============================================================
   3. UTILITIES
   ============================================================ */
.t-wrap   { max-width: var(--container); margin: 0 auto; }
.eyebrow  {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.glow { color: var(--accent-glow); }

/* ============================================================
   4. NAVIGATION  (tech-chrome.js toggles .scrolled on #tnav)
   ============================================================ */
.tnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.tnav.scrolled {
  background: rgba(9,22,36,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 48px;
  border-bottom-color: var(--tech-line);
}
.tnav .logo { display: inline-flex; align-items: center; }
.tnav .logo img { height: 32px; width: auto; }
.tnav .links { display: flex; gap: 2px; }
.tnav .links a {
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--tech-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.tnav .links a:hover,
.tnav .links a.active { color: var(--accent-glow); background: rgba(31,122,140,0.10); }
.tnav .cta {
  background: var(--accent);
  color: #06121F;
  padding: 10px 18px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, box-shadow .2s;
  white-space: nowrap;
}
.tnav .cta:hover { background: var(--accent-bright); box-shadow: 0 0 32px rgba(31,122,140,0.4); }

/* hamburger */
.tnav .burger {
  display: none;
  background: transparent;
  border: 1px solid var(--tech-line-2);
  border-radius: 4px;
  width: 40px; height: 38px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.tnav .burger span { width: 18px; height: 2px; background: var(--tech-text); transition: .2s; }

/* mobile drawer */
.tmenu {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 84vw);
  background: var(--tech-bg-2);
  border-left: 1px solid var(--tech-line);
  z-index: 200;
  flex-direction: column;
  padding: 90px 28px 28px;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.tmenu.open { transform: translateX(0); }
.tmenu a {
  padding: 16px 0;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--tech-text);
  text-decoration: none;
  border-bottom: 1px solid var(--tech-line);
}
.tmenu a:hover { color: var(--accent-glow); }
.tmenu .close {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: 0;
  color: var(--tech-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}
.tmenu-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; }
.tmenu-backdrop.open { display: block; }

/* ============================================================
   5. PAGE HERO
   ============================================================ */
.tpage-hero {
  position: relative;
  z-index: 1;
  padding: 150px 48px 70px;
  max-width: var(--container);
  margin: 0 auto;
}
.tpage-hero .crumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tech-faint);
  margin-bottom: 28px;
  border-bottom: 1px solid var(--tech-line);
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.tpage-hero .crumbs a { color: inherit; text-decoration: none; }
.tpage-hero .crumbs a:hover { color: var(--accent-glow); }
.tpage-hero .crumbs .live { display: inline-flex; align-items: center; gap: 8px; color: var(--accent-bright); }
.tpage-hero .crumbs .live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: tpulse 2s infinite;
}
@keyframes tpulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.tpage-hero h1 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--t-fz-h1);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
  max-width: 18ch;
}
.tpage-hero h1 .glow { color: var(--accent-glow); position: relative; }
.tpage-hero h1 .glow::before {
  content: ""; position: absolute; inset: -20% -8%;
  background: radial-gradient(ellipse, rgba(31,122,140,0.22), transparent 60%);
  z-index: -1; filter: blur(18px);
}
.tpage-hero .lede {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--tech-muted);
  max-width: 62ch;
}
.tpage-hero .lede b { color: #fff; font-weight: 500; }

/* ============================================================
   6. SECTION HEADER
   ============================================================ */
.tsect-head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 28px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--tech-line);
}
.tsect-head .meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.tsect-head h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--t-fz-h2);
  line-height: 1.05;
  margin: 0;
  color: #fff;
  letter-spacing: -0.025em;
}
.tsect-head h2 .glow { color: var(--accent-glow); }
.tsect-head p { margin: 0; color: var(--tech-muted); font-size: 16px; line-height: 1.6; }

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .15s, background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }
.btn-teal  { background: var(--accent); color: #06121F; }
.btn-teal:hover { background: var(--accent-bright); box-shadow: 0 0 28px rgba(31,122,140,0.3); }
.btn-ghost { background: transparent; color: var(--tech-text); border-color: var(--tech-line-2); }
.btn-ghost:hover { border-color: var(--accent-bright); color: var(--accent-glow); }

/* ============================================================
   8. FOOTER
   ============================================================ */
footer.tsite {
  background: #050E18;
  border-top: 1px solid var(--tech-line);
  padding: 80px 48px 32px;
  position: relative;
  z-index: 1;
}
.tfoot-inner { max-width: var(--container); margin: 0 auto; }
.tfoot-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--tech-line);
}
.tfoot-brand img { height: 52px; margin-bottom: 22px; }
.tfoot-brand .tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-glow);
  line-height: 1.5;
  max-width: 32ch;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.tfoot-brand .addr {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--tech-muted);
  font-family: var(--font-mono);
}
.tfoot-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin: 0 0 18px;
  font-weight: 500;
}
.tfoot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tfoot-col a { color: var(--tech-muted); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.tfoot-col a:hover { color: #fff; }
.tfoot-bot {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tech-faint);
}

/* ============================================================
   9. CONTACT / BOOKING / AUDIT  (from contact.css)
   ============================================================ */
.csec { position: relative; z-index: 1; padding: 90px 48px; }
.csec .cwrap { max-width: var(--container); margin: 0 auto; }
.csec.alt { background: var(--tech-bg-2); border-top: 1px solid var(--tech-line); border-bottom: 1px solid var(--tech-line); }

.csec-head { margin-bottom: 44px; max-width: 60ch; }
.csec-head .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 14px; }
.csec-head h2 { font-family: var(--font-sans); font-weight: 700; font-size: clamp(30px,3.6vw,46px); line-height: 1.05; margin: 0 0 14px; color: #fff; letter-spacing: -0.025em; }
.csec-head h2 .glow { color: var(--accent-glow); }
.csec-head p { color: var(--tech-muted); font-size: 16px; line-height: 1.6; margin: 0; }

/* generic dark form fields */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tech-faint); }
.field input, .field select, .field textarea {
  font-family: var(--font-sans); font-size: 15px; padding: 13px 15px;
  border: 1px solid var(--tech-line-2); background: rgba(255,255,255,0.03);
  border-radius: 7px; color: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--tech-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-bright); box-shadow: 0 0 0 3px rgba(31,122,140,0.20);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237CC3D1' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field textarea { min-height: 110px; resize: vertical; }

/* Cal.com embed host + branded placeholder */
.cal-embed { border-radius: 14px; overflow: hidden; }
.cal-embed-ph {
  border: 1px dashed var(--tech-line-2); border-radius: 14px;
  background: radial-gradient(ellipse 70% 80% at 80% 0%, rgba(31,122,140,0.12), transparent 60%), rgba(255,255,255,0.02);
  padding: 56px 40px; text-align: center; display: flex; flex-direction: column; align-items: center;
}
.cal-embed-ph .ph-ic { width: 64px; height: 64px; border-radius: 14px; background: rgba(31,122,140,0.14); border: 1px solid var(--accent); display: grid; place-items: center; color: var(--accent-glow); margin-bottom: 22px; }
.cal-embed-ph .ph-t  { font-family: var(--font-sans); font-weight: 700; font-size: 22px; color: #fff; letter-spacing: -0.01em; margin-bottom: 10px; }
.cal-embed-ph .ph-d  { color: var(--tech-muted); font-size: 15px; line-height: 1.6; max-width: 52ch; margin-bottom: 26px; }
.cal-embed-ph .ph-steps { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 26px; }
.cal-embed-ph .ph-steps .s { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--tech-text); background: rgba(255,255,255,0.03); border: 1px solid var(--tech-line); border-radius: 8px; padding: 12px 14px; display: inline-flex; align-items: center; gap: 8px; }
.cal-embed-ph .ph-steps .s b { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); color: #06121F; display: inline-grid; place-items: center; font-size: 11px; }
.cal-embed-ph .ph-steps code { color: var(--accent-glow); }

/* Readiness Audit widget */
.audit-wrap { background: rgba(255,255,255,0.02); border: 1px solid var(--tech-line); border-radius: 16px; overflow: hidden; }
.audit-head { padding: 22px 30px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-bottom: 1px solid var(--tech-line); background: rgba(255,255,255,0.02); }
.audit-head .t { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-bright); }
.audit-head .step { font-family: var(--font-mono); font-size: 11.5px; color: var(--tech-muted); display: flex; align-items: center; gap: 14px; }
.audit-prog { display: flex; gap: 4px; }
.audit-prog span { width: 26px; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; }
.audit-prog span.done { background: var(--accent); }
.audit-prog span.now  { background: var(--accent-glow); }
.audit-body { padding: 46px 52px 52px; min-height: 420px; }

.intro-state { text-align: center; padding: 20px 0; }
.intro-state h3 { font-family: var(--font-sans); font-weight: 700; font-size: clamp(26px,3vw,38px); margin: 0 0 14px; color: #fff; letter-spacing: -0.02em; }
.intro-state h3 .glow { color: var(--accent-glow); }
.intro-state p { color: var(--tech-muted); font-size: 16px; line-height: 1.6; margin: 0 auto 30px; max-width: 50ch; }
.intro-dims { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin: 0 auto 34px; max-width: 600px; }
.intro-dims .d { padding: 12px 6px; background: rgba(255,255,255,0.04); border: 1px solid var(--tech-line); border-radius: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-bright); }

.q-dim  { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 16px; }
.q-text { font-family: var(--font-sans); font-weight: 600; font-size: clamp(22px,2.6vw,32px); line-height: 1.22; color: #fff; margin: 0 0 32px; max-width: 26ch; letter-spacing: -0.015em; }
.q-opts { display: grid; gap: 10px; }
.q-opt  { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 17px 22px; background: rgba(255,255,255,0.03); border: 1px solid var(--tech-line-2); border-radius: 8px; cursor: pointer; transition: .18s; text-align: left; font-family: var(--font-sans); font-size: 15px; color: var(--tech-text); width: 100%; }
.q-opt:hover { border-color: var(--accent-bright); background: rgba(31,122,140,0.07); transform: translateX(2px); }
.q-opt .key { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--accent-bright); border: 1px solid var(--tech-line-2); padding: 4px 8px; border-radius: 3px; flex-shrink: 0; }

.audit-navrow { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--tech-line); display: flex; justify-content: space-between; align-items: center; }
.audit-navrow .back { background: transparent; border: 0; color: var(--tech-muted); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; padding: 8px 0; }
.audit-navrow .back:hover { color: #fff; }
.audit-navrow .back:disabled { opacity: .3; cursor: not-allowed; }
.audit-navrow .help { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; color: var(--tech-faint); }

.capture { max-width: 560px; margin: 0 auto; }
.capture .ic { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 12px; background: rgba(31,122,140,0.14); border: 1px solid var(--accent); display: grid; place-items: center; color: var(--accent-glow); }
.capture h3 { font-family: var(--font-sans); font-weight: 700; font-size: clamp(24px,2.6vw,32px); color: #fff; margin: 0 0 10px; text-align: center; letter-spacing: -0.02em; }
.capture .csub { color: var(--tech-muted); font-size: 15px; line-height: 1.6; text-align: center; margin: 0 auto 28px; max-width: 42ch; }
.capture-form { display: grid; gap: 14px; }
.capture-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.capture-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; color: var(--tech-muted); line-height: 1.5; }
.capture-consent input { margin-top: 3px; accent-color: var(--accent); }
.capture-submit { margin-top: 6px; display: flex; justify-content: center; }
.capture-submit .btn { width: 100%; justify-content: center; padding: 16px; }

.result-state { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 44px; align-items: center; }
.score-block { text-align: center; }
.score-ring { position: relative; width: 200px; height: 200px; margin: 0 auto 18px; }
.score-ring svg { transform: rotate(-90deg); }
.score-ring .center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.score-ring .v  { font-family: var(--font-mono); font-weight: 600; font-size: 52px; line-height: 1; color: #fff; }
.score-ring .of { font-family: var(--font-mono); font-size: 13px; color: var(--tech-faint); margin-top: 4px; }
.score-block .tier { font-family: var(--font-sans); font-weight: 700; font-size: 22px; color: var(--accent-glow); letter-spacing: -0.01em; }
.score-block .tier-desc { margin-top: 10px; color: var(--tech-muted); font-size: 14px; line-height: 1.55; max-width: 32ch; margin-left: auto; margin-right: auto; }

.breakdown { display: flex; flex-direction: column; gap: 11px; }
.bd-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-bright); margin-bottom: 8px; }
.br-row { display: grid; grid-template-columns: 120px 1fr 38px; gap: 14px; align-items: center; }
.br-row .lab  { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--tech-muted); text-transform: uppercase; }
.br-row .bar  { height: 8px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.br-row .fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-glow)); box-shadow: 0 0 10px rgba(31,122,140,0.4); width: 0; transition: width 1s cubic-bezier(.2,.7,.2,1); }
.br-row .v    { text-align: right; font-family: var(--font-mono); color: var(--accent-glow); font-size: 12px; }

.emailed { margin-top: 30px; padding: 16px 20px; border: 1px solid var(--tech-line-2); border-radius: 10px; background: rgba(31,122,140,0.08); display: flex; gap: 14px; align-items: center; font-size: 14px; color: var(--tech-text); line-height: 1.5; }
.emailed .ico { color: var(--accent-glow); flex-shrink: 0; }
.emailed b { color: var(--accent-glow); }
.result-actions { margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--tech-line); display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; }
.result-actions .recap { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tech-faint); }
.reset-btn { background: transparent; border: 1px solid var(--tech-line-2); color: var(--tech-text); padding: 13px 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; border-radius: 5px; }
.reset-btn:hover { border-color: var(--accent-bright); color: var(--accent-glow); }

/* Contact info + general form */
.contact-grid { display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 56px; align-items: start; }
.info-block { padding: 22px 0; border-top: 1px solid var(--tech-line); display: grid; grid-template-columns: 110px 1fr; gap: 22px; align-items: start; }
.info-block:last-child { border-bottom: 1px solid var(--tech-line); }
.info-block .l { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tech-faint); padding-top: 4px; }
.info-block .v { font-family: var(--font-sans); font-size: 17px; color: #fff; line-height: 1.5; }
.info-block .v a { color: var(--accent-glow); text-decoration: none; }
.info-block .v a:hover { text-decoration: underline; }
.info-block .v small { display: block; font-size: 13px; color: var(--tech-muted); margin-top: 4px; }
.gen-form { background: rgba(255,255,255,0.02); border: 1px solid var(--tech-line); border-radius: 14px; padding: 34px; display: grid; gap: 14px; }
.gen-form h3 { font-family: var(--font-sans); font-weight: 700; font-size: 22px; color: #fff; margin: 0; letter-spacing: -0.01em; }
.gen-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gen-form .submit-row { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 4px; }
.gen-form .submit-row small { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.06em; color: var(--tech-faint); max-width: 38ch; line-height: 1.5; }

/* ============================================================
   10. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .tnav { padding: 14px 22px; }
  .tnav.scrolled { padding: 12px 22px; }
  .tnav .links { display: none; }
  .tnav .cta   { display: none; }
  .tnav .burger { display: flex; }
  .tmenu { display: flex; }
  .tpage-hero { padding: 120px 22px 50px; }
  .tsect-head { grid-template-columns: 1fr; gap: 16px; }
  footer.tsite { padding: 60px 22px 28px; }
  .tfoot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .csec { padding: 60px 22px; }
  .result-state { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .audit-body { padding: 32px 22px; min-height: 0; }
  .audit-head { padding: 16px 20px; }
  .intro-dims { grid-template-columns: repeat(3, 1fr); }
  .gen-form { padding: 24px; }
}
@media (max-width: 600px) {
  .tfoot-top { grid-template-columns: 1fr; gap: 28px; }
  .tpage-hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .capture-form .row2,
  .gen-form .row2 { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .br-row { grid-template-columns: 92px 1fr 32px; gap: 10px; }
}
