/* ============================================================
   AMIRA 108 LOGISTICS — Shared Stylesheet
   Navy + Gold · White background · Professional corporate
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

:root{
  --navy:        #16294e;
  --navy-2:      #1d3866;
  --navy-deep:   #0e1d3a;
  --gold:        #c79a3c;
  --gold-soft:   #ddb968;
  --ink:         #1a2540;
  --body:        #000000;
  --muted:       #8a97ac;
  --bg:          #ffffff;
  --bg-soft:     #f5f8fc;
  --bg-soft-2:   #eef3f9;
  --line:        #e4ebf3;
  --line-2:      #d4deea;
  --radius:      14px;
  --radius-lg:   22px;
  --shadow-sm:   0 2px 10px rgba(22,41,78,.06);
  --shadow:      0 14px 40px rgba(22,41,78,.10);
  --shadow-lg:   0 30px 70px rgba(14,29,58,.18);
  --maxw:        1180px;
  --head:        'Archivo', sans-serif;
  --text:        'DM Sans', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  font-family:var(--text);
  color:var(--body);
  background:var(--bg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

h1,h2,h3,h4{ font-family:var(--head); color:var(--ink); line-height:1.12; letter-spacing:-.02em; }

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

.eyebrow{
  font-family:var(--head);
  font-weight:700;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--gold);
  display:inline-block;
  margin-bottom:18px;
}
.eyebrow.on-dark{ color:var(--gold-soft); }

.lead{ font-size:18px; color:var(--body); max-width:60ch; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--head); font-weight:700; font-size:13.5px;
  letter-spacing:.04em; text-transform:uppercase;
  padding:15px 26px; border-radius:9px; cursor:pointer;
  border:1.5px solid transparent; transition:.22s ease; white-space:nowrap;
}
.btn .ico{ width:17px; height:17px; }
.btn-primary{ background:var(--navy); color:#fff; }
.btn-primary:hover{ background:var(--navy-2); transform:translateY(-2px); box-shadow:0 12px 28px rgba(22,41,78,.28); }
.btn-gold{ background:var(--gold); color:#1c1606; }
.btn-gold:hover{ background:var(--gold-soft); transform:translateY(-2px); box-shadow:0 12px 28px rgba(199,154,60,.35); }
.btn-outline{ background:transparent; color:var(--navy); border-color:var(--line-2); }
.btn-outline:hover{ border-color:var(--navy); color:var(--navy); transform:translateY(-2px); }
.btn-ghost-light{ background:rgba(255,255,255,.08); color:#fff; border-color:rgba(255,255,255,.25); }
.btn-ghost-light:hover{ background:rgba(255,255,255,.16); }

/* ============================================================
   TOP CONTACT BAR
============================================================ */
.top-bar{ background:var(--navy-deep); color:#fff; font-family:var(--head);
  font-size:13.5px; padding:10px 0; }
.top-bar .container{ display:flex; align-items:center; justify-content:flex-end;
  gap:32px; flex-wrap:wrap; }
.top-bar a{ color:#fff; display:inline-flex; align-items:center; gap:9px;
  font-weight:600; letter-spacing:.02em; transition:color .2s; }
.top-bar a:hover{ color:var(--gold-soft); }
.top-bar svg{ width:15px; height:15px; stroke:var(--gold); flex:none; }
@media (max-width:680px){
  .top-bar{ font-size:12px; padding:8px 0; }
  .top-bar .container{ justify-content:center; gap:14px; }
}

/* ============================================================
   HEADER
============================================================ */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(150%) blur(12px);
  border-bottom:1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; height:104px; gap:24px; }

/* Logo image */
.site-header, .nav, .logo{ overflow:visible; }
.logo{ display:flex; align-items:center; }
.logo-img{ height:64px; width:auto; max-height:none; display:block; flex:none; }
.logo-img-foot{ height:58px; width:auto; }
@media (max-width:680px){ .logo-img{ height:46px; } }

/* Request Service button text must stay white (override .nav-links a color) */
.nav-links a.nav-cta{ color:#fff; }
.nav-links a.nav-cta:hover{ color:#fff; }

/* Hero scene illustration */
.hero-scene{
  background:linear-gradient(165deg,#f3f7fc 0%,#e9f0f8 100%);
  border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); padding:22px 22px 14px; position:relative; z-index:2;
}
.hero-scene svg{ width:100%; height:auto; display:block; }

/* Photos */
.hero-photo{ width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); display:block; }
.full-photo{ width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow); display:block; }
.banner-photo{ width:100%; max-height:420px; object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow); display:block; }
.svc-photo{ width:100%; aspect-ratio:16/10; object-fit:cover; border-radius:14px; box-shadow:var(--shadow-sm); margin-bottom:22px; display:block; }
.photo-caption{ text-align:center; font-size:13.5px; color:var(--muted); margin-top:14px; }

/* Logo */
.logo{ display:flex; align-items:center; gap:11px; }
.logo-mark{ width:42px; height:42px; flex:none; }
.logo-mark circle{ stroke:var(--navy); }
.logo-mark rect{ fill:var(--navy); }
.logo-word{ font-family:var(--head); line-height:1; }
.logo-word .row1{ font-weight:800; font-size:22px; letter-spacing:-.01em; color:var(--navy); }
.logo-word .row1 b{ color:var(--gold); font-weight:800; }
.logo-word .row2{
  font-weight:700; font-size:9.5px; letter-spacing:.42em;
  color:var(--navy); text-transform:uppercase; margin-top:3px; padding-left:1px;
}

.nav-links{ display:flex; align-items:center; gap:30px; margin-left:auto; }
.nav-links a{
  font-family:var(--head); font-weight:600; font-size:13.5px;
  letter-spacing:.05em; text-transform:uppercase; color:var(--ink);
  position:relative; padding:6px 0; transition:color .2s;
}
.nav-links a:hover{ color:var(--gold); }
.nav-links a.active{ color:var(--navy); }
.nav-links a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--gold); border-radius:2px;
}
.nav-cta{ margin-left:6px; }
.nav-toggle{ display:none; background:none; border:0; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; transition:.3s; border-radius:2px; }

/* ============================================================
   HERO
============================================================ */
.hero{ position:relative; background:var(--bg); padding:70px 0 64px; overflow:hidden; }
.hero::before{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(circle at 88% 8%, rgba(199,154,60,.07), transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(22,41,78,.05), transparent 40%);
  pointer-events:none;
}
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:center; position:relative; }
.hero h1{ font-size:clamp(34px,4.6vw,58px); font-weight:800; color:var(--navy); }
.hero h1 .accent{ color:var(--gold); }
.hero p.lead{ margin:24px 0 32px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; }

/* Hero visual card */
.hero-visual{ position:relative; }
.track-card{
  background:linear-gradient(160deg,#fff 0%,#fbfcfe 100%);
  border:1px solid var(--line); border-radius:var(--radius-lg);
  box-shadow:var(--shadow-lg); padding:26px; position:relative; z-index:2;
}
.track-card .tc-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.tc-live{ display:flex; align-items:center; gap:8px; font-family:var(--head); font-weight:700;
  font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:var(--navy); }
.tc-dot{ width:9px; height:9px; border-radius:50%; background:#22a06b; box-shadow:0 0 0 0 rgba(34,160,107,.5); animation:pulse 1.8s infinite; }
@keyframes pulse{ 0%{box-shadow:0 0 0 0 rgba(34,160,107,.45);} 70%{box-shadow:0 0 0 10px rgba(34,160,107,0);} 100%{box-shadow:0 0 0 0 rgba(34,160,107,0);} }
.tc-id{ font-size:11px; letter-spacing:.1em; color:var(--muted); font-family:var(--head); }
.tc-route{ background:var(--bg-soft); border-radius:14px; padding:18px; margin-bottom:16px; }
.tc-stop{ display:flex; gap:13px; align-items:flex-start; position:relative; padding-bottom:18px; }
.tc-stop:last-child{ padding-bottom:0; }
.tc-stop:not(:last-child)::before{ content:''; position:absolute; left:7px; top:18px; bottom:0; width:2px; background:var(--line-2); }
.tc-pin{ width:16px; height:16px; border-radius:50%; flex:none; margin-top:3px; border:3px solid #fff; box-shadow:0 0 0 1.5px var(--line-2); }
.tc-pin.a{ background:var(--gold); box-shadow:0 0 0 1.5px var(--gold); }
.tc-pin.b{ background:var(--navy); box-shadow:0 0 0 1.5px var(--navy); }
.tc-stop .lbl{ font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.08em; font-family:var(--head); font-weight:600; }
.tc-stop .place{ font-family:var(--head); font-weight:700; color:var(--ink); font-size:14.5px; }
.tc-metrics{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.tc-metric{ background:var(--bg-soft); border-radius:12px; padding:14px 16px; }
.tc-metric .v{ font-family:var(--head); font-weight:800; font-size:24px; color:var(--navy); line-height:1; }
.tc-metric .v small{ font-size:13px; color:var(--gold); font-weight:700; }
.tc-metric .k{ font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:.07em; margin-top:6px; font-family:var(--head); font-weight:600; }
.hero-badge{
  position:absolute; z-index:3; background:#fff; border:1px solid var(--line);
  box-shadow:var(--shadow); border-radius:13px; padding:12px 15px; display:flex; align-items:center; gap:10px;
}
.hero-badge .hb-ico{ width:34px; height:34px; border-radius:9px; background:var(--navy); display:flex; align-items:center; justify-content:center; }
.hero-badge .hb-ico svg{ width:18px; height:18px; }
.hero-badge .hb-t{ font-family:var(--head); font-weight:700; font-size:13px; color:var(--ink); }
.hero-badge .hb-s{ font-size:11px; color:var(--muted); }
.hb-tl{ top:8px; left:-22px; }
.hb-br{ bottom:18px; right:-18px; }

/* ============================================================
   FEATURE STRIP (4 columns)
============================================================ */
.feature-strip{ border-top:1px solid var(--line); padding:48px 0; }
.feat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:30px; }
.feat{ }
.feat .fico{ width:46px; height:46px; border-radius:11px; background:rgba(199,154,60,.12);
  display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.feat .fico svg{ width:24px; height:24px; stroke:var(--gold); }
.feat h4{ font-size:16px; font-weight:700; margin-bottom:7px; }
.feat p{ font-size:14px; }

/* ============================================================
   SECTIONS
============================================================ */
section{ position:relative; }
.section{ padding:84px 0; }
.section.soft{ background:var(--bg-soft); }
.section-head{ max-width:740px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(28px,3.4vw,40px); font-weight:800; }
.section-head h2 .accent{ color:var(--gold); }
.section-head p{ margin-top:16px; font-size:17px; }

/* Service cards grid */
.cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:30px 28px; transition:.25s ease; position:relative; overflow:hidden;
}
.card::after{ content:''; position:absolute; left:0; top:0; height:3px; width:0; background:var(--gold); transition:width .3s ease; }
.card:hover{ transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
.card:hover::after{ width:100%; }
.card .cico{ width:54px; height:54px; border-radius:13px; background:var(--navy);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.card .cico svg{ width:28px; height:28px; stroke:var(--gold-soft); }
.card h3{ font-size:19px; font-weight:700; margin-bottom:10px; }
.card p{ font-size:14.5px; margin-bottom:18px; }
.card .more{ font-family:var(--head); font-weight:700; font-size:12.5px; letter-spacing:.05em;
  text-transform:uppercase; color:var(--navy); display:inline-flex; align-items:center; gap:7px; }
.card .more svg{ width:15px; height:15px; transition:transform .2s; }
.card:hover .more svg{ transform:translateX(4px); }
.card .more{ color:var(--gold); }

/* Split (why-choose) */
.split{ display:grid; grid-template-columns:1fr 1.1fr; gap:56px; align-items:center; }
.checklist{ list-style:none; margin-top:24px; display:grid; gap:14px; }
.checklist li{ display:flex; gap:13px; align-items:flex-start; font-size:15.5px; color:var(--ink); }
.checklist li .ck{ width:24px; height:24px; border-radius:50%; background:rgba(199,154,60,.15);
  display:flex; align-items:center; justify-content:center; flex:none; margin-top:2px; }
.checklist li .ck svg{ width:13px; height:13px; stroke:var(--gold); }

.panel{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; box-shadow:var(--shadow-sm); }
.panel-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; }
.panel-cell{ padding:22px; }
.panel-cell:nth-child(odd){ border-right:1px solid var(--line); }
.panel-cell:nth-child(-n+2){ border-bottom:1px solid var(--line); }
.panel-cell .pico{ width:40px; height:40px; border-radius:10px; background:var(--bg-soft);
  display:flex; align-items:center; justify-content:center; margin-bottom:12px; }
.panel-cell .pico svg{ width:21px; height:21px; stroke:var(--navy); }
.panel-cell h4{ font-size:15px; font-weight:700; margin-bottom:5px; }
.panel-cell p{ font-size:13px; }
.quote-box{ margin-top:24px; background:var(--navy); border-radius:var(--radius);
  padding:26px 28px; color:#fff; position:relative; overflow:hidden; }
.quote-box::before{ content:'\201C'; position:absolute; left:18px; top:-6px; font-size:90px;
  font-family:var(--head); font-weight:900; color:var(--gold); opacity:.6; line-height:1; }
.quote-box p{ position:relative; font-size:16px; line-height:1.55; color:#eef2f8; padding-left:30px; }
.quote-box .who{ margin-top:12px; font-family:var(--head); font-weight:700; font-size:13px; color:var(--gold-soft); padding-left:30px; }

/* Trust strip */
.trust{ border-top:1px solid var(--line); padding:42px 0; }
.trust-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:34px; }
.trust-item{ display:flex; gap:15px; align-items:flex-start; }
.trust-item .tico{ width:44px; height:44px; flex:none; border-radius:11px; background:var(--bg-soft);
  display:flex; align-items:center; justify-content:center; }
.trust-item .tico svg{ width:23px; height:23px; stroke:var(--navy); }
.trust-item h5{ font-family:var(--head); font-weight:700; font-size:14.5px; color:var(--ink); margin-bottom:3px; }
.trust-item p{ font-size:13.5px; }

/* CTA band */
.cta-band{ background:linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%);
  border-radius:var(--radius-lg); padding:46px 48px; display:flex; align-items:center;
  justify-content:space-between; gap:30px; flex-wrap:wrap; position:relative; overflow:hidden; }
.cta-band::before{ content:''; position:absolute; right:-60px; top:-60px; width:260px; height:260px;
  border-radius:50%; background:radial-gradient(circle,rgba(199,154,60,.18),transparent 70%); }
.cta-band h3{ color:#fff; font-size:26px; font-weight:800; }
.cta-band p{ color:rgba(255,255,255,.7); margin-top:8px; font-size:15px; }
.cta-band .cta-text{ position:relative; max-width:560px; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero{ background:linear-gradient(135deg,var(--navy) 0%,var(--navy-deep) 100%); color:#fff;
  padding:72px 0 76px; position:relative; overflow:hidden; }
.page-hero::before{ content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 85% 20%,rgba(199,154,60,.16),transparent 40%); }
.page-hero .container{ position:relative; }
.page-hero h1{ color:#fff; font-size:clamp(32px,4.4vw,50px); font-weight:800; max-width:18ch; }
.page-hero h1 .accent{ color:var(--gold-soft); }
.page-hero p{ color:rgba(255,255,255,.78); margin-top:18px; font-size:18px; max-width:62ch; }
.crumb{ font-family:var(--head); font-weight:600; font-size:12.5px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--gold-soft); margin-bottom:18px; }
.crumb a{ color:rgba(255,255,255,.6); }
.crumb a:hover{ color:#fff; }

/* Detailed service block */
.svc-block{ display:grid; grid-template-columns:1fr 1.25fr; gap:48px; align-items:start; padding:54px 0; border-bottom:1px solid var(--line); }
.svc-block:last-child{ border-bottom:0; }
.svc-block.rev .svc-media{ order:2; }
.svc-media{ position:sticky; top:110px; }
.svc-media .mico{ width:64px; height:64px; border-radius:15px; background:var(--navy);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
.svc-media .mico svg{ width:32px; height:32px; stroke:var(--gold-soft); }
.svc-media h2{ font-size:27px; font-weight:800; margin-bottom:10px; }
.svc-media .tag{ font-family:var(--head); font-weight:700; font-size:12px; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold); display:block; margin-bottom:14px; }
.svc-media p{ font-size:15px; }
.svc-list{ list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:12px 26px; }
.svc-list li{ display:flex; gap:11px; align-items:flex-start; font-size:14.5px; color:var(--ink); }
.svc-list li .d{ width:7px; height:7px; border-radius:50%; background:var(--gold); flex:none; margin-top:8px; }
.svc-fit{ margin-top:24px; background:var(--bg-soft); border-left:3px solid var(--gold);
  border-radius:8px; padding:16px 20px; font-size:14px; }
.svc-fit b{ color:var(--ink); font-family:var(--head); }

/* Industries grid */
.ind-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ind-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; transition:.25s; }
.ind-card:hover{ box-shadow:var(--shadow); transform:translateY(-4px); }
.ind-card .iico{ width:50px; height:50px; border-radius:12px; background:rgba(22,41,78,.06);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; }
.ind-card .iico svg{ width:26px; height:26px; stroke:var(--navy); }
.ind-card h3{ font-size:18px; font-weight:700; margin-bottom:8px; }
.ind-card p{ font-size:14px; }

/* Areas */
.area-wrap{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.area-list{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:22px; }
.area-list .a{ display:flex; align-items:center; gap:11px; background:#fff; border:1px solid var(--line);
  border-radius:10px; padding:13px 16px; font-family:var(--head); font-weight:600; font-size:14.5px; color:var(--ink); }
.area-list .a svg{ width:18px; height:18px; stroke:var(--gold); flex:none; }
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.chip{ background:var(--bg-soft); border:1px solid var(--line); border-radius:30px;
  padding:8px 16px; font-family:var(--head); font-weight:600; font-size:13px; color:var(--navy); }

/* Contact */
.contact-wrap{ display:grid; grid-template-columns:1fr 1.15fr; gap:48px; align-items:start; }
.info-card{ background:var(--navy); color:#fff; border-radius:var(--radius-lg); padding:36px; }
.info-card h3{ color:#fff; font-size:22px; margin-bottom:22px; }
.info-row{ display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.12); }
.info-row:last-child{ border-bottom:0; }
.info-row .iico{ width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center; flex:none; }
.info-row .iico svg{ width:20px; height:20px; stroke:var(--gold-soft); }
.info-row .k{ font-family:var(--head); font-weight:600; font-size:11.5px; letter-spacing:.12em;
  text-transform:uppercase; color:var(--gold-soft); }
.info-row .v{ font-size:15.5px; color:#fff; margin-top:2px; }
.info-row .v a:hover{ color:var(--gold-soft); }

.form{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg); padding:36px; box-shadow:var(--shadow-sm); }
.form .tabs{ display:flex; gap:8px; background:var(--bg-soft); padding:5px; border-radius:11px; margin-bottom:26px; }
.form .tab{ flex:1; text-align:center; font-family:var(--head); font-weight:700; font-size:13px;
  padding:11px; border-radius:8px; cursor:pointer; color:var(--body); transition:.2s; }
.form .tab.active{ background:var(--navy); color:#fff; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-family:var(--head); font-weight:600; font-size:12.5px;
  letter-spacing:.04em; color:var(--ink); margin-bottom:7px; text-transform:uppercase; }
.field input,.field select,.field textarea{
  width:100%; font-family:var(--text); font-size:15px; color:var(--ink);
  padding:13px 15px; border:1.5px solid var(--line-2); border-radius:10px; background:#fff; transition:.2s;
}
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(199,154,60,.12); }
.field textarea{ resize:vertical; min-height:110px; }
.row2{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-set{ display:none; }
.form-set.active{ display:block; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer{ background:var(--navy-deep); color:#cdd6e4; padding:64px 0 26px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.1fr; gap:40px; }
.foot-brand .logo-word .row1,.foot-brand .logo-word .row2{ color:#fff; }
.foot-brand .logo-mark circle{ stroke:#fff; }
.foot-brand .logo-mark rect{ fill:#fff; }
.foot-brand p{ font-size:14px; color:#94a3ba; margin-top:18px; max-width:34ch; }
.foot-col h5{ font-family:var(--head); font-weight:700; font-size:12.5px; letter-spacing:.12em;
  text-transform:uppercase; color:#fff; margin-bottom:18px; }
.foot-col a,.foot-col p{ display:block; font-size:14px; color:#9fabbf; padding:5px 0; transition:.2s; }
.foot-col a:hover{ color:var(--gold-soft); }
.foot-bottom{ border-top:1px solid rgba(255,255,255,.1); margin-top:44px; padding-top:22px;
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; font-size:13px; color:#7e8ba2; }
.foot-tag{ font-family:var(--head); font-weight:700; color:var(--gold-soft); letter-spacing:.06em; }

/* ============================================================
   ANIMATIONS
============================================================ */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .hero-visual{ max-width:520px; }
  .split,.area-wrap,.contact-wrap{ grid-template-columns:1fr; gap:36px; }
  .svc-block,.svc-block.rev{ grid-template-columns:1fr; gap:26px; }
  .svc-block.rev .svc-media{ order:0; }
  .svc-media{ position:static; }
  .cards,.ind-grid,.trust-grid{ grid-template-columns:1fr 1fr; }
  .feat-grid{ grid-template-columns:1fr 1fr; gap:26px 30px; }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:680px){
  .nav{ height:80px; }
  .nav-links{
    position:fixed; inset:80px 0 auto 0; flex-direction:column; align-items:stretch;
    background:#fff; border-bottom:1px solid var(--line); padding:14px 24px 22px; gap:4px;
    box-shadow:var(--shadow); transform:translateY(-130%); transition:transform .32s ease; margin:0;
  }
  .nav-links.open{ transform:translateY(0); }
  .nav-links a{ padding:13px 0; border-bottom:1px solid var(--line); }
  .nav-links a.active::after{ display:none; }
  .nav-cta{ margin:10px 0 0; }
  .nav-toggle{ display:block; }
  .cards,.ind-grid,.trust-grid,.feat-grid,.row2,.svc-list,.area-list,.panel-grid,.foot-grid{ grid-template-columns:1fr; }
  .panel-cell:nth-child(odd){ border-right:0; }
  .panel-cell:nth-child(3){ border-bottom:1px solid var(--line); }
  .section{ padding:60px 0; }
  .cta-band{ padding:34px 28px; }
  .hero-badge{ display:none; }
  .form,.info-card{ padding:26px; }
}

/* ============================================================
   LEGAL / PRIVACY CONTENT
============================================================ */
.legal-content{ max-width:760px; margin:0 auto; font-size:15.5px; line-height:1.78; color:#000; }
.legal-content h2{ font-size:22px; font-weight:700; color:var(--ink); margin-top:40px; margin-bottom:14px; letter-spacing:-.01em; }
.legal-content p{ margin-bottom:14px; }
.legal-content ul{ margin:0 0 18px 22px; padding:0; }
.legal-content li{ margin-bottom:7px; }
.legal-content strong{ color:var(--ink); font-weight:700; }
.legal-content a{ color:var(--navy); text-decoration:underline; text-underline-offset:3px; }
.legal-content a:hover{ color:var(--gold); }
.legal-content .effective{ background:var(--bg-soft); border-left:3px solid var(--gold);
  padding:14px 18px; border-radius:8px; margin-bottom:30px; font-size:14px; line-height:1.6; }
