/* ============================================================
   GEO LION SECURITY — design tokens
   ============================================================ */
:root{
  --ink:        #10141A;
  --ink-panel:  #191F27;
  --ink-raised: #212934;
  --line:       rgba(237,231,218,0.10);
  --line-strong:rgba(237,231,218,0.20);

  --gold:       #C9A227;
  --gold-light: #E4C458;
  --rust:       #8B5A34;

  --text:       #EDE7DA;
  --text-muted: #9BA3AE;
  --text-faint: #6B7280;

  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "Inter", sans-serif;

  --container: 1180px;
  --radius: 4px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

/* ---------------- scrollbar ---------------- */
*{ scrollbar-color: #FFD400 var(--ink-panel); scrollbar-width: thin; }
*::-webkit-scrollbar{ width:10px; height:10px; }
*::-webkit-scrollbar-track{ background:var(--ink-panel); }
*::-webkit-scrollbar-thumb{ background:#FFD400; border-radius:var(--radius); }
*::-webkit-scrollbar-thumb:hover{ background:#FFE44D; }
body{
  margin:0;
  background:var(--ink);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--font-display); font-weight:700; letter-spacing:0.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

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

/* ---------------- header ---------------- */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:200;
  padding:22px 0;
  transition:background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom:1px solid transparent;
}
.site-header.is-scrolled{
  background:rgba(16,20,26,0.92);
  backdrop-filter:blur(10px);
  padding:14px 0;
  border-bottom:1px solid var(--line);
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.site-header.is-scrolled .brand-mark{ height:42px; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{ height:72px; width:auto; flex-shrink:0; object-fit:contain; transition:transform .25s ease, filter .25s ease; }
.brand:hover .brand-mark{ transform:scale(1.04); }
.brand-name{ font-family:var(--font-display); font-size:20px; line-height:1; color:var(--text); }
.brand-name b{ color:var(--gold); font-weight:700; }
.brand-sub{ display:block; font-family:var(--font-body); font-size:10px; letter-spacing:0.16em; color:var(--text-faint); margin-top:3px; }

.main-nav{ display:flex; align-items:center; gap:36px; }
.main-nav a{
  font-size:15px;
  color:var(--text-muted);
  position:relative;
  padding:4px 0;
  transition:color .25s ease;
}
.main-nav a:hover, .main-nav a.active{ color:var(--text); }
.main-nav a.active::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-4px;
  height:2px; background:var(--gold);
}

.header-cta{ display:flex; align-items:center; gap:20px; }
.header-phone{ font-size:14px; color:var(--text-muted); display:flex; flex-direction:column; align-items:flex-end; line-height:1.3; }
.header-phone strong{ color:var(--text); font-size:15px; letter-spacing:0.02em; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 26px;
  border-radius:var(--radius);
  font-size:14px;
  font-weight:600;
  border:1px solid transparent;
  transition:transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  white-space:nowrap;
}
.btn-primary{ background:var(--gold); color:#171208; }
.btn-primary:hover{ background:var(--gold-light); transform:translateY(-1px); }
.btn-outline{ border-color:var(--line-strong); color:var(--text); }
.btn-outline:hover{ border-color:var(--gold); color:var(--gold-light); }

.nav-toggle{ display:none; }

/* ---------------- hero slider ---------------- */
.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  overflow:hidden;
  background:var(--ink);
}
.hero-slide{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity 1.2s ease;
  pointer-events:none;
}
.hero-slide.is-active{ opacity:1; pointer-events:auto; }
.hero-slide img{
  width:100%; height:100%; object-fit:cover;
  transform:scale(1.08);
  transition:transform 7s linear;
}
.hero-slide.is-active img{ transform:scale(1); }
.hero-slide::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(10,13,17,0.55) 0%, rgba(10,13,17,0.35) 40%, rgba(10,13,17,0.92) 100%),
    linear-gradient(90deg, rgba(10,13,17,0.75) 0%, rgba(10,13,17,0.15) 55%);
}

.hero-content{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:5;
  padding-bottom:96px;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gold-light);
  font-size:14px;
  margin-bottom:18px;
  opacity:0;
  transform:translateY(14px);
}
.hero-eyebrow::before{ content:""; width:26px; height:1px; background:var(--gold-light); }
.hero-title{
  font-size:clamp(38px, 6vw, 74px);
  line-height:1.02;
  max-width:820px;
  color:var(--text);
  opacity:0;
  transform:translateY(20px);
}
.hero-text{
  margin-top:20px;
  max-width:480px;
  font-size:17px;
  color:var(--text-muted);
  opacity:0;
  transform:translateY(20px);
}
.hero-actions{
  margin-top:34px;
  display:flex;
  gap:16px;
  opacity:0;
  transform:translateY(20px);
}
.hero-slide.is-active .hero-eyebrow{ transition:opacity .8s ease .5s, transform .8s ease .5s; opacity:1; transform:translateY(0); }
.hero-slide.is-active .hero-title{ transition:opacity .9s ease .65s, transform .9s ease .65s; opacity:1; transform:translateY(0); }
.hero-slide.is-active .hero-text{ transition:opacity .9s ease .8s, transform .9s ease .8s; opacity:1; transform:translateY(0); }
.hero-slide.is-active .hero-actions{ transition:opacity .9s ease .95s, transform .9s ease .95s; opacity:1; transform:translateY(0); }

.hero-dots{
  position:absolute;
  right:32px;
  bottom:40px;
  z-index:6;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.hero-dot{
  width:34px; height:2px;
  background:rgba(237,231,218,0.3);
  border:none;
  padding:0;
  transition:background .3s ease, width .3s ease;
}
.hero-dot.is-active{ background:var(--gold); width:48px; }

.hero-scroll{
  position:absolute;
  left:32px; bottom:44px;
  z-index:6;
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text-faint);
  font-size:12px;
  letter-spacing:0.14em;
}
.hero-scroll-line{ width:1px; height:34px; background:linear-gradient(180deg, var(--gold), transparent); }

/* ---------------- stat strip ---------------- */
.stat-strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:var(--ink-panel);
}
.stat-strip .container{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.stat{
  padding:40px 24px;
  border-left:1px solid var(--line);
  text-align:center;
}
.stat:first-child{ border-left:none; }
.stat-num{ font-family:var(--font-display); font-size:44px; color:var(--gold); line-height:1; }
.stat-label{ margin-top:10px; font-size:13px; color:var(--text-muted); }

/* ---------------- section basics ---------------- */
.section{ padding:120px 0; }
.section-tight{ padding:80px 0; }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  margin-bottom:56px;
}
.section-kicker{ color:var(--gold); font-size:14px; margin-bottom:14px; display:block; }
.section-title{ font-size:clamp(30px,3.6vw,46px); max-width:600px; line-height:1.08; }
.section-desc{ max-width:360px; color:var(--text-muted); font-size:15px; }

.on-ink-panel{ background:var(--ink-panel); }

/* ---------------- services grid ---------------- */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.service-card{
  background:var(--ink);
  padding:44px 36px;
  transition:background .3s ease;
}
.service-card:hover{ background:var(--ink-raised); }
.service-icon{ width:40px; height:40px; color:var(--gold); margin-bottom:26px; }
.service-title{ font-size:22px; margin-bottom:12px; }
.service-desc{ color:var(--text-muted); font-size:14.5px; }

/* ---------------- why us / split ---------------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.split-media{ position:relative; }
.split-media img{ width:100%; height:520px; object-fit:cover; }
.split-media-tag{
  position:absolute;
  left:-1px; bottom:-1px;
  background:var(--gold);
  color:#171208;
  padding:18px 26px;
  font-family:var(--font-display);
  font-size:18px;
  max-width:220px;
}
.reasons{ margin-top:32px; display:flex; flex-direction:column; }
.reason{
  display:flex;
  gap:20px;
  padding:24px 0;
  border-top:1px solid var(--line);
}
.reason:last-child{ border-bottom:1px solid var(--line); }
.reason-index{ font-family:var(--font-display); font-size:20px; color:var(--gold); width:34px; flex-shrink:0; }
.reason-body h4{ font-size:17px; margin-bottom:6px; font-family:var(--font-body); font-weight:600; }
.reason-body p{ color:var(--text-muted); font-size:14.5px; }

/* ---------------- CTA banner ---------------- */
.cta-banner{
  position:relative;
  padding:100px 0;
  overflow:hidden;
  text-align:center;
}
.cta-banner::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.14), transparent 60%);
}
.cta-banner h2{ font-size:clamp(30px,4vw,50px); max-width:680px; margin:0 auto 20px; }
.cta-banner p{ color:var(--text-muted); max-width:480px; margin:0 auto 36px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; }

/* ---------------- footer ---------------- */
.site-footer{ background:var(--ink-panel); border-top:1px solid var(--line); padding:72px 0 28px; }
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid var(--line);
}
.footer-brand p{ margin-top:18px; color:var(--text-muted); font-size:14px; max-width:280px; }
.footer-col h5{ font-family:var(--font-body); font-size:13px; letter-spacing:0.08em; color:var(--text-faint); margin-bottom:18px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col ul a{ color:var(--text-muted); font-size:14.5px; transition:color .2s ease; }
.footer-col ul a:hover{ color:var(--gold-light); }
.footer-bottom{
  padding-top:24px;
  display:flex;
  justify-content:space-between;
  color:var(--text-faint);
  font-size:13px;
}

/* ---------------- reveal-on-scroll ---------------- */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s ease; }
.reveal.is-visible{ opacity:1; transform:translateY(0); }

/* ---------------- page hero (inner pages) ---------------- */
.page-hero{
  padding:180px 0 90px;
  position:relative;
  border-bottom:1px solid var(--line);
}
.page-hero-kicker{ color:var(--gold); font-size:14px; }
.page-hero h1{ font-size:clamp(36px,5.4vw,64px); margin-top:16px; max-width:760px; }
.page-hero p{ margin-top:20px; color:var(--text-muted); max-width:520px; font-size:17px; }

/* ---------------- timeline (about) ---------------- */
.timeline{ position:relative; margin-top:20px; }
.timeline::before{ content:""; position:absolute; left:19px; top:8px; bottom:8px; width:1px; background:var(--line-strong); }
.timeline-item{ position:relative; padding:0 0 48px 60px; }
.timeline-item:last-child{ padding-bottom:0; }
.timeline-dot{
  position:absolute; left:0; top:2px;
  width:40px; height:40px;
  border-radius:50%;
  background:var(--ink-panel);
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  color:var(--gold);
  font-size:14px;
}
.timeline-item h4{ font-size:20px; margin-bottom:8px; }
.timeline-item p{ color:var(--text-muted); font-size:15px; max-width:520px; }

/* ---------------- values grid (about) ---------------- */
.values-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:32px; }
.value-card{ border-top:2px solid var(--gold); padding-top:22px; }
.value-card h4{ font-size:18px; margin-bottom:10px; }
.value-card p{ color:var(--text-muted); font-size:14.5px; }

/* ---------------- team strip (about) ---------------- */
.team-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.team-card img{ width:100%; height:280px; object-fit:cover; filter:grayscale(35%); transition:filter .3s ease; }
.team-card:hover img{ filter:grayscale(0%); }
.team-card h4{ margin-top:18px; font-size:17px; }
.team-card span{ display:block; margin-top:4px; color:var(--gold); font-size:13px; }

/* ---------------- hire page: process ---------------- */
.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line); border:1px solid var(--line); }
.process-step{ background:var(--ink); padding:40px 30px; }
.process-num{ font-family:var(--font-display); font-size:34px; color:var(--gold); }
.process-step h4{ font-size:18px; margin:18px 0 10px; }
.process-step p{ color:var(--text-muted); font-size:14px; }

/* ---------------- hire page: options + form ---------------- */
.hire-layout{ display:grid; grid-template-columns:1fr 1.15fr; gap:64px; align-items:start; }
.service-option{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px;
  border:1px solid var(--line);
  margin-bottom:12px;
  cursor:pointer;
  transition:border-color .2s ease, background .2s ease;
}
.service-option:hover{ border-color:var(--line-strong); }
.service-option input{ margin-top:4px; accent-color:var(--gold); }
.service-option.is-checked{ border-color:var(--gold); background:rgba(201,162,39,0.06); }
.service-option h4{ font-size:16px; margin-bottom:4px; font-family:var(--font-body); font-weight:600; }
.service-option p{ font-size:13.5px; color:var(--text-muted); }

.form-card{ background:var(--ink-panel); border:1px solid var(--line); padding:44px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ font-size:13px; color:var(--text-muted); }
.form-field input, .form-field textarea{
  background:var(--ink);
  border:1px solid var(--line-strong);
  color:var(--text);
  padding:13px 14px;
  border-radius:var(--radius);
  font-family:inherit;
  font-size:14.5px;
  resize:vertical;
  transition:border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus{ outline:none; border-color:var(--gold); }
.form-note{ margin-top:16px; font-size:13px; color:var(--text-faint); }
.form-success{
  display:none;
  border:1px solid var(--gold);
  padding:22px;
  color:var(--gold-light);
  font-size:14.5px;
  margin-top:18px;
}
.form-success.is-visible{ display:block; }
.form-error{
  display:none;
  border:1px solid #C54040;
  padding:22px;
  color:#E88;
  font-size:14.5px;
  margin-top:18px;
}
.form-error.is-visible{ display:block; }
.form-card button[disabled]{ opacity:0.6; cursor:not-allowed; }

/* ---------------- coverage strip ---------------- */
.coverage-strip{ display:flex; flex-wrap:wrap; gap:14px; }
.coverage-tag{ border:1px solid var(--line-strong); padding:10px 18px; font-size:13.5px; color:var(--text-muted); border-radius:999px; }

/* ---------------- responsive ---------------- */
@media (max-width:1000px){
  .services-grid, .process-grid{ grid-template-columns:repeat(2,1fr); }
  .split{ grid-template-columns:1fr; gap:44px; }
  .split-media img{ height:360px; }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:36px; }
  .values-grid, .team-grid{ grid-template-columns:repeat(2,1fr); }
  .stat-strip .container{ grid-template-columns:repeat(2,1fr); }
  .stat:nth-child(3){ border-left:none; }
  .stat{ border-bottom:1px solid var(--line); }
  .hire-layout{ grid-template-columns:1fr; }
}
@media (max-width:760px){
  .main-nav, .header-phone{ display:none; }
  .nav-toggle{
    display:flex; align-items:center; justify-content:center;
    width:40px; height:40px;
    border:1px solid var(--line-strong);
    background:none; color:var(--text);
  }
  .services-grid, .process-grid, .values-grid, .team-grid{ grid-template-columns:1fr; }
  .section{ padding:80px 0; }
  .section-head{ flex-direction:column; align-items:flex-start; gap:16px; }
  .form-row{ grid-template-columns:1fr; }
  .form-card{ padding:28px; }
  .hero-content{ padding-bottom:70px; }
  .hero-actions{ flex-direction:column; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; gap:10px; }
}
