/* ==========================================================================
   Tech Detective LLC — Shared Design System
   Ubiquiti-inspired: confident, clean, techy, generous whitespace,
   rounded corners everywhere, soft shadows instead of hard borders.
   ========================================================================== */

:root {
  --navy:      #1B2A4A;
  --navy-dk:   #12203A;
  --navy-lt:   #2A3F66;
  --gold:      #B8972A;
  --gold-dk:   #8A6E1B;
  --gold-lt:   #D4BC6A;
  --white:     #FFFFFF;
  --bg:        #F5F7FA;
  --bg-alt:    #EEF1F6;
  --border:    #E2E6EE;
  --border-gold: rgba(184,151,42,0.25);
  --error:     #C0392B;
  --text:      #1B2A4A;
  --text2:     #4A5A73;
  --text3:     #65748A;

  --r-sm:   8px;
  --r:      14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 999px;

  --shadow-sm: 0 1px 3px rgba(27,42,74,0.06);
  --shadow:    0 4px 20px rgba(27,42,74,0.07);
  --shadow-md: 0 8px 32px rgba(27,42,74,0.10);
  --shadow-lg: 0 16px 56px rgba(27,42,74,0.14);

  --space-1: 8px;  --space-2: 16px; --space-3: 24px; --space-4: 32px;
  --space-5: 48px; --space-6: 72px; --space-7: 120px;

  --g-navy: linear-gradient(160deg, var(--navy-lt) 0%, var(--navy) 55%, var(--navy-dk) 100%);
  --g-navy-h: linear-gradient(90deg, var(--navy-dk) 0%, var(--navy) 35%, var(--navy) 65%, var(--navy-dk) 100%);
  --g-card: linear-gradient(160deg, #ffffff 0%, #f7f9fc 100%);
  --g-gold-subtle: linear-gradient(135deg, #f4ecd4 0%, #e9dcb0 100%);
  --g-section: linear-gradient(180deg, #f5f7fa 0%, #eaeef4 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Geologica', sans-serif; line-height: 1.15; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(36px, 5.5vw, 60px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 19px; font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p { color: var(--text2); }
a { color: inherit; }
img { max-width: 100%; border-radius: var(--r-lg); }
svg { display: block; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: var(--space-7) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--g-gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-full); padding: 6px 14px; margin-bottom: 20px;
}
.eyebrow::before { content: ''; display: block; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.eyebrow-light { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); color: var(--gold-lt); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geologica', sans-serif; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--r-full);
  text-decoration: none; cursor: pointer; border: none; transition: all 0.2s ease; white-space: nowrap;
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-navy:hover { background: var(--navy-lt); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-gold:hover { background: var(--gold-lt); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.btn-outline-light {
  background: rgba(255,255,255,0.06);
  color: #fff; border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.12); }
.btn-ghost { background: transparent; color: var(--navy); padding-left: 0; padding-right: 0; font-weight: 600; box-shadow: none; }
.btn-ghost svg { transition: transform 0.18s; }
.btn-ghost:hover svg { transform: translateX(4px); }
.btn-ghost:hover { background: transparent; transform: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--g-navy-h);
}
.nav-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 0 28px; height: 88px; }
.logo-text { display: inline-flex; align-items: center; flex-shrink: 0; font-family: 'Geologica', sans-serif; font-size: 17px; font-weight: 700; color: #fff; text-decoration: none; transition: opacity 0.15s; }
.logo-text:hover { opacity: 0.8; }
.logo-text span { color: var(--gold-lt); }
nav ul { display: flex; gap: 30px; list-style: none; }
nav ul a { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.15s; }
nav ul a:hover, nav ul a.active { color: #fff; }
.nav-menu { display: flex; align-items: center; justify-content: space-between; flex: 1; min-width: 0; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 6px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.nav-toggle svg[hidden] { display: none; }
.nav-phone { display: flex; align-items: center; gap: 7px; font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 700; color: var(--gold-lt); text-decoration: none; transition: color 0.15s; }
.nav-phone:hover { color: #fff; }
.nav-cta {
  font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700;
  background: var(--gold); color: var(--navy);
  padding: 10px 20px; border-radius: var(--r-full); text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s;
}
.nav-cta:hover { background: var(--gold-lt); box-shadow: var(--shadow); }

/* ── HERO (homepage) ── */
.hero {
  background: var(--g-navy);
  padding: var(--space-7) 0 96px;
  position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 80% at 68% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 68% 50%, black 0%, transparent 70%);
}
.hero-glow {
  position: absolute; pointer-events: none;
  width: 560px; height: 560px;
  top: 50%; right: 8%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(184,151,42,0.08) 0%, transparent 70%);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 22px; color: #fff; }
.hero-gold { color: var(--gold-lt); }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.66); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-phone { display: flex; align-items: center; gap: 8px; font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.hero-phone svg { color: var(--gold-lt); }
.hero-phone:hover { color: #fff; }
.hero-secondary-link { display: block; margin-top: 22px; font-size: 14px; color: rgba(255,255,255,0.58); text-decoration: none; }
.hero-secondary-link a { color: var(--gold-lt); text-decoration: underline; }
.hero-secondary-link a:hover { color: #fff; }

.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.panel-label { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 22px; }
.panel-items { display: flex; flex-direction: column; gap: 12px; }
.panel-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg); padding: 14px 16px;
}
.panel-item-icon {
  width: 38px; height: 38px;
  background: rgba(184,151,42,0.16);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold-lt); flex-shrink: 0;
}
.panel-item-text strong { display: block; font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 1px; }
.panel-item-text span { font-size: 12px; color: rgba(255,255,255,0.62); }
.panel-rating {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 14px;
}
.panel-rating-num { font-family: 'Geologica', sans-serif; font-size: 40px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.panel-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.panel-stars span { color: var(--gold-lt); font-size: 15px; }
.panel-rating-label { font-size: 13px; color: rgba(255,255,255,0.58); }

/* ── PAGE HERO (secondary pages) ── */
.page-hero {
  background: var(--g-navy);
  padding: 176px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero-lg { padding: 176px 0 88px; }
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 80% 50%, rgba(184,151,42,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.62); max-width: 600px; margin-bottom: 28px; }
.page-hero-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

.trust-row { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 28px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); }
.trust-row-item { display: flex; align-items: center; gap: 9px; font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.72); }
.trust-row-item svg { color: var(--gold-lt); flex-shrink: 0; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-items { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 600; color: var(--text2);
}
.trust-item svg { color: var(--gold); }
.trust-sep { width: 1px; height: 20px; background: var(--border); }

/* ── CARD GRID (generic reusable feature/service cards) ── */
.card-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: 1fr 1fr; }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card-icon {
  width: 46px; height: 46px;
  background: var(--g-gold-subtle);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); margin-bottom: 18px;
}
.info-card h4 { margin-bottom: 8px; }
.info-card p { font-size: 14px; line-height: 1.65; }

/* ── SERVICES (homepage) ── */
.services-section { background: var(--g-section); }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.services-header p { font-size: 16px; color: var(--text2); max-width: 420px; margin-top: 10px; }

.primary-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-areas: "managed net" "managed cyber" "managed general";
  gap: 18px;
  margin-bottom: 18px;
}
.scard {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.scard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.scard-icon {
  width: 48px; height: 48px;
  background: var(--g-gold-subtle);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); margin-bottom: 20px;
}
.scard h3 { font-size: 16px; margin-bottom: 8px; }
.scard p { font-size: 14px; color: var(--text2); line-height: 1.65; }

.scard-wide { grid-area: managed; background: var(--g-navy); border-color: rgba(184,151,42,0.15); }
.scard-wide .scard-icon { width: 54px; height: 54px; background: rgba(184,151,42,0.15); color: var(--gold-lt); }
.scard-wide h3 { font-size: 20px; color: #fff; }
.scard-wide p { font-size: 15px; color: rgba(255,255,255,0.6); }
.scard-net { grid-area: net; }
.scard-cyber { grid-area: cyber; }
.scard-general { grid-area: general; background: var(--bg-alt); }
.scard-checklist { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.scard-checklist li { font-size: 13px; color: rgba(255,255,255,0.58); display: flex; align-items: center; gap: 9px; }
.scard-checklist li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-lt); flex-shrink: 0; }

.secondary-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.scard-sm {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s, transform 0.18s;
  text-decoration: none;
}
.scard-sm:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.scard-sm-icon {
  width: 42px; height: 42px;
  background: var(--bg-alt);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--text3); flex-shrink: 0;
}
.scard-sm h4 { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.scard-sm p { font-size: 13px; color: var(--text2); }

/* ── SOCIAL PROOF ── */
.proof-section { background: var(--white); }
.review-summary { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; flex-wrap: wrap; }
.review-summary-stars { color: var(--gold-dk); font-size: 18px; letter-spacing: 2px; }
.review-summary-text { font-size: 15px; color: var(--text2); }
.review-summary-text strong { color: var(--navy); }
.review-summary-text a { color: var(--gold-dk); font-weight: 600; text-decoration: none; }
.review-summary-text a:hover { text-decoration: underline; }
.review-widget-more { margin-top: 28px; }
.proof-rating-hero {
  background: var(--g-navy);
  border-radius: var(--r-xl);
  padding: 52px;
  display: flex; align-items: center; gap: 52px;
  margin-bottom: 36px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.big-rating { position: relative; z-index: 1; text-align: center; }
.big-rating-num {
  font-family: 'Geologica', sans-serif; font-size: 88px; font-weight: 700; line-height: 1;
  color: var(--gold-lt);
}
.big-stars { display: flex; gap: 6px; justify-content: center; margin: 8px 0; }
.big-stars span { color: var(--gold-lt); font-size: 26px; }
.big-rating-label { font-size: 14px; color: rgba(255,255,255,0.58); }
.proof-divider { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; flex-shrink: 0; }
.proof-bullets { position: relative; z-index: 1; flex: 1; display: flex; flex-direction: column; gap: 16px; }
.proof-bullet { display: flex; align-items: flex-start; gap: 12px; }
.proof-bullet-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(184,151,42,0.15);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold-lt);
}
.proof-bullet strong { display: block; font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.proof-bullet span { font-size: 13px; color: rgba(255,255,255,0.58); }

.review-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars span { color: var(--gold-dk); font-size: 15px; }
.review-text { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 11px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy);
  color: var(--gold-lt); display: flex; align-items: center; justify-content: center;
  font-family: 'Geologica', sans-serif; font-size: 13px; font-weight: 700;
}
.reviewer-name { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 600; color: var(--navy); }
.reviewer-loc { font-size: 12px; color: var(--text3); }

/* ── ABOUT TEASER ── */
.about-section { background: var(--bg-alt); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-frame-wrap { position: relative; max-width: 400px; }
.about-frame {
  width: 100%; aspect-ratio: 4/5;
  background: var(--g-navy);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); overflow: hidden; color: rgba(255,255,255,0.15);
}
.about-frame img { border-radius: 0; }
.about-tag {
  position: absolute; bottom: -18px; right: -20px;
  background: var(--navy);
  border-radius: var(--r-lg); padding: 16px 22px;
  box-shadow: var(--shadow-lg);
}
.about-tag-num { font-family: 'Geologica', sans-serif; font-size: 24px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.about-tag-sub { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px; }

.about-body h2 { margin-bottom: 20px; }
.about-body p { font-size: 16px; color: var(--text2); line-height: 1.8; margin-bottom: 16px; }
.about-body p strong { color: var(--navy); font-weight: 600; }
.about-vals { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 32px; }
.val-row { display: flex; align-items: center; gap: 10px; font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 500; color: var(--text2); }
.val-check {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--g-gold-subtle);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
}
.val-check svg { color: var(--gold-dk); }

/* ── CONTACT ── */
.contact-section {
  background: var(--g-navy);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.contact-left h2 { color: #fff; margin-bottom: 16px; }
.contact-left p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 420px; }
.contact-ctas { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg); padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
  transition: border-color 0.18s, background 0.18s;
}
.contact-card:hover { border-color: rgba(184,151,42,0.4); background: rgba(255,255,255,0.08); }
.contact-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(184,151,42,0.15);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold-lt);
}
.contact-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 4px; }
.contact-card a { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 600; color: #fff; text-decoration: none; transition: color 0.15s; }
.contact-card a:hover { color: var(--gold-lt); }

/* ── QUICK LEAD FORM (reusable, e.g. inside .contact-section) ── */
.quick-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 18px;
}
.quick-form-title { font-size: 16px; margin-bottom: 3px; }
.quick-form-sub { font-size: 13px; color: var(--text2); margin-bottom: 18px; line-height: 1.5; }
.quick-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.quick-field label { font-family: 'Geologica', sans-serif; font-size: 12.5px; font-weight: 600; color: var(--navy); }
.quick-field input, .quick-field textarea {
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text);
  padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--r);
  background: var(--white); transition: border-color 0.15s; resize: vertical;
}
.quick-field input:focus, .quick-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,151,42,0.35); }
.quick-form-submit { width: 100%; justify-content: center; font-size: 15px; padding: 13px; margin-top: 2px; }
.quick-form-submit[disabled] { opacity: 0.65; cursor: not-allowed; }

/* ── FORM STATES (validation + submit result; shared by quick-form and lp-form) ── */
.has-error { border-color: var(--error) !important; }
.has-error:focus { box-shadow: 0 0 0 3px rgba(192,57,43,0.3) !important; }
.field-error { display: block; margin-top: 6px; font-size: 12px; color: var(--error); }
.form-result { border-radius: var(--r); padding: 16px 18px; margin-bottom: 16px; }
.form-result p { font-size: 13.5px; line-height: 1.6; margin: 0; }
.form-result a { color: inherit; font-weight: 700; text-decoration: underline; }
.form-result-error { background: rgba(192,57,43,0.06); border: 1px solid rgba(192,57,43,0.25); border-left: 4px solid var(--error); }
.form-result-error p { color: var(--text2); }
.form-result-error strong { color: var(--error); }
.form-result-success {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.form-result-success .form-result-title { font-family: 'Geologica', sans-serif; font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-result-success p { color: var(--text2); }
.quick-form-note { font-size: 11px; color: var(--text3); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-header { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.faq-header .eyebrow { justify-content: center; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0 28px;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Geologica', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
  padding: 20px 36px 20px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 16px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-dk);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 14.5px; color: var(--text2); line-height: 1.75; padding: 0 0 22px; }
.faq-item p a { color: var(--gold-dk); font-weight: 600; text-decoration: none; }
.faq-item p a:hover { text-decoration: underline; }

/* ── CTA BAND ── */
.cta-band { background: var(--g-navy); padding: 88px 0; position: relative; overflow: hidden; }
.cta-band-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.cta-band-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-band-inner p { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.cta-band-inner .eyebrow { margin-bottom: 20px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── CONTENT SECTION (industry pages) ── */
.section-line { border: none; border-top: 1px solid var(--border); }
.content-section { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; }
.prose h2 { margin: 40px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text2); line-height: 1.65; }
.check-box {
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  background: var(--g-gold-subtle);
  border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--gold-dk);
}

.info-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r);
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box p { font-size: 14px; color: var(--text2); margin: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }
.feat-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-card-icon {
  width: 40px; height: 40px;
  background: var(--g-gold-subtle);
  border-radius: var(--r); display: flex; align-items: center; justify-content: center; color: var(--gold-dk); margin-bottom: 14px;
}
.feat-card h4 { margin-bottom: 6px; }
.feat-card p { font-size: 14px; line-height: 1.6; }

/* ── PRICING CARDS ── */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.pricing-card.pricing-featured { background: var(--g-navy); border-color: transparent; box-shadow: var(--shadow-lg); }
.pricing-card.pricing-featured h4,
.pricing-card.pricing-featured .pricing-price { color: #fff; }
.pricing-card.pricing-featured p,
.pricing-card.pricing-featured li { color: rgba(255,255,255,0.62); }
.pricing-card.pricing-featured .check-box { background: rgba(184,151,42,0.2); color: var(--gold-lt); }
.pricing-eyebrow { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 10px; }
.pricing-featured .pricing-eyebrow { color: var(--gold-lt); }
.pricing-price { font-family: 'Geologica', sans-serif; font-size: 34px; font-weight: 700; color: var(--navy); margin: 8px 0 4px; }
.pricing-price span { font-size: 14px; font-weight: 500; color: var(--text3); }
.pricing-featured .pricing-price span { color: rgba(255,255,255,0.62); }
.pricing-card p.pricing-sub { font-size: 14px; margin-bottom: 18px; }
.pricing-card .feature-list { margin: 0 0 22px; }
.pricing-card .feature-list li { font-size: 14px; }

/* ── ARTICLE CARDS (resources hub) ── */
.articles-section { padding: 80px 0; }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.article-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-tag {
  display: inline-block;
  font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-dk);
  background: var(--g-gold-subtle);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-full); padding: 5px 12px; margin-bottom: 16px; width: fit-content;
}
.article-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.article-card p { font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 24px; }
.article-link { display: inline-flex; align-items: center; gap: 6px; font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 700; color: var(--gold-dk); text-decoration: none; transition: gap 0.15s; }
.article-link:hover { gap: 10px; }

/* ── ARTICLE HEADER (resources article pages) ── */
.article-header { background: var(--g-navy); padding: 64px 0 56px; position: relative; overflow: hidden; }
.article-header-inner { position: relative; z-index: 1; max-width: 720px; }
.article-header h1 { color: #fff; margin-bottom: 14px; }
.article-header p { font-size: 17px; color: rgba(255,255,255,0.62); }
.article-meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.62); margin-top: 20px; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 108px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card.gold-top { border-top: 3px solid var(--gold); }
.sidebar-card h4 { margin-bottom: 10px; }
.sidebar-card p { font-size: 14px; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text2); text-decoration: none; transition: color 0.15s; }
.sidebar-links a:hover { color: var(--navy); }
.sidebar-links a svg { color: var(--gold); flex-shrink: 0; }

/* ── SERVICE SECTIONS (services.html) ── */
.service-section { padding: 88px 0; }
.service-section.alt { background: var(--g-section); }
.service-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.service-inner.flip { direction: rtl; }
.service-inner.flip > * { direction: ltr; }
.service-detail h2 { margin-bottom: 18px; }
.service-detail p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.service-detail p strong { color: var(--navy); font-weight: 600; }
.service-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--g-gold-subtle);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); margin-bottom: 22px;
}
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 14px; line-height: 1.65; margin-bottom: 22px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.stag {
  font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 500;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-full); padding: 6px 13px; color: var(--text2);
}

.additional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.add-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.add-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.add-card-icon {
  width: 48px; height: 48px;
  background: var(--g-gold-subtle);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); margin-bottom: 18px;
}
.add-card h3 { margin-bottom: 10px; font-size: 18px; }
.add-card p { font-size: 15px; line-height: 1.7; margin-bottom: 18px; }

/* ── AREA GRID (geo page cards) ── */
.area-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.area-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* ── ABOUT PAGE: STORY ── */
.story-section { padding: 96px 0; }
.story-grid { display: grid; grid-template-columns: 380px 1fr; gap: 80px; align-items: start; }
.photo-wrap { position: relative; }
.photo-frame {
  width: 100%; aspect-ratio: 4/5;
  background: var(--g-navy);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.15);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.photo-frame img { border-radius: 0; }
.photo-tag {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--navy);
  border-radius: var(--r-lg); padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.photo-tag-num { font-family: 'Geologica', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold-lt); line-height: 1; }
.photo-tag-sub { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 3px; }
.story-copy { padding-top: 6px; }
.story-copy h2 { margin-bottom: 24px; }
.story-copy p { font-size: 16px; line-height: 1.85; margin-bottom: 20px; }
.story-copy p strong { color: var(--navy); font-weight: 600; }
.story-copy p.lead { font-family: 'Geologica', sans-serif; font-size: 19px; font-weight: 500; color: var(--navy); line-height: 1.65; margin-bottom: 26px; }
.pull-quote {
  border-left: 3px solid var(--gold);
  margin: 32px 0; padding: 18px 24px;
  background: var(--g-gold-subtle);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.pull-quote p { font-family: 'Geologica', sans-serif; font-size: 17px; font-weight: 500; color: var(--navy); line-height: 1.6; margin: 0; font-style: italic; }
.story-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* ── ABOUT PAGE: STATS ── */
.stats-section { background: var(--g-navy); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-cell { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-lg); padding: 32px 28px; text-align: center; }
.stat-num { font-family: 'Geologica', sans-serif; font-size: 40px; font-weight: 700; line-height: 1; margin-bottom: 8px; color: var(--gold-lt); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.5; }

/* ── ABOUT PAGE: VALUES ── */
.values-section { padding: 96px 0; background: var(--bg-alt); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.val-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.val-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.val-icon {
  width: 46px; height: 46px;
  background: var(--g-gold-subtle);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dk); margin-bottom: 16px;
}
.val-card h3 { font-size: 16px; margin-bottom: 9px; }
.val-card p { font-size: 14px; line-height: 1.65; }

/* ── ABOUT PAGE: SERVICE AREA ── */
.area-section { padding: 96px 0; }
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.area-body h2 { margin-bottom: 18px; }
.area-body p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.area-body p strong { color: var(--navy); font-weight: 600; }
.city-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 28px 0 36px; }
.city-item { display: flex; align-items: center; gap: 9px; font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 500; color: var(--text2); }
.city-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.area-map {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text3);
  box-shadow: var(--shadow-sm);
}
.area-map svg { color: var(--gold); }
.area-map-label { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 500; color: var(--text3); text-align: center; line-height: 1.5; }

/* ── FOOTER ── */
footer {
  background: var(--g-navy);
  padding: 60px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h5 { font-family: 'Geologica', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.15s; }
.footer-col ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.58); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.58); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ── POLICY PAGES ── */
.policy-wrap { max-width: 800px; margin: 0 auto; padding: 64px 28px 96px; }
.policy-wrap p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.policy-wrap ul { margin: 12px 0 16px 20px; display: flex; flex-direction: column; gap: 8px; }
.policy-wrap ul li { font-size: 16px; color: var(--text2); line-height: 1.7; }
.policy-wrap a { color: var(--gold-dk); text-decoration: underline; }
.policy-wrap a:hover { color: var(--navy); }
.policy-wrap h2 { font-size: 22px; margin: 40px 0 12px; }
.policy-wrap h3 { font-size: 17px; margin: 28px 0 8px; }
.updated { display: inline-block; font-size: 13px; color: var(--text3); background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-full); padding: 6px 14px; margin-bottom: 36px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.62); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.62); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { margin: 0 6px; }
.keyword-table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: 15px; }
.keyword-table th { background: var(--bg); font-family: 'Geologica', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text3); padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.keyword-table td { padding: 12px 14px; border: 1px solid var(--border); color: var(--text2); vertical-align: top; }
.keyword-table td:first-child { font-family: 'Geologica', sans-serif; font-weight: 700; color: var(--navy); white-space: nowrap; }
.message-type-card { background: var(--g-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.message-type-card h3 { margin-bottom: 6px; }
.message-type-card p { font-size: 15px; margin: 0 0 10px; }
.example-bubble { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r); padding: 12px 16px; font-size: 14px; color: var(--text2); font-style: italic; }
.example-label { font-family: 'Geologica', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text3); margin-bottom: 6px; }

/* ── CONTACT WIDGET ── */
.td-widget { position: fixed; right: 24px; bottom: 24px; z-index: 900; font-family: 'Inter', sans-serif; }
.td-widget-btn {
  width: 58px; height: 58px; border-radius: var(--r-full);
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.18s ease, background 0.18s ease;
}
.td-widget-btn:hover { background: var(--navy-lt); transform: scale(1.06); }
.td-teaser {
  position: absolute; bottom: 72px; right: 0;
  width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  box-shadow: var(--shadow-md);
  animation: td-fade-in 0.3s ease;
}
.td-teaser[hidden] { display: none; }
.td-teaser-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 16px; line-height: 1; color: var(--text3); cursor: pointer; padding: 4px;
}
.td-teaser-close:hover { color: var(--navy); }
.td-teaser-title { font-family: 'Geologica', sans-serif; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.td-teaser-sub { font-size: 12.5px; color: var(--text2); line-height: 1.5; margin: 0; padding-right: 12px; }

.td-panel {
  position: absolute; bottom: 72px; right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  animation: td-fade-in 0.25s ease;
}
.td-panel[hidden] { display: none; }
.td-panel-close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 18px; line-height: 1; color: var(--text3); cursor: pointer; padding: 4px;
}
.td-panel-close:hover { color: var(--navy); }
.td-panel-greeting { font-family: 'Geologica', sans-serif; font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 16px; padding-right: 20px; }
.td-quick-replies { display: flex; flex-direction: column; gap: 8px; }
.td-qr {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--text);
  cursor: pointer; transition: all 0.15s ease;
}
.td-qr:hover { background: var(--bg-alt); border-color: var(--gold); }
.td-response { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.td-response[hidden] { display: none; }
.td-response p { font-size: 13px; color: var(--text2); margin-bottom: 10px; line-height: 1.55; }
.td-response a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Geologica', sans-serif; font-size: 13.5px; font-weight: 700;
  color: var(--white); background: var(--navy);
  padding: 10px 16px; border-radius: var(--r-full); text-decoration: none;
}
.td-response a:hover { background: var(--navy-lt); }

@keyframes td-fade-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ── TYPOGRAPHIC LIST ── */
.list-tick { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.list-tick li { position: relative; padding-left: 24px; font-size: 15px; color: var(--text2); line-height: 1.65; }
.list-tick li::before { content: ''; position: absolute; left: 0; top: 10px; width: 9px; height: 1.5px; background: var(--gold); }
.list-tick li strong { color: var(--navy); font-weight: 600; }
.list-tick.list-tick-light li { color: rgba(255,255,255,0.6); }
.list-tick.list-tick-light li strong { color: #fff; }
.list-tick.list-tick-light li::before { background: var(--gold-lt); }
.about-vals.list-tick { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }

/* Confident large homepage headline */
.hero h1 { font-size: clamp(42px, 6.2vw, 68px); letter-spacing: -0.025em; }

/* ── SCROLL REVEAL ── */
/* .reveal is visible by default so content exists with no JS; motion.js opts a page
   into the hidden/animate-in behavior by adding .js-reveal to <html> as its first statement. */
.js-reveal .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.js-reveal .reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1.is-visible { transition-delay: 0.08s; }
.reveal-d2.is-visible { transition-delay: 0.16s; }
.reveal-d3.is-visible { transition-delay: 0.24s; }
.reveal-d4.is-visible { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal, .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── AMBIENT HERO BACKGROUND ── */
.hero-ambient { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.hero-ambient::before, .hero-ambient::after { content: ''; position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.28; }
.hero-ambient::before { width: 480px; height: 480px; background: var(--gold); top: -180px; left: 6%; animation: drift-a 24s ease-in-out infinite alternate; }
.hero-ambient::after { width: 560px; height: 560px; background: var(--navy-lt); bottom: -240px; right: 2%; animation: drift-b 28s ease-in-out infinite alternate; }
@keyframes drift-a { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,40px) scale(1.15); } }
@keyframes drift-b { from { transform: translate(0,0) scale(1); } to { transform: translate(-50px,-30px) scale(1.1); } }
@media (prefers-reduced-motion: reduce) {
  .hero-ambient::before, .hero-ambient::after { animation: none; }
}

/* ── LIVELIER HOVER STATES ── */
.scard, .review-card, .info-card, .feat-card, .add-card, .val-card, .article-card { transition: transform 0.25s cubic-bezier(.16,1,.3,1), box-shadow 0.25s ease, border-color 0.25s ease; }
.scard:hover, .review-card:hover, .feat-card:hover, .add-card:hover, .val-card:hover, .article-card:hover { transform: translateY(-5px); }
.faq-item { transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq-item[open] { border-color: rgba(184,151,42,0.35); box-shadow: var(--shadow-md); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .service-inner { grid-template-columns: 1fr; }
  .service-inner.flip { direction: ltr; }
  .additional-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero-focal { display: none; }
  .hero-radar-wrap { display: none; }
  .primary-grid { grid-template-columns: 1fr; grid-template-areas: "managed" "net" "cyber" "general"; }
  .review-row { grid-template-columns: 1fr; }
  .proof-rating-hero { flex-direction: column; gap: 28px; }
  .proof-divider { width: 100%; height: 1px; align-self: auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-frame-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .two-col { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .area-card-grid { grid-template-columns: 1fr 1fr; }
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .photo-wrap { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: 1fr; }
  .area-map { display: none; }

  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--navy-dk);
    padding: 8px 28px 24px;
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }
  .nav-menu.nav-open { display: flex; }
  nav ul { flex-direction: column; gap: 0; width: 100%; }
  nav ul a { display: block; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-right { flex-direction: column; align-items: stretch; gap: 12px; width: 100%; margin-top: 16px; }
  .nav-phone { justify-content: center; padding: 8px 0; }
  .nav-cta { justify-content: center; text-align: center; }
}
@media (max-width: 640px) {
  section { padding: 56px 0; }
  .content-section { padding: 56px 0; }
  .secondary-row { grid-template-columns: 1fr; }
  .trust-items { gap: 14px; }
  .trust-sep { display: none; }
  .review-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .area-card-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .td-teaser, .td-panel { width: calc(100vw - 48px); max-width: 320px; }
}
