/* ================= TOKENS ================= */
:root {
  --bg:        #0b1120;   /* deep navy-black */
  --bg-2:      #0f172a;   /* navy panel */
  --bg-3:      #131c30;   /* raised card */
  --charcoal:  #1b2436;
  --line:      rgba(255,255,255,.08);
  --line-2:    rgba(255,255,255,.14);
  --text:      #eef2f8;
  --muted:     #9aa7bd;
  --muted-2:   #6c7a92;
  --accent:    #f2591f;   /* amber-red */
  --accent-2:  #ff7a3c;   /* lighter amber */
  --accent-red:#d7263d;   /* brand red */
  --radius:    16px;
  --radius-sm: 11px;
  --maxw:      1520px;
  --shadow:    0 24px 60px -24px rgba(0,0,0,.7);
  --ease:      cubic-bezier(.2,.7,.2,1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }

.accent-text { color: var(--accent-2); }
.kicker {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: .95rem; padding: 12px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-accent {
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff; box-shadow: 0 10px 26px -10px rgba(242,89,31,.75);
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(242,89,31,.9); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--text); border-color: var(--line-2); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

.link-arrow { color: var(--accent-2); font-weight: 600; display: inline-block; margin-top: 6px; transition: gap .2s; }
.link-arrow:hover { text-decoration: underline; }

/* ================= HEADER ================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
/* Scrim so nav stays legible over the bright hero sky before scrolling */
.site-header:not(.scrolled) { background: linear-gradient(180deg, rgba(9,14,26,.72) 0%, rgba(9,14,26,.28) 60%, rgba(9,14,26,0) 100%); }
.site-header.scrolled {
  background: rgba(11,17,32,.9);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { color: var(--accent-2); display: inline-flex; }
.brand-text { font-weight: 900; font-size: 1.28rem; letter-spacing: -0.02em; line-height: 1; }
.brand-sub { font-weight: 500; color: var(--muted); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; display: block; margin-top: 2px; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > a { padding: 9px 15px; border-radius: 999px; font-weight: 600; color: #f2f5fa; transition: color .2s, background .2s; text-shadow: 0 1px 8px rgba(0,0,0,.35); }
.main-nav > a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-cta { margin-left: 8px; color: #fff; text-shadow: none; box-shadow: 0 8px 22px -8px rgba(242,89,31,.85), 0 0 0 1px rgba(255,255,255,.12) inset; }
.nav-cta:hover { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: rgba(255,255,255,.06); border: 1px solid var(--line-2); border-radius: 12px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ================= HERO ================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(11,17,32,.94) 0%, rgba(11,17,32,.72) 38%, rgba(11,17,32,.28) 66%, rgba(11,17,32,.55) 100%),
    linear-gradient(0deg, rgba(11,17,32,.9) 0%, rgba(11,17,32,0) 40%);
}
.hero-content { position: relative; z-index: 2; padding-block: 120px 60px; max-width: 660px; text-align: left; }
.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text); background: rgba(255,255,255,.08); border: 1px solid var(--line-2);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; backdrop-filter: blur(6px);
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 900; margin-bottom: 20px; }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.2rem); color: #d3dbea; max-width: 620px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }

.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 40px; }
.hero-trust li { color: var(--muted); font-size: .92rem; }
.hero-trust strong { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }

/* ================= HIGHLIGHT BAND ================= */
.highlight-band {
  position: relative;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--charcoal) 100%);
  border-block: 1px solid var(--line);
  padding-block: clamp(34px, 5vw, 54px);
  overflow: hidden;
}
.highlight-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 140% at 12% 0%, rgba(242,89,31,.16), transparent 55%);
  pointer-events: none;
}
.highlight-inner { position: relative; display: flex; flex-direction: column; gap: 12px; border-left: 4px solid var(--accent); padding-left: clamp(18px, 3vw, 28px); }
.highlight-label { font-size: .8rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--accent-2); }
.highlight-text { font-size: clamp(1.6rem, 4.2vw, 2.9rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.08; max-width: 900px; }

/* ================= SECTION BASE ================= */
.section { padding-block: clamp(70px, 9vw, 120px); position: relative; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head p { color: var(--muted); margin-top: 14px; font-size: 1.05rem; }

/* ================= ABOUT ================= */
.about { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.about-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.about-copy h2 { margin-bottom: 20px; }
.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 1.06rem; }
.about-copy strong { color: var(--text); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; }
.stat-num { display: block; font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; background: linear-gradient(180deg,#fff,#c6d0e2); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: var(--muted); font-size: .9rem; }

/* ================= SERVICES ================= */
.services { background: var(--bg-2); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: linear-gradient(180deg, var(--bg-3), var(--charcoal));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-red)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  color: var(--accent-2); background: rgba(242,89,31,.12); border: 1px solid rgba(242,89,31,.25);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .95rem; }

/* ================= COVERAGE ================= */
.coverage { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.coverage-copy p { color: var(--muted); margin: 18px 0 26px; font-size: 1.06rem; max-width: 460px; }
.country-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 420px; }
.country-list li {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-weight: 600; font-size: .96rem; display: flex; align-items: center; gap: 10px;
  transition: border-color .25s, transform .25s;
}
.country-list li:hover { border-color: var(--accent); transform: translateX(4px); }
.coverage-map { display: grid; place-items: center; }
.map-svg { width: 100%; max-width: 440px; }
.map-svg .route { fill: none; stroke: var(--accent); stroke-width: 2; stroke-dasharray: 4 6; opacity: .6; }
.map-svg .nodes circle { fill: var(--accent-2); stroke: rgba(255,122,60,.35); stroke-width: 8; paint-order: stroke; }
.map-svg .map-label { fill: #cdd6e6; font-size: 12px; font-weight: 700; text-anchor: middle; font-family: "Inter", sans-serif; }

/* ================= WHY ================= */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item { padding: 28px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg-2); transition: border-color .3s, transform .3s; }
.why-item:hover { border-color: var(--line-2); transform: translateY(-4px); }
.why-num { font-size: .85rem; font-weight: 800; color: var(--accent-2); letter-spacing: .1em; }
.why-item h3 { margin: 12px 0 8px; }
.why-item p { color: var(--muted); font-size: .93rem; }

/* ================= CONTACT ================= */
.contact { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.contact-intro > p { color: var(--muted); margin: 16px 0 30px; font-size: 1.06rem; }
.contact-methods { list-style: none; display: grid; gap: 16px; }
.contact-methods li { display: flex; align-items: center; gap: 14px; }
.cm-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--bg-3); border: 1px solid var(--line); font-size: 1.2rem; flex-shrink: 0; }
.cm-label { display: block; font-size: .78rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; }
.contact-methods a { font-weight: 600; }
.contact-methods a:hover { color: var(--accent-2); }

.quote-form { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field-row .field { margin-bottom: 0; }
.field span { font-size: .82rem; font-weight: 600; color: var(--muted); }
.field input, .field textarea {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 10px; padding: 12px 14px;
  color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s, box-shadow .2s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(242,89,31,.15); }
.form-note { margin-top: 14px; font-size: .9rem; text-align: center; min-height: 1.2em; }
.form-note.ok { color: #4ade80; }
.form-note.err { color: #f87171; }

/* ================= FOOTER ================= */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-block: 48px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 28px; align-items: center; }
.footer-brand p { color: var(--muted); font-size: .92rem; margin-top: 8px; max-width: 320px; }
.footer-nav { display: flex; gap: 22px; }
.footer-nav a { color: var(--muted); font-weight: 500; }
.footer-nav a:hover { color: var(--text); }
.footer-legal { color: var(--muted-2); font-size: .85rem; text-align: right; }

/* ================= REVEAL ANIM ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ================= RESPONSIVE ================= */
@media (max-width: 940px) {
  .about-grid, .coverage-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .footer-legal { text-align: left; }
  .coverage-map { order: -1; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(11,17,32,.97); backdrop-filter: blur(14px); padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line); transform: translateY(-120%); transition: transform .35s var(--ease); z-index: 90;
  }
  .main-nav.open { transform: none; }
  .main-nav > a { padding: 13px 15px; }
  .nav-cta { margin: 8px 0 0; text-align: center; }
  .site-header:not(.scrolled) { background: rgba(11,17,32,.6); backdrop-filter: blur(10px); }
}
@media (max-width: 560px) {
  .cards, .why-grid, .about-stats, .country-list, .field-row { grid-template-columns: 1fr; }
  .hero-content { padding-block: 110px 48px; }
  .hero-trust { gap: 18px 28px; }
  .quote-form { padding: 22px; }
  .container { padding-inline: 18px; }
}
