/* =========================================================
   BRONZE E-LOGS LTD — Stylesheet
   Design language: "The Duty Log" — asphalt navy + safety amber,
   condensed DOT-signage display type, a stepped duty-status
   line (the exact graph an ELD produces) as the signature motif.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  /* Color */
  --bg:            #0F1B2D;
  --bg-alt:        #142236;
  --surface:       #1C2B3D;
  --surface-2:     #223449;
  --accent:        #F2A900;
  --accent-dim:    #B8830A;
  --accent-2:      #E8483A;
  --text:          #F5F3EE;
  --text-muted:    #93A1B5;
  --text-faint:    #5C6C82;
  --line:          rgba(245,243,238,0.10);
  --line-strong:   rgba(245,243,238,0.18);
  --success:       #5FBF8F;

  /* Type */
  --font-display: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'IBM Plex Mono', 'SFMono-Regular', monospace;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 6px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(.22,.88,.32,1);
}

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

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

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle asphalt grain so the navy isn't a flat SaaS void */
body::before{
  content:"";
  position: fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.5;
  background-image:
    radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 3px 3px;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
h1,h2,h3,h4{ font-family: var(--font-display); text-transform: uppercase; letter-spacing:.02em; margin:0; font-weight:600; }
p{ margin:0; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}

::selection{ background: var(--accent); color: var(--bg); }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------
   Eyebrow / mile-marker labels
   --------------------------------------------------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.6em;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing:.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before{
  content:"";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display:inline-block;
}

/* ---------------------------------------------------------
   Buttons
   --------------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5em;
  font-family: var(--font-display);
  font-weight:600;
  letter-spacing:.04em;
  text-transform: uppercase;
  font-size:.86rem;
  padding: .95em 1.8em;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--accent);
  color: #17120a;
  box-shadow: 0 0 0 0 rgba(242,169,0,.5);
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px -8px rgba(242,169,0,.55);
}
.btn-ghost{
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-block{ width:100%; }

/* ---------------------------------------------------------
   Header / Nav
   --------------------------------------------------------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  background: rgba(15,27,45,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 78px;
}
.brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.15rem;
  letter-spacing:.03em;
  text-transform: uppercase;
}
.brand-mark{
  width: 38px; height: 38px;
  flex-shrink:0;
}
.brand small{
  display:block;
  font-family: var(--font-mono);
  font-size:.58rem;
  letter-spacing:.16em;
  color: var(--text-muted);
  font-weight:400;
  text-transform: uppercase;
  margin-top:2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 2.1rem;
}
.nav-links a{
  position:relative;
  font-family: var(--font-mono);
  font-size:.8rem;
  letter-spacing:.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: .3rem 0;
  transition: color .2s var(--ease);
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links a:hover,
.nav-links a[aria-current="page"]{ color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after{ width:100%; }

.nav-cta{ display:flex; align-items:center; gap:1.6rem; }
.nav-phone{
  font-family: var(--font-mono);
  font-size:.78rem;
  color: var(--text-muted);
  display:flex; align-items:center; gap:.5em;
}
.nav-phone svg{ width:15px; height:15px; stroke:var(--accent); flex-shrink:0; }

.nav-toggle{
  display:none;
  width: 40px; height:40px;
  background:none;
  border:1px solid var(--line-strong);
  border-radius: 4px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.nav-toggle span{
  width: 18px; height:2px; background: var(--text);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity:0; }
.nav-toggle.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------
   Page header (interior pages)
   --------------------------------------------------------- */
.page-header{
  padding: 168px 0 72px;
  border-bottom: 1px solid var(--line);
  position:relative;
  overflow:hidden;
}
.page-header .container{ position:relative; }
.page-header h1{
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-top:.5rem;
}
.page-header p{
  margin-top: 1rem;
  max-width: 560px;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.page-header .log-strip{ position:absolute; right:-40px; top:30%; width:340px; opacity:.35; }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero{
  padding: 158px 0 90px;
  position:relative;
  overflow:hidden;
}
.hero .container{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height:1.06;
  margin-top: 1rem;
}
.hero-copy h1 em{
  font-style:normal;
  color: var(--accent);
}
.hero-copy p{
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 1.12rem;
  max-width: 480px;
}
.hero-actions{
  display:flex;
  gap: 1rem;
  margin-top: 2.2rem;
  flex-wrap:wrap;
}
.hero-meta{
  margin-top: 3rem;
  display:flex;
  gap: 2.4rem;
  font-family: var(--font-mono);
  font-size:.76rem;
  color: var(--text-faint);
  letter-spacing:.05em;
  flex-wrap:wrap;
}
.hero-meta strong{ color: var(--text); display:block; font-size:.95rem; font-family:var(--font-mono); }

.hero-graph{
  position: relative;
  background: linear-gradient(180deg, var(--surface), var(--bg-alt));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem 1.2rem;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.55);
}
.hero-graph-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
  font-size:.68rem;
  color: var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.1em;
}
.hero-graph-head .dot{
  width:7px; height:7px; border-radius:50%;
  background: var(--success);
  display:inline-block;
  margin-right:.5em;
  box-shadow: 0 0 0 3px rgba(95,191,143,.18);
}
.eld-graph{ width:100%; height:auto; }
.eld-graph .grid-line{ stroke: var(--line); stroke-width:1; }
.eld-graph .lane-label{
  font-family: var(--font-mono);
  font-size: 8.5px;
  fill: var(--text-faint);
  letter-spacing: .05em;
}
.eld-graph .duty-path{
  fill:none;
  stroke: var(--accent);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(242,169,0,.45));
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-log 2.6s var(--ease) .3s forwards;
}
.eld-graph .duty-fill{
  opacity: 0;
  animation: fade-in .8s var(--ease) 2.4s forwards;
}
.eld-graph .pen-dot{
  fill: var(--text);
  opacity:0;
  animation: pen-travel 2.6s linear .3s forwards;
}
@keyframes draw-log{ to{ stroke-dashoffset:0; } }
@keyframes fade-in{ to{ opacity: 1; } }
@keyframes pen-travel{
  0%{ opacity:1; }
  97%{ opacity:1; }
  100%{ opacity:0; }
}
.hero-graph-foot{
  display:flex;
  gap: 1.1rem;
  margin-top: 1rem;
  flex-wrap:wrap;
}
.legend-chip{
  display:flex; align-items:center; gap:.45em;
  font-family: var(--font-mono);
  font-size:.66rem;
  color: var(--text-muted);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.legend-chip i{ width:9px; height:9px; border-radius:2px; display:inline-block; background: var(--accent); }

/* ---------------------------------------------------------
   Dashed divider — the highway lane-line motif
   --------------------------------------------------------- */
.lane-divider{
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--line-strong) 0 26px, transparent 26px 46px);
  width:100%;
}

/* ---------------------------------------------------------
   Marquee / trust bar
   --------------------------------------------------------- */
.trust-bar{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-alt);
  overflow: hidden;
  padding: 1.1rem 0;
}
.marquee{
  display:flex;
  width: max-content;
  animation: scroll-x 26s linear infinite;
}
.marquee-track{ display:flex; gap: 3.2rem; padding-right:3.2rem; align-items:center; }
.marquee-track span{
  font-family: var(--font-mono);
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: var(--text-muted);
  white-space:nowrap;
  display:flex; align-items:center; gap:.7em;
}
.marquee-track span::before{ content:"◆"; color: var(--accent); font-size:.6em; }
@keyframes scroll-x{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------------------------------------------------------
   Section shells
   --------------------------------------------------------- */
section{ position:relative; z-index:1; }
.section{ padding: 6.5rem 0; }
.section-tight{ padding: 4.5rem 0; }
.section-head{
  max-width: 620px;
  margin-bottom: 3.2rem;
}
.section-head h2{
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-top:.6rem;
}
.section-head p{
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-alt{ background: var(--bg-alt); }

/* ---------------------------------------------------------
   Cards — services
   --------------------------------------------------------- */
.grid-services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.8rem;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(242,169,0,.4);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,.6);
}
.card-icon{
  width: 46px; height:46px;
  border-radius: 8px;
  background: rgba(242,169,0,.12);
  border: 1px solid rgba(242,169,0,.3);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1.3rem;
}
.card-icon svg{ width:22px; height:22px; stroke: var(--accent); }
.card h3{ font-size: 1.15rem; letter-spacing:.01em; }
.card p{ margin-top:.7rem; color: var(--text-muted); font-size:.95rem; }
.card-tag{
  margin-top: 1.1rem;
  display:inline-block;
  font-family: var(--font-mono);
  font-size:.66rem;
  color: var(--accent);
  letter-spacing:.1em;
  text-transform:uppercase;
}
.card-featured{
  grid-column: span 2;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  display:flex;
  flex-direction:column;
  justify-content:center;
}

/* ---------------------------------------------------------
   Checklist — "Why choose us" inspection-sheet style
   --------------------------------------------------------- */
.checklist{ display:flex; flex-direction:column; }
.check-row{
  display:grid;
  grid-template-columns: 44px 1fr;
  gap: 1.3rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  align-items:flex-start;
}
.check-row:last-child{ border-bottom: 1px solid var(--line); }
.check-mark{
  width: 30px; height:30px;
  border-radius: 5px;
  border: 1.5px solid var(--accent);
  display:flex; align-items:center; justify-content:center;
  color: var(--accent);
}
.check-mark svg{ width:16px; height:16px; }
.check-row h3{ font-size: 1.05rem; letter-spacing:.01em; text-transform:none; font-family:var(--font-body); font-weight:600; }
.check-row p{ margin-top:.45rem; color: var(--text-muted); font-size:.94rem; max-width: 560px; }
.check-index{
  font-family: var(--font-mono);
  font-size:.72rem;
  color: var(--text-faint);
  margin-top:.35rem;
}

/* ---------------------------------------------------------
   Stat strip
   --------------------------------------------------------- */
.stat-strip{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
}
.stat{
  padding: 2.1rem 1.8rem;
  border-right: 1px solid var(--line);
}
.stat:last-child{ border-right:none; }
.stat .k{ font-family: var(--font-mono); color: var(--accent); font-size: 1.6rem; }
.stat .v{ margin-top:.5rem; color: var(--text-muted); font-size:.86rem; }

/* ---------------------------------------------------------
   CTA banner
   --------------------------------------------------------- */
.cta-banner{
  position:relative;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 3.4rem clamp(1.6rem,5vw,4rem);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 2rem;
  flex-wrap:wrap;
  overflow:hidden;
}
.cta-banner::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(90deg, rgba(242,169,0,.05) 0 2px, transparent 2px 90px);
  pointer-events:none;
}
.cta-banner h2{ font-size: clamp(1.6rem,3.4vw,2.2rem); max-width: 460px; }
.cta-banner p{ color: var(--text-muted); margin-top:.6rem; }
.cta-actions{ display:flex; gap:1rem; flex-wrap:wrap; position:relative; z-index:1; }

/* ---------------------------------------------------------
   About page specifics
   --------------------------------------------------------- */
.about-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items:start;
}
.about-visual{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 110px;
}
.about-visual .route{ width:100%; }
.value-row{ display:flex; gap:1rem; padding: 1.1rem 0; border-top:1px solid var(--line); }
.value-row:last-child{ border-bottom: 1px solid var(--line); }
.value-num{ font-family: var(--font-mono); color: var(--accent); font-size:.85rem; min-width: 34px; }

/* ---------------------------------------------------------
   Career page
   --------------------------------------------------------- */
.dept-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.2rem;
}
.dept-card{
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  background: var(--surface);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.dept-card:hover{ border-color: rgba(242,169,0,.4); transform: translateX(4px); }
.dept-card h3{ font-family: var(--font-body); text-transform:none; font-weight:600; font-size:1.02rem; }
.dept-card span{ font-family: var(--font-mono); font-size:.72rem; color: var(--text-muted); }
.dept-arrow{ width:18px; height:18px; stroke: var(--accent); flex-shrink:0; transition: transform .25s var(--ease); }
.dept-card:hover .dept-arrow{ transform: translateX(4px); }

.perks-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:1.2rem; }
.perk{ text-align:center; padding: 1.6rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.perk svg{ width:26px; height:26px; stroke: var(--accent); margin: 0 auto .9rem; }
.perk h4{ font-family: var(--font-body); text-transform:none; font-weight:600; font-size:.92rem; }
.perk p{ font-size:.82rem; color: var(--text-muted); margin-top:.4rem; }

/* ---------------------------------------------------------
   Contact page
   --------------------------------------------------------- */
.contact-grid{
  display:grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items:start;
}
.contact-info{ display:flex; flex-direction:column; gap: 1.4rem; }
.info-card{
  display:flex; gap:1rem; align-items:flex-start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.info-card svg{ width:20px; height:20px; stroke: var(--accent); flex-shrink:0; margin-top:.15rem; }
.info-card h4{ font-family: var(--font-body); text-transform:none; font-weight:600; font-size:.98rem; }
.info-card p{ color: var(--text-muted); font-size:.92rem; margin-top:.3rem; }
.info-card a:hover{ color: var(--accent); }

.form-panel{
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 2.2rem clamp(1.4rem,4vw,2.6rem);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field{ margin-bottom: 1.2rem; }
.field label{
  display:block;
  font-family: var(--font-mono);
  font-size:.7rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--text-muted);
  margin-bottom:.55rem;
}
.field input,
.field textarea,
.field select{
  width:100%;
  background: var(--bg-alt);
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: .85em 1em;
  color: var(--text);
  font-family: var(--font-body);
  font-size:.95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus{
  border-color: var(--accent);
  outline:none;
  box-shadow: 0 0 0 3px rgba(242,169,0,.14);
}
.field textarea{ resize: vertical; min-height: 120px; }
.field-error{ display:block; font-size:.76rem; color: var(--accent-2); margin-top:.4rem; min-height: 1em; }
.field.has-error input,
.field.has-error textarea,
.field.has-error select{ border-color: var(--accent-2); }
.form-status{
  margin-top: 1rem;
  padding: .9em 1.1em;
  border-radius: 5px;
  font-size:.88rem;
  display:none;
}
.form-status.show{ display:block; }
.form-status.success{ background: rgba(95,191,143,.12); border:1px solid rgba(95,191,143,.4); color: var(--success); }

.map-frame{
  margin-top: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow:hidden;
  height: 280px;
}
.map-frame iframe{ width:100%; height:100%; border:0; filter: grayscale(.3) invert(.92) contrast(.9); }

/* ---------------------------------------------------------
   FAQ (contact page)
   --------------------------------------------------------- */
.faq-item{ border-top: 1px solid var(--line); }
.faq-item:last-child{ border-bottom: 1px solid var(--line); }
.faq-q{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  background:none;
  border:none;
  color: var(--text);
  text-align:left;
  padding: 1.35rem 0;
  font-family: var(--font-body);
  font-weight:600;
  font-size:.98rem;
}
.faq-q svg{ width:16px; height:16px; stroke: var(--accent); flex-shrink:0; transition: transform .3s var(--ease); }
.faq-item.open .faq-q svg{ transform: rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition: max-height .35s var(--ease);
}
.faq-a p{ padding: 0 0 1.35rem; color: var(--text-muted); font-size:.92rem; max-width: 640px; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer{
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding-top: 4rem;
  position: relative;
  overflow:hidden;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.3fr .8fr .9fr 1.1fr;
  gap: 2.4rem;
  padding-bottom: 3.2rem;
}
.footer-brand .brand{ margin-bottom: 1rem; }
.footer-brand p{ color: var(--text-muted); font-size:.9rem; max-width: 300px; }
.footer-col h5{
  font-family: var(--font-mono);
  font-size:.7rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
}
.footer-col ul{ display:flex; flex-direction:column; gap:.75rem; }
.footer-col a{ color: var(--text-muted); font-size:.9rem; transition: color .2s var(--ease); }
.footer-col a:hover{ color: var(--accent); }
.footer-col .addr{ color: var(--text-muted); font-size:.9rem; line-height:1.7; }
.footer-bottom{
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 2rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:1rem;
  font-family: var(--font-mono);
  font-size:.76rem;
  color: var(--text-faint);
}
.footer-strip{
  width:100%;
  height: 26px;
  opacity:.5;
}

/* ---------------------------------------------------------
   Scroll reveal
   --------------------------------------------------------- */
.reveal{
  opacity:0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in{ opacity:1; transform:none; }
.reveal-stagger.in > *{ transition-delay: calc(var(--i, 0) * 80ms); }

/* ---------------------------------------------------------
   Back to top
   --------------------------------------------------------- */
.to-top{
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 44px; height:44px;
  border-radius:50%;
  background: var(--accent);
  color: var(--bg);
  display:flex; align-items:center; justify-content:center;
  opacity:0;
  visibility:hidden;
  transform: translateY(10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 90;
  border:none;
}
.to-top.show{ opacity:1; visibility:visible; transform:none; }
.to-top svg{ width:18px; height:18px; }

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero{ padding-top: 130px; }
  .grid-services{ grid-template-columns: repeat(2,1fr); }
  .card-featured{ grid-column: span 2; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-visual{ position:static; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .perks-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 760px){
  .nav-links, .nav-phone{ display:none; }
  .nav-toggle{ display:flex; }
  .site-header.nav-open .nav-links{
    display:flex;
    position:absolute;
    top:78px; left:0; right:0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction:column;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.3rem;
  }
  .site-header.nav-open .nav-cta{ position:relative; }
  .grid-services{ grid-template-columns: 1fr; }
  .card-featured{ grid-column: span 1; }
  .stat-strip{ grid-template-columns: 1fr; }
  .stat{ border-right:none; border-bottom:1px solid var(--line); }
  .stat:last-child{ border-bottom:none; }
  .footer-top{ grid-template-columns: 1fr; gap: 2rem; }
  .form-row{ grid-template-columns: 1fr; }
  .dept-grid{ grid-template-columns: 1fr; }
  .perks-grid{ grid-template-columns: 1fr 1fr; }
  .cta-banner{ flex-direction:column; align-items:flex-start; }
  .check-row{ grid-template-columns: 36px 1fr; }
}

@media (max-width: 480px){
  .perks-grid{ grid-template-columns: 1fr; }
  .hero-meta{ gap: 1.4rem; }
  .nav-get{display:none;}
}
