/* =========================================================
   TRANSERA GROUP LTD. — SHARED STYLES
   Single CSS file referenced by all pages.
   ========================================================= */

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root{
  --teal:#0F7A87;
  --teal-500:#0E6F7B;
  --teal-600:#0C6571;
  --teal-700:#0A535D;
  --teal-800:#084551;
  --teal-900:#0B3D52;
  --navy:#082935;
  --navy-deep:#051C26;
  --gold:#C9A961;
  --gold-light:#E0C988;
  --gold-soft:#F4EBD2;
  --bg:#FFFFFF;
  --surface:#F7F9FA;
  --surface-2:#EEF4F5;
  --surface-3:#E4ECEE;
  --line:#DDE5E8;
  --line-soft:#EAEFF1;
  --text:#0B2730;
  --text-2:#4A5D66;
  --text-3:#7A8B92;
  --text-4:#A4B3B8;
  --green:#2D7A52;
  --orange:#C8722A;
  --purple:#5A4A8A;
  --shadow-sm: 0 1px 2px rgba(8,41,53,.06);
  --shadow:    0 6px 24px rgba(8,41,53,.08);
  --shadow-md: 0 12px 40px rgba(8,41,53,.10);
  --shadow-lg: 0 24px 70px rgba(8,41,53,.14);
  --shadow-gold: 0 10px 36px rgba(201,169,97,.22);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 64px);
  --section-y: clamp(80px, 11vw, 140px);
  --ease: cubic-bezier(.2,.6,.2,1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family: "Manrope", "Aptos", system-ui, -apple-system, "Segoe UI", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  font-size:16px;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{max-width:100%; display:block;}
a{color:var(--teal); text-decoration:none; transition:color .2s var(--ease);}
a:hover{color:var(--teal-700);}

.display{font-family:"Fraunces", "Manrope", serif; font-optical-sizing:auto;}

h1,h2,h3,h4,h5{
  font-family: "Manrope", "Aptos", sans-serif;
  color:var(--navy); letter-spacing:-0.025em; line-height:1.1;
  font-weight:700;
}
h1{font-size:clamp(40px, 5.6vw, 72px); margin:10 0 .35em; letter-spacing:-0.035em; line-height:1.18;}
h2{font-size:clamp(30px, 3.8vw, 48px); margin:0 0 .5em; letter-spacing:-0.03em; line-height:1.18;}
h3{font-size:clamp(20px, 2.1vw, 26px); font-weight:700; margin:0 0 .4em;}
h4{font-size:18px; font-weight:600; margin:0 0 .4em;}
h5{font-size:16px; font-weight:600; margin:0 0 .3em;}
p{margin:0 0 1em;}

/* GLOBAL FIX: Italic Fraunces .accent text (used on all section headings) clips
   descenders ("p" in "discipline", italic "Who") when paired with background-clip:text.
   The inline-block + padding-bottom + line-height combo extends the rendering box. */
h1 .accent, h2 .accent, h3 .accent{
  display: inline-block;
  padding-bottom: 0.12em;
  line-height: 1.22;
}

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

.eyebrow{
  display:inline-flex; align-items:center; gap:14px;
  text-transform:uppercase;
  letter-spacing:.22em;
  font-size:11.5px;
  font-weight:700;
  color:var(--teal);
  margin:0 0 18px;
}
.eyebrow .num{
  font-family:"Fraunces", serif;
  font-size:13px; font-weight:500; color:var(--gold);
  letter-spacing:.08em; font-style:italic;
}
.eyebrow .num::after{
  content:""; display:inline-block; width:24px; height:1px;
  background:var(--gold); margin-left:14px; vertical-align:middle;
  margin-bottom:3px;
}
.lead{font-size:clamp(17px, 1.6vw, 21px); color:var(--text-2); line-height:1.6; max-width:680px;}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 28px;
  font-family:inherit; font-weight:600; font-size:15px;
  border-radius:999px;
  border:1.5px solid transparent;
  cursor:pointer;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  text-decoration:none;
  line-height:1;
  white-space:nowrap;
  position:relative;
}
.btn-primary{ background:var(--teal); color:#fff; box-shadow: 0 6px 18px rgba(15,122,135,.32);}
.btn-primary:hover{ background:var(--teal-700); color:#fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,122,135,.4);}
.btn-ghost{ background:transparent; color:var(--navy); border-color:var(--line);}
.btn-ghost:hover{ border-color:var(--teal); color:var(--teal); transform:translateY(-1px);}
.btn-dark{background:var(--navy); color:#fff;}
.btn-dark:hover{background:var(--teal-900); color:#fff; transform:translateY(-1px);}
.btn-gold{ background:var(--gold); color:var(--navy); box-shadow: var(--shadow-gold);}
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px);}
.btn-cta-gold{
  background: var(--gold);
  color: var(--teal-900);
  box-shadow: 0 6px 18px rgba(201,169,97,.32), inset 0 0 0 1px rgba(11,61,82,.18);
  font-weight: 800;
  letter-spacing: .02em;
}
.btn-cta-gold:hover{
  background: var(--gold-light);
  color: var(--teal-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,169,97,.4), inset 0 0 0 1px rgba(11,61,82,.28);
}
.btn-cta-gold:active,
.btn-cta-gold:focus{
  background: var(--gold);
  color: var(--teal-900);
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.btn:active{ transform: translateY(0); }
.btn-arrow::after{content:"→"; display:inline-block; transition:transform .25s var(--ease);}
.btn:hover .btn-arrow::after, .btn-arrow:hover::after{transform: translateX(4px);}

/* =========================================================
   SCROLL PROGRESS
   ========================================================= */
.progress-bar{
  position:fixed; top:0; left:0; height:3px;
  background:linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
  width:0%; z-index:100;
  transition: width .1s linear;
}

/* =========================================================
   UTILITY BAR
   ========================================================= */
.utility{
  background:var(--navy);
  color:#cfdce1;
  font-size:13px;
  padding:9px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.utility .container{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;}
.utility-left{display:flex; gap:24px; flex-wrap:wrap;}
.utility-left a{color:#cfdce1; display:inline-flex; align-items:center; gap:8px;}
.utility-left a:hover{color:#fff;}
.utility-right{
  color:var(--gold-light);
  font-weight:500;
  letter-spacing:.04em;
  display:flex; align-items:center; gap:8px;
}
.utility-right::before{
  content:""; display:inline-block; width:6px; height:6px; border-radius:50%;
  background:var(--gold);
  box-shadow: 0 0 0 0 rgba(201,169,97,.6);
  animation: pulse-gold 2.4s infinite;
}
@keyframes pulse-gold{
  0%{box-shadow: 0 0 0 0 rgba(201,169,97,.6);}
  70%{box-shadow: 0 0 0 8px rgba(201,169,97,0);}
  100%{box-shadow: 0 0 0 0 rgba(201,169,97,0);}
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom:1px solid var(--line-soft);
  transition: box-shadow .25s, padding .25s;
}
.site-header.scrolled{ box-shadow: 0 2px 18px rgba(8,41,53,.06);}
.site-header .container{display:flex; align-items:center; justify-content:space-between; padding-top:14px; padding-bottom:14px;}

.logo{display:flex; align-items:center; gap:14px; text-decoration:none;}
.logo-image{
  height:80px; width:auto;
  transition: transform .3s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(8,41,53,.12));
}
.logo:hover .logo-image{ transform: scale(1.04); }
@media (max-width: 980px){
  .logo-image{ height: 64px; }
}
@media (max-width: 540px){
  .logo-image{ height: 52px; }
}

.nav-main{display:flex; align-items:center; gap:28px;}
.nav-main ul{display:flex; gap:22px; list-style:none; padding:0; margin:0;}
.nav-main a{color:var(--text); font-weight:500; font-size:14px; position:relative; padding:4px 0;}
.nav-main a:hover{color:var(--teal);}
.nav-main a::after{
  content:""; position:absolute; left:0; right:0; bottom:-4px;
  height:2px; background:linear-gradient(90deg, var(--teal), var(--gold));
  transform:scaleX(0); transform-origin:left;
  transition: transform .3s var(--ease);
}
.nav-main a:hover::after, .nav-main a.active::after{transform:scaleX(1);}
.nav-main a.active{color:var(--teal);}
.mobile-toggle{display:none; background:transparent; border:none; cursor:pointer; padding:8px;}

@media (max-width: 1200px){
  .nav-main ul{display:none;}
  .nav-main .btn{display:none;}
  .mobile-toggle{display:block;}
}

@media (max-width: 900px){

  .nav-main{
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--bg);
    z-index: 9999;
    padding: 100px 30px;

    display: block !important; /* IMPORTANT FIX */
    transition: right 0.3s ease;
  }

  .nav-main.open{
    right: 0;
  }

  .nav-main ul{
    display: flex !important;
    flex-direction: column;
    gap: 18px;
  }

  .nav-main li{
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav-main a{
    font-size: 18px;
    display: block;
  }
}
/* =========================================================
   PAGE HERO (used on inner pages)
   ========================================================= */
.page-hero{
  position:relative;
  overflow:hidden;
  padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(15,122,135,.12), transparent 60%),
    radial-gradient(700px 400px at -10% 110%, rgba(11,61,82,.08), transparent 60%),
    var(--bg);
}
.page-hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(11,39,48,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,39,48,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 35%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 35%, black 0%, transparent 80%);
  pointer-events:none;
}
.page-hero .container{position:relative; z-index:2;}
.page-hero h1{
  font-size:clamp(40px, 5.6vw, 72px);
  max-width: 920px;
  letter-spacing: -0.035em;
  line-height: 1.18;
}
.page-hero h1 .accent{
  background: linear-gradient(110deg, var(--teal) 0%, var(--teal-900) 55%, var(--gold) 110%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  font-style:italic;
  font-family:"Fraunces", serif;
  font-weight:600;
  /* Prevent italic descender clipping: extend the rendering box */
  display: inline-block;
  padding-bottom: 0.12em;
  line-height: 1.22;
}
.page-hero .lead{ max-width: 780px; }

/* Breadcrumb */
.breadcrumb{
  display:flex; gap:12px; align-items:center;
  font-size:13px; color:var(--text-3);
  margin-bottom:18px;
  letter-spacing:.04em;
}
.breadcrumb a{color:var(--text-3);}
.breadcrumb a:hover{color:var(--teal);}
.breadcrumb .sep{color:var(--text-4); font-family:"Fraunces", serif;}
.breadcrumb .here{color:var(--teal); font-weight:600;}

/* =========================================
   SPEAKING HERO LAYOUT
========================================= */

.speaking-hero{
  position: relative;
  overflow: hidden;
  min-height: 75vh;
}

/* =========================
   IMAGE (RIGHT SIDE BACKGROUND FEEL)
========================= */

.speaking-hero-image{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.speaking-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* KEY EFFECT: fade from hidden (left) → visible (right) */
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0.05) 10%,   /* almost invisible */
    rgba(0,0,0,0.10) 25%,  /* 10% visibility */
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.65) 85%,
    rgba(0,0,0,0.75) 100%     /* full visibility */
  );

  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0.05) 10%,
    rgba(0,0,0,0.10) 25%,
    rgba(0,0,0,0.25) 55%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.65) 85%,
    rgba(0,0,0,0.75) 100%
  );

  transform: scale(1.05);
}

/* soft overlay so text stays readable */
.speaking-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;

  background: linear-gradient(
    to right,
    rgba(248,250,251,0.96) 10%,
    rgba(248,250,251,0.92) 25%,
    rgba(248,250,251,0.75) 55%,
    rgba(248,250,251,0.35) 75%,
    rgba(248,250,251,0.05) 85%,
    rgba(248,250,251,0) 110%
  );
}

/* =========================
   CONTENT ON TOP
========================= */

/* .speaking-hero-content{
  position: relative;
  z-index: 5;
  max-width: auto;
  padding: 120px 0;
} */

/* push text slightly left for better balance */
/* .speaking-hero-content{
  margin-left: 0;
} */

/* keep your existing typography untouched */

/* =========================================================
   HOMEPAGE HERO
   ========================================================= */
.hero{
  position:relative;
  overflow:hidden;
  padding: clamp(24px, 11vw, 20px) 0 clamp(66px, 14vw, 20px);
  background:
    radial-gradient(1200px 700px at 92% -8%, rgba(15,122,135,.13), transparent 60%),
    radial-gradient(900px 600px at -8% 110%, rgba(11,61,82,.10), transparent 60%),
    radial-gradient(600px 400px at 50% 110%, rgba(201,169,97,.06), transparent 60%),
    var(--bg);
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(11,39,48,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,39,48,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 35%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 35%, black 0%, transparent 80%);
  pointer-events:none;
}
.hero::after{
  content:""; position:absolute;
  width:340px; height:340px; border-radius:50%;
  border:1px solid rgba(15,122,135,.15);
  top:-120px; right:-120px;
  pointer-events:none;
  animation: rotate 60s linear infinite;
}
.hero-deco-1{
  position:absolute; left:48%; top:6%;
  width:160px; height:160px; border-radius:50%;
  border:1px dashed rgba(201,169,97,.3);
  animation: rotate 80s linear infinite reverse;
  pointer-events:none;
}
@keyframes rotate{ to { transform: rotate(360deg); }}

.hero .container{position:relative; display:grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 88px); align-items:center; z-index:2;}
@media (max-width: 1024px){ .hero .container{grid-template-columns:1fr;} }

.hero-badge-pill{
  display:inline-flex; align-items:center; gap:10px;
  background: rgba(15,122,135,.08);
  color:var(--teal-700);
  border:1px solid rgba(15,122,135,.18);
  padding:7px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  letter-spacing:.02em;
  margin-bottom:24px;
}
.hero-badge-pill .pulse{
  width:8px; height:8px; border-radius:50%; background:var(--teal);
  box-shadow: 0 0 0 0 rgba(15,122,135,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse{
  0%{box-shadow: 0 0 0 0 rgba(15,122,135,.6);}
  70%{box-shadow: 0 0 0 10px rgba(15,122,135,0);}
  100%{box-shadow: 0 0 0 0 rgba(15,122,135,0);}
}

.hero h1 .accent{
  background: linear-gradient(110deg, var(--teal) 0%, var(--teal-900) 55%, var(--gold) 110%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  font-style:italic;
  font-family:"Fraunces", serif;
  font-weight:600;
  display: inline-block;
  padding-bottom: 0.12em;
  line-height: 1.22;
}
.hero-subhead{
  font-size:clamp(17px, 1.4vw, 20px);
  color:var(--text-2);
  max-width: 600px;
  margin-bottom: 36px;
  line-height:1.65;
}
.hero-ctas{display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 44px;}

/* =========================================================
   HERO STATS GRID (5-tile career credentials)
   ========================================================= */
.hero-stats-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  margin-top: 8px;
}
@media (max-width: 980px){
  .hero-stats-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px){
  .hero-stats-grid{ grid-template-columns: repeat(2, 1fr); }
}

.hero-stat{
  display:flex; flex-direction:column; gap: 8px;
  padding: 4px 14px 4px 0;
  border-right: 1px solid var(--line-soft);
  position: relative;
}
.hero-stat:last-child{ border-right: none; padding-right: 0;}
@media (max-width: 980px){
  .hero-stat:nth-child(3n){ border-right: none;}
  .hero-stat{ padding: 12px 14px 12px 0;}
}
@media (max-width: 600px){
  .hero-stat:nth-child(2n){ border-right: none;}
  .hero-stat:nth-child(3n){ border-right: 1px solid var(--line-soft);}
}

.hero-stat .stat-icon{
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(15,122,135,.12), rgba(15,122,135,.06));
  border: 1px solid rgba(15,122,135,.18);
  color: var(--teal);
  display: grid; place-items: center;
  margin-bottom: 2px;
  transition: all .25s var(--ease);
}
.hero-stat:hover .stat-icon{
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
  color: #fff;
  transform: scale(1.05);
  border-color: transparent;
}
.hero-stat .stat-icon svg{ width: 16px; height: 16px;}
.hero-stat .stat-value{
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.05;
  letter-spacing: -.01em;
}
.hero-stat .stat-value .normal{
  font-style: normal;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.hero-stat .stat-label{
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
  line-height: 1.4;
}
.hero-meta{
  display:flex; gap:28px; flex-wrap:wrap;
  color:var(--text-2); font-size:13.5px;
  padding-top:32px; border-top:1px solid var(--line-soft);
}
.hero-meta-item{display:flex; align-items:center; gap:10px; font-weight:500;}
.hero-meta-item .icon{
  width:28px; height:28px; border-radius:8px;
  background:rgba(15,122,135,.1); color:var(--teal);
  display:grid; place-items:center;
}

/* Hero photo card */
.hero-photo{
  position:relative;
  aspect-ratio: 5 / 6;
  border-radius: 28px;
  overflow:hidden;
  background: linear-gradient(180deg, #DEEAEC 0%, #B2CDD3 100%);
  box-shadow: var(--shadow-lg);
  border:1px solid rgba(255,255,255,.5);
}
.hero-photo img{
  width:100%; height:100%; object-fit:cover;
}
.hero-photo::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,41,53,.5) 100%);
  pointer-events:none;
}

/* =========================================================
   HERO PHOTO + SERVICES OVERLAY (NEW)
   ========================================================= */
.hero-art-photo{
  position:relative;
  aspect-ratio: 5/6;
  border-radius: 28px;
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  border:1px solid rgba(255,255,255,.5);
  background:
    linear-gradient(180deg, rgba(11,61,82,.4) 0%, rgba(8,41,53,.85) 100%),
    linear-gradient(135deg, #2A4D58 0%, #163643 50%, #0B2730 100%);
}
/* Layered photographic-feel backdrop using gradients (no external image dependency) */
.hero-art-photo::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, rgba(15,122,135,.45), transparent 60%),
    radial-gradient(ellipse 60% 40% at 75% 75%, rgba(201,169,97,.18), transparent 65%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(11,39,48,.6), transparent 70%);
  z-index:1;
}
.hero-art-photo::after{
  content:""; position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.025) 0px, rgba(255,255,255,.025) 2px, transparent 2px, transparent 14px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: auto, 60px 60px, 60px 60px;
  z-index:1;
  opacity:.7;
}
.hero-art-photo .photo-bg-illustration{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
}
.hero-art-photo .overlay-content{
  position:absolute; inset:0; z-index:3;
  display:flex; flex-direction:column;
  padding: 36px 32px 32px;
}
.hero-art-photo .overlay-tag{
  display:inline-flex; align-items:center; gap:10px;
  font-size:11px; letter-spacing:.22em; text-transform:uppercase;
  color: var(--gold-light); font-weight:700;
  align-self:flex-start;
  padding: 7px 14px;
  background: rgba(0,0,0,.32);
  border:1px solid rgba(201,169,97,.4);
  border-radius:999px;
  backdrop-filter: blur(10px);
  margin-bottom: auto;
}
.hero-art-photo .overlay-tag::before{
  content:""; width:8px; height:8px; border-radius:50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse-gold 2.4s infinite;
}
.hero-art-photo .services-stack{
  display:grid; gap: 10px;
  margin-top: auto;
}
.hero-art-photo .services-headline{
  font-family:"Fraunces", serif; font-style:italic;
  font-size: 18px; font-weight:500;
  color: rgba(255,255,255,.92);
  margin-bottom: 8px;
  letter-spacing: -.005em;
  line-height: 1.35;
}
.hero-art-photo .services-headline strong{
  font-weight: 600;
  color: var(--gold-light);
  font-style: normal;
  font-family: "Manrope", sans-serif;
  letter-spacing: .04em;
}
.hero-art-photo .services-icons-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 18px 14px 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-art-photo .service-icon-cell{
  display:flex; flex-direction:column; align-items:center; gap:8px;
  text-align:center;
  padding: 6px 4px;
  border-radius: 10px;
  transition: background .25s var(--ease);
}
.hero-art-photo .service-icon-cell:hover{
  background: rgba(255,255,255,.06);
}
.hero-art-photo .service-icon-cell .icon-wrap{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.94) 0%, rgba(232,242,244,.94) 100%);
  display:grid; place-items:center;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.6);
}
.hero-art-photo .service-icon-cell .icon-wrap svg{
  width: 30px; height: 30px;
  color: var(--teal-900);
}
.hero-art-photo .service-icon-cell .label{
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.hero-art-photo .service-icon-cell .sub{
  font-size: 9.5px;
  color: rgba(201,169,97,.7);
  letter-spacing: .08em;
  font-family: "Fraunces", serif;
  font-style: italic;
}
.hero-art-photo .corner-mark{
  position: absolute;
  top: 24px; right: 24px;
  z-index: 4;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(201,169,97,.85);
  letter-spacing: .04em;
}
.hero-art-photo .corner-mark::before{
  content:""; display:inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 3px;
}

.hero-badge{
  position:absolute; left:-14px; top:36px;
  background:#fff;
  border-radius:14px;
  padding:14px 18px;
  box-shadow: var(--shadow-md);
  border:1px solid var(--line);
  display:flex; align-items:center; gap:12px;
  font-size:13px;
  z-index:3;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.hero-badge .pulse{
  width:10px; height:10px; border-radius:50%; background:var(--green);
  box-shadow: 0 0 0 0 rgba(45,122,82,.6);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green{
  0%{box-shadow: 0 0 0 0 rgba(45,122,82,.6);}
  70%{box-shadow: 0 0 0 12px rgba(45,122,82,0);}
  100%{box-shadow: 0 0 0 0 rgba(45,122,82,0);}
}
.hero-badge-card{
  position:absolute; right:-18px; bottom:36px;
  background:#fff;
  border-radius:14px;
  padding:18px 20px;
  box-shadow: var(--shadow-md);
  border:1px solid var(--line);
  max-width:240px;
  z-index:3;
  animation: floaty 7s ease-in-out infinite reverse;
}
.hero-badge-card .label{font-size:11px; color:var(--text-3); text-transform:uppercase; letter-spacing:.16em; font-weight:700;}
.hero-badge-card .value{font-size:24px; font-weight:800; color:var(--navy); line-height:1.1; margin-top:6px; font-family:"Fraunces", serif;}
.hero-badge-card .sub{font-size:12px; color:var(--text-2); margin-top:6px; line-height:1.5;}
.hero-badge-card .accent-bar{
  width:40px; height:3px; background:linear-gradient(90deg, var(--teal), var(--gold));
  border-radius:2px; margin-top:12px;
}

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust{
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 70%, var(--navy-deep) 100%);
  color:#fff;
  padding: 64px 0;
  position:relative;
  overflow:hidden;
}
.trust::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(15,122,135,.4), transparent 60%),
    radial-gradient(500px 300px at 0% 100%, rgba(201,169,97,.1), transparent 60%);
}
.trust .container{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:32px;
  align-items:center;
  position:relative; z-index:2;
}
@media (max-width: 760px){ .trust .container{grid-template-columns: repeat(2, 1fr); gap:40px 24px;} }
.trust-stat{text-align:center; position:relative;}
.trust-stat:not(:last-child)::after{
  content:""; position:absolute; right:-16px; top:50%; transform:translateY(-50%);
  width:1px; height:60%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.18), transparent);
}
@media (max-width: 760px){ .trust-stat::after{display:none;} }
.trust-num{
  font-size:clamp(36px, 5vw, 56px); font-weight:800;
  background: linear-gradient(120deg, #fff 20%, var(--gold-light) 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  line-height:1.15; letter-spacing:-.025em;
  font-family:"Fraunces", serif;
  font-style:italic;
  display: inline-block;
  padding-bottom: 0.08em;
}
.trust-num .suffix{font-style:normal; font-family:"Manrope", sans-serif; font-weight:700;}
.trust-label{margin-top:12px; font-size:13px; color:#a8b8be; letter-spacing:.06em; line-height:1.5;}

/* =========================================================
   SECTION BASE
   ========================================================= */
section.block{padding: var(--section-y) 0; position:relative;}
.section-head{max-width:820px; margin: 0 auto clamp(40px, 6vw, 72px); text-align:center;}
.section-head.left{text-align:left; margin-left:0;}
.section-head.left .eyebrow{justify-content:flex-start;}
.section-head .eyebrow{justify-content:center;}

/* Reveal-on-scroll */
.reveal{
  opacity:0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{
  opacity:0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.in > *{ opacity:1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:0s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.07s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.14s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.21s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.28s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.35s; }
.reveal-stagger.in > *:nth-child(7){ transition-delay:.42s; }
.reveal-stagger.in > *:nth-child(8){ transition-delay:.49s; }

/* =========================================================
   REALITY / OWNER ROLE
   ========================================================= */
.reality{
  background: var(--surface);
  border-top:1px solid var(--line-soft);
  border-bottom:1px solid var(--line-soft);
}
.reality-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items:start;
}
@media (max-width: 940px){.reality-grid{grid-template-columns:1fr;}}
.reality-list{display:grid; grid-template-columns: 1fr 1fr; gap:14px 28px; margin-top:32px;}
@media (max-width: 520px){.reality-list{grid-template-columns:1fr;}}
.reality-item{
  display:flex; gap:14px; align-items:flex-start;
  font-size:15px; color:var(--text-2);
  padding: 6px 0;
}
.reality-item .check{
  flex-shrink:0; width:26px; height:26px; border-radius:50%;
  background: linear-gradient(135deg, rgba(15,122,135,.12), rgba(15,122,135,.06));
  color:var(--teal); display:grid; place-items:center;
  font-weight:700; font-size:13px;
  border:1px solid rgba(15,122,135,.2);
}
.pull-card{
  background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 36px 36px 40px;
  box-shadow: var(--shadow);
  font-size:18px;
  color:var(--text);
  line-height:1.65;
  font-weight:500;
  position:relative;
  overflow:hidden;
}
.pull-card::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:5px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}
.pull-card .quote-mark{
  position:absolute; top:16px; right:24px;
  font-family:"Fraunces", serif;
  font-size:88px; font-weight:600;
  color:var(--teal); opacity:.1;
  line-height:1;
}
.pull-card strong{color:var(--teal); font-weight:700;}

.role-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 80px); align-items:center;
}
@media (max-width: 940px){.role-grid{grid-template-columns:1fr;}}
.role-card-stack{display:grid; gap:14px;}
.role-card{
  display:flex; gap:18px; padding:24px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s var(--ease), box-shadow .3s var(--ease), border-color .25s var(--ease);
  position:relative; overflow:hidden;
}
.role-card:hover{transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--teal);}
.role-card-icon{
  flex-shrink:0; width:48px; height:48px; border-radius:12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  color:#fff; display:grid; place-items:center;
  font-size:18px; font-weight:700;
  box-shadow: 0 6px 14px rgba(15,122,135,.25);
  letter-spacing:.04em;
}
.role-card-icon svg{ width:22px; height:22px; }
.role-card h4{margin-bottom:6px; font-size:17px;}
.role-card p{margin:0; font-size:14px; color:var(--text-2); line-height:1.55;}
.role-callout{
  margin-top:32px;
  background: linear-gradient(140deg, var(--navy) 0%, var(--teal-900) 100%);
  color:#fff;
  border-radius: var(--radius);
  padding: 32px 36px;
  position:relative;
  overflow:hidden;
}
.role-callout::before{
  content:""; position:absolute; right:-60px; bottom:-60px;
  width:200px; height:200px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,169,97,.15), transparent 70%);
}
.role-callout p{margin:0; font-size:19px; line-height:1.5; position:relative; z-index:2;}
.role-callout strong{color:var(--gold-light); font-weight:700;}

/* =========================================================
   SERVICES SECTION (Advisory · EPC · PM)
   ========================================================= */
.services-section{
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  position:relative;
  overflow:hidden;
}
.services-banner{
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align:center;
}
.services-banner img{
  width:100%; max-width:600px; margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(8,41,53,.10));
}
.services-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  align-items: stretch;
}
@media (max-width: 940px){.services-grid{grid-template-columns:1fr;}}

/* Per-card icon above the card */
.service-pillar{
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.service-pillar-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 18px rgba(15,122,135,.18));
  transition: transform .35s var(--ease);
  overflow: visible;
}
.service-pillar-icon img{
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.service-pillar:hover .service-pillar-icon{
  transform: translateY(-4px);
}

/* Service deep-dive page header (icon next to H2) */
.service-detail-header{
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 16px;
}
.service-detail-icon{
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(15,122,135,.18));
  overflow: visible;
}
.service-detail-icon img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 540px){
  .service-detail-header{ flex-direction: column; gap: 12px; }
  .service-detail-icon{ width: 64px; height: 64px; }
}

.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position:relative;
  overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:5px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform:scaleX(0); transform-origin:left;
  transition: transform .35s var(--ease);
}
.service-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--teal);}
.service-card:hover::before{transform:scaleX(1);}
a.service-card{text-decoration:none; color:inherit;}
a.service-card h3, a.service-card p, a.service-card .lead-line{color:inherit;}

.service-num{
  font-family:"Fraunces", serif; font-style:italic;
  font-size:42px; color:var(--teal); opacity:.18;
  line-height:1; margin-bottom:14px; letter-spacing:-.04em;
}
.service-tag{
  display:inline-block; padding:5px 12px; border-radius:999px;
  background:rgba(15,122,135,.1); color:var(--teal);
  font-size:11px; font-weight:800; letter-spacing:.16em;
  text-transform:uppercase; margin-bottom:14px;
}
.service-card h3{font-size:24px; margin-bottom:10px;}
.service-card .lead-line{
  font-size:14.5px; color:var(--text-2); margin-bottom:20px; line-height:1.6;
}
.service-card ul{
  list-style:none; padding:0; margin:0 0 22px;
}
.service-card ul li{
  padding: 9px 0 9px 22px; position:relative;
  font-size:14px; color:var(--text);
  border-bottom:1px solid var(--line-soft);
}
.service-card ul li:last-child{border-bottom:none;}
.service-card ul li::before{
  content:""; position:absolute; left:0; top:16px;
  width:10px; height:2px; background:var(--teal);
}
.service-link{
  font-size:13px; font-weight:700; color:var(--teal);
  display:inline-flex; align-items:center; gap:8px;
  text-transform:uppercase; letter-spacing:.1em;
  margin-top: auto;
}
.service-link::after{content:"→"; transition:transform .25s var(--ease);}
.service-link:hover::after{transform:translateX(4px);}

/* =========================================================
   3Ps FRAMEWORK
   ========================================================= */
.threeps{ background: linear-gradient(180deg, var(--surface) 0%, #fff 100%); }
.threeps-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  align-items: stretch;
}
@media (max-width: 940px){.threeps-grid{grid-template-columns:1fr;}}
.p-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  position:relative; overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.p-card .warn{
  margin-top: auto;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size:13.5px; color:var(--text-2); line-height:1.5;
}
.p-card::before{ content:""; position:absolute; top:0; left:0; right:0; height:5px; }
.p-card.p1::before{background: linear-gradient(90deg, #1B6FC8, #4892D9);}
.p-card.p2::before{background: linear-gradient(90deg, var(--green), #4FA37A);}
.p-card.p3::before{background: linear-gradient(90deg, var(--orange), #E0975A);}
.p-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg);}
.p-tag{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; border-radius:999px;
  font-size:11.5px; font-weight:700; letter-spacing:.1em;
  margin-bottom:18px; text-transform:uppercase;
}
.p-card.p1 .p-tag{background: rgba(27,111,200,.1); color:#1B6FC8;}
.p-card.p2 .p-tag{background: rgba(45,122,82,.1); color:var(--green);}
.p-card.p3 .p-tag{background: rgba(200,114,42,.1); color:var(--orange);}
.p-card h3{margin-bottom:8px; font-size:25px;}
.p-card .ask{font-style:italic; color:var(--text-2); font-size:14.5px; margin-bottom:22px; font-family:"Fraunces", serif;}
.p-card ul{list-style:none; padding:0; margin:0 0 22px;}
.p-card ul li{
  padding: 9px 0 9px 24px; position:relative;
  font-size:14.5px; color:var(--text);
  border-bottom:1px solid var(--line-soft);
}
.p-card ul li:last-child{border-bottom:none;}
.p-card ul li::before{ content:""; position:absolute; left:0; top:16px; width:12px; height:2px; }
.p-card.p1 ul li::before{background:#1B6FC8;}
.p-card.p2 ul li::before{background:var(--green);}
.p-card.p3 ul li::before{background:var(--orange);}
.p-card .warn strong{color:var(--navy); font-weight:700;}
.threeps-tagline{
  text-align:center; margin-top: 56px;
  font-size:clamp(20px, 2vw, 26px);
  color:var(--text); font-weight:500;
  font-family:"Fraunces", serif; font-style:italic;
}
.threeps-tagline em{ color: var(--teal); font-style:normal; font-weight:600;}

/* =========================================================
   8Ps GRID
   ========================================================= */
.eightps-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 1024px){.eightps-grid{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 520px){.eightps-grid{grid-template-columns: 1fr;}}
.ep-card{
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 26px 24px 28px;
  border:1px solid var(--line);
  transition: all .3s var(--ease);
  position:relative; overflow:hidden;
}
.ep-card::before{
  content:""; position:absolute; left:0; bottom:0; width:0; height:3px;
  background:currentColor; transition: width .3s var(--ease);
}
.ep-card:hover{background:#fff; box-shadow: var(--shadow-md); transform: translateY(-4px);}
.ep-card:hover::before{ width:100%; }
.ep-num{
  font-family:"Fraunces", serif; font-style:italic;
  font-size:14px; font-weight:500; letter-spacing:.04em;
  color:var(--text-3); margin-bottom: 14px;
  display:flex; align-items:center; gap:8px;
}
.ep-num::after{ content:""; width:24px; height:1px; background:var(--line); }
.ep-icon{
  width:48px; height:48px; border-radius:12px;
  display:grid; place-items:center;
  margin-bottom: 18px;
  background:#fff; border:1px solid var(--line);
  transition: transform .3s var(--ease);
}
.ep-card:hover .ep-icon{ transform: scale(1.08) rotate(-3deg); }
.ep-icon svg{width:22px; height:22px;}
.ep-card h4{font-size:17px; margin-bottom:8px; letter-spacing:-.01em; color: var(--navy);}
.ep-card p{margin:0; font-size:13.5px; color:var(--text-2); line-height:1.6;}

.ep-card.c1{color:#1B6FC8;}
.ep-card.c1 .ep-icon{background:rgba(27,111,200,.08); border-color:rgba(27,111,200,.2);}
.ep-card.c2{color:var(--green);}
.ep-card.c2 .ep-icon{background:rgba(45,122,82,.08); border-color:rgba(45,122,82,.2);}
.ep-card.c3{color:var(--orange);}
.ep-card.c3 .ep-icon{background:rgba(200,114,42,.08); border-color:rgba(200,114,42,.2);}
.ep-card.c4{color:var(--purple);}
.ep-card.c4 .ep-icon{background:rgba(90,74,138,.08); border-color:rgba(90,74,138,.2);}
.ep-card.c5{color:#9D8042;}
.ep-card.c5 .ep-icon{background:rgba(201,169,97,.16); border-color:rgba(201,169,97,.3);}
.ep-card.c6{color:#C84B4B;}
.ep-card.c6 .ep-icon{background:rgba(200,75,75,.08); border-color:rgba(200,75,75,.2);}
.ep-card.c7{color:#5F4B37;}
.ep-card.c7 .ep-icon{background:rgba(95,75,55,.10); border-color:rgba(95,75,55,.22);}
.ep-card.c8{color:var(--teal);}
.ep-card.c8 .ep-icon{background:rgba(15,122,135,.10); border-color:rgba(15,122,135,.25);}

/* =========================================================
   5-STAGE PATHWAY
   ========================================================= */
.pathway{ background: linear-gradient(180deg, var(--surface-2) 0%, #fff 100%);}
.stages-wrap{ position:relative; }
.stages{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position:relative;
}

@media (max-width: 1080px){
  .stages{grid-template-columns: repeat(2, 1fr); gap: 16px;}
  .stages::before{display:none;}
}
@media (max-width: 560px){
  .stages{grid-template-columns: 1fr;}
}

.stage{
  position:relative;
  padding: 28px 20px 26px;
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: all .3s var(--ease);
  z-index:1;
  display: flex;
  flex-direction: column;
}
.stage:hover{transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal);}

/* Stage 0 — special highlight as the paid Strategic Discovery */
.stage.stage-paid{
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(201,169,97,.04) 0%, #fff 30%);
}
.stage.stage-paid .stage-num{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 6px 14px rgba(201,169,97,.42), 0 0 0 4px rgba(255,255,255,1);
}
.stage.stage-paid:hover{ border-color: var(--gold); }

/* Stage 8 (Knowledge Transfer) — green accent */
.stage.stage-transfer{
  border-color: rgba(110,201,123,.35);
  background: linear-gradient(180deg, rgba(110,201,123,.04) 0%, #fff 30%);
}
.stage.stage-transfer .stage-num{
  background: linear-gradient(135deg, #6BC8AE 0%, #4ea864 100%);
}
.stage.stage-transfer ul li::before{ background: #4ea864; }

/* Stage 6 (Asset Management) — teal accent */
.stage.stage-asset{
  border-color: rgba(15,122,135,.5);
  background: linear-gradient(180deg, rgba(15,122,135,.04) 0%, #fff 30%);
}

.stage-num{
  width:42px; height:42px; border-radius:50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  color:#fff; font-weight:800; font-size:15px;
  display:grid; place-items:center;
  margin-bottom:14px;
  box-shadow: 0 6px 14px rgba(15,122,135,.32), 0 0 0 4px rgba(255,255,255,1);
  font-family:"Fraunces", serif; font-style:italic;
  flex-shrink: 0;
}
.stage-cost-tag{
  display: inline-block;
  font-size: 9.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,122,135,.08);
  color: var(--teal);
  margin-bottom: 12px;
  align-self: flex-start;
  flex-shrink: 0;
}
.stage h4{font-size:16px; margin-bottom:8px; line-height:1.3; flex-shrink: 0;}
.stage .stage-sub{font-size:12.5px; color:var(--text-3); margin-bottom:14px; line-height:1.5; font-style:italic; font-family:"Fraunces", serif; flex-shrink: 0;}
.stage ul{list-style:none; padding:0; margin:0 0 16px; font-size:12.5px; color:var(--text-2); line-height:1.65; flex-grow: 1;}
.stage ul li{padding-left:14px; position:relative;}
.stage ul li::before{content:""; position:absolute; left:0; top:9px; width:6px; height:6px; border-radius:50%; background:var(--teal);}
.stage.stage-paid ul li::before{ background: var(--gold); }
.stage.stage-asset ul li::before{ background: var(--teal); }
.stage .outcome{
  padding:12px;
  border-radius:8px;
  background: rgba(15,122,135,.06);
  font-size:11.5px; color:var(--teal-700);
  font-weight:600; line-height:1.5;
  margin-top: auto;
  flex-shrink: 0;
}
.stage.stage-paid .outcome{
  background: rgba(201,169,97,.1);
  color: var(--navy);
}
.stage .outcome span{display:block; color:var(--text-3); font-weight:600; text-transform:uppercase; letter-spacing:.16em; font-size:9.5px; margin-bottom:4px;}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 980px){.industries-grid{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 520px){.industries-grid{grid-template-columns: 1fr;}}
.ind-card{
  position:relative; overflow:hidden;
  border-radius: var(--radius);
  padding: 32px 26px;
  color:#fff;
  background: var(--navy);
  min-height: 260px;
  display:flex; flex-direction:column; justify-content:flex-end;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.ind-card:hover{transform: translateY(-6px); box-shadow: var(--shadow-lg);}
.ind-card::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(15,122,135,.5), transparent 55%),
    radial-gradient(80% 80% at 0% 100%, rgba(201,169,97,.18), transparent 60%);
  z-index:1;
}
.ind-card::after{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 22px 22px; z-index:1; opacity:.5;
}
.ind-card > *{position:relative; z-index:2;}
.ind-card h4{color:#fff; font-size:21px; margin-bottom:8px; letter-spacing:-.01em;}
.ind-card p{color:#cfdce1; font-size:13.5px; margin:0; line-height:1.6;}
.ind-icon{
  width:50px; height:50px; border-radius:12px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  display:grid; place-items:center;
  margin-bottom:auto; align-self:flex-start;
  transition: all .3s var(--ease);
  backdrop-filter: blur(10px);
}
.ind-card:hover .ind-icon{ background:rgba(201,169,97,.18); border-color:var(--gold);}
.ind-icon svg{width:22px; height:22px; color:#fff;}
.ind-card .ind-link{
  margin-top:18px; font-size:13px; color: var(--gold-light); font-weight:600;
  display:flex; align-items:center; gap:8px;
  text-transform:uppercase; letter-spacing:.1em;
}

/* Detailed industry sections (industries.html) */
.industry-detail{
  display:grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px);
  align-items:center; padding: clamp(48px, 7vw, 80px) 0;
  border-bottom:1px solid var(--line-soft);
}
.industry-detail:nth-child(even){ direction:rtl; }
.industry-detail:nth-child(even) > *{ direction:ltr; }
@media (max-width: 940px){
  .industry-detail{grid-template-columns:1fr; direction:ltr;}
}
.industry-image{
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.industry-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-image .label{
  position:absolute;
  left:18px;
  top:16px;
  z-index:2;
  font-family:"Manrope", sans-serif;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--teal);
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(6px);
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(15,122,135,.18);
}

.industry-content h3{font-size:32px; margin-bottom:16px;}
.industry-content .industry-eyebrow{
  display:inline-block;
  font-size:11px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--teal); font-weight:700;
  background:rgba(15,122,135,.08);
  padding:6px 14px; border-radius:999px;
  margin-bottom:16px;
}
.industry-content ul{
  margin:18px 0; padding:0; list-style:none;
  display:grid; grid-template-columns:1fr 1fr; gap:8px 20px;
}
@media (max-width: 600px){.industry-content ul{grid-template-columns:1fr;}}
.industry-content ul li{
  position:relative; padding-left:22px;
  font-size:14px; color:var(--text-2);
}
.industry-content ul li::before{
  content:""; position:absolute; left:0; top:8px;
  width:14px; height:2px; background:var(--teal);
}

/* =========================================================
   INDUSTRY VOICE / SPEAKING
   ========================================================= */
.voice{
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  position:relative; overflow:hidden;
}
.voice::before{
  content:""; position:absolute;
  top:10%; right:-200px; width:500px; height:500px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(201,169,97,.08), transparent 70%);
  pointer-events:none;
}
.voice-feature{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:36px;
  align-items:stretch; margin-bottom: 56px;
}
@media (max-width: 940px){.voice-feature{grid-template-columns:1fr;}}
.feature-card{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 60%, var(--teal-800) 100%);
  padding: 44px 44px 40px;
  color:#fff;
  box-shadow: var(--shadow-lg);
  border:1px solid rgba(255,255,255,.08);
  display:flex; flex-direction:column; min-height: 380px;
}
.feature-card::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(201,169,97,.18), transparent 50%),
    radial-gradient(500px 300px at 0% 100%, rgba(15,122,135,.4), transparent 50%);
  pointer-events:none;
}
.feature-card::after{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events:none; opacity:.6;
}
.feature-card > *{ position:relative; z-index:2; }
.featured-badge{
  display:inline-flex; align-items:center; gap:8px;
  padding: 7px 14px;
  background: var(--gold); color: var(--navy);
  border-radius:999px;
  font-size:11px; font-weight:800; letter-spacing:.18em; text-transform:uppercase;
  margin-bottom: 24px; align-self:flex-start;
  box-shadow: var(--shadow-gold);
}
.featured-badge::before{ content:"★"; font-size:13px; }
.feature-year{
  font-family:"Fraunces", serif;
  font-size:88px; font-weight:600; font-style:italic;
  color:var(--gold-light); line-height:.9;
  margin-bottom:16px; opacity:.92; letter-spacing:-.04em;
}
.feature-event{
  font-size:13px; color:#a8c8cd; text-transform:uppercase; letter-spacing:.18em;
  font-weight:600; margin-bottom:10px;
}
.feature-title{
  font-size:clamp(24px, 2.8vw, 34px);
  color:#fff; font-weight:700;
  line-height:1.2; margin-bottom:14px;
  font-family:"Fraunces", serif;
  letter-spacing:-.02em;
}
.feature-role{
  display:inline-flex; align-items:center; gap:10px;
  padding:6px 14px;
  background: rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  font-size:13px; font-weight:600; color:#fff;
  margin-bottom:20px; align-self:flex-start;
  backdrop-filter: blur(10px);
}
.feature-role .dot{ width:8px; height:8px; border-radius:50%; background:var(--gold);}
.feature-desc{
  font-size:15px; color:#cfdce1; line-height:1.65; margin-bottom:24px;
  max-width: 520px;
}
.feature-card .meta{
  margin-top:auto;
  display:flex; gap:24px; flex-wrap:wrap;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:12px; color:#a8c8cd; letter-spacing:.06em;
}
.feature-card .meta strong{ color:var(--gold-light); display:block; font-size:11px; letter-spacing:.16em; text-transform:uppercase; margin-bottom:4px; font-weight:700;}

.topics-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  display:flex; flex-direction:column;
}
.topics-card h3{font-size:22px; margin-bottom:8px; display:flex; align-items:center; gap:12px;}
.topics-card h3::before{ content:""; width:32px; height:2px; background:linear-gradient(90deg, var(--teal), var(--gold));}
.topics-card .topics-sub{font-size:14px; color:var(--text-2); margin-bottom:24px;}
.topics-list{display:flex; flex-direction:column; gap:10px;}
.topic-item{
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
  border:1px solid transparent;
}
.topic-item:hover{ background:#fff; border-color: var(--teal); transform: translateX(4px); box-shadow: var(--shadow-sm);}
.topic-item .topic-num{
  flex-shrink:0; width:24px; height:24px; border-radius:6px;
  background: var(--teal); color:#fff; display:grid; place-items:center;
  font-size:11px; font-weight:700;
  font-family:"Fraunces", serif; font-style:italic;
}
.topic-item .topic-text{ font-size:14px; color:var(--text); line-height:1.45; font-weight:500;}

.engagement-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 880px){.engagement-grid{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 520px){.engagement-grid{grid-template-columns: 1fr;}}
.engagement-card{
  background: #fff;
  border:1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 22px 22px 24px;
  transition: all .3s var(--ease);
}
.engagement-card.placeholder{
  background: linear-gradient(135deg, var(--surface) 0%, #fff 100%);
  border-style: dashed;
}
.engagement-card:hover{
  transform: translateY(-3px); box-shadow: var(--shadow);
  border-color: var(--teal); border-style: solid;
}
.engagement-meta{
  display:flex; justify-content:space-between; align-items:center;
  font-size:11px; color:var(--text-3); text-transform:uppercase;
  letter-spacing:.16em; font-weight:600; margin-bottom:14px;
}
.engagement-meta .role{ color:var(--teal); font-weight:700;}
.engagement-card h5{
  font-size:15.5px; font-weight:700; color:var(--navy);
  margin:0 0 6px; line-height:1.3;
}
.engagement-card .topic{ font-size:13.5px; color:var(--text-2); line-height:1.5; margin-bottom:14px;}
.engagement-card .when{
  font-family:"Fraunces", serif; font-style:italic;
  font-size:14px; color:var(--text-3);
}
.engagement-card .when strong{ color: var(--gold); font-weight:600; }

.voice-cta{
  margin-top:48px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 44px;
  display:flex; justify-content:space-between; align-items:center; gap:32px;
  flex-wrap:wrap;
}
.voice-cta-text{ flex:1; min-width:280px;}
.voice-cta h3{ font-family:"Fraunces", serif; font-size:24px; margin-bottom:6px; font-style:italic; font-weight:600;}
.voice-cta p{ margin:0; font-size:15px; color:var(--text-2);}

/* =========================================================
   AI TOOLS
   ========================================================= */
.ai-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px;}
@media (max-width: 980px){.ai-grid{grid-template-columns: repeat(2, 1fr);}}
@media (max-width: 560px){.ai-grid{grid-template-columns: 1fr;}}
.ai-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position:relative;
  transition: all .3s var(--ease);
  overflow:hidden;
}
.ai-card::before{
  content:""; position:absolute; right:-60px; top:-60px;
  width:160px; height:160px; border-radius:50%;
  background: radial-gradient(circle, rgba(15,122,135,.06), transparent 70%);
  transition: transform .4s var(--ease);
}
.ai-card:hover{box-shadow: var(--shadow-md); border-color: var(--teal); transform: translateY(-4px);}
.ai-card:hover::before{ transform: scale(1.5); }
.ai-card.featured{
  grid-column: span 2;
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--navy) 100%);
  color:#fff; border-color:var(--teal-800);
}
@media (max-width: 980px){.ai-card.featured{grid-column: span 2;}}
@media (max-width: 560px){.ai-card.featured{grid-column: span 1;}}
.ai-card.featured h4{color:#fff; font-size:22px;}
.ai-card.featured p{color:#cfdce1; font-size:15px;}
.ai-card.featured .ai-icon{ background: rgba(201,169,97,.18); color: var(--gold-light); width:56px; height:56px;}
.ai-card.featured .ai-icon svg{ width:26px; height:26px; }
.ai-card.featured .ai-tag{ background: var(--gold); color: var(--navy);}
.ai-card.featured .ai-link{ color: var(--gold-light);}
.ai-card.featured::before{ background: radial-gradient(circle, rgba(201,169,97,.15), transparent 70%); width:240px; height:240px; right:-90px; top:-90px;}
.ai-tag{
  position:absolute; top:22px; right:22px;
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-900) 100%);
  color:#fff;
  font-size:10px; font-weight:800; letter-spacing:.16em;
  padding:5px 12px; border-radius:999px;
  text-transform:uppercase; z-index:2;
}
.ai-icon{
  width:50px; height:50px; border-radius:14px;
  background: rgba(15,122,135,.1); color:var(--teal);
  display:grid; place-items:center;
  margin-bottom: 18px;
  transition: transform .3s var(--ease);
}
.ai-card:hover .ai-icon{ transform: scale(1.08); }
.ai-icon svg{width:22px; height:22px;}
.ai-card h4{font-size:18px; margin-bottom:8px; position:relative; z-index:2;}
.ai-card p{font-size:14px; color:var(--text-2); margin-bottom:18px; line-height:1.6; position:relative; z-index:2;}
.ai-link{font-size:13px; font-weight:700; color:var(--teal); display:inline-flex; align-items:center; gap:6px; text-transform:uppercase; letter-spacing:.08em; position:relative; z-index:2;}
.ai-link::after{content:"→"; transition:transform .25s var(--ease);}
.ai-link:hover::after{transform:translateX(4px);}
.ai-disclaimer{
  margin-top:36px;
  padding:22px 26px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border-left:4px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size:13px; color:var(--text-2); line-height:1.7;
}
.ai-disclaimer strong{color:var(--navy);}

/* =========================================================
   COMPLIANCE
   ========================================================= */
.compliance{
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 70%, var(--navy-deep) 100%);
  color: #cfdce1;
  position:relative; overflow:hidden;
}
.compliance::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 100% 0%, rgba(15,122,135,.3), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(201,169,97,.08), transparent 60%);
}
.compliance::after{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 32px 32px;
}
.compliance .container{position:relative; z-index:2;}
.compliance h2{color:#fff; max-width:820px;}
.compliance .lead{color:#cfdce1; max-width: 760px;}
.compliance .eyebrow{ color: var(--gold); }
.compliance-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:28px; margin-top:40px;
}
@media (max-width: 940px){.compliance-grid{grid-template-columns:1fr;}}

/* =========================================================
   SCOPE BOUNDARIES (Services page) — 3-column color-coded
   ========================================================= */
.scope-boundaries-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 980px){
  .scope-boundaries-grid{ grid-template-columns: 1fr; }
}
.scope-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  transition: all .25s var(--ease);
}
.scope-card:hover{
  background: rgba(255,255,255,.06);
  transform: translateY(-3px);
}
.scope-card .scope-tag{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.scope-card.scope-in .scope-tag{
  background: rgba(110,201,123,.14);
  color: #a8d9b5;
  border: 1px solid rgba(110,201,123,.32);
}
.scope-card.scope-with .scope-tag{
  background: rgba(122,201,210,.14);
  color: #b9e2e8;
  border: 1px solid rgba(122,201,210,.32);
}
.scope-card.scope-out .scope-tag{
  background: rgba(232,170,76,.12);
  color: var(--gold-light);
  border: 1px solid rgba(232,170,76,.32);
}
.scope-card h4{
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.scope-card ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scope-card ul li{
  font-size: 14px;
  color: #c8dde0;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.scope-card.scope-in ul li::before{
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: #a8d9b5;
  font-weight: 700;
  font-size: 14px;
}
.scope-card.scope-with ul li::before{
  content: "\2194";
  position: absolute; left: 0; top: 0;
  color: #b9e2e8;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}
.scope-card.scope-out ul li::before{
  content: "\2014";
  position: absolute; left: 0; top: 0;
  color: var(--gold-light);
  font-weight: 700;
}
.comp-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 30px;
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
}
.comp-card:hover{ background:rgba(255,255,255,.06); border-color: rgba(201,169,97,.3); }
.comp-card h4{color:#fff; font-size:17px; margin-bottom:14px; display:flex; align-items:center; gap:12px; flex-wrap:wrap;}
.comp-card h4 .badge{
  font-size:10px; padding:4px 10px; border-radius:999px;
  background:var(--gold); color:var(--navy); font-weight:800; letter-spacing:.1em; text-transform:uppercase;
}
.comp-card ul{margin:0; padding-left: 20px; font-size:14px; line-height:1.85; color:#cfdce1;}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta{ background: linear-gradient(135deg, rgba(15,122,135,.06) 0%, transparent 50%), var(--bg);}
.cta-grid{display:grid; grid-template-columns: 1fr 1fr; gap:24px;}
@media (max-width: 880px){.cta-grid{grid-template-columns:1fr;}}
.cta-box{
  padding: 40px 36px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:#fff;
  transition: all .3s var(--ease);
  display:flex; flex-direction:column;
  position:relative; overflow:hidden;
}
.cta-box::after{
  content:""; position:absolute; right:-80px; bottom:-80px;
  width:240px; height:240px; border-radius:50%;
  background: radial-gradient(circle, rgba(15,122,135,.08), transparent 70%);
}
.cta-box:hover{transform: translateY(-4px); box-shadow: var(--shadow-lg);}
.cta-box.primary{
  background: linear-gradient(140deg, var(--teal) 0%, var(--teal-900) 100%);
  color:#fff; border-color: var(--teal);
}
.cta-box.primary::after{ background: radial-gradient(circle, rgba(201,169,97,.18), transparent 70%);}
.cta-box.primary h3, .cta-box.primary p{color:#fff;}
.cta-box.primary p{color:#cfeff3; opacity:.95;}
.cta-box h3{font-size:24px; margin-bottom:12px; position:relative; z-index:2;}
.cta-box ul{list-style:none; padding:0; margin:0 0 28px; font-size:14.5px; position:relative; z-index:2;}
.cta-box ul li{padding: 7px 0 7px 24px; position:relative;}
.cta-box ul li::before{content:""; position:absolute; left:0; top:14px; width:10px; height:10px; border-radius:50%; background:var(--teal);}
.cta-box.primary ul li::before{background:var(--gold);}
.cta-box .btn{align-self:flex-start; margin-top:auto; position:relative; z-index:2;}

/* =========================================================
   ASSOCIATIONS
   ========================================================= */
.assoc{padding: 64px 0; background: var(--surface); border-top:1px solid var(--line);}
.assoc-label{
  text-align:center; font-size:11px; letter-spacing:.22em; color:var(--text-3);
  text-transform:uppercase; font-weight:700; margin-bottom: 28px;
}
.assoc-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items:center;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 760px){
  .assoc-grid{ grid-template-columns: repeat(2, 1fr);}
}
.assoc-item{
  background:#fff;
  border:1px solid var(--line);
  padding: 22px 20px;
  border-radius: 12px;
  transition: all .25s var(--ease);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 110px;
}
.assoc-item:hover{
  border-color:var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.assoc-item img{
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(.15);
  transition: filter .25s var(--ease);
}
.assoc-item:hover img{
  filter: grayscale(0);
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.founder-section{
  display:grid; grid-template-columns: 360px 1fr; gap: clamp(36px, 5vw, 56px);
  align-items: start;
  margin-bottom: 56px;
}
@media (max-width: 940px){
  .founder-section{grid-template-columns:1fr; gap: 32px;}
  .founder-photo-wrap{ max-width: 360px; margin: 0 auto; }
}
.founder-photo-wrap{
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 940px){
  .founder-photo-wrap{ position: static; }
}
.founder-photo{
  position:relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow:hidden;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

.founder-linkedin{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #0A66C2 0%, #0072BC 100%);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  box-shadow: 0 6px 14px rgba(10,102,194,.28);
  transition: all .25s var(--ease);
}
.founder-linkedin:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(10,102,194,.4);
  color: #fff;
}
.founder-linkedin svg{ flex-shrink: 0; }
.founder-photo img{ width:100%; height:100%; object-fit:cover; object-position: center top; }
.founder-photo::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 60%, rgba(8,41,53,.4) 100%);
  pointer-events:none;
}
.founder-photo .badge{
  position:absolute; left:24px; bottom:24px; z-index:2;
  background: rgba(255,255,255,.94);
  padding: 14px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.founder-photo .badge .name{ font-weight:700; color:var(--navy); font-size:16px; margin-bottom:2px;}
.founder-photo .badge .title{ font-size:12px; color:var(--text-2);}

.founder-bio{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-bio .full-title{
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .04em;
  margin-top: 8px;
  margin-bottom: 24px;
  padding: 10px 16px;
  background: rgba(15,122,135,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  display: inline-block;
  width: fit-content;
}
.founder-bio h2{
  margin-bottom: 4px;
  margin-top: 6px;
}

/* =========================================================
   PROMINENT 8-BOX CREDENTIALS GRID (below photo + bio)
   ========================================================= */
.creds-prominent{
  margin-top: clamp(36px, 5vw, 56px);
}
.creds-prominent .creds-section-label{
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.creds-prominent .creds-section-label::before,
.creds-prominent .creds-section-label::after{
  content: "";
  height: 1px;
  background: var(--line);
  flex: 1;
}
.creds-prominent .creds-section-label::after{ flex: 8; }
.creds-prominent .creds-section-label::before{ flex: 0 0 14px; }

.creds-box-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
@media (max-width: 980px){ .creds-box-grid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 540px){ .creds-box-grid{ grid-template-columns: 1fr;} }

.cred-box{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cred-box-icon{
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15,122,135,.06) 0%, rgba(15,122,135,.02) 100%);
  border-radius: 10px;
  padding: 6px;
  margin-bottom: 4px;
  align-self: flex-start;
}
.cred-box.education .cred-box-icon{
  background: linear-gradient(135deg, rgba(201,169,97,.08) 0%, rgba(201,169,97,.02) 100%);
}
.cred-box-icon svg{
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(15,122,135,.18));
}
.cred-box::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.cred-box.education::before{
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.cred-box:hover{
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cred-box:hover::before{ transform: scaleX(1); }
.cred-box.education:hover{ border-color: var(--gold); }

.cred-box-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 12px;
  background: linear-gradient(135deg, var(--teal-900), var(--teal));
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  font-family: "Manrope", sans-serif;
  align-self: flex-start;
}
.cred-box.education .cred-box-mark{
  background: linear-gradient(135deg, #8E732F, var(--gold));
  color: var(--navy);
}
.cred-box-text{
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.cred-box-sub{
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: .02em;
  font-weight: 500;
  margin-top: -4px;
}

/* =========================================================
   CAREER INFOGRAPHIC — Horizontal Road-Map
   India top + Canada bottom, milestone stops along each road
   ========================================================= */
.career-timeline{
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line);
}
.career-timeline .tl-intro{
  max-width: 720px;
  margin-bottom: 32px;
}

.lineage-intro{
  max-width: 920px;
  margin: 0 auto 56px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(201,169,97,.06) 0%, rgba(15,122,135,.04) 100%);
  border: 1px solid rgba(201,169,97,.22);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.lineage-intro .lineage-icon{
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(201,169,97,.1);
  border-radius: 12px;
  border: 1px solid rgba(201,169,97,.3);
}
.lineage-intro .lineage-icon svg{
  width: 36px;
  height: 36px;
}
@media (max-width: 600px){
  .lineage-intro{ flex-direction: column; gap: 14px; }
}
.lineage-intro .lineage-tag{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}
.lineage-intro p{
  font-family: "Fraunces", serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}
.lineage-intro p strong{
  font-weight: 600;
  color: var(--navy);
  font-style: normal;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.roadmap{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 48px;
}

.road-row{
  position: relative;
}

.road-row-header{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.road-flag{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.road-flag .flag-icon{
  width: 24px; height: 16px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
}
.road-flag .flag-name{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
}
.road-flag .flag-years{
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
  font-family: "Fraunces", serif;
  font-style: italic;
}

.road-tag{
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 700;
  margin-left: 4px;
}

.road{
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--stops, 6), 1fr);
  gap: 0;
  padding: 130px 0 130px;
  min-height: 320px;
}

/* Floating volunteer badges (can sit above or below a road) */
.road-volunteers{
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--stops, 5), 1fr);
}
.road-volunteers.above{
  margin-bottom: 12px;
  margin-top: 8px;
}
.road-volunteers.below{
  margin-top: 24px;
  margin-bottom: 8px;
}
.volunteer-badge{
  background: linear-gradient(135deg, rgba(201,169,97,.12) 0%, rgba(201,169,97,.04) 100%);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 8px;
  padding: 8px 12px;
  position: relative;
  cursor: default;
  transition: all .25s var(--ease);
  font-size: 11px;
}
.volunteer-badge:hover{
  background: linear-gradient(135deg, rgba(201,169,97,.18) 0%, rgba(201,169,97,.08) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(201,169,97,.18);
}
.volunteer-badge .vb-tag{
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.volunteer-badge .vb-tag::before{
  content: "★";
  font-size: 10px;
  color: var(--gold);
}
.volunteer-badge .vb-title{
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.volunteer-badge .vb-meta{
  font-size: 10.5px;
  color: var(--text-3);
  font-family: "Fraunces", serif;
  font-style: italic;
  margin-top: 2px;
}
.volunteer-badge .vb-detail{
  font-size: 10.5px;
  color: var(--text-2);
  margin-top: 6px;
  line-height: 1.4;
}

/* Position the badges above specific timeline columns */
.volunteer-badge.span-1-2{ grid-column: 1 / 3; margin-right: 8px; }
.volunteer-badge.span-2-3{ grid-column: 2 / 4; margin: 0 8px; }
.volunteer-badge.span-3-4{ grid-column: 3 / 5; margin-left: 8px; }

/* Square-style volunteer badge — cleaner box aesthetic */
.volunteer-badge.vb-square{
  padding: 14px 14px 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(201,169,97,.10) 0%, rgba(15,122,135,.04) 100%);
  border-color: rgba(201,169,97,.45);
  border-left: 3px solid var(--gold);
}
.volunteer-badge.vb-square:hover{
  border-left-color: var(--gold-light);
}
.volunteer-badge.vb-square .vb-tag{
  font-size: 9px;
  margin-bottom: 6px;
}
.volunteer-badge.vb-square .vb-title{
  font-size: 13px;
  margin-bottom: 4px;
}
.volunteer-badge.vb-square .vb-meta{
  font-size: 11px;
  margin-top: 2px;
  margin-bottom: 6px;
}
.volunteer-badge.vb-square .vb-detail{
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-2);
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px dashed rgba(201,169,97,.3);
}

@media (max-width: 880px){
  .road-volunteers{
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }
  .volunteer-badge.span-1-2,
  .volunteer-badge.span-2-3,
  .volunteer-badge.span-3-4{
    grid-column: 1;
    margin: 0;
  }
}

.road::before{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal-900), var(--teal), var(--teal-700));
  transform: translateY(-50%);
  z-index: 1;
}

.road::after{
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  border-top: 1.5px dashed rgba(201,169,97,.55);
  transform: translateY(-50%);
  z-index: 2;
  margin-top: 0;
}

.road.canada::before{
  background: linear-gradient(90deg, #082935, #0F7A87, #C9A961);
}
.road.india::before{
  background: linear-gradient(90deg, #C9A961, #FF9933, #138808);
}

.stop{
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  transition: transform .35s var(--ease), z-index 0s ease .35s;
  cursor: default;
}
.stop:hover{
  transform: translateY(-6px) scale(1.12);
  z-index: 10;
  transition: transform .35s var(--ease), z-index 0s ease 0s;
}

.stop-marker{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  background: #fff;
  border: 3px solid var(--gold);
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 0 0 4px #fff, 0 4px 12px rgba(8,41,53,.18);
  transition: all .3s var(--ease);
}
.stop:hover .stop-marker{
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.35);
  box-shadow: 0 0 0 6px #fff, 0 0 0 9px rgba(201,169,97,.35), 0 6px 18px rgba(201,169,97,.4);
}

.stop-content-top, .stop-content-bottom{
  width: 100%;
  text-align: center;
  position: absolute;
  left: 0;
}
.stop-content-top{
  bottom: calc(50% + 22px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4px 8px;
}
.stop-content-bottom{
  top: calc(50% + 22px);
  padding: 8px 4px 0;
}

.stop-year{
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
  transition: color .25s var(--ease), transform .3s var(--ease);
}
.stop:hover .stop-year{
  color: var(--gold-light);
  transform: translateY(-2px);
}
.stop-role{
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: color .25s var(--ease), letter-spacing .3s var(--ease);
}
.stop:hover .stop-role{
  color: var(--teal-900);
  letter-spacing: .055em;
}
.stop-industry{
  font-size: 10px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: .04em;
  transition: color .25s var(--ease);
}
.stop:hover .stop-industry{
  color: var(--teal);
}
.stop-icon{
  display: block;
  width: 32px;
  height: 32px;
  margin: 6px auto 2px;
  filter: drop-shadow(0 2px 4px rgba(15,122,135,.2));
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.stop:hover .stop-icon{
  transform: scale(1.3);
  filter: drop-shadow(0 4px 10px rgba(201,169,97,.35)) drop-shadow(0 2px 4px rgba(15,122,135,.25));
}
.stop-achievement{
  font-size: 11.5px;
  color: var(--text-2);
  line-height: 1.45;
  display: block;
  padding: 8px 6px;
  background: var(--surface);
  border-radius: 6px;
  border-left: 2px solid var(--teal);
  text-align: left;
  margin: 0 2px;
  transition: background .25s var(--ease), border-left-color .25s var(--ease), box-shadow .3s var(--ease);
}
.stop:hover .stop-achievement{
  background: #fff;
  border-left-color: var(--gold);
  box-shadow: 0 6px 18px rgba(8,41,53,.08), 0 0 0 1px rgba(201,169,97,.2);
}

/* Mobile: switch to vertical stack */
@media (max-width: 880px){
  .road{
    grid-template-columns: 1fr;
    padding: 24px 0;
    min-height: auto;
    gap: 28px;
  }
  .road::before, .road::after{ display: none; }
  .stop{
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
  }
  .stop-marker{
    position: static;
    transform: none;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .stop:hover .stop-marker{
    transform: scale(1.1);
  }
  .stop-content-top, .stop-content-bottom{
    position: static;
    text-align: left;
    width: auto;
    padding: 0;
    bottom: auto;
    top: auto;
  }
  .stop-content-top{
    flex: 0 0 auto;
    margin-bottom: 4px;
  }
  .stop-content-bottom{
    flex: 1;
  }
  .stop-achievement{
    margin: 4px 0 0;
    border-left-width: 2px;
  }
}

/* PMI-CTT sidebar leadership card */
.industry-leadership{
  margin-top: 64px;
  padding: 32px;
  background: linear-gradient(135deg, #fff 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.industry-leadership .il-tag{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 8px;
}
.industry-leadership h3{
  font-size: 22px;
  margin-bottom: 6px;
}
.industry-leadership .il-meta{
  font-size: 13px;
  color: var(--text-3);
  font-family: "Fraunces", serif;
  font-style: italic;
  margin-bottom: 16px;
}
.industry-leadership ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 700px){ .industry-leadership ul{grid-template-columns: 1fr;} }
.industry-leadership ul li{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.industry-leadership ul li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.credentials-grid{
  display:grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  margin-top: 32px;
}
@media (max-width: 600px){.credentials-grid{grid-template-columns:1fr;}}
.cred-pill{
  display:flex; align-items:center; gap:12px;
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all .25s var(--ease);
}
.cred-pill:hover{ background:#fff; border-color:var(--teal); transform: translateX(2px);}
.cred-pill .cred-mark{
  width:36px; height:36px; border-radius:8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
  color:#fff; display:grid; place-items:center;
  font-weight:700; font-size:11px; letter-spacing:.04em;
  flex-shrink:0;
}
.cred-pill .cred-text{ font-size:14px; color:var(--text); font-weight:500;}
.cred-pill .cred-sub{ font-size:11.5px; color:var(--text-3); margin-top:2px;}

/* Why we exist / Manifesto-style box */
.manifesto{
  margin-top: clamp(48px, 6vw, 80px);
  padding: clamp(40px, 6vw, 64px);
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 100%);
  color:#fff;
  border-radius: var(--radius-lg);
  position:relative; overflow:hidden;
}
.manifesto::before{
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(201,169,97,.18), transparent 50%),
    radial-gradient(500px 300px at 0% 100%, rgba(15,122,135,.4), transparent 50%);
}
.manifesto::after{
  content:"\201C";
  position:absolute; top:-20px; right:40px;
  font-family:"Fraunces", serif;
  font-size:240px; font-weight:600;
  color:var(--gold); opacity:.18;
  line-height:1;
}
.manifesto > *{ position:relative; z-index:2;}
.manifesto h3{ color:#fff; font-size:clamp(24px, 3vw, 36px); font-family:"Fraunces", serif; font-style:italic; font-weight:600; line-height:1.3; max-width:760px; margin-bottom:16px;}
.manifesto p{ font-size:17px; color:#cfdce1; line-height:1.7; max-width:760px; margin:0;}
.manifesto .signature{
  margin-top:32px; padding-top:24px;
  border-top: 1px solid rgba(255,255,255,.15);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  flex-wrap:wrap;
}
.manifesto .signature-text{
  font-family:"Fraunces", serif; font-style:italic;
  color: var(--gold-light); font-size:18px;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px);
  align-items:start;
}
@media (max-width: 940px){.contact-grid{grid-template-columns:1fr;}}
.contact-form-wrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3{font-size:24px; margin-bottom:8px;}
.contact-form-wrap .form-sub{font-size:14px; color:var(--text-2); margin-bottom:28px;}
.form-grid{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
@media (max-width: 560px){.form-grid{grid-template-columns:1fr;}}
.form-field{display:flex; flex-direction:column; gap:6px;}
.form-field label{font-size:12.5px; font-weight:600; color:var(--text); text-transform:uppercase; letter-spacing:.1em;}
.form-field input, .form-field select, .form-field textarea{
  font-family:inherit; font-size:14.5px;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  transition: all .2s var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline:none; border-color: var(--teal); background:#fff;
  box-shadow: 0 0 0 4px rgba(15,122,135,.08);
}
.form-field textarea{ min-height: 130px; resize:vertical;}
.form-full{grid-column: 1 / -1;}
.form-disclaimer{
  font-size:12px; color:var(--text-3); margin-top:14px; line-height:1.55;
}

.contact-info{display:flex; flex-direction:column; gap:14px;}
.contact-info-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  display:flex; align-items:flex-start; gap:16px;
  transition: all .25s var(--ease);
  text-decoration: none;
  color: inherit;
}
a.contact-info-card{ cursor: pointer; }
.contact-info-card:hover{transform:translateX(4px); border-color:var(--teal); box-shadow: var(--shadow-sm);}
.contact-info-card .icon{
  width:44px; height:44px; border-radius:10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-900));
  color:#fff; display:grid; place-items:center; flex-shrink:0;
}
.contact-info-card h5{font-size:13px; color:var(--text-3); text-transform:uppercase; letter-spacing:.14em; margin-bottom:4px;}
.contact-info-card .value{font-size:16px; font-weight:600; color:var(--navy); margin-bottom:2px;}
.contact-info-card .sub{font-size:13px; color:var(--text-2);}

.bookings-card{
  margin-top:14px;
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  border-radius: var(--radius);
  color:#fff; text-align:center;
}
.bookings-card h4{color:#fff; font-size:20px; margin-bottom:10px;}
.bookings-card p{color:#cfeff3; font-size:14px; margin-bottom:20px;}

/* =========================================================
   FOOTER
   ========================================================= */
footer{
  background: linear-gradient(180deg, var(--teal-900) 0%, var(--navy-deep) 100%);
  color: #cfeff3;
  padding: 80px 0 28px;
  position:relative; overflow:hidden;
}
footer::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(900px 500px at 100% 0%, rgba(15,122,135,.18), transparent 60%);
}
footer .container{ position:relative; z-index:2;}
.footer-grid{
  display:grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px;
}
@media (max-width: 940px){.footer-grid{grid-template-columns: 1fr 1fr;}}
@media (max-width: 520px){.footer-grid{grid-template-columns: 1fr;}}
.footer-grid h5{color:#fff; font-size:13px; margin: 0 0 18px; letter-spacing:.18em; text-transform:uppercase; font-weight:700;}
.footer-grid ul{list-style:none; padding:0; margin:0;}
.footer-grid ul li{margin-bottom:11px; font-size:14px;}
.footer-grid a{color:#cfeff3; transition:color .2s;}
.footer-grid a:hover{color:var(--gold-light);}
.footer-logo{ height: 70px; width:auto; margin-bottom:18px;}
.footer-about{font-size:14px; color:#a8c8cd; line-height:1.7;}
.footer-contact{font-size:14px; line-height:1.95;}
.footer-contact a{display:block;}
.footer-bottom{
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:14px;
  font-size:12px; color:#7ba0a8;
}
.footer-disclaimer{
  background: rgba(0,0,0,.22);
  border-radius: var(--radius-sm);
  padding: 22px 24px; margin-top:40px;
  font-size: 12.5px; color:#a8c8cd; line-height:1.7;
  border:1px solid rgba(255,255,255,.04);
}
.footer-disclaimer strong{color:#fff;}
.portal-note{
  display:inline-block; margin-top: 10px;
  font-size: 11.5px; color: #7ba0a8;
  font-style: italic; font-family:"Fraunces", serif;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes rise {
  from{opacity:0; transform: translateY(18px);}
  to{opacity:1; transform: translateY(0);}
}
.hero-badge-pill, .hero h1, .hero-subhead, .hero-ctas, .hero-meta,
.page-hero .breadcrumb, .page-hero h1, .page-hero .lead{
  animation: rise .7s var(--ease) both;
}
.hero h1{ animation-delay:.05s; }
.hero-subhead{animation-delay:.13s;}
.hero-ctas{animation-delay:.21s;}
.hero-meta{animation-delay:.29s;}
.page-hero h1{animation-delay:.05s;}
.page-hero .lead{animation-delay:.13s;}

/* Accessibility */
:focus-visible{outline:3px solid var(--gold); outline-offset:3px; border-radius:4px;}
.sr-only{position:absolute; left:-9999px;}

/* Back to top */
.to-top{
  position:fixed; right:24px; bottom:24px;
  width:48px; height:48px; border-radius:50%;
  background: var(--navy); color:#fff; border:none;
  display:grid; place-items:center; cursor:pointer;
  box-shadow: var(--shadow-md);
  opacity:0; pointer-events:none;
  transition: all .3s var(--ease);
  z-index:40;
}
.to-top.show{ opacity:1; pointer-events:auto; }
.to-top:hover{ background:var(--teal); transform: translateY(-2px); }

/* =========================================================
   KNOWLEDGE BASE PAGE
   ========================================================= */
.kb-teaser{
  background: linear-gradient(135deg, var(--surface) 0%, #fff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.kb-teaser::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--gold) 100%);
}
.kb-teaser-tag{
  display: inline-block;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  padding: 6px 14px;
  background: rgba(201,169,97,.1);
  border: 1px solid rgba(201,169,97,.3);
  border-radius: 999px;
  margin-bottom: 18px;
}
.kb-teaser h2{
  font-size: clamp(28px, 3.6vw, 42px);
  margin-bottom: 14px;
}
.kb-teaser .lead{
  max-width: 820px;
  margin-bottom: 36px;
}

.kb-teaser-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
@media (max-width: 880px){
  .kb-teaser-grid{ grid-template-columns: 1fr; }
}
.kb-teaser-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: all .3s var(--ease);
}
.kb-teaser-card:hover{
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.kb-teaser-icon{
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 14px rgba(15,122,135,.25);
}
.kb-teaser-icon svg{ width: 26px; height: 26px; }
.kb-teaser-card h4{
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--navy);
}
.kb-teaser-card p{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.kb-teaser-footer{
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

/* Industry Resources Grid */
.kb-resources-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 980px){ .kb-resources-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .kb-resources-grid{ grid-template-columns: 1fr; } }

.kb-resource-card{
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  transition: all .25s var(--ease);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.kb-resource-card:hover{
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.kb-resource-tag{
  display: inline-block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);
  background: rgba(15,122,135,.08);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.kb-resource-card h4{
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.kb-resource-card p{
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 14px;
}
.kb-resource-link{
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .04em;
}

/* =========================================================
   PARTNERSHIPS — ADVISOR GRID & APPLICATION FORM
   ========================================================= */
.advisor-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 1080px){ .advisor-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px){ .advisor-grid{ grid-template-columns: 1fr; } }

.advisor-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 22px 20px;
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.advisor-card:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(201,169,97,.4);
  transform: translateY(-3px);
}
.advisor-tag{
  display: inline-block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold-light);
  background: rgba(201,169,97,.12);
  border: 1px solid rgba(201,169,97,.3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.advisor-card h4{
  color: #fff;
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.advisor-card p{
  font-size: 13px;
  color: #c8dde0;
  line-height: 1.55;
  margin-bottom: 12px;
  flex-grow: 1;
}
.advisor-fit{
  font-size: 11.5px;
  color: var(--gold-light);
  font-style: italic;
  font-family: "Fraunces", serif;
  line-height: 1.5;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Application Form */
.application-wrap{
  max-width: 820px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}

/* =========================================================
   WORK WITH US — CO-OP / INTERN GRID
   ========================================================= */
.coop-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 980px){ .coop-grid{ grid-template-columns: 1fr; } }

.coop-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.coop-card:hover{
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.coop-icon{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(15,122,135,.25);
}
.coop-icon svg{ width: 28px; height: 28px; }
.coop-card h4{
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.coop-card p{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.coop-card ul{
  list-style: none;
  padding: 0;
  margin: 0 0 0;
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.coop-card ul li{
  padding-left: 14px;
  position: relative;
}
.coop-card ul li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =========================================================
   HERO LED SCREEN — CSS-animated 8-frame cycle (15s loop)
   ========================================================= */
.hero-text{ max-width: none; }

.hero-led{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: center;
}
.led-bezel{
  width: 100%;
  max-width: 540px;
  aspect-ratio: 4/3;
  background: linear-gradient(180deg, #0B1F26 0%, #04141A 100%);
  border-radius: 18px;
  padding: 14px;
  position: relative;
  box-shadow:
    0 30px 60px -15px rgba(0,0,0,.55),
    0 0 0 1px rgba(201,169,97,.2),
    inset 0 0 0 1px rgba(255,255,255,.03);
}
.led-bezel::before{
  /* Outer ring glow — adds depth */
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(201,169,97,.45), transparent 30%, transparent 70%, rgba(15,122,135,.45));
  z-index: -1;
  filter: blur(1px);
}
.led-bezel::after{
  /* Brand label on bezel bottom */
  content: "TRANSERA · LIVE";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: .3em;
  color: rgba(201,169,97,.55);
  font-weight: 800;
}

.led-screen{
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at center, rgba(15,122,135,.18) 0%, rgba(8,41,53,.95) 70%, rgba(4,20,26,1) 100%);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle horizontal scanlines for LED feel */
.led-scanlines{
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,0) 0,
    rgba(255,255,255,0) 2px,
    rgba(255,255,255,.012) 2px,
    rgba(255,255,255,.012) 3px
  );
  pointer-events: none;
  z-index: 2;
}

/* Pulse running light at corner */
.led-pulse{
  position: absolute;
  top: 12px; right: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6BC8AE;
  box-shadow: 0 0 12px #6BC8AE, 0 0 4px #6BC8AE;
  animation: ledPulse 1.5s ease-in-out infinite;
  z-index: 5;
}
@keyframes ledPulse{
  0%, 100%{ opacity: 1; box-shadow: 0 0 12px #6BC8AE, 0 0 4px #6BC8AE; }
  50%{ opacity: .35; box-shadow: 0 0 4px #6BC8AE; }
}

/* Each frame absolutely positioned, fades in/out on cycle */
.led-frame{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  opacity: 0;
  z-index: 1;
}

/* Frame typography */
.led-headline{
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 38px;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.02em;
  text-shadow: 0 0 24px rgba(15,122,135,.4);
}
.led-tagline{
  font-size: 13px;
  color: #cfdce1;
  line-height: 1.5;
  margin-top: 12px;
  max-width: 340px;
}
.led-marker{
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.led-text-l1{
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 16px;
  letter-spacing: .04em;
}
.led-text-l2{
  font-size: 10px;
  letter-spacing: .26em;
  color: #a8c8cd;
  font-weight: 700;
  text-transform: uppercase;
}
.led-logo{
  width: 88px;
  height: auto;
  filter: drop-shadow(0 0 24px rgba(201,169,97,.35));
}
.led-grid8{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.led-grid8 span{
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .06em;
  padding: 8px 4px;
  background: rgba(15,122,135,.18);
  border: 1px solid rgba(201,169,97,.25);
  border-radius: 6px;
  text-align: center;
}

/* ---- Frame timing — 15 second loop, 8 frames ----
   Each frame: 1.875s visible (with 0.3s cross-fade)
   Stagger: each frame starts 1.875s after the previous
*/
@keyframes ledCycle{
  0%, 9%   { opacity: 1; transform: scale(1); }
  12.5%, 100% { opacity: 0; transform: scale(.97); }
}
.led-frame{
  animation: ledCycle 15s ease-in-out infinite;
  transform: scale(.97);
  transition: opacity .3s ease;
}
.led-frame-1{ animation-delay: 0s; }
.led-frame-2{ animation-delay: 1.875s; }
.led-frame-3{ animation-delay: 3.75s; }
.led-frame-4{ animation-delay: 5.625s; }
.led-frame-5{ animation-delay: 7.5s; }
.led-frame-6{ animation-delay: 9.375s; }
.led-frame-7{ animation-delay: 11.25s; }
.led-frame-8{ animation-delay: 13.125s; }

/* Caption below screen */
.led-caption{
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
  font-family: "Fraunces", serif;
  letter-spacing: .04em;
}

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce){
  .led-frame{ animation: none; }
  .led-frame-1{ opacity: 1; }
  .led-pulse{ animation: none; }
}

/* Mobile: keep working but smaller */
@media (max-width: 940px){
  .led-bezel{ max-width: 420px; }
  .led-headline{ font-size: 30px; }
  .led-marker{ font-size: 28px; }
}
@media (max-width: 600px){
  .led-bezel{ max-width: 100%; aspect-ratio: 3/2; padding: 10px; }
  .led-headline{ font-size: 24px; }
  .led-tagline{ font-size: 12px; }
  .led-grid8{ gap: 6px; }
  .led-grid8 span{ font-size: 10px; padding: 6px 3px; }
}

/* =========================================================
   INSIGHTS — NEWS & UPDATES GRID
   ========================================================= */
.news-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 980px){ .news-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .news-grid{ grid-template-columns: 1fr; } }

.news-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px 24px;
  transition: all .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.news-card:hover{
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.news-card.news-card-coming{
  background: linear-gradient(135deg, rgba(201,169,97,.06) 0%, rgba(15,122,135,.04) 100%);
  border-style: dashed;
  border-color: rgba(201,169,97,.5);
}
.news-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.news-tag{
  display: inline-block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.news-tag-event{ background: rgba(15,122,135,.12); color: var(--teal); border: 1px solid rgba(15,122,135,.3); }
.news-tag-update{ background: rgba(110,201,123,.12); color: #4ea864; border: 1px solid rgba(110,201,123,.3); }
.news-tag-funding{ background: rgba(232,170,76,.12); color: #b88838; border: 1px solid rgba(232,170,76,.32); }
.news-tag-launch{ background: rgba(201,169,97,.14); color: #8E732F; border: 1px solid rgba(201,169,97,.4); }
.news-tag-soon{ background: rgba(11,61,82,.08); color: var(--navy); border: 1px solid rgba(11,61,82,.18); }

.news-date{
  font-size: 12px;
  color: var(--text-3);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
}
.news-card h4{
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}
.news-card p{
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}
.news-link{
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .04em;
  text-decoration: none;
  margin-top: auto;
}
.news-link:hover{ color: var(--teal-700); text-decoration: underline; }

/* =========================================================
   INVESTORS PAGE
   ========================================================= */

/* Investor stats — 4-column counter strip */
.invest-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 880px){ .invest-stats{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .invest-stats{ grid-template-columns: 1fr; } }

.invest-stat{
  text-align: center;
  padding: 28px 16px;
  background: linear-gradient(135deg, #fff 0%, var(--surface) 100%);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-top: 3px solid var(--gold);
  transition: all .25s var(--ease);
}
.invest-stat:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.invest-stat .stat-num{
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--teal);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.invest-stat .stat-label{
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.45;
  font-weight: 500;
}

/* Why Transera grid — 6 cards */
.why-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 980px){ .why-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .why-grid{ grid-template-columns: 1fr; } }

.why-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all .3s var(--ease);
  position: relative;
}
.why-card:hover{
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-num{
  display: inline-block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h4{
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.3;
}
.why-card p{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* Market opportunity grid */
.market-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 980px){ .market-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .market-grid{ grid-template-columns: 1fr; } }

.market-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 22px;
  transition: all .25s var(--ease);
}
.market-card:hover{
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.market-tag{
  display: inline-block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);
  background: rgba(15,122,135,.08);
  border: 1px solid rgba(15,122,135,.2);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.market-card h4{
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.market-card p{
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

/* Business streams */
.biz-streams{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 980px){ .biz-streams{ grid-template-columns: 1fr; } }

.biz-stream{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all .3s var(--ease);
}
.biz-stream:hover{
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.biz-stream-num{
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.biz-stream h4{
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.biz-stream-tagline{
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px !important;
}
.biz-stream p:last-child{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* Roadmap phases */
.roadmap-phases{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 980px){ .roadmap-phases{ grid-template-columns: 1fr; } }

.phase-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all .3s var(--ease);
}
.phase-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
.phase-card.phase-now{ border-top: 3px solid var(--teal); }
.phase-card.phase-next{ border-top: 3px solid var(--gold); }
.phase-card.phase-beyond{ border-top: 3px solid #6BC8AE; }

.phase-tag{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text-3);
  margin-bottom: 12px;
}
.phase-card h4{
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.phase-card ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phase-card ul li{
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.phase-card ul li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Strategic Expansion */
.expansion-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 980px){ .expansion-grid{ grid-template-columns: 1fr; } }

.exp-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: all .3s var(--ease);
}
.exp-card:hover{
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.exp-icon{
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 8px 16px rgba(15,122,135,.28);
}
.exp-icon svg{ width: 30px; height: 30px; }
.exp-card h4{
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}
.exp-card p{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   VISION & MISSION cards + Safety line + Operating Support
   ========================================================= */
.vm-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}
@media (max-width: 880px){ .vm-grid{ grid-template-columns: 1fr; } }

.vm-card{
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.vm-card::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:5px;
}
.vm-vision::before{ background: linear-gradient(180deg, var(--teal) 0%, var(--teal-900) 100%); }
.vm-mission::before{ background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 100%); }

.vm-tag{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}
.vm-vision .vm-tag{ color: var(--teal); }
.vm-mission .vm-tag{ color: var(--gold); }

.vm-statement{
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.vm-supporting{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}

/* Safety culture line */
.safety-line{
  margin-top: 32px;
  padding: 22px 26px;
  background: rgba(15,122,135,.05);
  border: 1px solid rgba(15,122,135,.2);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.safety-icon{
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(15,122,135,.25);
}
.safety-line strong{ color: var(--navy); }
.safety-line > div:last-child{
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.6;
}

/* Operating Support grid — 5 functional cards */
.ops-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 40px;
}
@media (max-width: 1080px){ .ops-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px){ .ops-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px){ .ops-grid{ grid-template-columns: 1fr; } }

.ops-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
  transition: all .25s var(--ease);
}
.ops-card:hover{
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.ops-icon{
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  color: #fff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(15,122,135,.22);
}
.ops-icon svg{ width: 22px; height: 22px; }
.ops-card h4{
  font-size: 14.5px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.ops-card p{
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}

/* =========================================================
   APPROACH — STAGE 1 HORIZONTAL FEATURE + STAGES SEPARATOR
   ========================================================= */
.stage-1-horizontal{
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 28px;
  align-items: start;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(201,169,97,.08) 0%, rgba(15,122,135,.04) 50%, rgba(201,169,97,.06) 100%);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: var(--radius-lg);
  position: relative;
  margin-bottom: 36px;
  box-shadow: 0 8px 24px rgba(201,169,97,.12);
}
.stage-1-horizontal::before{
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.s1h-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.s1h-num{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 30px;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(201,169,97,.32);
  border: 3px solid #fff;
}
.s1h-cost-tag{
  display: inline-block;
  padding: 6px 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  line-height: 1.4;
  text-align: center;
}
.s1h-mid h3{
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.s1h-sub{
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}
.s1h-sub strong{ color: var(--navy); }
.s1h-detail{
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.s1h-disclaimer{
  font-size: 12.5px;
  color: var(--text-3);
  font-style: italic;
  font-family: "Fraunces", serif;
  line-height: 1.55;
  margin: 0;
}
.s1h-right{
  background: rgba(11,61,82,.06);
  border-radius: 12px;
  padding: 18px 18px;
  border-left: 3px solid var(--teal);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s1h-outcome-tag{
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
}
.s1h-outcome-text{
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.45;
}

@media (max-width: 940px){
  .stage-1-horizontal{ grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .s1h-left{ flex-direction: row; align-items: center; gap: 18px; flex-wrap: wrap; }
}
@media (max-width: 540px){
  .s1h-mid h3{ font-size: 22px; }
}

/* Separator between Stage 1 horizontal and Stages 2-8 grid */
.stages-separator{
  margin: 8px auto 36px;
  max-width: 940px;
  padding: 22px 28px;
  background: rgba(15,122,135,.04);
  border: 1px solid rgba(15,122,135,.18);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.stages-separator .ss-divider-line{
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  background: linear-gradient(180deg, var(--teal) 0%, var(--teal-900) 100%);
  border-radius: 4px;
}
.stages-separator .ss-text{ flex: 1; }
.stages-separator p{
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}
.stages-separator p:first-child{ margin-bottom: 6px; }
.stages-separator p strong{ color: var(--navy); }
.stages-separator p em{ color: var(--text-3); font-style: italic; }

/* =========================================================
   STRATEGIC DISCOVERY ADVISORY — Sample Report Modal
   ========================================================= */

/* "View Sample Report" button inside Stage 1 horizontal */
.s1h-sample-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--gold);
  background: rgba(201,169,97,.08);
  border: 1px solid rgba(201,169,97,.45);
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.s1h-sample-btn:hover{
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(201,169,97,.28);
}
.s1h-sample-btn svg{ flex-shrink: 0; }

/* Modal frame */
.sda-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sda-modal.open{ display: flex; }
.sda-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8, 41, 53, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.sda-modal-panel{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  height: 90vh;
  max-height: 92vh;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: sdaModalIn .25s var(--ease) both;
}
@keyframes sdaModalIn{
  from{ opacity: 0; transform: translateY(20px) scale(.97); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}
.sda-modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 36px; height: 36px;
  background: rgba(8,41,53,.06);
  border: 1px solid rgba(8,41,53,.12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--navy);
  transition: all .2s var(--ease);
}
.sda-modal-close:hover{
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Header with Title + Download button */
.sda-modal-header{
  flex-shrink: 0;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(135deg, rgba(15,122,135,.04) 0%, rgba(201,169,97,.05) 100%);
}
.sda-modal-eyebrow{
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.sda-modal-header h3{
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.sda-modal-sub{
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 580px;
  margin: 0;
}
.sda-modal-download{
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .03em;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-900) 100%);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s var(--ease);
  box-shadow: 0 6px 14px rgba(15,122,135,.25);
  margin-top: 4px;
}
.sda-modal-download:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15,122,135,.36);
  color: #fff;
}

/* Body — PDF iframe */
.sda-modal-body{
  flex: 1;
  background: #f0f3f4;
  position: relative;
  overflow: hidden;
}
.sda-modal-body iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Footer — CTAs */
.sda-modal-footer{
  flex-shrink: 0;
  padding: 18px 28px 22px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}
.sda-modal-footer p{
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 12px;
  line-height: 1.5;
}
.sda-modal-cta-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sda-modal-cta-row .btn{ font-size: 13px; padding: 10px 18px; }

/* Mobile */
@media (max-width: 720px){
  .sda-modal{ padding: 0; }
  .sda-modal-panel{
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  .sda-modal-header{
    flex-direction: column;
    padding: 20px 20px 16px;
  }
  .sda-modal-header h3{ font-size: 18px; }
  .sda-modal-download{ align-self: flex-start; }
  .sda-modal-footer{ padding: 14px 20px 18px; }
  .sda-modal-cta-row .btn{ flex: 1; text-align: center; }
}

/* Footer LinkedIn social pills */
.footer-social{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(135deg, #0A66C2 0%, #0072BC 100%);
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s var(--ease);
  box-shadow: 0 4px 10px rgba(10,102,194,.22);
}
.footer-social-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(10,102,194,.34);
  color: #fff;
}
.footer-social-pill.secondary{
  background: rgba(10,102,194,.18);
  border: 1px solid rgba(10,102,194,.38);
  box-shadow: none;
  color: #82b3e0;
}
.footer-social-pill.secondary:hover{
  background: rgba(10,102,194,.28);
  border-color: rgba(10,102,194,.55);
  color: #b8d3ec;
}
.footer-social-pill svg{ flex-shrink: 0; }

/* =========================================================
   SERVICES PAGE — RESTRUCTURED ENGAGEMENT MODEL SECTIONS
   ========================================================= */
.scope-section{
  max-width: 1200px;
  margin: 0 auto;
}
.scope-section-header{
  text-align: center;
  margin-bottom: 36px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.scope-section-tag{
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid;
}
.scope-section-title{
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.scope-section-sub{
  font-size: 15px;
  color: #c9dcdf;
  line-height: 1.65;
  margin: 0;
}
.scope-pillars-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px){
  .scope-pillars-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .scope-pillars-grid{ grid-template-columns: 1fr; }
}
.scope-pillar{
  padding: 24px 22px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(15,122,135,.3);
  transition: all .25s var(--ease);
}
.scope-pillar:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(15,122,135,.5);
  transform: translateY(-2px);
}
.scope-pillar.partnered{
  border-color: rgba(201,169,97,.32);
  background: linear-gradient(135deg, rgba(201,169,97,.06) 0%, rgba(255,255,255,.02) 100%);
}
.scope-pillar.partnered:hover{
  border-color: rgba(201,169,97,.5);
}
.scope-pillar .sp-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(15,122,135,.18);
  border-radius: 10px;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.scope-pillar.partnered .sp-icon{
  background: rgba(201,169,97,.18);
  color: var(--gold);
}
.scope-pillar .sp-icon svg{ width: 24px; height: 24px; }
.scope-pillar h4{
  font-size: 15.5px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -.005em;
}
.scope-pillar p{
  font-size: 13px;
  color: #c9dcdf;
  line-height: 1.55;
  margin: 0;
}
.scope-pillar h4 .ecra-pending-tag{
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: rgba(255,200,80,.18);
  color: #ffe09a;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,200,80,.35);
  vertical-align: middle;
}
.scope-exclusions{
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 28px;
  background: rgba(178,62,62,.08);
  border: 1px solid rgba(178,62,62,.3);
  border-left: 4px solid #d05a5a;
  border-radius: 10px;
}
.scope-exclusions-tag{
  display: inline-block;
  padding: 4px 12px;
  background: rgba(178,62,62,.22);
  color: #ff9d9d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 10px;
}
.scope-exclusions p{
  font-size: 14px;
  color: #f0d8d8;
  line-height: 1.6;
  margin: 0;
}
.scope-exclusions p strong{
  color: #ff9d9d;
}

/* =========================================================
   ECRA/ESA STATUS BANNER (Services page)
   ========================================================= */
.ecra-status-banner{
  padding: 36px 0;
  background: linear-gradient(135deg, rgba(255,200,80,.06) 0%, rgba(15,122,135,.04) 100%);
  border-top: 1px solid rgba(255,200,80,.18);
  border-bottom: 1px solid rgba(255,200,80,.18);
}
.ecra-banner-inner{
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid rgba(201,169,97,.3);
  border-left: 4px solid #f5b53b;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.ecra-banner-logo{
  display: grid;
  place-items: center;
  padding: 12px;
}
.ecra-banner-logo img{
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  filter: saturate(1.05);
}
.ecra-banner-text{ flex: 1; }
.ecra-banner-tag{
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #b8862e;
  margin-bottom: 8px;
}
.ecra-banner-text h3{
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.ecra-banner-text p{
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.ecra-banner-text p strong{
  color: var(--navy);
}
.ecra-banner-meta{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.ecra-banner-meta > div{
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
}
.ecra-banner-meta > div strong{
  display: block;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 3px;
  font-weight: 700;
}
@media (max-width: 760px){
  .ecra-banner-inner{ grid-template-columns: 1fr; gap: 18px; padding: 20px; }
  .ecra-banner-meta{ grid-template-columns: 1fr; gap: 10px; }
}

/* Footer ECRA badge — small placement on every page */
.footer-ecra-badge{
  margin-top: 18px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,200,80,.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
}
.footer-ecra-badge img{
  width: 64px;
  height: auto;
  flex-shrink: 0;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}
.footer-ecra-badge .feb-text{
  flex: 1;
  font-size: 11px;
  line-height: 1.4;
  color: #c9dcdf;
}
.footer-ecra-badge .feb-text strong{
  display: block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffe09a;
  margin-bottom: 2px;
}

/* =========================================================
   BOOK.HML PAGE — comprehensive styling
   ========================================================= */

/* Hero */
.book-hero h1{ max-width: 880px; }
.book-hero .lead{ max-width: 800px; }

/* Jump nav */
.book-jumpnav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.book-jumpnav a{
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .25s var(--ease);
}
.book-jumpnav a:hover{
  background: rgba(201,169,97,.25);
  border-color: rgba(201,169,97,.5);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* Book section spacing */
.book-section{ scroll-margin-top: 90px; }
.bk-paid-section{ background: linear-gradient(180deg, var(--surface) 0%, #fff 100%); }
.bk-inquiry-section{ background: var(--surface); }
.bk-contact-section{ background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 100%); color: #fff; }
.bk-contact-section h2{ color: #fff; }
.bk-contact-section .lead, .bk-contact-section .eyebrow{ color: #c9dcdf; }
.bk-contact-section .eyebrow .num{ color: var(--gold-light); }

/* =========================================================
   BCF — Book Card Feature (the two big tier cards)
   ========================================================= */
.book-card-feature{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.25fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(0,0,0,.06);
}
.book-card-feature.paid{
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--navy) 60%, var(--teal-800) 100%);
  border-color: rgba(201,169,97,.32);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.bcf-left{
  padding: 36px 36px 32px;
  background: linear-gradient(135deg, var(--surface) 0%, #fff 100%);
  border-right: 1px solid var(--line);
}
.book-card-feature.paid .bcf-left{
  background: linear-gradient(135deg, rgba(15,122,135,.18) 0%, rgba(8,41,53,.4) 100%);
  border-right-color: rgba(201,169,97,.18);
  color: #d8e8eb;
}
.bcf-tier-tag{
  display: inline-block;
  padding: 6px 14px;
  background: rgba(15,122,135,.12);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.bcf-tier-tag.bcf-tier-paid{
  background: var(--gold);
  color: var(--navy);
}
.bcf-left h3{
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 18px;
  letter-spacing: -.015em;
  line-height: 1.15;
}
.book-card-feature.paid .bcf-left h3{ color: #fff; }
.bcf-pricing{ margin-bottom: 18px; }
.bcf-pricing.paid{ margin-bottom: 22px; }
.bcf-price{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 30px;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.bcf-price-paid{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -.005em;
}
.bcf-price-note{
  font-size: 11.5px;
  color: var(--text-3);
  letter-spacing: .03em;
}
.book-card-feature.paid .bcf-price-note{ color: #a8c8cd; }
.bcf-desc{
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 18px;
}
.book-card-feature.paid .bcf-desc{ color: #d8e8eb; }
.bcf-engagement-detail{
  padding: 14px 16px;
  background: rgba(201,169,97,.08);
  border: 1px solid rgba(201,169,97,.25);
  border-radius: 8px;
  margin-bottom: 14px;
}
.bcf-eyebrow-italic{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 600;
}
.bcf-engagement-line{
  font-size: 12px;
  color: #d8e8eb;
  letter-spacing: .04em;
  line-height: 1.5;
}
.bcf-engagement-line em{
  color: #a8c8cd;
  font-size: 11px;
}
.bcf-disclaimer-italic{
  font-size: 12px;
  color: #a8c8cd;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

.bcf-right{
  padding: 36px 36px 32px;
  background: #fff;
}
.book-card-feature.paid .bcf-right{
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  color: #d8e8eb;
}
.bcf-right h4{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 12px;
}
.book-card-feature.paid .bcf-right h4{ color: #ffe09a; }
.bcf-list{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.bcf-list li{
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
  border-bottom: 1px solid var(--line);
}
.bcf-list li:last-child{ border-bottom: none; }
.bcf-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.4);
}
.book-card-feature.paid .bcf-list li{
  color: #d8e8eb;
  border-bottom-color: rgba(255,255,255,.08);
}
.book-card-feature.paid .bcf-list li strong{ color: #fff; }

.bcf-steps-list{
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  counter-reset: bcf-step;
}
.bcf-steps-list li{
  position: relative;
  padding: 10px 0 10px 36px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  counter-increment: bcf-step;
}
.book-card-feature.paid .bcf-steps-list li{ color: #d8e8eb; }
.bcf-steps-list li::before{
  content: counter(bcf-step);
  position: absolute;
  left: 0; top: 8px;
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}
.book-card-feature.paid .bcf-steps-list li strong{ color: #fff; }

.bcf-cta{
  display: inline-flex;
  margin-bottom: 12px;
}
.bcf-cta-paid{
  flex: 1;
  min-width: 200px;
  font-size: 14px;
}
.bcf-cta-secondary{
  flex-shrink: 0;
  font-size: 13px;
  padding: 13px 20px;
}
.bcf-button-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
  margin-bottom: 12px;
}
.bcf-cta-note{
  font-size: 11.5px;
  color: var(--text-3);
  font-style: italic;
  line-height: 1.55;
  margin: 0;
}
.book-card-feature.paid .bcf-cta-note{ color: #a8c8cd; }
.book-card-feature.paid .bcf-cta-note a{ text-decoration: underline; }

/* Mobile responsive — book card */
@media (max-width: 860px){
  .book-card-feature{ grid-template-columns: 1fr; }
  .bcf-left{ border-right: none; border-bottom: 1px solid var(--line); }
  .book-card-feature.paid .bcf-left{ border-bottom-color: rgba(201,169,97,.18); }
  .bcf-left, .bcf-right{ padding: 28px 24px; }
  .bcf-left h3{ font-size: 26px; }
}

/* =========================================================
   BK POLICY STRIP — Refund/Cancellation banner
   ========================================================= */
.bk-policy-strip{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 36px;
  padding: 22px 28px;
  background: rgba(201,169,97,.08);
  border: 1px solid rgba(201,169,97,.28);
  border-radius: 12px;
}
.bk-policy-icon{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(201,169,97,.18);
  border-radius: 10px;
  color: var(--gold);
  flex-shrink: 0;
}
.bk-policy-text{
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.bk-policy-text strong{
  color: var(--navy);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.bk-policy-cta{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.bk-policy-pdf-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: .02em;
}
.bk-policy-pdf-link:hover{ color: var(--gold); }
@media (max-width: 760px){
  .bk-policy-strip{ grid-template-columns: 1fr; gap: 14px; padding: 20px; }
  .bk-policy-cta{ align-items: flex-start; }
}

/* =========================================================
   BK INQUIRY FORM
   ========================================================= */
.bk-inquiry-form{
  max-width: 760px;
  margin: 0 auto;
  padding: 36px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.04);
}
.bif-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 600px){
  .bif-row{ grid-template-columns: 1fr; }
}
.bif-field{ display: flex; flex-direction: column; }
.bif-field.bif-full{ margin-bottom: 18px; }
.bif-field label{
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.bif-required{ color: #c33; }
.bif-optional{
  color: var(--text-3);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  margin-left: 4px;
}
.bif-field input,
.bif-field select,
.bif-field textarea{
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: #fafbfc;
  transition: all .2s ease;
  width: 100%;
}
.bif-field input:focus,
.bif-field select:focus,
.bif-field textarea:focus{
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15,122,135,.12);
}
.bif-field textarea{ resize: vertical; min-height: 120px; }
.bif-checkbox-label{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-2);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  line-height: 1.5;
}
.bif-checkbox-label input[type="checkbox"]{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
  cursor: pointer;
  flex-shrink: 0;
}
.bif-submit{
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.bif-response-note{
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}
.bif-response-note a{
  color: var(--teal);
  text-decoration: underline;
}

/* =========================================================
   BK CONTACT TILES
   ========================================================= */
.bk-contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
@media (max-width: 880px){
  .bk-contact-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px){
  .bk-contact-grid{ grid-template-columns: 1fr; }
}
.bk-contact-tile{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  transition: all .25s var(--ease);
}
.bk-contact-tile:hover{
  background: rgba(201,169,97,.12);
  border-color: rgba(201,169,97,.4);
  transform: translateY(-2px);
}
.bk-contact-icon{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(201,169,97,.2);
  border-radius: 10px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.bk-contact-tile h5{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffe09a;
  margin-bottom: 6px;
  font-weight: 700;
}
.bkc-value{
  font-size: 14.5px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
  word-break: break-word;
}
.bkc-sub{
  font-size: 11.5px;
  color: #a8c8cd;
  line-height: 1.4;
}
.bk-response-time{
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
  color: #c9dcdf;
  font-style: italic;
}
.bk-response-time strong{
  color: var(--gold-light);
  font-weight: 700;
}

/* =========================================================
   STRATEGIC DISCOVERY MODAL — needed for Sample Report
   (added defensively in case it's not already in CSS)
   ========================================================= */
.sda-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sda-modal.open{ display: flex; }
.sda-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(8, 41, 53, 0.85);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.sda-modal-panel{
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 92vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.sda-modal-close{
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--navy);
  cursor: pointer;
  transition: all .2s ease;
}
.sda-modal-close:hover{
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.sda-modal-header{
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}
.sda-modal-eyebrow{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 6px;
}
.sda-modal-header h3{
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 8px;
}
.sda-modal-sub{
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
}
.sda-modal-download{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 8px;
  flex-shrink: 0;
  transition: all .2s ease;
}
.sda-modal-download:hover{
  background: var(--gold-light);
  transform: translateY(-1px);
}
.sda-modal-body{
  flex: 1;
  background: var(--surface);
  overflow: hidden;
  min-height: 400px;
}
.sda-modal-body iframe{
  width: 100%;
  height: 100%;
  border: 0;
  min-height: auto;
}
.sda-modal-footer{
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  flex-shrink: 0;
}
.sda-modal-footer p{
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 14px;
  line-height: 1.5;
}
.sda-modal-cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 720px){
  .sda-modal-header{
    flex-direction: column;
    padding: 24px;
  }
  .sda-modal-footer{ padding: 18px 24px; }
}

/* =========================================================
   POLICY PAGE
   ========================================================= */
.policy-page{ background: var(--surface); }
.policy-meta{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 22px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  margin-bottom: 36px;
}
.policy-meta > div{
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.policy-meta > div strong{
  display: block;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 4px;
  font-weight: 700;
}
@media (max-width: 600px){
  .policy-meta{ grid-template-columns: 1fr; }
}

.policy-section{
  margin-bottom: 48px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.policy-section h2{
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  letter-spacing: -.01em;
}
.policy-section h3{
  font-size: 17px;
  color: var(--teal);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}
.policy-section h4{
  font-size: 14px;
  color: var(--navy);
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}
.policy-section p{
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.policy-section p strong{ color: var(--navy); }
.policy-section ul{
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
.policy-section ul li{
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.policy-section ul li::before{
  content: "";
  position: absolute;
  left: 6px; top: 16px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.policy-section ul li strong{ color: var(--navy); }
.policy-fineprint{
  font-size: 12.5px !important;
  color: var(--text-3) !important;
  background: var(--surface);
  padding: 12px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  margin-top: 14px !important;
}

/* Terms table */
.policy-terms-table{
  display: flex;
  flex-direction: column;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.ptt-row{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.ptt-row:last-child{ border-bottom: none; }
.ptt-row:nth-child(even){ background: var(--surface); }
.ptt-term{
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-right: 1px solid var(--line);
}
.ptt-row:nth-child(even) .ptt-term{
  background: linear-gradient(135deg, var(--navy), var(--teal-900));
}
.ptt-def{
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
}
@media (max-width: 600px){
  .ptt-row{ grid-template-columns: 1fr; }
  .ptt-term{ border-right: none; border-bottom: 1px solid var(--line); }
}

/* Tier grid */
.policy-tier-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}
@media (max-width: 720px){
  .policy-tier-grid{ grid-template-columns: 1fr; }
}
.policy-tier{
  padding: 18px 20px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.policy-tier.tier-1{
  background: rgba(45,134,89,.08);
  border-color: rgba(45,134,89,.32);
  border-left: 4px solid #2D8659;
}
.policy-tier.tier-2{
  background: rgba(201,169,97,.1);
  border-color: rgba(201,169,97,.35);
  border-left: 4px solid var(--gold);
}
.policy-tier.tier-3{
  background: rgba(255,178,80,.1);
  border-color: rgba(255,178,80,.32);
  border-left: 4px solid #f5b53b;
}
.policy-tier.tier-4{
  background: rgba(178,62,62,.08);
  border-color: rgba(178,62,62,.32);
  border-left: 4px solid #c44;
}
.pt-tag{
  display: inline-block;
  padding: 3px 10px;
  background: var(--navy);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 8px;
}
.pt-when{
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pt-when strong{ color: var(--navy); font-weight: 700; }
.pt-refund{
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -.005em;
}
.policy-tier.tier-1 .pt-refund{ color: #2D8659; }
.policy-tier.tier-4 .pt-refund{ color: #b23e3e; }
.pt-amount{
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 10px;
  font-weight: 600;
}
.pt-amount-sub{
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-3);
  margin-top: 2px;
}
.pt-cover{
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 10px;
}

/* Worked example table */
.policy-example-table{
  margin: 18px 0 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.pet-header,
.pet-row{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0;
}
.pet-header{
  background: var(--teal);
  color: #fff;
}
.pet-header > div{
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}
.pet-row{
  border-top: 1px solid var(--line);
  background: #fff;
}
.pet-row:nth-child(even){ background: var(--surface); }
.pet-row > div{
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text);
  font-weight: 600;
}
.pet-row > div:nth-child(2),
.pet-row > div:nth-child(3){
  text-align: center;
}
.pet-amt-good{ color: #2D8659; }
.pet-amt-none{ color: #b23e3e; }
@media (max-width: 600px){
  .pet-header,
  .pet-row{
    grid-template-columns: 1fr;
  }
  .pet-row > div{ padding: 8px 16px; }
  .pet-header > div{ padding: 10px 16px; }
}

/* Contact table */
.policy-contact-table{
  margin: 14px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.pct-row{
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
.pct-row:last-child{ border-bottom: none; }
.pct-method{
  padding: 14px 18px;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
.pct-pref{
  display: block;
  font-size: 10.5px;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: .04em;
  margin-top: 2px;
}
.pct-value{
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-2);
  background: #fff;
}
.pct-row:nth-child(even) .pct-value{ background: var(--surface); }
.pct-value a{ color: var(--teal); text-decoration: underline; }
@media (max-width: 600px){
  .pct-row{ grid-template-columns: 1fr; }
}

.policy-closing-card{
  margin-top: 36px;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 100%);
  color: #fff;
  border-radius: 14px;
  text-align: center;
}
.policy-closing-card h3{
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.policy-closing-card p{
  font-size: 14px;
  color: #d8e8eb;
  margin-bottom: 0;
  line-height: 1.6;
}
.policy-closing-card a{ color: var(--gold-light); text-decoration: underline; }

/* =========================================================
   THANK-YOU.HML — post-Stripe-payment landing page
   ========================================================= */
.ty-hero{
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 60%, var(--teal-800) 100%);
  color: #fff;
  text-align: center;
  position: relative;
}
.ty-icon-wrap{
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(45,134,89,.18);
  border: 2px solid rgba(45,134,89,.5);
  color: #6BC8AE;
  margin-bottom: 24px;
  animation: ty-pulse 2.5s ease-in-out infinite;
}
@keyframes ty-pulse{
  0%, 100%{ box-shadow: 0 0 0 0 rgba(107,200,174,.4); }
  50%{ box-shadow: 0 0 0 18px rgba(107,200,174,0); }
}
.ty-eyebrow{
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6BC8AE;
  font-weight: 800;
  margin-bottom: 14px;
}
.ty-hero h1{
  font-size: 48px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.ty-hero h1 .accent{ color: var(--gold-light); font-style: italic; font-family: 'Fraunces',serif; font-weight: 600; }
.ty-lead{
  font-size: 17px;
  color: #c9dcdf;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.ty-next-steps{
  padding: 60px 0 40px;
  background: var(--surface);
}
.ty-step-card{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 28px;
  padding: 32px 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
}
.ty-step-card.primary{
  background: linear-gradient(135deg, #fff 0%, var(--surface) 100%);
  border-left: 4px solid var(--gold);
  border-color: rgba(201,169,97,.3);
  box-shadow: 0 12px 36px rgba(201,169,97,.1);
}
.ty-step-number{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
}
.ty-step-card:not(.primary) .ty-step-number{
  background: var(--teal);
  color: #fff;
}
.ty-step-content{ min-width: 0; }
.ty-step-eyebrow{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 800;
  margin-bottom: 6px;
}
.ty-step-card.primary .ty-step-eyebrow{ color: var(--gold); }
.ty-step-card h2{
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.ty-step-card p{
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.ty-step-card p strong{ color: var(--navy); }
.ty-step-card p code{
  background: rgba(15,122,135,.1);
  color: var(--teal);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Consolas', 'Monaco', monospace;
  font-size: 13px;
}
.ty-step-note{
  font-size: 13.5px !important;
  background: rgba(15,122,135,.06);
  padding: 12px 16px;
  border-left: 3px solid var(--teal);
  border-radius: 4px;
  margin-bottom: 18px !important;
}
.ty-cta{
  font-size: 16px !important;
  padding: 16px 32px !important;
  margin: 8px 0;
}
.ty-cta-sub{
  font-size: 12px !important;
  color: var(--text-3) !important;
  font-style: italic;
  margin-top: 10px !important;
}

.ty-emails-list{
  list-style: none;
  padding: 0;
  margin: 12px 0 14px;
}
.ty-emails-list li{
  position: relative;
  padding: 10px 0 10px 26px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  border-bottom: 1px dashed var(--line);
}
.ty-emails-list li:last-child{ border-bottom: none; }
.ty-emails-list li::before{
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 14px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border-radius: 4px;
}
.ty-emails-list li strong{ color: var(--navy); }

.ty-prep-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin: 14px 0 12px;
}
@media (max-width: 600px){
  .ty-prep-grid{ grid-template-columns: 1fr; }
}
.ty-prep-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  background: var(--surface);
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.4;
}
.ty-prep-num{
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

/* Mobile responsive — step card */
@media (max-width: 760px){
  .ty-step-card{
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }
  .ty-step-number{ width: 48px; height: 48px; font-size: 24px; }
  .ty-hero h1{ font-size: 36px; }
}

.ty-timeline-section{
  padding: 60px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 100%);
  color: #fff;
}
.ty-timeline-section h2{ color: #fff; }
.ty-timeline-section .lead{ color: #c9dcdf; }

.ty-timeline{
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 32px auto 0;
  position: relative;
}
.ty-timeline::before{
  content: "";
  position: absolute;
  left: 24px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201,169,97,.3) 100%);
  z-index: 0;
}
.ty-tl-step{
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.ty-tl-marker{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 700;
  border: 4px solid var(--navy);
  flex-shrink: 0;
}
.ty-tl-content{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px 20px;
  border-radius: 10px;
  flex: 1;
}
.ty-tl-content h4{
  font-size: 15px;
  color: var(--gold-light);
  margin-bottom: 6px;
  font-weight: 700;
}
.ty-tl-content p{
  font-size: 13.5px;
  color: #c9dcdf;
  line-height: 1.55;
  margin: 0;
}

.ty-help-section{
  padding: 60px 0;
  background: var(--surface);
}
.ty-help-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 720px){
  .ty-help-grid{ grid-template-columns: 1fr; }
}
.ty-help-card{
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.ty-help-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(15,122,135,.12);
  border-radius: 10px;
  color: var(--teal);
  margin-bottom: 14px;
}
.ty-help-card h4{
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 10px;
}
.ty-help-card p{
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 12px;
}
.ty-help-link{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: .02em;
}
.ty-help-link:hover{ color: var(--gold); }
.ty-help-contact{
  font-size: 14px !important;
  margin-bottom: 8px !important;
}
.ty-help-contact a{ color: var(--teal); font-weight: 600; }
.ty-help-hours{
  font-size: 12px !important;
  color: var(--text-3) !important;
  font-style: italic;
}

/* =========================================================
   "VIEW SAMPLE REPORT" BUTTON — Teal background, gold text
   Per Q5: visible across all pages where SDA card appears.
   Replaces the old ghost-style faint button on dark backgrounds.
   ========================================================= */
.btn-view-sample-report{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: var(--teal);
  color: var(--gold-light) !important;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.btn-view-sample-report::after{
  content: '\2192';
  display: inline-block;
  margin-left: 4px;
  transition: transform .25s var(--ease);
}
.btn-view-sample-report:hover{
  background: var(--teal-900);
  color: #fff !important;
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15,122,135,.35);
}
.btn-view-sample-report:hover::after{
  transform: translateX(3px);
}
.btn-view-sample-report svg{
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.btn-view-sample-report:hover svg{
  color: #fff;
}

/* =========================================================
   NAV — "Book a Call" prominent tab styling
   Per Q9: golden yellow background, teal text
   This becomes the primary CTA in the nav (right-side button removed per Q1=B)
   ========================================================= */
.nav-main ul li a[href^="book.html"]{
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy) !important;
  padding: 8px 18px !important;
  border-radius: 999px;
  font-weight: 800 !important;
  letter-spacing: .02em;
  margin-left: 6px;
  position: relative;
  transition: all .25s var(--ease);
  box-shadow: 0 2px 8px rgba(201,169,97,.2);
}
.nav-main ul li a[href^="book.html"]:hover{
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--teal-900) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,169,97,.35);
}
.nav-main ul li a[href^="book.html"].active{
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--navy) 100%);
  color: var(--gold-light) !important;
  border: 1.5px solid var(--gold);
}
/* Override default underline-style hover for this CTA tab */
.nav-main ul li a[href^="book.html"]::after{ display: none; }

/* =========================================================
   FULL-WIDTH SPECIALISED PILLAR — Licensed Electrical Contracting
   Per Q2: emphasises niche/specialised scope, partner-friendly framing
   ========================================================= */
.scope-pillar-fullwidth{
  margin-top: 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(15,122,135,.18) 0%, rgba(8,41,53,.5) 60%, rgba(201,169,97,.08) 100%);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.scope-pillar-fullwidth::before{
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}
.spfw-grid{
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: flex-start;
}
@media (max-width: 880px){
  .spfw-grid{ grid-template-columns: 1fr; gap: 24px; }
}
.spfw-icon-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.spfw-icon{
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 16px;
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(201,169,97,.3);
}
.spfw-icon svg{
  width: 40px;
  height: 40px;
}
.spfw-license-badge{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: rgba(45,134,89,.15);
  border: 1px solid rgba(45,134,89,.4);
  border-radius: 10px;
  text-align: center;
  color: #6BC8AE;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
  position: relative;
  width: 100%;
}
.spfw-license-dot{
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #6BC8AE;
  border-radius: 50%;
  margin-bottom: 4px;
  animation: pulse-active 2s infinite ease-in-out;
}
@keyframes pulse-active{
  0%, 100%{ opacity: 1; box-shadow: 0 0 0 0 rgba(107,200,174,.6); }
  50%{ opacity: .85; box-shadow: 0 0 0 8px rgba(107,200,174,0); }
}
.spfw-license-num{
  display: block;
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: none;
  color: #c9dcdf;
  font-weight: 500;
}
.spfw-license-num em{
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: #ffe09a;
}
.spfw-content h4{
  font-size: 24px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.spfw-content h4 .spfw-italic{
  font-style: italic;
  font-family: 'Fraunces', serif;
  color: var(--gold-light);
  font-weight: 600;
}
.spfw-lead{
  font-size: 15px;
  color: #d8e8eb;
  line-height: 1.65;
  margin-bottom: 28px;
}
.spfw-scope-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 880px){
  .spfw-scope-grid{ grid-template-columns: 1fr; }
}
.spfw-scope-item{
  padding: 18px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  border-top: 3px solid var(--gold);
}
.spfw-scope-num{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.spfw-scope-item h5{
  font-size: 14px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.35;
  font-weight: 700;
}
.spfw-scope-item p{
  font-size: 12.5px;
  color: #c9dcdf;
  line-height: 1.55;
  margin: 0;
}
.spfw-partner-note{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 22px;
  background: rgba(15,122,135,.18);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 13px;
  color: #d8e8eb;
  line-height: 1.6;
}
.spfw-partner-note-icon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(201,169,97,.18);
  border-radius: 8px;
  color: var(--gold-light);
  flex-shrink: 0;
}
.spfw-partner-note strong{
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 700;
}
.spfw-partner-note em{
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Fraunces', serif;
}

/* =========================================================
   APPROACH PAGE — Resources Strip (PDF downloads)
   ========================================================= */
.approach-resources-strip{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px){
  .approach-resources-strip{ grid-template-columns: 1fr; }
}
.ars-item{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,169,97,.25);
  border-radius: 10px;
  transition: all .25s var(--ease);
}
.ars-item:hover{
  background: rgba(201,169,97,.08);
  border-color: rgba(201,169,97,.45);
  transform: translateY(-1px);
}
.ars-item > svg{
  color: var(--gold-light);
  flex-shrink: 0;
}
.ars-item > div{
  min-width: 0;
}
.ars-item strong{
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.ars-item span{
  display: block;
  font-size: 12px;
  color: #c9dcdf;
  line-height: 1.45;
}
.ars-link{
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color .2s ease;
}
.ars-link:hover{ color: #fff; }

/* Approach: Sample Report button as anchor link (replaces button) */
.s1h-sample-btn-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 16px;
  background: var(--teal);
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s var(--ease);
}
.s1h-sample-btn-link:hover{
  background: var(--teal-900);
  color: #fff;
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(15,122,135,.35);
}
.s1h-sample-btn-link svg{
  color: var(--gold-light);
}
.s1h-sample-btn-link:hover svg{ color: #fff; }

/* =========================================================
   COOKIE CONSENT BANNER (PIPEDA + CASL aligned)
   Bottom-fixed slide-up banner; dismissible
   ========================================================= */
.cookie-banner{
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9000;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 100%);
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.cookie-banner.cookie-banner-visible{
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
}
.cookie-banner-icon{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: rgba(201,169,97,.18);
  border-radius: 50%;
  color: var(--gold-light);
  flex-shrink: 0;
}
.cookie-banner-text{
  font-size: 13px;
  color: #d8e8eb;
  line-height: 1.5;
}
.cookie-banner-text strong{
  color: var(--gold-light);
  display: block;
  margin-bottom: 2px;
  font-weight: 700;
  font-size: 13.5px;
}
.cookie-banner-text a{
  color: var(--gold-light);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner-text a:hover{
  color: #fff;
}
.cookie-banner-accept{
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
  flex-shrink: 0;
  white-space: nowrap;
}
.cookie-banner-accept:hover{
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,169,97,.4);
}

@media (max-width: 720px){
  .cookie-banner{
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
  .cookie-banner-inner{
    grid-template-columns: 1fr;
    text-align: left;
    padding: 14px 16px;
    gap: 12px;
  }
  .cookie-banner-icon{
    grid-column: 1;
    justify-self: flex-start;
  }
  .cookie-banner-accept{
    width: 100%;
  }
}

/* =========================================================
   COOKIE CONSENT BANNER (PIPEDA + Ontario AODA-aware)
   Dismissible banner shown on first visit; choice stored in localStorage.
   ========================================================= */
.cookie-consent-banner{
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  max-width: 920px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(201,169,97,.35);
  border-radius: 12px;
  padding: 18px 22px;
  z-index: 9000;
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
  display: none;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-consent-banner.show{ display: flex; }
.ccb-icon{
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(201,169,97,.18);
  border-radius: 8px;
  color: var(--gold-light);
}
.ccb-text{
  flex: 1;
  font-size: 13.5px;
  line-height: 1.55;
  color: #d8e8eb;
  min-width: 240px;
}
.ccb-text strong{
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}
.ccb-text a{
  color: var(--gold-light);
  text-decoration: underline;
}
.ccb-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ccb-btn{
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  border: 1px solid;
  font-family: inherit;
  transition: all .2s ease;
  white-space: nowrap;
}
.ccb-btn-primary{
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.ccb-btn-primary:hover{
  background: var(--gold-light);
  transform: translateY(-1px);
}
.ccb-btn-ghost{
  background: transparent;
  color: #d8e8eb;
  border-color: rgba(255,255,255,.3);
}
.ccb-btn-ghost:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
@media (max-width: 600px){
  .cookie-consent-banner{
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px;
  }
  .ccb-actions{ width: 100%; }
  .ccb-btn{ flex: 1; }
}

/* =========================================================
   HOMEPAGE — TRANSERA IN 25 SECONDS embed section
   ========================================================= */
.clip-embed-section{
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-900) 60%, #050f15 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.clip-embed-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,122,135,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,122,135,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, black 0%, transparent 90%);
  pointer-events: none;
}
.clip-embed-section .container{
  position: relative;
  z-index: 2;
}
.clip-embed-head{
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
}
.clip-embed-head h2{ color: #fff; }
.clip-embed-head .lead{
  color: var(--text-light);
  font-size: clamp(15px, 1.2vw, 17px);
}
.clip-embed-head .eyebrow{
  justify-content: center;
}
.clip-embed-frame{
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.clip-embed-aspect{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(201,169,97,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  background: #000;
}
.clip-embed-aspect iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.clip-embed-actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 0px;
  flex-wrap: wrap;
}
@media (max-width: 720px){
  .clip-embed-aspect{ border-radius: 10px; }
  .clip-embed-actions{ flex-direction: column; align-items: stretch; }
  .clip-embed-actions .btn,
  .clip-embed-actions .btn-view-sample-report{ width: 100%; justify-content: center; }
}
