/* =====================================================================
   SOLAR BEAR ENERGY — Design System
   Bright blue + white + light. Clean, modern, premium.
   ===================================================================== */

:root {
  /* Brand blues */
  --blue:       #1773D6;   /* primary brand blue */
  --blue-deep:  #0E58AE;   /* pressed / gradient end */
  --blue-soft:  #DFEEFB;   /* soft blue wash */
  --sky:        #46A6E8;   /* lighter sky accent */
  --sky-deep:   #2E89CF;
  --navy:       #0C2A4D;   /* deep navy — footer / headings */
  --navy-2:     #11365F;
  --sun:        #F4B63E;   /* warm accent — used sparingly (review stars) */
  --eco:        #2FA66A;   /* green for "active" status */

  /* Neutrals (cool, light) */
  --paper:      #FFFFFF;   /* white page */
  --paper-2:    #EEF5FC;   /* light blue-tint alt section */
  --paper-3:    #F6FAFE;
  --white:      #FFFFFF;
  --line:       #DCE6F1;   /* light blue-gray hairline */
  --muted:      #5C6B7E;   /* secondary text */
  --text:       #1C2B3D;   /* body text */
  --ink:        #0C2A4D;   /* deep navy alias (legacy) */

  /* Type */
  --font-head: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Geometry */
  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(12,42,77,.06), 0 2px 10px rgba(12,42,77,.05);
  --shadow:    0 6px 18px rgba(12,42,77,.08), 0 18px 44px rgba(12,42,77,.09);
  --shadow-lg: 0 24px 70px rgba(12,42,77,.20);
  --ring:      0 0 0 4px rgba(23,115,214,.28);

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.08; font-weight: 700; letter-spacing: -.02em; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: #39414B; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.3rem); color: #44505E; line-height: 1.6; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(54px, 7vw, 104px); }
.section--tight { padding-block: clamp(38px, 5vw, 66px); }
.section--paper2 { background: var(--paper-2); }
/* "dark" sections are now bright brand-blue panels */
.section--dark { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 70%, var(--navy) 130%); color: #EAF3FC; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #D2E4F6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: var(--blue); border-radius: 2px; }
.section--dark .eyebrow { color: #BFE0FF; }
.section--dark .eyebrow::before { background: #BFE0FF; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 3.6vw, 44px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: 15px 28px; border-radius: 999px; line-height: 1;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: linear-gradient(135deg, var(--sky), var(--blue)); color: #fff; box-shadow: 0 8px 22px rgba(23,115,214,.34); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(23,115,214,.46); }
.btn--ghost { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px #C3D5E8; }
.btn--ghost:hover { background: var(--blue); color: #fff; box-shadow: inset 0 0 0 1.5px var(--blue); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ondark { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn--ondark:hover { background: #fff; color: var(--blue); transform: translateY(-2px); }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

.textlink { display:inline-flex; align-items:center; gap:7px; font-family: var(--font-head); font-weight:600; color: var(--blue); }
.textlink svg { width:16px; height:16px; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding-block: 18px;
}
.site-header.scrolled {
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(12,42,77,.07);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; z-index: 2; }
.brand img { height: 42px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand img { height: 36px; }
/* On transparent header (over hero imagery) render the black logo white */
.site-header:not(.scrolled) .brand img { filter: brightness(0) invert(1); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a:not(.btn) {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  padding: 9px 13px; border-radius: 9px; color: var(--navy); transition: background .2s, color .2s;
  white-space: nowrap;
}
.site-header:not(.scrolled) .nav-links a:not(.btn) { color: #fff; }
.nav-links a:not(.btn):hover { background: rgba(23,115,214,.1); }
.site-header:not(.scrolled) .nav-links a:not(.btn):hover { background: rgba(255,255,255,.16); }
.nav-links a.active { color: var(--blue); }
.site-header:not(.scrolled) .nav-links a.active { color: #BFE0FF; }
.nav__cta { display: inline-flex; }
.nav__panel-cta { display: none; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; z-index: 2; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.site-header:not(.scrolled) .nav-toggle span { background: #fff; }

/* Interior pages have a LIGHT hero behind the header — use dark nav at the top */
.site-header.on-light:not(.scrolled) .brand img { filter: none; }
.site-header.on-light:not(.scrolled) .nav-links a:not(.btn) { color: var(--navy); }
.site-header.on-light:not(.scrolled) .nav-links a:not(.btn):hover { background: rgba(23,115,214,.1); }
.site-header.on-light:not(.scrolled) .nav-links a.active { color: var(--blue); }
.site-header.on-light:not(.scrolled) .nav-toggle span { background: var(--navy); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; color: #fff; isolation: isolate; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content:""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,28,52,.5) 0%, rgba(8,28,52,.28) 38%, rgba(10,38,70,.78) 100%),
    radial-gradient(120% 90% at 12% 88%, rgba(14,88,174,.55), transparent 60%);
}
.hero__inner { padding-block: 150px 90px; max-width: 760px; }
.hero h1 { color: #fff; }
.hero .lead { color: #E9F2FB; max-width: 600px; margin-top: 22px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero__pill {
  display:inline-flex; align-items:center; gap:10px; align-self:flex-start;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px); padding: 8px 16px 8px 8px; border-radius: 999px;
  font-size: .85rem; font-weight: 500; color:#fff; margin-bottom: 26px;
}
.hero__pill b { background: #fff; color: var(--blue); font-family: var(--font-head); font-weight:700;
  padding: 4px 11px; border-radius: 999px; font-size:.78rem; letter-spacing:.02em; }

/* Hero stat strip */
.hero-stats {
  position: relative; z-index: 2; margin-top: clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius); overflow: hidden; max-width: 760px;
}
.hero-stats > div { background: rgba(10,34,62,.42); backdrop-filter: blur(6px); padding: 22px 18px; }
.hero-stats .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem,3vw,2.1rem); color:#fff; letter-spacing:-.02em; }
.hero-stats .lbl { font-size: .8rem; color: #CFE0F0; margin-top: 4px; }
.hero-stats .num span { color: #8FD0FF; }

/* ---------- Generic grids ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #C7DBF0; }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-soft), #fff); color: var(--blue);
  margin-bottom: 20px; box-shadow: inset 0 0 0 1px var(--line);
}
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }
.card--dark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); backdrop-filter: blur(4px); }
.card--dark h3 { color:#fff; }
.card--dark p { color:#D2E4F6; }
.card--dark .ico { background: rgba(255,255,255,.16); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); color: #fff; }

/* feature list */
.ticks li { position: relative; padding-left: 32px; margin-bottom: 13px; color:#39414B; }
.ticks li::before {
  content:""; position:absolute; left:0; top:3px; width:20px; height:20px; border-radius:50%;
  background: var(--blue-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231773D6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat:no-repeat; background-position:center;
}
.section--dark .ticks li { color:#E3F0FB; }
.section--dark .ticks li::before { background: rgba(255,255,255,.92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231773D6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px; background-repeat:no-repeat; background-position:center; }

/* ---------- Split / media rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split--media-first .split__media { order: -1; }
.split__media { position: relative; }
.split__media img { width:100%; height:100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3.2; }
.split__media .badge-float {
  position:absolute; bottom: -22px; left: -22px; background:#fff; border-radius: var(--radius);
  padding: 18px 22px; box-shadow: var(--shadow-lg); display:flex; align-items:center; gap:14px; max-width: 270px;
}
.split__media .badge-float .big { font-family: var(--font-head); font-weight:800; font-size:1.9rem; color:var(--blue); line-height:1; }
.split__media .badge-float small { color: var(--muted); font-size:.82rem; }

/* ---------- Stats band ---------- */
.statband { display:grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,3vw,40px); text-align:center; }
.statband .num { font-family: var(--font-head); font-weight:800; font-size: clamp(2.2rem,4.5vw,3.4rem); color: var(--navy); letter-spacing:-.03em; }
.section--dark .statband .num { color:#fff; }
.statband .num span { color: var(--blue); }
.section--dark .statband .num span { color:#BFE0FF; }
.statband .lbl { color: var(--muted); margin-top: 6px; font-size:.95rem; }
.section--dark .statband .lbl { color:#CFE0F0; }

/* ---------- Process steps ---------- */
.steps { counter-reset: step; display:grid; gap: 22px; }
.step { display:grid; grid-template-columns: auto 1fr; gap: 22px; align-items:start; }
.step__num {
  counter-increment: step; width:52px; height:52px; border-radius:50%; flex:none;
  display:grid; place-items:center; font-family:var(--font-head); font-weight:800; font-size:1.1rem;
  background: rgba(255,255,255,.16); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3);
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.2rem; margin-bottom: 6px; }
.step p { font-size:.97rem; }

/* ---------- Incentive cards ---------- */
.inc-card { position:relative; overflow:hidden; }
.inc-card .tag {
  display:inline-block; font-family:var(--font-head); font-weight:700; font-size:.7rem; letter-spacing:.1em;
  text-transform:uppercase; padding:5px 11px; border-radius:999px; margin-bottom:16px;
}
.tag--active { background: rgba(47,166,106,.14); color:#22784A; }
.tag--ending { background: rgba(23,115,214,.14); color: var(--blue-deep); }
.tag--ended  { background: rgba(120,128,138,.16); color:#5b626b; }
.tag--state  { background: rgba(70,166,232,.16); color: var(--sky-deep); }
.inc-card .amt { font-family:var(--font-head); font-weight:800; font-size: clamp(1.6rem,3vw,2.2rem); color:var(--navy); letter-spacing:-.02em; margin-bottom: 8px;}
.inc-card .amt small { display:block; font-size:.8rem; font-weight:500; color:var(--muted); letter-spacing:0; }

/* "cons" list (mirrors .ticks, red X) */
.crosses li { position: relative; padding-left: 32px; margin-bottom: 13px; color:#566069; }
.crosses li::before {
  content:""; position:absolute; left:0; top:3px; width:20px; height:20px; border-radius:50%;
  background:#F6E2DB;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C0552F' stroke-width='3.4' stroke-linecap='round'%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat:no-repeat; background-position:center;
}

/* recommended highlight card */
.card--rec { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), var(--shadow); position:relative; }
.rec-flag { position:absolute; top:-12px; right:22px; background: linear-gradient(135deg,var(--sky),var(--blue)); color:#fff;
  font-family:var(--font-head); font-weight:700; font-size:.7rem; letter-spacing:.08em; text-transform:uppercase; padding:6px 13px; border-radius:999px; box-shadow: var(--shadow-sm); }

/* comparison table */
.table-wrap { overflow-x:auto; -webkit-overflow-scrolling:touch; border-radius: var(--radius); box-shadow: var(--shadow-sm); border:1px solid var(--line); }
.compare { width:100%; min-width:600px; border-collapse:separate; border-spacing:0; background:#fff; }
.compare th, .compare td { padding:15px 18px; text-align:left; border-bottom:1px solid var(--line); font-size:.95rem; vertical-align:top; color:var(--text); }
.compare thead th { font-family:var(--font-head); background:var(--navy); color:#fff; font-size:.92rem; border-bottom:0; }
.compare tbody th { font-family:var(--font-head); font-weight:600; color:var(--navy); width:32%; background:var(--paper-3); }
.compare .col-own { background: rgba(23,115,214,.06); }
.compare tbody tr:last-child td, .compare tbody tr:last-child th { border-bottom:0; }
.compare .yes { color: var(--eco); font-weight:700; }
.compare .no { color:#C0552F; font-weight:700; }

/* ---------- Testimonials ---------- */
.quote-card { background:var(--white); border:1px solid var(--line); border-radius: var(--radius); padding: 34px 32px; box-shadow: var(--shadow-sm); height:100%; display:flex; flex-direction:column; }
.quote-card .stars { color: var(--sun); letter-spacing:3px; margin-bottom:16px; font-size:1.05rem; }
.quote-card blockquote { font-size: 1.12rem; line-height:1.6; color: var(--text); font-weight:500; flex:1; }
.quote-card .who { display:flex; align-items:center; gap:13px; margin-top:24px; }
.quote-card .who .av { width:46px; height:46px; border-radius:50%; background: linear-gradient(135deg,var(--blue),var(--sky)); color:#fff; display:grid; place-items:center; font-family:var(--font-head); font-weight:700; }
.quote-card .who b { font-family:var(--font-head); display:block; font-size:.98rem; }
.quote-card .who span { color:var(--muted); font-size:.85rem; }

/* ---------- Gallery ---------- */
.gallery { display:grid; grid-template-columns: repeat(12,1fr); gap: 16px; grid-auto-flow: dense; }
.gallery figure { position:relative; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-sm); }
.gallery figure img { width:100%; height:100%; object-fit:cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure figcaption {
  position:absolute; inset:auto 0 0 0; padding: 30px 20px 16px; color:#fff; font-family:var(--font-head); font-weight:600; font-size:.95rem;
  background: linear-gradient(180deg, transparent, rgba(8,28,52,.82)); opacity:0; transform: translateY(8px); transition: .35s var(--ease);
}
.gallery figure figcaption small { display:block; font-weight:400; font-size:.82rem; color:#C9DCF0; margin-top:3px; }
.gallery figure:hover figcaption { opacity:1; transform: none; }
.g-wide { grid-column: span 8; aspect-ratio: 16/9; }
.g-tall { grid-column: span 4; grid-row: span 2; aspect-ratio: 3/4.4; }
.g-sq   { grid-column: span 4; aspect-ratio: 4/3; }
.g-half { grid-column: span 6; aspect-ratio: 16/10; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow:hidden; background: linear-gradient(150deg, var(--blue), var(--blue-deep) 65%, var(--navy)); color:#fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); text-align:center; }
.cta-band::before { content:""; position:absolute; width:420px; height:420px; right:-120px; top:-160px; border-radius:50%;
  background: radial-gradient(circle, rgba(143,208,255,.45), transparent 65%); filter: blur(16px); }
.cta-band::after { content:""; position:absolute; width:360px; height:360px; left:-120px; bottom:-180px; border-radius:50%;
  background: radial-gradient(circle, rgba(70,166,232,.4), transparent 65%); filter: blur(16px); }
.cta-band > * { position:relative; z-index:1; }
.cta-band h2 { color:#fff; }
.cta-band p { color:#DCEBF9; max-width:560px; margin:16px auto 0; }
.cta-band .eyebrow { color:#BFE0FF; }
.cta-band .eyebrow::before { background:#BFE0FF; }
.cta-band .hero__cta { justify-content:center; }

/* ---------- Forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,3.5vw,44px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display:block; font-family:var(--font-head); font-weight:600; font-size:.85rem; margin-bottom:7px; color:var(--navy); }
.field input, .field select, .field textarea {
  width:100%; font-family:inherit; font-size:1rem; color:var(--text);
  padding: 13px 15px; border:1.5px solid var(--line); border-radius: var(--radius-sm); background:var(--paper-3);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background:#fff; box-shadow: 0 0 0 4px rgba(23,115,214,.15); outline:none; }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-note { font-size:.82rem; color:var(--muted); margin-top:10px; }
.form-success { display:none; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(47,166,106,.12); color:#22784A; font-weight:600; font-family:var(--font-head); }
.form-success.show { display:block; }

/* contact methods */
.contact-list { display:grid; gap: 14px; }
.contact-item { display:flex; gap:16px; align-items:flex-start; padding: 18px; border:1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.contact-item .ico { width:44px; height:44px; border-radius:12px; flex:none; display:grid; place-items:center; background: rgba(255,255,255,.16); color:#fff; }
.contact-item .ico svg { width:21px; height:21px; }
.contact-item b { font-family:var(--font-head); color:#fff; display:block; font-size:.95rem; }
.contact-item span, .contact-item a { color:#CFE0F0; font-size:.92rem; }
.contact-item a:hover { color: #fff; }

/* ---------- Logos / trust ---------- */
.trust-row { display:flex; flex-wrap:wrap; gap: 14px 30px; align-items:center; justify-content:center; }
.trust-chip { display:inline-flex; align-items:center; gap:9px; font-family:var(--font-head); font-weight:600; font-size:.92rem; color:var(--muted); }
.trust-chip svg { width:19px; height:19px; color: var(--blue); }

/* ---------- Page hero (interior) — light blue ---------- */
.page-hero { position:relative; padding: clamp(102px, 8vw, 120px) 0 clamp(40px, 5vw, 60px); color:var(--navy); isolation:isolate; background: linear-gradient(180deg, var(--paper-2), #fff); overflow:hidden; border-bottom:1px solid var(--line); }
.page-hero::before { content:""; position:absolute; width:540px; height:540px; right:-180px; top:-220px; border-radius:50%;
  background: radial-gradient(circle, rgba(70,166,232,.28), transparent 62%); z-index:-1; }
.page-hero::after { content:""; position:absolute; width:440px; height:440px; left:-170px; bottom:-260px; border-radius:50%;
  background: radial-gradient(circle, rgba(23,115,214,.18), transparent 62%); z-index:-1; }
.page-hero h1 { color:var(--navy); max-width: 15ch; }
.page-hero .lead { color:#46566A; max-width: 600px; margin-top:18px; }
.breadcrumb { font-family:var(--font-head); font-size:.82rem; color:var(--muted); margin-bottom:20px; letter-spacing:.02em; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--blue); }
.page-hero__grid { display:grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px,5vw,60px); align-items:center; }
.page-hero__media img { width:100%; aspect-ratio: 5/3.7; object-fit:cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 860px){
  .page-hero__grid { grid-template-columns:1fr; gap:24px; }
  .page-hero__media img { aspect-ratio: 16/9; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color:#A9BCD2; padding-top: clamp(56px,7vw,84px); }
.footer-grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.site-footer .f-brand img { height: 46px; filter: brightness(0) invert(1); margin-bottom:18px; }
.site-footer p { color:#9DB0C6; font-size:.94rem; }
.f-col h4 { color:#fff; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase; margin-bottom:18px; font-weight:600; }
.f-col a { display:block; padding:6px 0; color:#A9BCD2; font-size:.95rem; transition: color .2s, transform .2s; }
.f-col a:hover { color: #fff; transform: translateX(3px); }
.socials { display:flex; gap:10px; margin-top:18px; }
.socials a { width:40px; height:40px; border-radius:11px; display:grid; place-items:center; background: rgba(255,255,255,.08); color:#D5E0EE; transition: .25s var(--ease); }
.socials a:hover { background: var(--sky); color:#fff; transform: translateY(-3px); }
.socials svg { width:18px; height:18px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-block: 22px; display:flex; flex-wrap:wrap; gap:10px 24px; justify-content:space-between; font-size:.85rem; color:#7E91A8; }
.footer-bottom a:hover { color:#fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1{transition-delay:.08s}.reveal.d2{transition-delay:.16s}.reveal.d3{transition-delay:.24s}.reveal.d4{transition-delay:.32s}
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }

/* ---------- Misc ---------- */
.mw-720 { max-width:720px; }
.mt-s{margin-top:14px}.mt-m{margin-top:28px}.mt-l{margin-top:44px}
.text-center{text-align:center}
.divider{height:1px;background:var(--line);border:0;margin:0}
.accent { color: var(--blue); }
.nowrap{white-space:nowrap}
.disclaimer { font-size:.82rem; color:var(--muted); border-left:3px solid var(--blue); padding:6px 0 6px 16px; background:linear-gradient(90deg,rgba(23,115,214,.07),transparent); border-radius:0 8px 8px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr; gap:34px}
  .split{grid-template-columns:1fr; gap:34px}
  .split--media-first .split__media{order:0}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
  .statband{grid-template-columns:repeat(2,1fr); gap:30px}
  .g-wide,.g-tall,.g-sq,.g-half{grid-column:span 12; grid-row:auto; aspect-ratio:16/9}
}
@media (max-width: 860px){
  .nav-links, .nav__cta { display:none; }
  .nav-toggle{ display:flex; }
  .nav-links{
    position:fixed; inset:0 0 0 auto; width:min(86vw,360px); flex-direction:column; align-items:stretch; gap:6px;
    background:var(--paper); padding:104px 24px 40px; box-shadow:var(--shadow-lg);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index:1;
  }
  body.nav-open .nav-links{ display:flex; transform:none; }
  /* When scrolled, the header's backdrop-filter makes it the containing block for this
     position:fixed panel, collapsing it to the header's height (white bg vanishes below
     the strip). Cancel it while the menu is open so the panel fills the full viewport. */
  body.nav-open .site-header.scrolled{ backdrop-filter:none; -webkit-backdrop-filter:none; }
  body.nav-open .site-header .nav-links a:not(.btn){ color:var(--navy); font-size:1.08rem; padding:13px 16px; }
  body.nav-open .site-header .nav-links a.active{ color:var(--blue); }
  .nav__panel-cta{ display:inline-flex; margin-top:14px; }
  body.nav-open .nav-toggle span{ background:var(--navy); }
  body.nav-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px){
  body{font-size:16px}
  .grid-4,.grid-3,.grid-2,.field-row{grid-template-columns:1fr}
  .hero-stats{grid-template-columns:1fr 1fr}
  .statband{grid-template-columns:1fr 1fr}
  .split__media .badge-float{left:50%; transform:translateX(-50%); bottom:-26px}
  .footer-grid{grid-template-columns:1fr}
}
