/* ============================================================
   SOL Integrative v2 — Corporate Identity edition
   CI manual: SOL blue + orange corporate colours, spectrum accents
   Typography: ITC Avant Garde Gothic → Poppins · DIN → Barlow
   ============================================================ */

:root {
  --primary: #2569B3;         /* SOL blue (S gradient) */
  --primary-dark: #1D5290;
  --on-primary: #FFFFFF;
  --accent: #F26522;          /* SOL orange (L gradient) — accents */
  --accent-dark: #C94A16;     /* CTA-safe orange (WCAG on white text) */
  --cta: #C94A16;
  --cta-dark: #A83A0E;
  --sol-yellow: #FFC20E;
  --sol-green: #5A9E32;
  --sol-magenta: #E5097F;
  --sol-cyan: #3FA9DC;
  --bg: #F8FAFD;
  --surface: #FFFFFF;
  --fg: #1F2C3D;
  --fg-body: #3D4B5C;
  --muted: #64748B;
  --border: #E0E7F0;
  --border-strong: #C6D4E4;
  --mint: #EAF2FA;            /* light SOL-blue tint */
  --teal-ink: #212F55;        /* deep SOL navy (footer/bands; text-only brand) */
  --ring: #2569B3;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(31, 44, 61, 0.05);
  --shadow-md: 0 6px 24px -8px rgba(31, 44, 61, 0.12);
  --shadow-lg: 0 16px 44px -16px rgba(31, 44, 61, 0.18);
  --font-head: "Poppins", "Century Gothic", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
}

/* spectrum ribbon — nod to the SOL 'O' */
.spectrum-bar {
  height: 4px;
  background: linear-gradient(90deg, #2B3A8F, #3FA9DC, #7AB929, #FFC20E, #F26522, #E5097F);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg-body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--primary-dark); text-decoration: none; cursor: pointer; transition: color 0.2s ease-out; }
a:hover { color: var(--accent-dark); }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--teal-ink); color: #fff;
  padding: 0.7rem 1.2rem; z-index: 300; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--fg);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.3rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

/* real heading (for a11y/heading-outline), styled as a quiet section label */
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.1rem;
}

.kicker {
  display: inline-block;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: var(--fg-body); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.wrap-narrow { max-width: 780px; margin: 0 auto; padding: 0 1.25rem; }
section { padding: 4.5rem 0; }
@media (max-width: 768px) { section { padding: 3rem 0; } }

/* ---------- top bar + navbar ---------- */
.topbar {
  background: var(--teal-ink);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  padding: 0.45rem 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a { color: #fff; font-weight: 600; display: inline-block; padding: 0.71rem 0; margin: -0.71rem 0; }
.topbar a:hover { color: #A7F3D0; }
@media (max-width: 640px) { .topbar .t-loc { display: none; } }

header.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 1.4rem; height: 76px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 56px; width: auto; display: block; }
@media (max-width: 640px) { .brand img { height: 46px; } }
.nav-menu { display: flex; align-items: center; gap: 0.2rem; list-style: none; margin-left: auto; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--fg);
  border-radius: 8px;
  white-space: nowrap;
}
.nav-menu > li > a:hover { background: var(--mint); color: var(--primary-dark); }
.nav-menu > li > a .caret { font-size: 0.6rem; color: var(--muted); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 270px; max-height: 68vh; overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0.2s;
}
.nav-menu li:hover > .dropdown,
.nav-menu li:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 0.72rem 0.8rem; font-size: 0.88rem; font-weight: 500; color: var(--fg-body); border-radius: 8px; }
.dropdown a:hover { background: var(--mint); color: var(--primary-dark); }
.dropdown .dd-head { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding: 0.7rem 0.8rem 0.25rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem;
  padding: 0.72rem 1.5rem; border-radius: 10px;
  border: 2px solid transparent; cursor: pointer;
  transition: background 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out, transform 0.15s ease-out;
  min-height: 44px;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-dark); color: var(--on-primary); }
.btn-green { background: var(--cta); color: #fff; }
.btn-green:hover { background: var(--cta-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary-dark); border-color: var(--border-strong); }
.btn-outline:hover { border-color: var(--primary); background: var(--mint); color: var(--primary-dark); }
.btn svg { width: 18px; height: 18px; flex: none; }

.nav-cta { margin-left: 0.5rem; }
.nav-burger {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border-radius: 10px;
  border: 1px solid var(--border-strong); background: #fff; cursor: pointer; position: relative;
}
.nav-burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.25s ease-out, opacity 0.2s; }
.nav-burger span:nth-child(1) { top: 16px; }
.nav-burger span:nth-child(2) { top: 22px; }
.nav-burger span:nth-child(3) { top: 28px; }
.nav-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--surface);
  max-height: calc(100dvh - 110px);
  overflow-y: auto;
  padding: 0.8rem 1.25rem 2rem;
}
.nav-open .mobile-menu { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--border); }
.mobile-menu > ul > li > a { display: block; padding: 0.95rem 0.2rem; font-weight: 700; color: var(--fg); font-size: 1.02rem; }
.mob-row { display: flex; align-items: center; }
.mob-row > a { flex: 1; }
.sub-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; flex: none;
  background: none; border: none; cursor: pointer;
  color: var(--muted);
}
.sub-toggle-ic { display: inline-block; font-size: 0.9rem; transition: transform 0.25s ease-out; }
.has-sub.open .sub-toggle-ic { transform: rotate(180deg); }
.mobile-menu .sub { display: none; padding: 0 0 0.9rem 0.9rem; }
.mobile-menu .sub a { display: block; padding: 0.65rem 0; font-size: 0.92rem; color: var(--fg-body); border-bottom: 1px solid var(--border); }
.mobile-menu .sub li:last-child a { border-bottom: none; }
.has-sub.open .sub { display: block; }

@media (max-width: 1150px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-burger { display: block; }
}

/* ---------- hero ---------- */
.hero { background: linear-gradient(180deg, #EAF2FA 0%, var(--bg) 100%); padding: 4.2rem 0 3.6rem; border-bottom: 1px solid var(--border); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.2rem; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; } }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--primary-dark); }
.hero .lead { margin-bottom: 1.8rem; max-width: 33rem; }
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-badges { display: flex; gap: 1.4rem; flex-wrap: wrap; font-size: 0.82rem; font-weight: 600; color: var(--fg); }
.hero-badges span { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-badges svg { width: 18px; height: 18px; color: var(--sol-green); flex: none; }
.hero-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }

/* ---------- proof bar ---------- */
.proof { background: var(--surface); border-bottom: 1px solid var(--border); padding: 1.8rem 0; }
.proof .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 800px) { .proof .wrap { grid-template-columns: repeat(2, 1fr); } }
.proof-item { text-align: center; }
.proof-item b { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--fg); }
.proof-item span { font-size: 0.8rem; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; }

/* ---------- cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.25s ease-out, border-color 0.25s ease-out, transform 0.25s ease-out;
  display: flex; flex-direction: column;
}
a.card:hover { box-shadow: var(--shadow-md); border-color: var(--border-strong); transform: translateY(-3px); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--mint); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.4rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.card-body h3, .card-body .card-title { font-size: 1.13rem; }
.card-body p { font-size: 0.92rem; flex: 1; }
.card-meta { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-dark); }
.card-link { font-size: 0.88rem; font-weight: 700; color: var(--primary-dark); display: inline-flex; align-items: center; gap: 0.35rem; }
.card-link::after { content: "→"; }

.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.sec-head { max-width: 640px; margin-bottom: 2.6rem; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { margin-bottom: 0.8rem; }

/* condition tiles */
.cond { position: relative; }
.cond .card-media { aspect-ratio: 16/9; }
.cond .card-body h3 { color: var(--fg); }

/* steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 980px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  position: relative;
}
.step::before {
  content: "0" counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--mint); color: var(--primary-dark);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; }

/* dark trust band */
.band { background: var(--teal-ink); color: rgba(255, 255, 255, 0.85); border-radius: var(--radius-lg); padding: 3.4rem 3rem; }
@media (max-width: 768px) { .band { padding: 2.2rem 1.4rem; } }
.band h2, .band h3 { color: #fff; }
.band .kicker { color: var(--sol-yellow); }
.band-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem 2.4rem; margin-top: 2rem; }
@media (max-width: 980px) { .band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .band-grid { grid-template-columns: 1fr; } }
.band-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.band-item svg, .band-item img { width: 40px; height: 40px; flex: none; filter: invert(1) opacity(0.85); }
.band-item h3 { font-size: 1.02rem; margin-bottom: 0.2rem; }
.band-item p { font-size: 0.85rem; color: rgba(255, 255, 255, 0.66); }

/* testimonials */
.quote {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
}
.quote p { font-size: 0.95rem; margin-bottom: 1.1rem; }
.quote .q-who { font-weight: 700; color: var(--fg); font-size: 0.9rem; }
.quote .q-cond { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-dark); }

/* awards */
.award-list { display: grid; gap: 0.9rem; }
.award-item {
  display: flex; gap: 1.1rem; align-items: baseline;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.3rem;
}
.award-item .a-year { font-family: var(--font-head); font-weight: 700; color: var(--primary-dark); flex: none; }
.award-item p { font-size: 0.92rem; }

/* ---------- page hero / breadcrumbs ---------- */
.page-hero { background: linear-gradient(180deg, var(--mint), var(--bg)); border-bottom: 1px solid var(--border); padding: 2.6rem 0 2.4rem; }
.crumbs { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fg-body); margin-bottom: 1rem; }
.crumbs a { color: var(--fg-body); display: inline-block; padding: 0.72rem 0.1rem; margin: -0.72rem 0; }
.crumbs a:hover { color: var(--primary-dark); }
.page-hero h1 { max-width: 22ch; }
.page-hero .lead { margin-top: 1rem; max-width: 46rem; }

/* ---------- article / prose ---------- */
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 3.2rem; align-items: start; }
@media (max-width: 980px) { .article-grid { grid-template-columns: 1fr; gap: 2.2rem; } }
.toc-rail { position: sticky; top: 96px; display: grid; gap: 1.1rem; }
@media (max-width: 980px) { .toc-rail { position: static; } }
.toc-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem 1.25rem; }
.toc-card-title { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-family: var(--font-body); margin-bottom: 0.7rem; }
.toc-card ul { list-style: none; }
.toc-card li a { display: block; padding: 0.55rem 0; font-size: 0.88rem; font-weight: 500; color: var(--fg-body); border-bottom: 1px solid var(--border); min-height: 44px; display: flex; align-items: center; }
.toc-card li:last-child a { border-bottom: none; }
.toc-card li a:hover { color: var(--primary-dark); }
.toc-cta { background: var(--teal-ink); border: none; }
.toc-cta .toc-card-title { color: #6EE7B7; }
.toc-cta p { color: rgba(255,255,255,0.75); font-size: 0.86rem; margin-bottom: 1rem; }
.toc-cta-alt {
  display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 44px;
  font-size: 0.86rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline; text-underline-offset: 3px;
}
.toc-cta-alt:hover { color: #fff; }

.prose { max-width: 46rem; }
.prose h2, .prose h3 { margin: 2.4rem 0 0.9rem; scroll-margin-top: 96px; }
.prose h2 { font-size: 1.55rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--mint); }
.prose h3 { font-size: 1.22rem; }
.prose p { margin-bottom: 1.05rem; }
.prose strong { color: var(--fg); }
.prose a { text-decoration: underline; text-underline-offset: 3px; overflow-wrap: anywhere; }
.prose p, .prose li { overflow-wrap: break-word; }
.prose ul, .prose ol { margin: 0 0 1.4rem 0; padding-left: 0; list-style: none; }
.prose ol { counter-reset: li; }
.prose li { position: relative; padding-left: 1.9rem; margin-bottom: 0.5rem; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 0.65rem; height: 0.65rem; border-radius: 3px;
  background: var(--accent); opacity: 0.85;
}
.prose ol li::before {
  counter-increment: li; content: counter(li);
  position: absolute; left: 0; top: 0.15em;
  width: 1.3rem; height: 1.3rem; border-radius: 50%;
  background: var(--mint); color: var(--primary-dark);
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.prose figure { margin: 1.9rem 0; max-width: 560px; }
.prose figure img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.prose blockquote { border-left: 4px solid var(--accent); padding: 0.3rem 0 0.3rem 1.2rem; margin: 1.6rem 0; font-family: var(--font-head); font-style: italic; font-size: 1.12rem; color: var(--fg); }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 0.8rem; }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.1rem 1.3rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--fg);
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--mint); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 600;
  transition: transform 0.2s ease-out;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 1.3rem 1.3rem; max-width: 44rem; }
.faq-body p, .faq-body li { overflow-wrap: break-word; }
.faq-body a { overflow-wrap: anywhere; }

/* ---------- team ---------- */
.team-card .card-media { aspect-ratio: 4/4.4; }
.team-card .card-media img { object-position: top center; }
.team-card .role { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-dark); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--primary-dark), #212F55); border-radius: var(--radius-lg); padding: 3rem; color: rgba(255, 255, 255, 0.88); display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; padding: 2rem 1.4rem; } }
.cta-banner h2 { color: #fff; margin-bottom: 0.7rem; }
.cta-banner .actions { display: flex; gap: 0.8rem; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta-banner .actions { justify-content: flex-start; } }
.cta-banner .btn-primary { background: #fff; color: var(--primary-dark); }
.cta-banner .btn-primary:hover { background: #E7F6F3; color: var(--primary-dark); }
.cta-banner .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

/* ---------- footer ---------- */
footer { background: var(--teal-ink); color: rgba(255, 255, 255, 0.72); font-size: 0.9rem; margin-top: 4rem; }
footer .f-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2.5rem; padding: 3.5rem 0 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
@media (max-width: 900px) { footer .f-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { footer .f-grid { grid-template-columns: 1fr; } }
footer .f-brand { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
footer .f-tag { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1rem; }
.footer-col-title { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 0; }
footer a { color: rgba(255, 255, 255, 0.75); display: inline-block; padding: 0.66rem 0; }
footer a:hover { color: #6EE7B7; }
footer .f-legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.6rem 0 2rem; font-size: 0.78rem; color: rgba(255, 255, 255, 0.62); }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.rv.is-in { opacity: 1; transform: translateY(0); }
.rv-d0 { transition-delay: 0s; }
.rv-d1 { transition-delay: 0.06s; }
.rv-d2 { transition-delay: 0.12s; }
.rv-d3 { transition-delay: 0.18s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .card, .btn { transition: none; }
}

/* WhatsApp float */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: background 0.2s ease-out, transform 0.2s ease-out;
}
.wa-float:hover { background: #1DA851; color: #fff; transform: translateY(-2px); }
.wa-float svg { width: 26px; height: 26px; }

.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 980px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .gallery-strip { grid-template-columns: 1fr; } }
.gallery-strip img { border-radius: var(--radius); border: 1px solid var(--border); aspect-ratio: 1/1; object-fit: cover; width: 100%; }

/* award photo gallery */
.award-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 980px) { .award-photo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .award-photo-grid { grid-template-columns: 1fr; } }
.award-photo {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease-out, transform 0.25s ease-out;
}
.award-photo:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.award-photo-media { aspect-ratio: 4/3; background: var(--mint); overflow: hidden; }
.award-photo-media img { width: 100%; height: 100%; object-fit: cover; }
.award-photo figcaption { padding: 1rem 1.1rem 1.2rem; font-size: 0.85rem; font-weight: 600; color: var(--fg); line-height: 1.4; }

/* as seen on — press logo strip */
.seen-on-strip {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2.6rem 3rem;
}
.seen-on-item { display: flex; align-items: center; justify-content: center; height: 34px; }
.seen-on-item img {
  max-height: 100%; width: auto; max-width: 140px;
  object-fit: contain;
  filter: grayscale(1); opacity: 0.55;
  transition: filter 0.25s ease-out, opacity 0.25s ease-out;
}
.seen-on-item:hover img { filter: grayscale(0); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .award-photo:hover { transform: none; } }
