/* ===========================================================
   MERIDION GLOBAL LIMITED — Design System
   Palette — lightened, alternating white / sky-blue theme:
     Navy        #14315C  (text, headings, footer)
     Royal       #1F5FD9  (primary brand blue — was "azure")
     Sky         #EAF2FF  (light blue section background)
     Sky-Mid     #D6E7FF  (deeper light-blue band, cards on sky bg)
     Sky-Banner  #BFDDFF → #EAF6FF gradient (hero/banner backdrops)
     Teal        #1FB6B0  (secondary accent — map highlights)
     Gold        #F2A93B  (tertiary accent — map highlights)
     Slate       #51648A  (secondary text)
     Steel       #9FB1CC  (muted/silver, borders on light blue)
     Mist        #F7FAFF  (white-section off-white)
     White       #FFFFFF
   Type:
     Display: 'Cormorant Garamond' (echoes the classic serif wordmark)
     Body/UI : 'Inter'
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  --navy: #14315C;
  --navy-deep: #1B3F73;
  --navy-darker: #15315E;

  --slate: #51648A;
  --steel: #9FB1CC;
  --steel-light: #E3ECFB;

  --azure: #1F5FD9;
  --azure-light: #5B93F2;
  --azure-pale: #BFDDFF;

  --teal: #14B8AE;
  --teal-light: #6FE0D6;
  --gold: #F2A93B;
  --gold-light: #FFD37A;
  --coral: #FF7E6B;

  --sky: #EAF2FF;
  --sky-mid: #D9E9FF;
  --sky-deep: #C3DDFF;

  --mist: #F7FAFF;
  --white: #FFFFFF;
  --line: #DCE7FA;

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --ease: cubic-bezier(.16,.84,.32,1);
  --speed-slow: 900ms;
  --speed-med: 550ms;
  --speed-fast: 280ms;
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing: border-box; }
html{
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
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,p{ margin:0; }
svg{ display:block; }

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

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline: 2px solid var(--azure);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Utility ---------- */
.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow{
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--azure);
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.eyebrow::before{
  content:'';
  width: 28px;
  height: 1px;
  background: var(--azure);
  display:inline-block;
  flex-shrink:0;
  margin-top: 7px;
}
.section-head{
  max-width: 680px;
  margin-bottom: 56px;
}
.section-head.center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.section-head h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.15;
  margin-top: 14px;
  color: var(--navy);
}
.section-head p{
  margin-top: 18px;
  font-size: 17px;
  color: var(--slate);
  max-width: 56ch;
}
.section-head.center p{ margin-left:auto; margin-right:auto; }

section{ position: relative; }
.section-pad{ padding: 120px 0; }
@media (max-width: 768px){
  .section-pad{ padding: 80px 0; }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-body);
  font-weight:600;
  font-size: 14.5px;
  letter-spacing:.01em;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform var(--speed-fast) var(--ease), background var(--speed-fast) var(--ease), color var(--speed-fast) var(--ease), border-color var(--speed-fast) var(--ease);
  white-space: nowrap;
}
.btn-primary{
  background: var(--azure);
  color: #fff;
}
.btn-primary:hover{ background: #2459cf; transform: translateY(-2px); }
.btn-outline-light{
  border-color: rgba(255,255,255,.45);
  color: #fff;
}
.btn-outline-light:hover{ border-color:#fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-outline-dark{
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover{ background: var(--navy); color:#fff; transform: translateY(-2px); }
.btn-on-gradient{
  background: #fff;
  color: var(--navy);
}
.btn-on-gradient:hover{ background: var(--navy); color:#fff; transform: translateY(-2px); }
.btn-on-gradient:hover svg path{ stroke: #fff; }
.btn svg{ width:16px; height:16px; transition: transform var(--speed-fast) var(--ease); }
.btn:hover svg{ transform: translateX(4px); }

/* ---------- Scroll reveal ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1000ms var(--ease), transform 1000ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-delay-1{ transition-delay: 90ms; }
.reveal-delay-2{ transition-delay: 180ms; }
.reveal-delay-3{ transition-delay: 270ms; }
.reveal-delay-4{ transition-delay: 360ms; }

/* ===========================================================
   HEADER / NAV
   =========================================================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 22px 0;
  transition: padding var(--speed-med) var(--ease), background var(--speed-med) var(--ease), box-shadow var(--speed-med) var(--ease);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.site-header.scrolled{
  padding: 13px 0;
  background: rgba(20,49,92,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(20,49,92,.18);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ height: 42px; width:auto; transition: height var(--speed-med) var(--ease); }
.site-header.scrolled .brand img, .site-header.menu-open .brand img{ height: 36px; }
.brand-text{
  font-family: var(--font-display);
  font-weight:600;
  font-size: 21px;
  letter-spacing:.01em;
  color: var(--navy);
  line-height:1.1;
  transition: color var(--speed-med) var(--ease);
}
.site-header.scrolled .brand-text, .site-header.menu-open .brand-text{ color:#fff; }
.brand-text small{
  display:block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight:600;
  letter-spacing:.22em;
  color: var(--azure);
  margin-top:3px;
  transition: color var(--speed-med) var(--ease);
}
.site-header.scrolled .brand-text small, .site-header.menu-open .brand-text small{ color: var(--steel-light); }

.nav-desktop{
  display:flex;
  align-items:center;
  gap:38px;
}
.nav-desktop a{
  color: var(--navy);
  font-size: 14px;
  font-weight:500;
  letter-spacing:.02em;
  position:relative;
  padding: 6px 0;
  transition: color var(--speed-med) var(--ease);
}
.site-header.scrolled .nav-desktop a{ color: rgba(255,255,255,.86); }
.nav-desktop a::after{
  content:'';
  position:absolute;
  left:0; bottom:0;
  width:0; height:1px;
  background: var(--azure);
  transition: width var(--speed-med) var(--ease);
}
.site-header.scrolled .nav-desktop a::after{ background: var(--azure-light); }
.nav-desktop a:hover::after, .nav-desktop a.active::after{ width:100%; }
.nav-desktop a:hover{ color: var(--azure); }
.site-header.scrolled .nav-desktop a:hover{ color:#fff; }

.nav-cta{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-cta .btn{ padding: 11px 22px; font-size:13.5px; }
.nav-cta .btn-outline-light{
  border-color: var(--azure);
  color: var(--navy);
}
.nav-cta .btn-outline-light:hover{ background: var(--azure); color:#fff; }
.site-header.scrolled .nav-cta .btn-outline-light{
  border-color: rgba(255,255,255,.45);
  color:#fff;
}
.site-header.scrolled .nav-cta .btn-outline-light:hover{ background: rgba(255,255,255,.12); }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:32px;
  height:32px;
  background:none;
  border:none;
  padding:0;
}
.nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background: var(--navy);
  transition: transform var(--speed-fast) var(--ease), opacity var(--speed-fast) var(--ease), background var(--speed-med) var(--ease);
}
.site-header.scrolled .nav-toggle span, .site-header.menu-open .nav-toggle span{ background:#fff; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position: fixed;
  inset:0;
  background: var(--navy);
  z-index: 999;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform var(--speed-med) var(--ease);
  visibility:hidden;
}
.mobile-menu.open{ transform: translateY(0); visibility:visible; }
.mobile-menu a{
  color:#fff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight:500;
}
.mobile-menu .btn{ margin-top: 10px; }

@media (max-width: 920px){
  .nav-desktop, .nav-cta .btn-outline-light{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ===========================================================
   HERO
   =========================================================== */
.hero{
  position: relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  background:
    radial-gradient(ellipse 80% 60% at 78% 12%, rgba(255,211,122,.35) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 8% 92%, rgba(111,224,214,.30) 0%, transparent 55%),
    linear-gradient(160deg, #EAF4FF 0%, #DCEBFF 45%, #CFE3FF 100%);
  overflow:hidden;
  color: var(--navy);
}
.hero-routes{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity: .7;
}
.hero-glow{
  position:absolute;
  top:-20%;
  right:-10%;
  width: 60vw;
  height: 60vw;
  max-width:900px;
  max-height:900px;
  background: radial-gradient(circle, rgba(31,95,217,.16), transparent 65%);
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:2;
  padding-top: 110px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items:center;
}
.hero-eyebrow{
  color: var(--azure);
}
.hero-eyebrow::before{ background: var(--azure); }
.hero h1{
  font-family: var(--font-display);
  font-weight:600;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.06;
  margin-top: 22px;
  letter-spacing: -.01em;
  color: var(--navy);
}
.hero h1 em{
  font-style: italic;
  font-weight:500;
  background: linear-gradient(92deg, var(--azure), var(--teal) 60%);
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.hero-sub{
  margin-top: 26px;
  font-size: 18px;
  color: var(--slate);
  max-width: 540px;
  line-height:1.7;
}
.hero-actions{
  margin-top: 42px;
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap:wrap;
}
.hero-stats{
  margin-top: 70px;
  display:flex;
  gap: 48px;
  flex-wrap:wrap;
}
.hero-stat b{
  display:block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight:600;
  color: var(--navy);
}
.hero-stat span{
  display:block;
  margin-top:6px;
  font-size: 12.5px;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.hero-visual{
  position:relative;
  z-index:2;
  justify-self:center;
}
.hero-globe-wrap{
  position:relative;
  width: min(440px, 90%);
}
.hero-globe-wrap img{
  width:100%;
  filter: drop-shadow(0 30px 50px rgba(31,95,217,.25));
  animation: float 7s ease-in-out infinite;
}
@keyframes float{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-16px); }
}
.orbit-ring{
  position:absolute;
  border:1px solid rgba(31,95,217,.18);
  border-radius:50%;
  top:50%;left:50%;
  transform: translate(-50%,-50%);
}
.orbit-ring.r1{ width: 110%; height:110%; animation: spin 40s linear infinite; }
.orbit-ring.r2{ width: 132%; height:132%; animation: spin 60s linear infinite reverse; border-style:dashed; border-color: rgba(20,184,174,.22); }
@keyframes spin{ to{ transform: translate(-50%,-50%) rotate(360deg); } }

.scroll-cue{
  position:absolute;
  bottom: 34px;
  left:50%;
  transform: translateX(-50%);
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  color: var(--slate);
  font-size: 11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.scroll-cue .line{
  width:1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--azure), transparent);
  overflow:hidden;
  position:relative;
}
.scroll-cue .line::after{
  content:'';
  position:absolute;
  top:-100%;
  left:0;
  width:100%;
  height:100%;
  background: var(--navy);
  animation: scrollline 2.2s ease-in-out infinite;
}
@keyframes scrollline{
  0%{ top:-100%; }
  60%{ top:100%; }
  100%{ top:100%; }
}

@media (max-width: 980px){
  .hero-content{ grid-template-columns: 1fr; padding-top: 130px; text-align:left; }
  .hero-visual{ order:-1; margin-bottom: 10px; }
  .hero-globe-wrap{ width: min(280px, 70%); margin: 0 auto; }
  .hero-stats{ gap: 32px; }
  .hero-eyebrow{ font-size: 11px; letter-spacing:.14em; }
  .scroll-cue{ display:none; }
}

/* ===========================================================
   MARQUEE / TRUSTED STRIP
   =========================================================== */
.strip{
  background: linear-gradient(100deg, var(--azure) 0%, #2D72E0 100%);
  padding: 22px 0;
  overflow:hidden;
  position:relative;
}
.strip-track{
  display:flex;
  gap: 64px;
  white-space:nowrap;
  animation: marquee 38s linear infinite;
}
.strip:hover .strip-track{ animation-play-state: paused; }
.strip-track span{
  color: rgba(255,255,255,.55);
  font-family: var(--font-body);
  font-weight:600;
  font-size: 13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap: 64px;
}
.strip-track span::after{
  content:'\2022';
  color: var(--azure-light);
  margin-left:64px;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===========================================================
   ABOUT / OVERVIEW
   =========================================================== */
.about{
  background: var(--white);
}
.about-grid{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 80px;
  align-items:center;
}
.about-visual{
  position:relative;
}
.about-card{
  position:relative;
  background: linear-gradient(145deg, #1F5FD9 0%, #2B6FE8 55%, #14B8AE 130%);
  border-radius: var(--radius-lg);
  padding: 44px;
  color:#fff;
  overflow:hidden;
  aspect-ratio: 4/4.6;
}
.about-card svg{ position:absolute; inset:0; width:100%; height:100%; opacity:.9; }
.about-card-label{
  position:relative;
  z-index:2;
}
.about-card-label .tag{
  font-size:11.5px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: var(--gold-light);
  font-weight:700;
}
.about-card-label h3{
  font-family: var(--font-display);
  font-size: 30px;
  font-weight:600;
  margin-top:10px;
  max-width: 280px;
  line-height:1.25;
}
.about-card-foot{
  position:relative;
  z-index:2;
  display:flex;
  gap: 30px;
  margin-top:auto;
  padding-top: 220px;
}
.about-card-foot div b{
  font-family: var(--font-display);
  font-size: 26px;
  display:block;
}
.about-card-foot div span{
  font-size: 11.5px;
  color: var(--steel-light);
  letter-spacing:.05em;
}
.about-card{ display:flex; flex-direction:column; }

.about-body p{
  color: var(--slate);
  font-size: 16.5px;
  margin-bottom: 18px;
}
.about-body p:first-of-type{
  font-size: 19px;
  color: var(--navy);
  font-weight:500;
  line-height:1.6;
}
.about-pillars{
  margin-top: 36px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pillar{
  border-top: 2px solid var(--navy);
  padding-top: 14px;
}
.pillar h4{
  font-family: var(--font-body);
  font-weight:700;
  font-size:14.5px;
  color: var(--navy);
}
.pillar p{
  margin-top:6px;
  font-size: 14px;
  color: var(--slate);
}

@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; gap: 50px; }
  .about-card{ aspect-ratio: auto; padding: 34px; }
  .about-card-foot{ padding-top: 90px; }
  .about-pillars{ grid-template-columns: 1fr 1fr; }
}

/* ===========================================================
   SERVICES
   =========================================================== */
.services{ background: var(--sky); }
.service-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow:hidden;
}
.service-card{
  background: #fff;
  padding: 42px 36px;
  transition: background var(--speed-med) var(--ease), transform var(--speed-med) var(--ease);
  position:relative;
}
.service-card:hover{
  background: linear-gradient(150deg, var(--azure) 0%, #2D72E0 100%);
  color:#fff;
  z-index:1;
}
.service-card:hover .service-num,
.service-card:hover p{ color: var(--steel-light); }
.service-card:hover h3{ color:#fff; }
.service-card:hover .service-icon{ color:#fff; }
.service-icon{
  width: 40px;
  height: 40px;
  color: var(--azure);
  margin-bottom: 22px;
  transition: color var(--speed-med) var(--ease);
}
.service-icon svg{ width:100%; height:100%; }
.service-card h3{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight:600;
  color: var(--navy);
  transition: color var(--speed-med) var(--ease);
}
.service-card p{
  margin-top:12px;
  font-size: 14.5px;
  color: var(--slate);
  transition: color var(--speed-med) var(--ease);
}
.service-num{
  position:absolute;
  top: 38px; right: 36px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--steel-light);
  transition: color var(--speed-med) var(--ease);
}

@media (max-width: 900px){
  .service-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .service-grid{ grid-template-columns: 1fr; }
}

/* ===========================================================
   PHOTO BANNER STRIP
   =========================================================== */
.banner-strip{
  position: relative;
  overflow:hidden;
  background: linear-gradient(160deg, #BFE3FF 0%, #D7EEFF 55%, #CDEFEA 100%);
  height: 340px;
}
.banner-strip-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
}
.banner-strip-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(20,49,92,.08) 0%, rgba(20,49,92,.32) 100%);
}
@media (max-width: 700px){
  .banner-strip{ height: 240px; }
}
.banner-strip-caption{
  position:absolute;
  left:0; right:0; bottom: 24px;
  text-align:center;
  line-height: normal;
  z-index: 2;
}
.banner-strip-caption span{
  display:inline-block;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  color: var(--navy);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
  padding: 9px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(20,49,92,.18);
}
@media (max-width: 700px){
  .banner-strip-caption{ bottom: 14px; }
  .banner-strip-caption span{ font-size: 12.5px; padding: 7px 16px; }
}

/* ===========================================================
   GLOBAL REACH / MAP
   =========================================================== */
.reach{
  background: linear-gradient(165deg, #DCEBFF 0%, #C9E3FF 55%, #BFE8E4 100%);
  color: var(--navy);
  overflow:hidden;
}
.reach .section-head h2{ color: var(--navy); }
.reach .section-head p{ color: var(--slate); }
.reach .eyebrow{ color: var(--azure); }
.reach .eyebrow::before{ background: var(--azure); }

.reach-map{
  position:relative;
  margin-top: 30px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 30px 60px -20px rgba(31,95,217,.18);
}
.reach-map-frame{
  position:relative;
  width:100%;
  aspect-ratio: 1200 / 520;
  border-radius: var(--radius-md);
  overflow:hidden;
}
.reach-map-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: center;
  background: var(--sky-mid); /* visible while the image loads or if it's missing */
}
.reach-map-overlay{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.reach-map .route{
  stroke: var(--azure);
  stroke-width: 1.6;
  fill:none;
  stroke-dasharray: 6 7;
  opacity:.65;
}
.reach-map .dot{ fill: var(--azure); }
.reach-map .dot-teal{ fill: var(--teal); }
.reach-map .dot-gold{ fill: var(--gold); }
.reach-map .dot-coral{ fill: var(--coral); }
.reach-map .dot-teal, .reach-map .dot-gold, .reach-map .dot-coral{
  stroke: #fff;
  stroke-width: 1.5;
}
.reach-map .dot-pulse{
  fill: var(--azure);
  opacity:.5;
  transform-origin: center;
}
.reach-map-label{
  position:absolute;
  transform: translate(-50%, -180%);
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight:700;
  font-size: 12px;
  letter-spacing:.05em;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(20,49,92,.18);
  white-space: nowrap;
  pointer-events:none;
}
@keyframes pulseDot{
  0%{ transform: scale(1); opacity:.55; }
  70%{ transform: scale(2.8); opacity:0; }
  100%{ transform: scale(1); opacity:0; }
}
.reach-legend{
  margin-top: 50px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border-top: 1px solid rgba(20,49,92,.12);
  padding-top: 36px;
}
.reach-legend div b{
  font-family: var(--font-display);
  font-size: 30px;
  display:block;
  color: var(--navy);
}
.reach-legend div span{
  font-size: 13px;
  color: var(--slate);
}
@media (max-width: 800px){
  .reach-legend{ grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px){
  .reach-map{ padding: 16px; }
}

/* ===========================================================
   PROCESS
   =========================================================== */
.process{ background: var(--white); }
.process-list{
  display:flex;
  flex-direction:column;
}
.process-row{
  display:grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 40px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  align-items:start;
}
.process-list .process-row:last-child{ border-bottom: 1px solid var(--line); }
.process-mark{
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--steel-light);
  font-weight:600;
  transition: color var(--speed-med) var(--ease);
}
.process-row:hover .process-mark{ color: var(--azure); }
.process-title h3{
  font-family: var(--font-display);
  font-size: 25px;
  font-weight:600;
  color: var(--navy);
}
.process-title span{
  display:block;
  margin-top: 8px;
  font-size: 12.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color: var(--azure);
  font-weight:700;
}
.process-desc p{
  color: var(--slate);
  font-size: 15.5px;
  max-width: 50ch;
}
@media (max-width: 760px){
  .process-row{ grid-template-columns: 50px 1fr; }
  .process-desc{ grid-column: 2 / 3; }
}

/* ===========================================================
   WHY US
   =========================================================== */
.why{
  background: var(--sky);
}
.why-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform var(--speed-med) var(--ease), box-shadow var(--speed-med) var(--ease);
}
.why-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(11,37,69,.12);
}
.why-icon{
  width:44px; height:44px;
  color: var(--azure);
  margin-bottom: 20px;
}
.why-icon svg{ width:100%; height:100%; }
.why-card h3{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight:600;
  color: var(--navy);
}
.why-card p{
  margin-top:10px;
  font-size: 14px;
  color: var(--slate);
}
@media (max-width: 980px){ .why-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .why-grid{ grid-template-columns: 1fr; } }

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta-band{
  background: linear-gradient(100deg, var(--azure) 0%, #2D72E0 55%, var(--teal) 130%);
  color:#fff;
  position:relative;
  overflow:hidden;
}
.cta-band::after{
  content:'';
  position:absolute;
  right:-120px; top:-120px;
  width:420px; height:420px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 40px;
  flex-wrap:wrap;
}
.cta-inner h2{
  font-family: var(--font-display);
  font-size: clamp(28px,3.4vw,40px);
  font-weight:600;
  max-width: 560px;
}
.cta-inner p{
  margin-top: 12px;
  color: rgba(255,255,255,.85);
  max-width: 480px;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.contact{ background: var(--white); }
.contact-grid{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}
.contact-info-card{
  background: linear-gradient(160deg, #1F5FD9 0%, #2B6FE8 60%, #14315C 130%);
  color:#fff;
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  height:100%;
}
.contact-info-card h3{
  font-family: var(--font-display);
  font-size: 26px;
  font-weight:600;
}
.contact-info-card > p{
  margin-top: 14px;
  color: var(--steel-light);
  font-size: 14.5px;
  line-height:1.7;
}
.contact-detail-list{
  margin-top: 36px;
  display:flex;
  flex-direction:column;
  gap: 26px;
}
.contact-detail-list li{
  display:flex;
  gap: 16px;
  align-items:flex-start;
}
.contact-detail-list .ico{
  width: 20px; height:20px;
  color: var(--azure-light);
  flex-shrink:0;
  margin-top:2px;
}
.contact-detail-list .ico svg{ width:100%;height:100%; }
.contact-detail-list b{
  display:block;
  font-size: 13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: var(--steel-light);
  margin-bottom:4px;
}
.contact-detail-list span, .contact-detail-list a{
  font-size: 15px;
  color:#fff;
}
.contact-social{
  margin-top: 40px;
  display:flex;
  gap: 14px;
}
.contact-social a{
  width: 38px; height:38px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: border-color var(--speed-fast), background var(--speed-fast);
}
.contact-social a:hover{ background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.6); }
.contact-social svg{ width:16px; height:16px; }

.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field{
  margin-bottom: 22px;
}
.field label{
  display:block;
  font-size: 12.5px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: var(--slate);
  margin-bottom: 8px;
}
.field input, .field textarea, .field select{
  width:100%;
  border: 1px solid var(--line);
  background: var(--mist);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  transition: border-color var(--speed-fast), background var(--speed-fast);
}
.field input:focus, .field textarea:focus, .field select:focus{
  border-color: var(--azure);
  background: #fff;
  outline:none;
}
.field textarea{ resize: vertical; min-height: 130px; }
.form-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap: 16px;
  margin-top: 8px;
}
.form-note{ font-size: 12.5px; color: var(--steel); }
.form-status{
  margin-top: 18px;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display:none;
}
.form-status.show{ display:block; }
.form-status.ok{ background:#E7F6EC; color:#1C7C3D; }
.form-status.err{ background:#FDEDEC; color:#C0392B; }

@media (max-width: 900px){
  .contact-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.site-footer{
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 80px 0 30px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p{
  font-size: 14px;
  line-height:1.8;
  max-width: 320px;
  color: rgba(255,255,255,.55);
}
.footer-col h4{
  font-size: 13px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:#fff;
  margin-bottom: 22px;
}
.footer-col ul{ display:flex; flex-direction:column; gap: 13px; }
.footer-col a{ font-size: 14.5px; color: rgba(255,255,255,.6); transition: color var(--speed-fast); }
.footer-col a:hover{ color: var(--azure-light); }
.footer-bottom{
  padding-top: 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}
.footer-bottom a{ color: rgba(255,255,255,.4); }
.footer-bottom a:hover{ color:#fff; }

@media (max-width: 900px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
}

/* ===========================================================
   BACK TO TOP
   =========================================================== */
.to-top{
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 48px; height:48px;
  border-radius:50%;
  background: var(--navy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 900;
  opacity:0;
  transform: translateY(12px);
  pointer-events:none;
  transition: opacity var(--speed-med) var(--ease), transform var(--speed-med) var(--ease), background var(--speed-fast);
  border:none;
}
.to-top.show{ opacity:1; transform: translateY(0); pointer-events:auto; }
.to-top:hover{ background: var(--azure); }
.to-top svg{ width: 18px; height:18px; }

/* Loading veil (page-load orchestration) */
.loader-veil{
  position: fixed;
  inset:0;
  background: linear-gradient(160deg, #EAF4FF 0%, #DCEBFF 100%);
  z-index: 3000;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: opacity 600ms var(--ease), visibility 600ms var(--ease);
}
.loader-veil img{ width: 64px; opacity:.9; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ opacity:.5; transform:scale(.96); } 50%{ opacity:1; transform:scale(1); } }
.loader-veil.hide{ opacity:0; visibility:hidden; }

/* Selection */
::selection{ background: var(--azure); color:#fff; }
