/* ==========================================================================
   LEO RECOVERY — Design Tokens
   Palette: deep navy authority + warm gold trust + sage calm + cream paper
   Type: Fraunces (display) / Inter (body) / IBM Plex Mono (data & ledger)
   ========================================================================== */

:root{
  --navy-deep:  #071527;
  --navy:       #0B1F3A;
  --navy-soft:  #142A4D;
  --gold:       #C89B3C;
  --gold-light: #E4C077;
  --gold-dim:   #8f6f2a;
  --sage:       #4E7C74;
  --sage-light: #7FAD9F;
  --cream:      #F7F4EC;
  --paper:      #FCFAF5;
  --line:       #E4DFD1;
  --slate:      #2B2F38;
  --slate-soft: #5B6270;
  --white:      #FFFFFF;

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1180px;
  --radius: 6px;
  --shadow-soft: 0 10px 30px rgba(11,31,58,0.08);
  --shadow-deep: 0 20px 50px rgba(7,21,39,0.25);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--slate);
  background:var(--paper);
  line-height:1.6;
  -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{ font-family:var(--font-display); margin:0; color:var(--navy); line-height:1.15; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

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

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

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

/* ---------- eyebrow / kicker ---------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--gold-dim);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:22px; height:1px;
  background:var(--gold);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:500;
  background:rgba(7,21,39,0.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 28px;
  max-width:var(--container);
  margin:0 auto;
}
.brand{
  display:flex; align-items:center; gap:12px;
  color:var(--white);
}
.brand-logo{
  width:80px;
  height:auto;
  object-fit:contain;
  flex-shrink:0;
}
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-title{
  font-family:var(--font-display);
  font-size:18px;
  font-weight:700;
  color:var(--white);
  letter-spacing:0.02em;
}
.brand-sub{
  font-family:var(--font-mono);
  font-size:11px;
  color:var(--gold-light);
  text-transform:uppercase;
  letter-spacing:0.18em;
  margin-top:2px;
}

/* Responsive adjustments for navbar brand */
@media (max-width:900px){
  .brand-logo{ width:48px; }
  .brand-title{ font-size:16px; }
  .brand-sub{ font-size:10px; }
}
@media (max-width:640px){
  .brand-logo{ width:42px; }
  .brand-text{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .nav-links{ display:none; }
  .nav-cta{ display:none; }
}
.brand-text strong{ font-family:var(--font-display); font-size:18px; letter-spacing:0.03em; }
.brand-text span{ font-family:var(--font-mono); font-size:9.5px; letter-spacing:0.12em; color:var(--sage-light); text-transform:uppercase; }

.nav-links{ display:flex; gap:30px; }
.nav-links a{
  color:rgba(255,255,255,0.78);
  font-size:14.5px;
  font-weight:500;
  transition:color .2s ease;
  position:relative;
}
.nav-links a:hover{ color:var(--gold-light); }

.nav-cta{ display:flex; align-items:center; gap:14px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 24px;
  border-radius:var(--radius);
  font-size:14.5px; font-weight:600;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-gold{
  background:linear-gradient(180deg, var(--gold-light), var(--gold));
  color:var(--navy-deep);
  box-shadow:0 8px 20px rgba(200,155,60,0.28);
}
.btn-gold:hover{ transform:translateY(-2px); box-shadow:0 12px 26px rgba(200,155,60,0.38); }
.btn-outline{
  border-color:rgba(255,255,255,0.35);
  color:var(--white);
  background:transparent;
}
.btn-outline:hover{ border-color:var(--gold-light); color:var(--gold-light); }
.btn-outline-navy{
  border-color:var(--navy);
  color:var(--navy);
  background:transparent;
}
.btn-outline-navy:hover{ background:var(--navy); color:var(--white); }
.btn-block{ width:100%; }
.btn-sage{ background:var(--sage); color:var(--white); }
.btn-sage:hover{ background:var(--sage-light); transform:translateY(-2px); }

.menu-toggle{
  display:none;
  background:none; border:none; color:var(--white);
  width:34px; height:34px;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  background:radial-gradient(120% 140% at 78% -10%, #16345c 0%, var(--navy) 42%, var(--navy-deep) 100%);
  color:var(--white);
  overflow:hidden;
  padding:96px 0 80px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:56px;
  align-items:center;
  position:relative; z-index:2;
}
.hero h1{
  color:var(--white);
  font-size:clamp(34px, 4.4vw, 56px);
  font-weight:600;
  margin:18px 0 22px;
  letter-spacing:-0.01em;
}
.hero h1 em{
  font-style:italic;
  color:var(--gold-light);
}
.hero-sub{
  font-size:17px;
  color:rgba(255,255,255,0.78);
  max-width:520px;
  margin-bottom:14px;
}
.hero-support{
  font-size:14.5px;
  color:rgba(255,255,255,0.58);
  max-width:520px;
  margin-bottom:34px;
}
.hero-ctas{
  display:flex; flex-wrap:wrap; gap:14px;
  margin-bottom:38px;
}
.trust-strip{
  display:flex; flex-wrap:wrap;
  gap:10px 22px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,0.12);
}
.trust-item{
  display:flex; align-items:center; gap:8px;
  font-size:13px; color:rgba(255,255,255,0.72);
  font-family:var(--font-mono);
}
.trust-item svg{ color:var(--sage-light); width:15px; height:15px; flex-shrink:0; }

/* --- hero signature visual: global recovery route map --- */
.route-panel{
  position:relative;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:14px;
  padding:26px 24px 22px;
  backdrop-filter:blur(6px);
}
.route-panel-head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:14px;
}
.route-panel-head h3{
  color:var(--white); font-size:14.5px; font-family:var(--font-mono);
  letter-spacing:0.08em; text-transform:uppercase; font-weight:500;
}
.route-live{
  display:flex; align-items:center; gap:6px;
  font-family:var(--font-mono); font-size:11px; color:var(--sage-light);
}
.route-live .dot{
  width:7px; height:7px; border-radius:50%; background:var(--sage-light);
  animation:pulse-dot 1.8s infinite;
}
@keyframes pulse-dot{ 0%,100%{opacity:1;} 50%{opacity:0.25;} }

.route-map-svg{ width:100%; height:auto; }
.route-map-svg .land{ fill:rgba(255,255,255,0.07); }
.route-map-svg .path-line{
  fill:none; stroke:var(--gold-light); stroke-width:1.4; stroke-dasharray:4 4;
  opacity:0.85;
  stroke-dashoffset:0;
  animation:dash-move 6s linear infinite;
}
@keyframes dash-move{ to{ stroke-dashoffset:-40; } }
.route-map-svg .node{ fill:var(--gold-light); }
.route-map-svg .node-pulse{
  fill:none; stroke:var(--sage-light); stroke-width:1.5; opacity:0.7;
  animation:node-ripple 2.4s ease-out infinite;
  transform-origin:center;
}
@keyframes node-ripple{
  0%{ transform:scale(0.6); opacity:0.8; }
  100%{ transform:scale(2.4); opacity:0; }
}
.route-map-svg .node-label{
  font-family:'IBM Plex Mono', monospace; font-size:7.5px; fill:rgba(255,255,255,0.6);
  letter-spacing:0.04em;
}
.route-stats{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:10px; margin-top:18px;
  padding-top:16px; border-top:1px dashed rgba(255,255,255,0.15);
}
.route-stat{ text-align:left; }
.route-stat .num{
  font-family:var(--font-mono); color:var(--gold-light);
  font-size:19px; font-weight:600; display:block;
}
.route-stat .lab{
  font-size:10.5px; color:rgba(255,255,255,0.55);
  text-transform:uppercase; letter-spacing:0.06em;
}

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */
section{ padding:88px 0; }
.section-head{
  max-width:640px;
  margin-bottom:52px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{
  font-size:clamp(28px, 3.2vw, 40px);
  margin:14px 0 16px;
  font-weight:600;
}
.section-head p{ color:var(--slate-soft); font-size:16px; }
.bg-cream{ background:var(--cream); }
.bg-navy{ background:var(--navy); color:var(--white); }
.bg-navy .section-head h2{ color:var(--white); }
.bg-navy .section-head p{ color:rgba(255,255,255,0.65); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:64px;
  align-items:start;
}
.about-media{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.about-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.about-media-badge{
  position:absolute; bottom:18px; left:18px; right:18px;
  background:rgba(7,21,39,0.85);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:8px;
  padding:14px 16px;
  color:var(--white);
  backdrop-filter:blur(6px);
}
.about-media-badge strong{ font-family:var(--font-mono); color:var(--gold-light); font-size:20px; }
.about-media-badge span{ display:block; font-size:12px; color:rgba(255,255,255,0.7); margin-top:2px; }

.about-copy p{ color:var(--slate-soft); margin-bottom:16px; font-size:15.5px; }
.value-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
  margin-top:30px;
}
.value-chip{
  border:1px solid var(--line);
  background:var(--white);
  border-radius:8px;
  padding:14px 16px;
  display:flex; align-items:center; gap:10px;
  font-size:13.5px; font-weight:600; color:var(--navy);
}
.value-chip svg{ color:var(--sage); width:18px; height:18px; flex-shrink:0; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-tabs{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-bottom:40px;
}
.tab-btn{
  padding:11px 20px;
  border-radius:30px;
  border:1px solid var(--line);
  background:var(--white);
  font-size:13.5px; font-weight:600;
  color:var(--slate-soft);
  transition:all .18s ease;
}
.tab-btn.active, .tab-btn:hover{
  background:var(--navy); color:var(--white); border-color:var(--navy);
}
.service-panels{ position:relative; }
.service-panel{ display:none; }
.service-panel.active{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }

.service-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  padding:26px 24px;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-soft);
  border-color:var(--gold);
}
.service-icon{
  width:44px; height:44px;
  border-radius:9px;
  background:linear-gradient(160deg, var(--sage), var(--navy-soft));
  display:flex; align-items:center; justify-content:center;
  color:var(--white);
  margin-bottom:16px;
}
.service-icon svg{ width:21px; height:21px; }
.service-card h3{ font-size:17px; margin-bottom:8px; font-weight:600; }
.service-card p{ font-size:14px; color:var(--slate-soft); }

/* ==========================================================================
   PROCESS / HOW IT WORKS
   ========================================================================== */
.process-track{
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:0;
  counter-reset:step;
}
.process-track::before{
  content:'';
  position:absolute; top:26px; left:6%; right:6%;
  height:1px;
  background:repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px);
  z-index:0;
}
.process-step{
  position:relative; z-index:1;
  padding:0 14px;
  text-align:left;
}
.process-num{
  width:52px; height:52px;
  border-radius:50%;
  background:var(--paper);
  border:1.5px solid var(--gold);
  color:var(--navy);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:600; font-size:16px;
  margin-bottom:18px;
}
.process-step h4{ font-size:15.5px; margin-bottom:8px; }
.process-step p{ font-size:13.5px; color:var(--slate-soft); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid{
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:1px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:10px;
  overflow:hidden;
}
.why-item{
  background:var(--navy);
  padding:26px 20px;
  display:flex; flex-direction:column; gap:12px;
}
.why-item svg{ color:var(--gold-light); width:22px; height:22px; }
.why-item h4{ color:var(--white); font-size:14.5px; font-weight:600; }
.why-item p{ font-size:12.5px; color:rgba(255,255,255,0.55); }

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industry-marquee{
  display:flex; flex-wrap:wrap; gap:12px;
}
.industry-chip{
  padding:12px 20px;
  border:1px solid var(--line);
  border-radius:30px;
  background:var(--white);
  font-size:13.5px; font-weight:600; color:var(--navy);
  display:flex; align-items:center; gap:8px;
}
.industry-chip svg{ width:15px; height:15px; color:var(--sage); }

/* ==========================================================================
   GLOBAL COVERAGE + METRICS (LEDGER STRIP)
   ========================================================================== */
.coverage-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.country-list{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:12px 20px;
}
.country-list li{
  font-size:14.5px; font-weight:500;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  display:flex; justify-content:space-between;
  color:var(--slate);
}
.country-list li span{ font-family:var(--font-mono); font-size:11px; color:var(--sage); }

.ledger{
  background:var(--navy-deep);
  border-radius:12px;
  padding:36px 30px;
  color:var(--white);
}
.ledger-title{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.1em;
  text-transform:uppercase; color:var(--gold-light);
  margin-bottom:24px; display:block;
  border-bottom:1px dashed rgba(255,255,255,0.2);
  padding-bottom:14px;
}
.ledger-row{
  display:flex; justify-content:space-between; align-items:baseline;
  padding:13px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.ledger-row:last-child{ border-bottom:none; }
.ledger-row .val{ font-family:var(--font-mono); font-size:24px; color:var(--gold-light); font-weight:600; }
.ledger-row .lab{ font-size:13px; color:rgba(255,255,255,0.65); }

/* ==========================================================================
   CASE TYPES
   ========================================================================== */
.casetype-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.casetype-item{
  padding:18px 20px;
  background:var(--white);
  border:1px solid var(--line);
  border-left:3px solid var(--gold);
  border-radius:6px;
  font-size:14px; font-weight:600; color:var(--navy);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid{
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.testimonial-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  padding:28px 26px;
  position:relative;
}
.testimonial-card .quote-mark{
  font-family:var(--font-display);
  font-size:52px; color:var(--gold-light);
  line-height:1; margin-bottom:6px; display:block;
}
.testimonial-card p{ font-size:14.5px; color:var(--slate); font-style:italic; margin-bottom:18px; }
.testimonial-foot{ display:flex; align-items:center; gap:10px; }
.testimonial-avatar{
  width:36px; height:36px; border-radius:50%;
  background:var(--sage); color:var(--white);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-size:13px; font-weight:600;
}
.testimonial-foot strong{ font-size:13px; display:block; color:var(--navy); }
.testimonial-foot span{ font-size:11.5px; color:var(--slate-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-q{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 4px;
  background:none; border:none;
  text-align:left;
  font-family:var(--font-display);
  font-size:16.5px; font-weight:500;
  color:var(--navy);
}
.faq-q svg{ width:18px; height:18px; color:var(--gold); transition:transform .25s ease; flex-shrink:0; }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{
  max-height:0; overflow:hidden;
  transition:max-height .3s ease;
  color:var(--slate-soft); font-size:14.5px;
}
.faq-a-inner{ padding:0 4px 22px; }
.faq-item.open .faq-a{ max-height:200px; }

/* ==========================================================================
   CONTACT + FORM
   ========================================================================== */
.contact-grid{
  display:grid; grid-template-columns:0.85fr 1.15fr;
  gap:50px;
  align-items:flex-start;
}
.contact-info-card{
  background:var(--navy);
  color:var(--white);
  border-radius:12px;
  padding:34px 30px;
}
.contact-info-card h3{ color:var(--white); font-size:22px; margin-bottom:12px; }
.contact-info-card > p{ color:rgba(255,255,255,0.65); font-size:14.5px; margin-bottom:26px; }
.contact-line{
  display:flex; gap:12px; align-items:flex-start;
  padding:14px 0; border-top:1px solid rgba(255,255,255,0.1);
}
.contact-line svg{ width:18px; height:18px; color:var(--gold-light); flex-shrink:0; margin-top:2px; }
.contact-line strong{ display:block; font-size:13.5px; color:var(--white); }
.contact-line span{ font-size:13px; color:rgba(255,255,255,0.6); }

.form-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  padding:34px;
  box-shadow:var(--shadow-soft);
}
.form-grid{
  display:grid; grid-template-columns:1fr 1fr;
  gap:18px;
}
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.field.full{ grid-column:1 / -1; }
.field label{ font-size:12.5px; font-weight:600; color:var(--navy); letter-spacing:0.01em; }
.field label .req{ color:var(--gold-dim); }
.field input, .field select, .field textarea{
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:7px;
  font-family:var(--font-body);
  font-size:14.5px;
  background:var(--paper);
  color:var(--slate);
  transition:border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline:none;
  border-color:var(--sage);
  box-shadow:0 0 0 3px rgba(78,124,116,0.15);
}
.field textarea{ resize:vertical; min-height:90px; }
.file-drop{
  border:1.5px dashed var(--line);
  border-radius:8px;
  padding:20px 16px;
  text-align:center;
  font-size:13px;
  color:var(--slate-soft);
  cursor:pointer;
  transition:border-color .18s ease, background .18s ease;
}
.file-drop:hover{ border-color:var(--sage); background:rgba(78,124,116,0.04); }
.file-drop svg{ width:20px; height:20px; color:var(--sage); margin-bottom:6px; }
.file-drop input{ display:none; }
.file-name{ font-family:var(--font-mono); font-size:11.5px; color:var(--navy); margin-top:6px; }

.form-note{
  display:flex; gap:10px; align-items:flex-start;
  font-size:12.5px; color:var(--slate-soft);
  margin-top:16px;
  padding-top:16px; border-top:1px dashed var(--line);
}
.form-note svg{ width:15px; height:15px; color:var(--sage); flex-shrink:0; margin-top:1px; }

.form-status{
  margin-top:16px; padding:12px 14px; border-radius:7px;
  font-size:13.5px; display:none;
}
.form-status.show{ display:block; }
.form-status.success{ background:rgba(78,124,116,0.12); color:#2e5148; border:1px solid var(--sage); }
.form-status.error{ background:rgba(196,79,58,0.1); color:#a3402c; border:1px solid #c44f3a; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background:var(--navy-deep);
  color:rgba(255,255,255,0.6);
  padding:60px 0 26px;
}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
  border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-brand p{ font-size:13.5px; margin:14px 0 18px; color:rgba(255,255,255,0.5); max-width:280px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.15);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .18s ease, color .18s ease;
}
.footer-social a:hover{ border-color:var(--gold-light); color:var(--gold-light); }
.footer-social svg{ width:15px; height:15px; }
.footer-col h5{
  color:var(--white); font-size:13px; text-transform:uppercase;
  letter-spacing:0.08em; margin-bottom:16px; font-family:var(--font-mono);
}
.footer-col a, .footer-col li{
  display:block; font-size:13.5px; color:rgba(255,255,255,0.55);
  margin-bottom:10px; transition:color .18s ease;
}
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
  padding-top:24px;
  font-size:12.5px;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float{
  position:fixed; bottom:26px; right:26px; z-index:600;
  width:56px; height:56px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px rgba(37,211,102,0.4);
  transition:transform .2s ease;
}
.whatsapp-float:hover{ transform:scale(1.08); }
.whatsapp-float svg{ width:26px; height:26px; color:var(--white); }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px){
  .hero-grid{ grid-template-columns:1fr; }
  .route-panel{ max-width:520px; }
  .about-grid, .contact-grid, .coverage-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:repeat(3,1fr); }
  .why-item:nth-child(4), .why-item:nth-child(5){ display:none; }
  .process-track{ grid-template-columns:repeat(3,1fr); row-gap:36px; }
  .process-track::before{ display:none; }
  .service-panel.active{ grid-template-columns:repeat(2,1fr); }
  .testimonial-grid{ grid-template-columns:1fr; }
  .casetype-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:820px){
  .nav-links{ display:none; }
  .menu-toggle{ display:flex; align-items:center; justify-content:center; }
  .hero{ padding:64px 0 56px; }
  section{ padding:64px 0; }
  .why-grid{ grid-template-columns:1fr 1fr; }
  .process-track{ grid-template-columns:1fr 1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .contact-info-card, .form-card{ padding:26px 22px; }
}
@media (max-width:560px){
  .container{ padding:0 18px; }
  .hero-ctas{ flex-direction:column; align-items:stretch; }
  .nav-cta .btn-outline{ display:none; }
  .service-panel.active{ grid-template-columns:1fr; }
  .value-grid{ grid-template-columns:1fr 1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .process-track{ grid-template-columns:1fr; }
  .casetype-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:28px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .country-list{ grid-template-columns:1fr; }
}

.mobile-menu{
  display:none;
  position:fixed; inset:0; z-index:700;
  background:var(--navy-deep);
  padding:24px 24px 40px;
  overflow-y:auto;
}
.mobile-menu.open{ display:block; }
.mobile-menu-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:32px; }
.mobile-menu-close{ background:none; border:none; color:var(--white); width:30px; height:30px; }
.mobile-menu a{
  display:block; padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
  color:var(--white); font-family:var(--font-display); font-size:22px;
}
.mobile-menu .btn{ margin-top:24px; }
