/* ==========================================================================
   ElRay Energy Shared Stylesheet
   Tokens are locked to ElRay_Brand_Guidelines.pdf v1.0, do not change
   the colour or font-family values without updating the brand guide too.
   ========================================================================== */

/* ---------- Self-hosted Poppins ---------- */
@font-face{
  font-family:'Poppins';
  src:url('../fonts/Poppins-Regular.woff2') format('woff2');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Poppins';
  src:url('../fonts/Poppins-Medium.woff2') format('woff2');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Poppins';
  src:url('../fonts/Poppins-SemiBold.woff2') format('woff2');
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Poppins';
  src:url('../fonts/Poppins-Bold.woff2') format('woff2');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}

:root{
  /* brand colours from brand guideline, section 03 */
  --cobalt:#1556A0;       /* primary */
  --cobalt-dark:#0E3D75;  /* cobalt tint ramp */
  --cobalt-mid:#5B8AC4;
  --cobalt-tint:#D9E5F3;
  --gold:#FFBF00;         /* accent; CTAs, energy moments only */
  --navy:#151D2B;         /* dark surface anchor */
  --teal:#16A085;
  --teal-mid:#5DB8A0;    
  --charcoal:#1C2430;     /* body text */
  --offwhite:#F6F8FB;     /* surface, not stark white */
  --white:#FFFFFF;

  --radius:8px;
  --maxw:1180px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

body{
  margin:0;
  font-family:'Poppins',system-ui,sans-serif;
  color:var(--charcoal);
  background:var(--offwhite);
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-weight:600;
  margin:0;
  letter-spacing:-0.01em;
}
p{margin:0;}
a{color:inherit; text-decoration:none;}
img{display:block; max-width:100%;}

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

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

/* ---------- Hero — full-bleed photo panel ---------- */
.hero-photo-section{ padding:20px 0 48px; }

.hero-photo{
  position:relative;
  border-radius:24px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-photo-media{
  position:absolute;
  inset:0;
  z-index:0;
  background:var(--cobalt-tint); /* placeholder tone until the photo is dropped in */
}
.hero-photo-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-photo-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,
    rgba(21,29,43,0.30) 0%,
    rgba(21,29,43,0.50) 40%,
    rgba(21,29,43,0.90) 100%
  );
}

.hero-photo-inner{
  position:relative;
  z-index:1;
  width:100%;
  padding:52px 52px;
  display:grid;
  grid-template-columns:1fr;
  gap:32px;
  align-items:center;
}
@media(min-width:900px){
  .hero-photo-inner{ grid-template-columns:1.4fr 0.6fr; gap:28px; }
}

.hero-photo-content{ max-width:540px; }

.hero-mega{
  font-size:clamp(30px,5vw,50px);
  line-height:1.06;
  font-weight:700;
  letter-spacing:-0.02em;
  color:var(--white);
  text-shadow:0 2px 12px rgba(0,0,0,0.25);
}
.hero-mega .line{ display:block; }
.hero-mega .accent{ color:var(--gold); }

.hero-sub-light{
  margin-top:24px;
  font-size:17px;
  color:#E3E8F0;
  max-width:440px;
  line-height:1.65;
}
.hero-sub-light strong{ color:var(--white); font-weight:600; }

.hero-note-light{
  margin-top:22px;
  font-size:13px;
  color:#B7C1D1;
}

/* ---------- Hero stat cards ---------- */
.hero-stats{
  display:flex;
  flex-direction:column;
  gap:12px;
  width:100%;
  max-width:260px;
}
@media(min-width:900px){ .hero-stats{ margin-left:auto; } }
.stat-card{
  background:rgba(255,255,255,0.12);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:16px;
  padding:18px 20px;
  box-shadow:
    0 8px 28px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.2);
}
.stat-card .num{
  font-size:30px;
  font-weight:700;
  color:var(--white);
  line-height:1;
}
.stat-card .label{
  margin-top:8px;
  font-size:12px;
  color:rgba(255,255,255,0.85);
  line-height:1.5;
}
.stat-card .bar{
  margin-top:12px;
  height:3px;
  border-radius:2px;
  background:rgba(255,255,255,0.2);
  overflow:hidden;
}
.stat-card .bar-fill{
  height:100%;
  background:var(--gold);
  border-radius:2px;
}
.stat-card .source{
  margin-top:10px;
  font-size:10px;
  color:rgba(255,255,255,0.5);
  line-height:1.4;
}

/* ---------- About page hero — image banner ---------- */
.about-hero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:flex-end;
  background-image:url('../assets/elray_asset7.jpg');
  background-size:cover;
  background-position:center;
  overflow:hidden;
}
.about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(21,29,43,0.45) 0%, rgba(21,29,43,0.88) 100%);
}
.about-hero-inner{
  position:relative;
  z-index:1;
  width:100%;
  padding-bottom:56px;
}
.about-hero h1{ color:var(--white); }
.about-hero .tag{ color:var(--gold); }
.about-hero .tag::before,.about-hero .tag::after{ border-color:var(--gold); }
.about-hero .section-sub{ color:#D9E0EA; }

/* teal is reserved for genuine sustainability moments only, per brand guide */
.eco-note{
  margin:34px 0;
  padding:18px 22px;
  border-left:3px solid var(--teal);
  background:rgba(22,160,133,0.06);
  max-width:640px;
}
.eco-note p{ font-size:15px; color:#2E3B48; line-height:1.6; }

/* ---------- Inspection tag, the signature device ---------- */
.tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--cobalt);
  padding:6px 12px;
  position:relative;
}
.tag::before,.tag::after{
  content:"";
  position:absolute;
  width:8px; height:8px;
  border-color:var(--gold);
  border-style:solid;
  top:0; bottom:0; margin:auto 0;
}
.tag::before{ left:0; border-width:2px 0 0 2px; }
.tag::after{ right:0; border-width:0 2px 2px 0; }
.tag--light{color:var(--offwhite);}
.tag--light::before,.tag--light::after{border-color:var(--gold);}
.tag--flush{padding-left:0;}
.tag--flush::before,.tag--flush::after{display:none;}

/* ---------- Nav — floating pill bar ---------- */
header{
  position:sticky;
  top:0;
  z-index:50;
  background:transparent;
  padding:18px 0;
}
.navrow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  max-width:var(--maxw);
  margin:0 auto;
  padding:8px 8px 8px 24px;
  background:var(--navy);
  border-radius:999px;
  box-shadow:0 16px 32px -16px rgba(21,29,43,0.4);
}
.logo{ flex-shrink:0; }
.logo img{ height:26px; width:auto; flex-shrink:0; }

nav.links{
  display:none;
  align-items:center;
  gap:2px;
  background:rgba(255,255,255,0.07);
  border-radius:999px;
  padding:4px;
}
@media(min-width:900px){ nav.links{display:flex;} }
nav.links a{
  font-size:13.5px;
  font-weight:500;
  color:#B7C1D1;
  padding:9px 18px;
  border-radius:999px;
  border-bottom:none;
  transition:background 0.15s ease, color 0.15s ease;
}
nav.links a:hover{ background:rgba(255,255,255,0.1); color:var(--white); }
nav.links a.active{
  background:var(--gold);
  color:var(--navy);
  font-weight:600;
}
nav.links a.active:hover{ background:var(--gold); }

.nav-actions{ display:flex; align-items:center; gap:8px; }
.nav-arrow-btn{
  width:40px; height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--white);
  flex-shrink:0;
  transition:background 0.15s ease;
}
.nav-arrow-btn:hover{ background:rgba(255,255,255,0.16); }
.nav-arrow-btn svg{ width:16px; height:16px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:inherit;
  font-weight:600;
  font-size:14px;
  letter-spacing:0.02em;
  padding:13px 24px;
  border-radius:var(--radius);
  border:none;
  cursor:pointer;
  transition:transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space:nowrap;
}
.btn-gold{ background:var(--gold); color:var(--navy); }
.btn-gold:hover{ transform:translateY(-1px); box-shadow:0 8px 20px rgba(255,191,0,0.35); }
.btn-outline{ background:transparent; color:var(--cobalt); border:1.5px solid var(--cobalt); }
.btn-outline:hover{ background:var(--cobalt-tint); }
.btn-outline-light{ background:transparent; color:var(--offwhite); border:1.5px solid rgba(246,248,251,0.5); }
.btn-outline-light:hover{ border-color:var(--gold); color:var(--gold); }

.nav-cta{display:none;}
@media(min-width:900px){.nav-cta{display:inline-flex;}}
.mobile-cta{display:inline-flex; padding:10px 16px; font-size:13px;}
@media(min-width:900px){.mobile-cta{display:none;}}

/* ---------- Page hero (interior pages) ---------- */
.page-hero{ padding:64px 0 56px; }
.page-hero h1{
  font-size:clamp(30px,4.4vw,46px);
  color:var(--navy);
  max-width:760px;
}
.page-hero .section-sub{ margin-top:18px; }

/* ---------- Hero (home) ---------- */
.hero{ padding:76px 0 60px; }
.hero-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:52px;
  align-items:center;
}
@media(min-width:960px){ .hero-grid{grid-template-columns:1.05fr 0.95fr;} }
.eyebrow-row{margin-bottom:22px;}
.hero h1{
  font-size:clamp(34px,5vw,56px);
  line-height:1.06;
  color:var(--navy);
}
.hero h1 .accent{color:var(--cobalt);}
.hero-sub{
  margin-top:20px;
  font-size:18px;
  color:#3D4759;
  max-width:480px;
  line-height:1.6;
}
.hero-sub strong{color:var(--charcoal); font-weight:600;}
.hero-ctas{ margin-top:32px; display:flex; gap:14px; flex-wrap:wrap; }
.hero-note{ margin-top:22px; font-size:13px; color:#6B7686; }

/* ---------- Section shell ---------- */
section{padding:64px 0;}
.section-tight{padding:44px 0;}
.eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--cobalt);
  margin-bottom:14px;
  display:block;
}
.eyebrow--light{color:var(--gold);}
h2.section-head{
  font-size:clamp(26px,3.4vw,38px);
  color:var(--navy);
  max-width:640px;
}
.section-sub{
  margin-top:16px;
  font-size:16px;
  color:#4A5568;
  max-width:600px;
  line-height:1.65;
}

/* ---------- Who We Are ---------- */
.who-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:start;
}
@media(min-width:900px){ .who-grid{grid-template-columns:0.85fr 1.15fr;} }

.who-images{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.who-images img{
  width:100%;
  height:500px;
  object-fit:cover;
  border-radius:var(--radius);
  background:var(--cobalt-tint); /* shows as a placeholder block until real photos are dropped in */
}
.who-images img.wide{ height:218px; }

.who-content h2{
  font-size:clamp(22px,2.8vw,30px);
  color:var(--navy);
  line-height:1.35;
}
.who-content h2 strong{ color:var(--cobalt); font-weight:600; }
.who-content .btn{ margin-top:24px; }

.mini-cards{
  margin-top:40px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media(min-width:560px){ .mini-cards{grid-template-columns:1fr 1fr;} }

.mini-card{
  padding:22px;
  background:var(--white);
  border:1px solid rgba(21,29,43,0.08);
  border-radius:var(--radius);
}
.mini-card svg{ width:26px; height:26px; color:var(--cobalt); margin-bottom:14px; }
.mini-card h3{ font-size:15.5px; color:var(--navy); margin-bottom:6px; }
.mini-card p{ font-size:13.5px; color:#5A6578; line-height:1.55; }

/* ---------- Problem band (navy) ---------- */
.problem{ background:var(--navy); color:var(--offwhite); }
.problem h2.section-head{color:var(--white);}
.problem .section-sub{color:#B7C1D1;}
.problem-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
@media(min-width:800px){ .problem-grid{grid-template-columns:1fr 1fr;} }

.problem-item{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(246,248,251,0.12);
  border-radius:14px;
  padding:26px 28px;
}
.problem-item .x{
  color:var(--gold);
  font-weight:700;
  font-size:13px;
  letter-spacing:0.06em;
  display:block;
  margin-bottom:8px;
}
.problem-item p{color:#CBD4E1; font-size:15px; line-height:1.6;}

/* ---------- Our Services — dark panel ---------- */
.services-panel{
  background:var(--navy);
  border-radius:24px;
  padding:56px 40px;
  color:var(--offwhite);
}
@media(min-width:900px){ .services-panel{padding:64px 56px;} }

.services-panel-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:center;
}
@media(min-width:960px){ .services-panel-grid{grid-template-columns:0.8fr 1.2fr;} }

.services-intro h2{
  font-size:clamp(24px,3vw,32px);
  color:var(--white);
  line-height:1.25;
  margin-top:14px;
}
.services-intro p{
  margin-top:14px;
  font-size:15px;
  color:#B7C1D1;
  line-height:1.65;
  max-width:380px;
}

.service-cards{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
@media(min-width:640px){ .service-cards{grid-template-columns:1fr 1fr;} }

.service-photo-card{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:var(--cobalt-tint); /* placeholder tone until real photos are added */
  min-height:320px;
  display:flex;
  align-items:flex-end;
}
.service-photo-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.service-photo-card::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(
    180deg,
    rgba(21,29,43,0.15) 0%,
    rgba(21,29,43,0.25) 30%,
    rgba(21,29,43,0.55) 55%,
    rgba(21,29,43,0.95) 100%
  );
}
.service-photo-card-body{
  position:relative;
  z-index:1;
  padding:22px;
  width:100%;
}
.service-photo-card .label{
  font-size:11px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  color:var(--gold);
  display:block;
  margin-bottom:8px;
}
.service-photo-card h3{
  font-size:19px;
  color:var(--white);
  margin-bottom:8px;
}
.service-photo-card p{
  font-size:13.5px;
  color:#D9E0EA;
  line-height:1.55;
  margin-bottom:16px;
}

.icon-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gold);
  color:var(--navy);
  font-size:13px;
  font-weight:600;
  padding:9px 16px 9px 18px;
  border-radius:999px;
  transition:transform 0.15s ease, box-shadow 0.15s ease;
}
.icon-btn:hover{ transform:translateY(-1px); box-shadow:0 8px 18px rgba(255,191,0,0.3); }
.icon-btn svg{ width:14px; height:14px; }

/* ---------- Meet the Experts ---------- */
.experts-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:48px;
  align-items:center;
}
@media(min-width:960px){ .experts-grid{grid-template-columns:0.9fr 1.1fr;} }

.experts-images{
  display:grid;
  grid-template-columns:100px 1fr;
  gap:14px;
  height:380px;
}
.experts-images-stack{
  display:grid;
  grid-template-rows:1fr 1fr 1fr;
  gap:14px;
}
.experts-images img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:var(--radius);
  background:var(--cobalt-tint);
}
.experts-images .tall{ height:100%; }

.experts-intro .section-sub{ margin-top:14px; }

.profile-card{
  margin-top:36px;
  display:flex;
  gap:22px;
  align-items:flex-start;
  padding:26px;
  background:var(--white);
  border:1px solid rgba(21,29,43,0.08);
  border-radius:var(--radius);
  box-shadow:
    0 1px 2px rgba(21,29,43,0.05),
    0 10px 24px -14px rgba(21,29,43,0.15);
}
.profile-photo{
  flex-shrink:0;
  width:74px;
  height:74px;
  border-radius:50%;
  overflow:hidden;
  background:var(--navy);
}
.profile-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}
.profile-body h3{ font-size:17px; color:var(--navy); }
.profile-role{
  font-size:12.5px;
  font-weight:600;
  color:var(--cobalt);
  margin-top:2px;
  display:block;
}
.profile-body p{
  margin-top:10px;
  font-size:14px;
  color:#4A5568;
  line-height:1.6;
}
.profile-footer{
  margin-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
}
.social-row{ display:flex; align-items:center; gap:16px; }
.social-row a{
  display:inline-flex;
  color:var(--navy);
  transition:color 0.15s ease, transform 0.15s ease;
}
.social-row a:hover{ color:var(--cobalt); transform:translateY(-1px); }
.social-row svg{ width:20px; height:20px; fill:currentColor; }

/* ---------- Difference / feature cards ---------- */
.diff-grid{ margin-top:48px; display:grid; grid-template-columns:1fr; gap:22px; }
@media(min-width:700px){.diff-grid{grid-template-columns:1fr 1fr;}}
@media(min-width:1050px){.diff-grid{grid-template-columns:repeat(4,1fr);}}
.diff-card{
  background:var(--white);
  border:1px solid rgba(21,29,43,0.08);
  padding:26px 22px;
  border-radius:12px;
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.diff-card:hover{transform:translateY(-4px); box-shadow:0 20px 34px -20px rgba(21,29,43,0.25);}
.diff-card .tag{margin-bottom:16px;}
.diff-card h3{font-size:17px; color:var(--navy); margin-bottom:10px;}
.diff-card p{font-size:14.5px; color:#5A6578; line-height:1.6;}

/* ---------- Who we serve / services ---------- */
.serve-grid{
  margin-top:44px;
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
  perspective:1200px; /* gives the tilted children somewhere to tilt "into" */
}
@media(min-width:760px){.serve-grid{grid-template-columns:1fr 1fr;}}

.serve-card{
  padding:34px;
  background:var(--white);
  border:1px solid rgba(21,29,43,0.06);
  border-radius:var(--radius);
  position:relative;
  overflow:hidden;
  transform-style:preserve-3d;
  box-shadow:
    0 1px 2px rgba(21,29,43,0.06),
    0 8px 16px -8px rgba(21,29,43,0.12),
    0 24px 40px -20px rgba(21,29,43,0.18);
  transition:box-shadow 0.3s ease, transform 0.5s ease;
  will-change:transform;
}

/* glare that follows the cursor — position set by JS via --mx/--my */
.serve-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.35), transparent 55%);
  opacity:0;
  transition:opacity 0.3s ease;
  pointer-events:none;
}
.serve-card.tilting::after{ opacity:1; }
.serve-card .serve-label{
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--cobalt-mid);
  display:block;
  margin-bottom:10px;
}
.serve-card .serve-labelsec{
  font-size:11px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--teal-mid);
  display:block;
  margin-bottom:10px;
}
.serve-card h3{font-size:22px; color:var(--navy);}
.serve-card p{margin-top:12px; font-size:15px; color:#4A5568; line-height:1.65;}
.serve-card ul{margin:16px 0 0; padding-left:18px;}
.serve-card li{font-size:14.5px; color:#4A5568; margin-bottom:6px; line-height:1.5;}
.serve-card .arrow-link{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  color:var(--cobalt);
}
.serve-card .arrow-linksec{
  margin-top:18px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:14px;
  font-weight:600;
  color:var(--teal);
}
.serve-card.primary{border:1px solid var(--cobalt);}
.serve-card.secondary{border:1px solid var(--teal);}

/* ---------- Area band ---------- */
.area{ background:var(--cobalt-tint); padding:50px 0; }
.area-row{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:center;
  gap:22px;
}
.area-row h3{font-size:20px; color:var(--navy); max-width:520px;}
.area-row .loc-list{ display:flex; gap:10px; flex-wrap:wrap; }
.loc-chip{
  background:var(--white);
  color:var(--cobalt-dark);
  font-size:13px;
  font-weight:600;
  padding:8px 16px;
  border:1px solid rgba(21,86,160,0.25);
  border-radius:20px;
}

/* ---------- Founder / about ---------- */
.founder{ display:grid; grid-template-columns:1fr; gap:40px; align-items:center; }
@media(min-width:860px){.founder{grid-template-columns:200px 1fr;}}
.founder-mark{
  width:120px; height:120px;
  background:var(--navy);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto;
}
.founder-mark img{height:46px;}
@media(min-width:860px){.founder-mark{width:180px; height:180px;}}
.founder-text p{font-size:16px; color:#3D4759; line-height:1.75; max-width:640px;}
.founder-text p + p{margin-top:14px;}
.founder-text .signoff{ margin-top:18px; font-weight:600; color:var(--navy); font-size:15px; }

/* ---------- How it works, numbered steps ---------- */
.how{ background:var(--white); }
.steps{ margin-top:52px; display:grid; grid-template-columns:1fr; gap:0; }
.step{
  display:grid;
  grid-template-columns:64px 1fr;
  gap:22px;
  padding:30px 0;
  border-bottom:1px solid rgba(21,29,43,0.08);
}
.step:first-child{padding-top:0;}
.step:last-child{border-bottom:none;}
@media(min-width:760px){ .step{grid-template-columns:90px 1fr; gap:34px;} }
.step-num{ font-size:32px; font-weight:700; color:var(--cobalt-tint); line-height:1; }
@media(min-width:760px){.step-num{font-size:44px;}}
.step-body h3{ font-size:19px; color:var(--navy); margin-bottom:8px; }
.step-body p{ font-size:15px; color:#4A5568; line-height:1.65; max-width:600px; }
.step-body .tag{ margin-top:12px; }

/* ---------- Contact / form ---------- */
.contact-grid{
  margin-top:48px;
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
}
@media(min-width:900px){.contact-grid{grid-template-columns:1fr 1.1fr;}}
.contact-info .info-item{ margin-bottom:26px; }
.contact-info .info-item h4{
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--cobalt);
  font-weight:700;
  margin-bottom:6px;
}
.contact-info .info-item p, .contact-info .info-item a{
  font-size:15.5px;
  color:var(--charcoal);
}
.form-card{
  background:var(--white);
  border:1px solid rgba(21,29,43,0.08);
  padding:32px;
  border-radius:12px;
}
.form-row{ margin-bottom:18px; }
.form-row label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--navy);
  margin-bottom:7px;
}
.form-row input, .form-row select, .form-row textarea{
  width:100%;
  font-family:inherit;
  font-size:14.5px;
  padding:12px 14px;
  border:1px solid rgba(21,29,43,0.18);
  border-radius:8px;
  background:var(--offwhite);
  color:var(--charcoal);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline:2px solid var(--cobalt);
  outline-offset:1px;
  background:var(--white);
}
.form-row.two-col{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:end;
}
@media(min-width:520px){ .form-row.two-col{grid-template-columns:1fr 1fr;} }
.form-note{ font-size:12.5px; color:#6B7686; margin-top:14px; }

/* ---------- Closing CTA ---------- */
.cta-band{ background:var(--navy); color:var(--offwhite); text-align:center; padding:64px 0; }
.cta-band h2{ font-size:clamp(26px,4vw,40px); color:var(--white); max-width:620px; margin:0 auto; }
.cta-band .section-sub{ color:#B7C1D1; margin:16px auto 0; text-align:center; }
.cta-band .hero-ctas{ justify-content:center; margin-top:34px; }

/* ---------- Mobile nav toggle + panel ---------- */
.nav-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px; height:40px;
  border-radius:50%;
  background:rgba(255,255,255,0.08);
  color:var(--white);
  border:none;
  cursor:pointer;
  flex-shrink:0;
}
.nav-toggle:hover{ background:rgba(255,255,255,0.16); }
.nav-toggle svg{ width:18px; height:18px; }
@media(min-width:900px){ .nav-toggle{ display:none; } }

/* the circular arrow CTA is redundant with the toggle + button on
   small screens — hide it there to avoid crowding */
@media(max-width:899px){ .nav-arrow-btn{ display:none; } }

.mobile-menu{
  display:none;
  max-width:var(--maxw);
  margin:10px auto 0;
  padding:0 20px;
}
.mobile-menu.open{ display:block; }
@media(min-width:900px){ .mobile-menu{ display:none !important; } }

.mobile-menu-inner{
  background:var(--navy);
  border-radius:18px;
  padding:10px;
  box-shadow:0 16px 32px -16px rgba(21,29,43,0.4);
}
.mobile-menu a{
  display:block;
  padding:13px 16px;
  border-radius:12px;
  font-size:14.5px;
  font-weight:500;
  color:#D9E0EA;
  transition:background 0.15s ease, color 0.15s ease;
}
.mobile-menu a:hover{ background:rgba(255,255,255,0.08); }
.mobile-menu a.active{ background:var(--gold); color:var(--navy); font-weight:600; }

/* ---------- Footer ---------- */
footer{ background:var(--navy); padding:44px 0 30px; border-top:1px solid rgba(246,248,251,0.1); }
.foot-row{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:26px; align-items:flex-start; }
.foot-brand img{height:26px; width:auto;}
.foot-brand p{ margin-top:12px; font-size:13px; color:#8592A6; max-width:280px; line-height:1.6; }
.foot-col h3{
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:#8592A6;
  font-weight:600;
  margin-bottom:12px;
}
.foot-col a, .foot-col p{ display:block; font-size:14px; color:#D9E0EA; margin-bottom:8px; }
.foot-col a:hover{color:var(--gold);}
.foot-bottom{
  margin-top:38px;
  padding-top:22px;
  border-top:1px solid rgba(246,248,251,0.08);
  font-size:12.5px;
  color:#8592A6;
}

.consent-banner{
  display:none;
  position:fixed;
  bottom:16px;
  left:16px;
  right:16px;
  z-index:100;
  background:var(--navy);
  color:var(--offwhite);
  border-radius:14px;
  padding:18px 22px;
  box-shadow:0 16px 32px -12px rgba(0,0,0,0.4);
  max-width:520px;
  margin:0 auto;
}
.consent-banner.show{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.consent-banner p{ font-size:13.5px; line-height:1.5; color:#D9E0EA; }
.consent-banner a{ color:var(--gold); text-decoration:underline; }
.consent-actions{ display:flex; gap:10px; }

/* ---------- Legal / policy pages ---------- */
.policy{ max-width:760px; }
.policy h2{ font-size:22px; color:var(--navy); margin-top:40px; margin-bottom:14px; }
.policy h2:first-child{ margin-top:0; }
.policy h3{ font-size:17px; color:var(--navy); margin-top:24px; margin-bottom:10px; }
.policy p{ font-size:15px; color:#3D4759; line-height:1.75; margin-bottom:16px; }
.policy ul{ margin:0 0 16px; padding-left:20px; }
.policy li{ font-size:15px; color:#3D4759; line-height:1.75; margin-bottom:8px; }
.policy .updated{ font-size:13px; color:#8892A0; margin-bottom:32px; }
.policy strong{ color:var(--navy); font-weight:600; }

/* ---------- Scroll reveal ---------- */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
