/*
Theme Name: OzLeap
Theme URI: https://OzLeap.com
Author: Mahsakiani
Author URI: https://www.linkedin.com/in/mahsakiani
Description: OzLeap — Business Consulting theme. Risk management, decision support, and operational efficiency. Built with reusable block patterns, a custom Product post type, and the exact design of the provided HTML/CSS.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ozleap
Tags: business, consulting, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, block-patterns, block-styles, full-width-template
*/

/* ====================== RESET & ROOT ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3A6B;
  --navy-dark:  #122649;
  --navy-mid:   #2A5298;
  --navy-light: #EBF0FA;
  --amber:       #E8A83E;
  --amber-light: #FDF3DC;
  --mist:       #F4F7FB;
  --white:      #FFFFFF;
  --ink:        #1A2332;
  --ink-mid:    #4A5568;
  --ink-soft:   #8896A8;
  --border:     #E2E8F0;
  --border-mid: #CBD5E0;
  --font:       'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; outline: none; }
img { display: block; max-width: 100%; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.3s cubic-bezier(0.22,1,0.36,1) both; }
.d1{animation-delay:0.05s;} .d2{animation-delay:0.10s;}
.d3{animation-delay:0.20s;} .d4{animation-delay:0.25s;}
.d5{animation-delay:0.3s;}

/* ====================== NAV ====================== */
nav {
  position: sticky; top: 0; 
  z-index: 110;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem; height: 68px;
}
.nav-logo { font-size: 20px; font-weight: 700; color: var(--navy); letter-spacing: 0.02em; display: flex; align-items: center; gap: 0; }
.nav-logo span { color: var(--amber);}
.nav-logo-img { width: 38px; height: 38px; padding-right:8px; object-fit: contain; border-radius: 6px; }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: var(--ink-mid); letter-spacing: 0.02em;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px; background: var(--navy);
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-active { color: var(--navy); font-weight: 600; }
.nav-links a.nav-active::after { transform: scaleX(1); }

.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  padding: 10px 22px; background: var(--navy); color: var(--white);
  border-radius: 8px; transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--navy-dark); transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 6px; cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}


/* ====================== HERO ====================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--white);
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(232, 168, 62, 0.10) 0%, transparent 65%);
  pointer-events: none;
}

/* Right Visual Area */
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f2 100%);
  overflow: hidden;
}

.visual-content {
  position: relative;
  z-index: 2;
  opacity: 0.85;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-graphic {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 25px 45px rgba(27, 58, 107, 0.12));
  animation: float 22s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(-1deg); }
  50% { transform: translateY(-28px) rotate(2deg); }
}

.hero-content {
  padding: 0 3.5rem 0 5rem;
  z-index: 2;
  max-width: 620px;
}
.eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.6rem;
}
.hero-h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 1.7rem;
}
.hero-h1 .accent { color: var(--amber); }
.hero-h1 .highlight { color: var(--navy); }

.hero-desc {
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--ink-mid);
}
.hero-desc p{
  font-size: 16px; font-weight: 300;
  line-height: 1.68;
  margin-bottom: 1rem;
  color: var(--ink-mid);
}
.hero-desc span{
    font-size: 16px; font-weight: 300;
  line-height: 1.68;
  color: var(--amber);
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600;
  padding: 15px 34px;
  background: var(--navy); color: var(--white);
  border-radius: 8px; transition: all 0.2s;
}
.btn-primary:hover { background: var(--navy-dark); transform: translateY(-1px); gap: 12px; }
.btn-primary svg { width: 18px; height: 18px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500;
  padding: 15px 30px;
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy-light); border-radius: 8px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy-light); gap: 12px; }

/* Stats */
.stat-num {
  font-size: 33px; font-weight: 700; color: var(--navy); line-height: 1;
}
.stat-lbl {
  font-size: 12px; font-weight: 400; color: var(--ink-soft); margin-top: 6px; line-height: 1.4;
}

/* ====================== SECTION BASE ====================== */
.section { padding: 5.5rem 3.5rem; border-bottom: 1px solid var(--border); }
.section-bg { background: var(--mist); }
.sec-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.sec-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.6rem;
}
.sec-title {
  font-size: clamp(26px, 3vw, 38px); 
  font-weight: 600;
  color: var(--ink); 
  line-height: 1.2;
}
.sec-link {
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s, gap 0.2s; white-space: nowrap;
}
.sec-link:hover { color: var(--navy); gap: 10px; }
.sec-link svg { width: 14px; height: 14px; }


/* Process */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-mid); border-radius: 12px; overflow: hidden;
}
.proc-step {
  padding: 2.5rem 2rem; border-right: 1px solid var(--border-mid);
  transition: background 0.25s;
}
.proc-step:last-child { border-right: none; }
.proc-step:hover { background: var(--white); }
.proc-num {
  font-size: 42px; font-weight: 700; color: var(--border-mid);
  line-height: 1; margin-bottom: 1.25rem;
}
.proc-step:hover .proc-num { color: var(--navy); }
.proc-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 0.65rem; }
.proc-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--ink-mid); }

/* Products */
.products-band {
  display: grid; grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid var(--border);
}

.about-band { display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid var(--border); }

.prod-left {
  padding: 5.5rem 3.5rem;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.prod-desc-main {
  font-size:14px; font-weight:300; line-height:1.85;
  color:var(--ink-mid); max-width:360px; margin-bottom:2rem;
}
.prod-right { padding: 5.5rem 3.5rem; background: var(--mist); }
.prod-item {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  transition: all .3s;
  padding: 1.4rem 0; border-bottom: 1px solid var(--border);
}
.prod-item:hover { padding-left: 6px; }
.prod-item:first-child { padding-top: 0; }
.prod-item:last-child { border-bottom: none; padding-bottom: 0; } 
.prod-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.prod-desc { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.6; }
.prod-badge {
  flex-shrink: 0; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--navy-light);
  border-radius: 100px; padding: 4px 12px; margin-top: 2px;
}

/* About */
.about-band { display: grid; grid-template-columns: 1fr 2fr; border-bottom: 1px solid var(--border); }
.about-left {
  padding: 5.5rem 3.5rem; background: var(--navy);
  display: flex; flex-direction: column; justify-content: space-between;
}
.about-left-title {
  font-size: clamp(26px,2.5vw,36px); font-weight: 600; color: var(--white);
  line-height: 1.25; margin-bottom: 1.5rem;
}
.about-left-title span { color: var(--amber); }
.about-left-desc {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.7);
}
.about-ghost {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 2.5rem;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7); background: none; border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px; padding: 10px 20px; cursor: pointer;
  transition: all 0.2s;
}
.about-ghost svg { width: 15px; height: 15px; }
.about-ghost:hover { border-color: rgba(255,255,255,0.6); color: var(--white); gap: 12px; }
.about-right {
  padding: 5.5rem 3.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.about-val-title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem; }
.about-val-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: var(--ink-mid); }

/* CTA */
.cta-section {
  padding: 7rem 3.5rem; text-align: center;
  background: var(--navy); border-bottom: 1px solid var(--navy-dark);
}
.cta-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem;
}
.cta-title {
  font-size: clamp(32px, 4vw, 52px); font-weight: 600;
  color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.cta-title span { color: var(--amber); }
.cta-sub {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.7);
  line-height: 1.8; max-width: 460px; margin: 0 auto 2.5rem;
}
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600;
  padding: 16px 36px; background: var(--white); color: var(--navy);
  border: none; border-radius: 10px; cursor: pointer;
  border-radius: 10px; transition: all 0.2s;
  transition: background 0.2s, transform 0.15s, gap 0.2s;

}
.cta-primary:hover { background: var(--amber-light); transform: translateY(-2px); gap: 14px; }
.cta-primary svg { width: 16px; height: 16px; }

/* Footer */
footer { background: var(--ink); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4.5rem 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.footer-logo span { color: var(--amber); }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); max-width: 240px; }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 3.5rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); transition: color 0.2s; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  nav, .section, .hero-content, .prod-left, .prod-right, .about-left, .about-right, .cta-section, .footer-top, .footer-bottom {
    padding-left: 2rem; padding-right: 2rem;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
   }
  .hero-content {
    padding: 0 2rem;
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; height: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 1.8rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  .section { padding: 3.5rem 1.5rem; }
  .sec-header { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .svc-card { border-right: none; border-bottom: 1px solid var(--border); }
  .svc-card:last-child { border-bottom: none; }

  .process-grid { grid-template-columns: 1fr 1fr; }

  .products-band { grid-template-columns: 1fr; }
  .prod-left { padding: 3rem 1.5rem; border-right: none; border-bottom: 1px solid var(--border); }
  .prod-right { padding: 2.5rem 1.5rem; }

  .about-band { grid-template-columns: 1fr; }
  .about-left { padding: 3rem 1.5rem; }
  .about-right { padding: 2.5rem 1.5rem; grid-template-columns: 1fr; gap: 2rem; }

  .cta-section { padding: 4.5rem 1.5rem; }
  .cta-primary { width: 100%; max-width: 320px; justify-content: center; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 38px; }
}

/* ====================== MOBILE OVERLAY MENU ====================== */
.nav-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav-mobile-overlay.active {
  display: flex;
  opacity: 1;
}

.nav-mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
  width: 100%;
  max-width: 280px;
}

.mobile-link {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: 0.6rem 0;
  transition: color 0.3s;
}

.mobile-link:hover,
.mobile-link:active {
  color: var(--navy);
}

.mobile-cta {
  margin-top: 1.5rem;
  background: var(--navy);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  width: 100%;
  text-align: center;
}

/* Hamburger Animation */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}


/* ══════════════════════════════════
    PAGE HERO
══════════════════════════════════ */
.page-hero {
  background: var(--navy); 
  padding: 5rem 3.5rem;
  border-bottom: 1px solid var(--navy-dark);
  position: relative; overflow: hidden;
}
.page-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(232,168,62,.14) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner { max-width: 680px; position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem;
}
.page-hero-title {
  font-size: clamp(32px,4vw,52px); font-weight: 600;
  color: var(--white); line-height: 1.15; margin-bottom: 1.25rem;
}
.page-hero-title-accent { color: var(--amber); }
.page-hero-desc {
  font-size: 16px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.75); max-width: 560px;
}

/* content */
.page-content {
  padding: 7rem 3.5rem 5rem;  
}

/* ══════════════════════════════════
    SERVICES
  ══════════════════════════════════ */

/* ── Manifesto strip ── */
.manifesto {
  padding: 4rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--mist);
}
.manifesto-inner {
  max-width: 820px;
}
.manifesto-lead {
  font-size: clamp(18px,2.2vw,26px); font-weight: 500;
  color: var(--ink); line-height: 1.5; margin-bottom: 1.5rem;
}
.manifesto-lead-accent { color: var(--navy); }
.manifesto-body {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: var(--ink-mid); max-width: 680px;
}
.manifesto-focus {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 2rem;
}
.manifesto-pill {
  font-size: 13px; font-weight: 500; color: var(--navy);
  background: var(--navy-light); border-radius: 100px;
  padding: 7px 20px; border: 1px solid transparent;
  transition: border-color .2s;
}
.manifesto-pill:hover { border-color: var(--navy); }

/* ── Section base ── */
.section { padding: 5rem 3.5rem; border-bottom: 1px solid var(--border); }
.section-bg { background: var(--mist); }
.sec-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: .6rem;
}

/* ── Core services grid ── */
.service-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.service-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background .25s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: var(--navy-light); }
.service-icon {
  width: 52px; height: 52px; background: var(--navy-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--navy);
  margin-bottom: 1.5rem; transition: background .2s;
}
.service-card:hover .service-icon { background: var(--white); }
.service-icon svg { width: 24px; height: 24px; }
.service-name {
  font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: .75rem;
}
.service-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--ink-mid);
}
.sec-title--sm { margin-bottom: 1rem; }

/* ── Training section ── */
.training-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
}
.training-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem;
  transition: box-shadow .25s, transform .2s;
}
.training-card:hover {
  box-shadow: 0 6px 24px rgba(27,58,107,.09);
  transform: translateY(-2px);
}
.training-card-icon {
  width: 44px; height: 44px; background: var(--navy-light);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--navy); margin-bottom: 1.25rem;
}
.training-card-icon svg { width: 22px; height: 22px; }
.training-card-title {
  font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: .65rem;
}
.training-card-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--ink-mid);
  margin-bottom: 1.25rem;
}
.training-quote {
  font-size: 12px; font-style: italic; color: var(--ink-soft);
  border-left: 3px solid var(--amber); padding-left: .75rem;
  line-height: 1.6;
}

/* ── Quick quizzes ── */
.quizzes-section {
  padding: 4rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.quizzes-title {
  font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: .5rem;
}
.quizzes-sub {
  font-size: 14px; font-weight: 300; color: var(--ink-mid);
  line-height: 1.75; max-width: 620px; margin-bottom: 2rem;
}
.quizzes-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 10px;
}
.quiz-link {
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem; padding: 1.5rem 1rem;
  background: var(--mist); border: 1px solid var(--border);
  border-radius: 12px; text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
  text-align: center;
}
.quiz-link:hover {
  border-color: var(--navy); background: var(--navy-light);
  transform: translateY(-2px);
}
.quiz-link-icon {
  width: 40px; height: 40px; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.quiz-link-icon svg { width: 20px; height: 20px; }
.quiz-link-name {
  font-size: 12px; font-weight: 500; color: var(--ink);
  line-height: 1.4;
}
.quiz-link-label {
  font-size: 10px; font-weight: 400; color: var(--ink-soft);
  letter-spacing: .08em; text-transform: uppercase;
}

/* ── CTA ── */
.services-cta {
  padding: 6rem 3.5rem; background: var(--navy); text-align: center;
}
.services-cta-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 1.25rem;
}
.services-cta-title {
  font-size: clamp(28px,3.5vw,46px); font-weight: 600;
  color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.services-cta-accent { color: var(--amber); }
.services-cta-desc {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,.7);
  line-height: 1.8; max-width: 480px; margin: 0 auto 2.5rem;
}
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 15px 36px; background: var(--white); color: var(--navy);
  border: none; border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s, gap .2s;
}
.btn-cta-white:hover { background: var(--amber-light); transform: translateY(-2px); gap: 14px; }
.btn-cta-white svg { width: 16px; height: 16px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .manifesto,
  .quizzes-section, .services-cta { padding-left: 2rem; padding-right: 2rem; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .training-grid { grid-template-columns: 1fr 1fr; }
  .quizzes-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .manifesto, .quizzes-section { padding: 3rem 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .service-card:last-child { border-bottom: none; }
  .training-grid { grid-template-columns: 1fr; }
  .quizzes-grid { grid-template-columns: 1fr 1fr; }
  .services-cta { padding: 4rem 1.5rem; }
  .btn-cta-white { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .quizzes-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════
    PRODUCTS PAGE
  ══════════════════════════════════ */

/* ── Product google ── */
.hero-support-row {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.hero-support-text {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.6);
}
.btn-google-review {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  padding: 9px 18px; background: rgba(255,255,255,.12);
  color: var(--white); border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px; text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-google-review:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); }

/* ── Products list ── */
.products-list { border-bottom: 1px solid var(--border); }

/* ── Product item ── */
.product-item {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 2.5rem; align-items: start;
  padding: 3.5rem;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
}
.product-item:last-child { border-bottom: none; }
.product-item:hover { background: var(--mist); }

.product-item-alt { background: var(--mist); }
.product-item-alt:hover { background: var(--navy-light); }

.app-icon {
  width: 88px; height: 88px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; border: 1px solid var(--border); overflow: hidden;
}
.app-icon svg { width: 48px; height: 48px; }
.app-icon img { width: 38px; height: auto; }
.app-icon-blue   { background: linear-gradient(135deg,#EBF0FA,#D6E4FF); }
.app-icon-mint   { background: linear-gradient(135deg,#E8F7F0,#C6EED9); }
.app-icon-indigo { background: linear-gradient(135deg,#F0F4FF,#E0E9FF); }
.app-icon-amber  { background: linear-gradient(135deg,#FFFBEB,#FEF3C7); }
.app-icon-rose   { background: linear-gradient(135deg,#FFF1F2,#FFE4E6); }

.product-content {}
.product-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: .6rem; flex-wrap: wrap;
}
.product-name { font-size: 20px; font-weight: 600; color: var(--ink); }
.product-badge {
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 100px;
    background: var(--navy-light); color: var(--navy);
    }

.product-tagline {
  font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: .85rem;
}
.product-desc {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: var(--ink-mid); max-width: 620px; margin-bottom: 1.5rem;
}
.product-features {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem;
}
.feature-tag {
  font-size: 12px; font-weight: 400; color: var(--ink-mid);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 12px;
  display: flex; align-items: center; gap: 5px;
}
.feature-tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
.product-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-link-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 11px 22px; background: var(--navy); color: var(--white);
  border-radius: 8px; text-decoration: none;
  transition: background .2s, gap .2s, transform .15s;
}
.btn-link-primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn-link-primary svg { width: 14px; height: 14px; }
.btn-link-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 500;
  padding: 10px 20px; background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy-light); border-radius: 8px; text-decoration: none;
  transition: border-color .2s, background .2s, gap .2s;
}
.btn-link-secondary:hover { border-color: var(--navy); background: var(--navy-light); transform: translateY(-1px);}
.btn-link-secondary svg { width: 14px; height: 14px; }
.btn-link-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font); font-size: 13px; font-weight: 400;
  color: var(--ink-soft); text-decoration: none;
  transition: color .2s, gap .2s;
}
.btn-link-ghost:hover { color: var(--navy); gap: 10px; }
.btn-link-ghost svg { width: 13px; height: 13px; }

/* ── Support note ── */
.support-note {
  padding: 3rem 3.5rem;
  background: var(--mist);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.support-note-icon {
  width: 48px; height: 48px; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.support-note-icon svg { width: 24px; height: 24px; }
.support-note-text { flex: 1; }
.support-note-title { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.support-note-desc { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.7; }
.support-note-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .product-item, .support-note { padding-left: 2rem; padding-right: 2rem; }
}
@media (max-width: 768px) {
  .product-item { grid-template-columns: 1fr; gap: 1.25rem; padding: 2.5rem 1.5rem; }
  .app-icon { width: 72px; height: 72px; border-radius: 16px; }
  .support-note { padding: 2rem 1.5rem; flex-direction: column; gap: 1.25rem; }
  .product-links { flex-direction: column; align-items: stretch; }
  .btn-link-primary, .btn-link-secondary { justify-content: center; }
}

/* ══════════════════════════════════
    ABOUT PAGE
══════════════════════════════════ */    

/* ── Leader section ── */
.leader-section {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.leader-left {
  padding: 5rem 3.5rem;
  border-right: 1px solid var(--border);
}
.sec-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: .6rem;
}
.leader-title {
  font-size: clamp(22px,2.8vw,32px); font-weight: 600;
  color: var(--ink); line-height: 1.25; margin-bottom: 2rem;
}
.leader-title-accent { color: var(--navy); }
.leader-body {
  display: flex; flex-direction: column; gap: 1rem;
}
.leader-body p {
  font-size: 14px; font-weight: 300; line-height: 1.9; color: var(--ink-mid);
}
.leader-name-row {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 2rem; padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.leader-avatar {
  width: 48px; height: 48px; background: var(--navy-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--navy); flex-shrink: 0;
}
.leader-avatar svg { width: 24px; height: 24px; }
.leader-name { font-size: 15px; font-weight: 600; color: var(--ink); }
.leader-role { font-size: 12px; font-weight: 300; color: var(--ink-soft); margin-top: 2px; }
.leader-linkedin {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: var(--navy); text-decoration: none;
  transition: opacity .2s;
}
.leader-linkedin:hover { opacity: .75; }
.leader-linkedin svg { width: 16px; height: 16px; }

.leader-right {
  padding: 5rem 3.5rem; background: var(--mist);
  display: flex; flex-direction: column; gap: 2rem; justify-content: center;
}
.os-card {
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--navy); border-radius: 10px;
  padding: 1.75rem;
}
.os-card-title {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: .5rem;
}
.os-card-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--ink-mid);
}
.os-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1rem; }
.os-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: 13px; font-weight: 400; color: var(--ink-mid); line-height: 1.5;
}
.os-dot {
  width: 7px; height: 7px; background: var(--amber);
  border-radius: 50%; flex-shrink: 0; margin-top: 5px;
}

.os-card--mint { border-left-color: var(--amber); }
.principles-sec-title {
  font-size: clamp(24px,3vw,36px); font-weight: 600;
  color: var(--ink); line-height: 1.2;
}

/* ── Principles section ── */
.principles-section {
  padding: 5rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.principles-header { margin-bottom: 3rem; }
.principles-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.principle-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background .25s;
}
.principle-card:last-child { border-right: none; }
.principle-card:hover { background: var(--mist); }
.principle-icon {
  width: 48px; height: 48px; background: var(--navy-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--navy); margin-bottom: 1.5rem;
  transition: background .2s;
}
.principle-card:hover .principle-icon { background: var(--white); }
.principle-icon svg { width: 24px; height: 24px; }
.principle-name {
  font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: .65rem;
}
.principle-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--ink-mid);
}

/* ── Research section ── */
.research-section {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.research-left {
  padding: 5rem 3.5rem;
  background: var(--navy);
}
.research-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--amber); margin-bottom: .75rem;
}
.research-title {
  font-size: clamp(22px,2.5vw,30px); font-weight: 600;
  color: var(--white); line-height: 1.25; margin-bottom: 1.25rem;
}
.research-desc {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,.7); margin-bottom: 2rem;
}
.btn-research {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 12px 24px; background: var(--white); color: var(--navy);
  border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: background .2s, gap .2s;
}
.btn-research:hover { background: var(--amber-light); gap: 12px; }
.btn-research svg { width: 14px; height: 14px; }

.research-right {
  padding: 5rem 3.5rem;
}
.research-points { display: flex; flex-direction: column; gap: 2rem; }
.research-point {}
.research-point-label {
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--navy); margin-bottom: .5rem;
}
.research-point-title {
  font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: .5rem;
}
.research-point-desc {
  font-size: 13px; font-weight: 300; line-height: 1.8; color: var(--ink-mid);
}

/* ── CTA ── */
.about-cta {
  padding: 6rem 3.5rem; background: var(--mist);
  text-align: center; border-bottom: 1px solid var(--border);
}
.about-cta-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 1.25rem;
}
.about-cta-title {
  font-size: clamp(26px,3vw,38px); font-weight: 600;
  color: var(--ink); line-height: 1.2; margin-bottom: 1rem;
}
.about-cta-accent { color: var(--navy); }
.about-cta-desc {
  font-size: 15px; font-weight: 300; color: var(--ink-mid);
  line-height: 1.8; max-width: 460px; margin: 0 auto 2.5rem;
}
.btn-primary-lg {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  padding: 15px 36px; background: var(--navy); color: var(--white);
  border: none; border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s, gap .2s;
}
.btn-primary-lg:hover { background: var(--navy-dark); transform: translateY(-2px); gap: 14px; }
.btn-primary-lg svg { width: 16px; height: 16px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .leader-left, .leader-right,
  .principles-section, .research-left, .research-right,
  .about-cta { padding-left: 2rem; padding-right: 2rem; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .principle-card:nth-child(2) { border-right: none; }
  .principle-card:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .principle-card:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}
@media (max-width: 768px) {
  .leader-section { grid-template-columns: 1fr; }
  .leader-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 1.5rem; }
  .leader-right { padding: 2.5rem 1.5rem; }
  .principles-section { padding: 3.5rem 1.5rem; }
  .principles-grid { grid-template-columns: 1fr 1fr; }
  .research-section { grid-template-columns: 1fr; }
  .research-left { padding: 3.5rem 1.5rem; }
  .research-right { padding: 3rem 1.5rem; }
  .about-cta { padding: 4rem 1.5rem; }
  .btn-primary-lg { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .principles-grid { grid-template-columns: 1fr; }
  .principle-card { border-right: none; border-bottom: 1px solid var(--border); }
  .principle-card:last-child { border-bottom: none; }
}

/* ══════════════════════════════════
    CONTACT PAGE 
══════════════════════════════════ */

/* ── Main contact layout ── */
.contact-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border-bottom: 1px solid var(--border);
  min-height: 640px;
}

/* ── Form side ── */
.contact-form-side {
  padding: 4.5rem 3.5rem;
  border-right: 1px solid var(--border);
}
.contact-form-title {
  font-size: 22px; font-weight: 600; color: var(--ink);
  margin-bottom: .5rem;
}
.contact-form-sub {
  font-size: 14px; font-weight: 300; color: var(--ink-mid);
  line-height: 1.7; margin-bottom: 2.5rem;
}

/* form elements */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group-full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--ink); text-transform: uppercase;
}
.form-label-required { color: var(--navy); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font);
  font-size: 14px; font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--ink-soft); font-weight: 300; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,.08);
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%238896A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* service checkboxes */
.form-checks {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: .25rem;
}
.form-check-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 400; color: var(--ink-mid);
  background: var(--mist); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 8px 14px;
  cursor: pointer; transition: border-color .2s, background .2s, color .2s;
  user-select: none;
}
.form-check-label:hover { border-color: var(--navy); color: var(--navy); }
.form-check-input { display: none; }
.form-check-input:checked + .form-check-label {
  border-color: var(--navy);
  background: var(--navy-light);
  color: var(--navy);
}
.form-check-box {
  width: 14px; height: 14px;
  border: 1.5px solid var(--border-mid);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
}
.form-check-input:checked + .form-check-label .form-check-box {
  background: var(--navy); border-color: var(--navy);
}
.form-check-box svg { width: 9px; height: 9px; display: none; }
.form-check-input:checked + .form-check-label .form-check-box svg { display: block; }

.form-privacy-link { color: var(--navy); }

/* submit row */
.form-submit-row {
  display: flex; align-items: center; gap: 1.25rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  padding: 14px 32px; background: var(--navy); color: var(--white);
  border: none; border-radius: 8px; cursor: pointer;
  transition: background .2s, transform .15s, gap .2s;
}
.btn-submit:hover { background: var(--navy-dark); transform: translateY(-1px); gap: 14px; }
.btn-submit svg { width: 16px; height: 16px; }
.form-privacy {
  font-size: 12px; font-weight: 300; color: var(--ink-soft); line-height: 1.6;
  max-width: 260px;
}

/* success state */
.form-success {
  display: none;
  background: var(--amber-light);
  border: 1.5px solid var(--amber);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
  align-items: flex-start; gap: 1rem;
}
.form-success.visible { display: flex; }
.form-success-icon {
  width: 28px; height: 28px; background: var(--amber);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.form-success-icon svg { width: 14px; height: 14px; color: var(--white); }
.form-success-title {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px;
}
.form-success-desc { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.6; }

/* ── Info side ── */
.contact-info-side {
  padding: 4.5rem 3.5rem;
  background: var(--mist);
  display: flex; flex-direction: column; gap: 2.5rem;
}
.contact-info-title {
  font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px;
}
.contact-detail-value {
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.contact-detail-value a { color: var(--navy); text-decoration: none; }
.contact-detail-value a:hover { text-decoration: underline; }
.contact-detail-sub {
  font-size: 12px; font-weight: 300; color: var(--ink-soft); margin-top: 2px;
}

/* divider */
.contact-divider {
  height: 1px; background: var(--border);
}

/* response time card */
.response-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem 1.75rem;
}
.response-card-title {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: .75rem;
}
.response-items { display: flex; flex-direction: column; gap: .65rem; }
.response-item {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.response-item-label { font-weight: 300; color: var(--ink-mid); }
.response-item-val {
  font-weight: 600; color: var(--navy);
  background: var(--navy-light); border-radius: 100px;
  padding: 2px 10px; font-size: 12px;
}

/* discovery call card */
.discovery-card {
  background: var(--navy); border-radius: 12px;
  padding: 1.75rem;
}
.discovery-card-title {
  font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: .6rem;
}
.discovery-card-desc {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.7);
  line-height: 1.7; margin-bottom: 1.25rem;
}
.discovery-features {
  display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem;
}
.discovery-feature {
  display: flex; align-items: center; gap: .6rem;
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,.8);
}
.discovery-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
.btn-cal {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  padding: 11px 22px; background: var(--white); color: var(--navy);
  border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: background .2s, gap .2s;
}
.btn-cal:hover { background: var(--amber-light); gap: 12px; }
.btn-cal svg { width: 15px; height: 15px; }

/* ── Map / location strip ── */
.location-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.location-left {
  padding: 4rem 3.5rem;
  border-right: 1px solid var(--border);
}
.location-title {
  font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 1rem;
}
.location-desc {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: var(--ink-mid); margin-bottom: 2rem;
}
.location-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.location-tag {
  font-size: 12px; font-weight: 400; color: var(--ink-mid);
  background: var(--mist); border: 1px solid var(--border);
  border-radius: 100px; padding: 5px 14px;
}
.location-right {
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px; position: relative; overflow: hidden;
}
.location-map-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  color: var(--navy);
}
.location-map-placeholder svg { width: 48px; height: 48px; opacity: .4; }
.location-map-label {
  font-size: 13px; font-weight: 500; color: var(--navy);
  opacity: .6; letter-spacing: .04em;
}

/* ── FAQ strip ── */
.contact-faq {
  padding: 4.5rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--mist);
}
.contact-faq-title {
  font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 2rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  color: var(--ink); background: none; border: none;
  padding: 1.25rem 0; cursor: pointer; text-align: left;
  transition: color .2s;
}
.faq-btn:hover { color: var(--navy); }
.faq-btn-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--ink-soft); transition: transform .25s, color .2s;
}
.faq-item.open .faq-btn { color: var(--navy); }
.faq-item.open .faq-btn-icon { transform: rotate(45deg); color: var(--navy); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.22,1,.36,1);
}
.faq-item.open .faq-body { max-height: 200px; }
.faq-body p {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: var(--ink-mid); padding-bottom: 1.25rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-form-side,
  .contact-info-side, .location-left,
  .contact-faq { padding-left: 2rem; padding-right: 2rem; }
}

@media (max-width: 768px) {
  .page-hero { padding: 5rem 1.5rem 3.5rem; }
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-side { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 1.5rem; }
  .contact-info-side { padding: 3rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: 1; }
  .location-strip { grid-template-columns: 1fr; }
  .location-left { border-right: none; border-bottom: 1px solid var(--border); padding: 3rem 1.5rem; }
  .location-right { min-height: 200px; }
  .contact-faq { padding: 3rem 1.5rem; }
  .form-submit-row { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
}

@media (max-width: 480px) {
  .form-checks { flex-direction: column; }
}
/* ====================== PROBLEMS SECTION ====================== */
.problems-section {
  padding: 5.5rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  }
  .problems-header {
  max-width: 600px;
  margin-bottom: 3rem;
  }
  .problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  }
  .problem-tile {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.45;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  cursor: default;
}
.problem-tile:hover {
  border-color: var(--navy-mid);
  background: var(--navy-light);
  color: var(--navy);
}
.problem-tile-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ====================== CAPABILITY / PROOF ====================== */
.proof-strip {
  padding: 0 3.5rem 5.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.proof-strip-inner {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
}
.proof-strip-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 1rem;
}
.proof-strip-title {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 600;
  color: var(--ink); margin-bottom: 2rem; line-height: 1.25;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.proof-item {
  background: var(--white);
  padding: 1.75rem 1.5rem;
}
.proof-service-name {
  font-size: 12px; font-weight: 600;
  color: var(--navy); letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.proof-service-desc {
  font-size: 13px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.75;
}

/* ====================== CASE STUDIES ====================== */
.cases-section {
  padding: 5.5rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--mist);
}
.cases-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  border-color: var(--navy-mid);
  box-shadow: 0 4px 24px rgba(27,58,107,0.07);
}
.case-tag {
  display: inline-flex;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: var(--navy-light);
  border-radius: 100px; padding: 4px 12px;
  margin-bottom: 1.25rem; align-self: flex-start;
}
.case-title {
  font-size: 15px; font-weight: 600;
  color: var(--ink); line-height: 1.4;
  margin-bottom: 1.5rem;
}
.case-rows { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.case-row-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 4px;
}
.case-row-text {
  font-size: 13px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.7;
}

/* ====================== HOW WE WORK (SERVICES PAGE) ====================== */
.how-section {
  padding: 5.5rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.how-step {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.how-step:last-child { border-right: none; }
.how-step-num {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 0.75rem;
}
.how-step-title {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem;
}
.how-step-desc {
  font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.7;
}

/* ====================== SERVICE DETAIL BLOCKS ====================== */
.service-detail {
  padding: 5rem 3.5rem;
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) {
  background: var(--mist);
}
.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.service-detail-left {}
.service-detail-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 0.75rem;
}
.service-detail-title {
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 600;
  color: var(--ink); line-height: 1.25; margin-bottom: 1.25rem;
}
.service-detail-desc {
  font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.8;
  margin-bottom: 1.75rem;
}
.service-detail-proof {
  background: var(--navy-light);
  border-left: 3px solid var(--navy);
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  font-size: 13px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.75;
}
.service-detail-proof-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 5px;
}
.service-detail-right {}
.deliverables-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1rem;
}
.deliverables-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-bottom: 2rem;
}
.deliverable-pill {
  font-size: 12px; font-weight: 400; color: var(--ink-mid);
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 8px 12px;
  display: flex; align-items: center; gap: 7px;
}
.deliverable-pill-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}

/* ====================== SAMPLE OUTPUTS PREVIEW ====================== */
.outputs-section {
  padding: 5.5rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--navy-dark);
}
.outputs-header { margin-bottom: 2.5rem; }
.outputs-header .sec-eyebrow { color: var(--amber); }
.outputs-header .sec-title { color: var(--white); }
.outputs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.output-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.output-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,168,62,0.5);
}
.output-icon {
  width: 36px; height: 36px;
  background: rgba(232,168,62,0.16);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 1rem;
}
.output-icon svg { width: 18px; height: 18px; }
.output-name {
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 5px;
}
.output-desc {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.65;
}

/* ====================== FOUNDER TRUST STRIP ====================== */
.founder-strip {
  padding: 4rem 3.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.founder-strip-left {}
.founder-strip-name {
  font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 4px;
}
.founder-strip-role {
  font-size: 13px; font-weight: 300; color: var(--ink-soft);
}
.founder-strip-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.founder-cred {
  padding: 1.25rem;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.founder-cred-num {
  font-size: 26px; font-weight: 700;
  color: var(--navy); line-height: 1;
  margin-bottom: 5px;
}
.founder-cred-label {
  font-size: 12px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.5;
}

/* ====================== RESPONSIVE ADDITIONS ====================== */
@media (max-width: 1024px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .how-step { border-bottom: 1px solid var(--border); }
  .how-step:nth-child(3) { border-right: none; }
  .how-step:nth-child(4), .how-step:nth-child(5) { border-bottom: none; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 2rem; }
  .outputs-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-strip { grid-template-columns: 1fr; gap: 2rem; }
  .founder-strip-right { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .problems-section, .proof-strip, .cases-section, .how-section, .service-detail, .outputs-section, .founder-strip {
    padding-left: 1.5rem; padding-right: 1.5rem;
  }
  .proof-strip { padding: 0 1.5rem 3.5rem; }
  .proof-strip-inner { padding: 2rem 1.5rem; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .outputs-grid { grid-template-columns: 1fr; }
  .founder-strip-right { grid-template-columns: 1fr; }
}

/* ── Services overview: clickable cards that jump ── */
.service-card.is-clickable {
  position: relative;
  cursor: pointer;
}
.service-card.is-clickable:hover {
  background: var(--navy-light);
  box-shadow: inset 0 0 0 1.5px var(--navy);
}
/* Stretched link makes the whole card clickable */
.service-card-stretched {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 0;
}
/* Visible "View details" affordance (visual only) */
.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1.25rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  position: relative;
  z-index: 2;
  pointer-events: none;
  transition: gap 0.2s;
}
.service-card-cta svg { width: 13px; height: 13px; }
.service-card.is-clickable:hover .service-card-cta { gap: 9px; }

/* ── Clearer clickable affordances (global) ── */
a.case-card,
.case-card.is-clickable,
.training-card.is-clickable,
.principle-card.is-clickable,
.prod-item.is-clickable,
.product-item.is-clickable {
  position: relative;
  cursor: pointer;
}
a.case-card::after,
.case-card.is-clickable::after,
.training-card.is-clickable::after,
.principle-card.is-clickable::after {
  content: 'Open →';
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
}
a.case-card:hover::after,
.case-card.is-clickable:hover::after,
.training-card.is-clickable:hover::after,
.principle-card.is-clickable:hover::after {
  opacity: 1;
  transform: translateY(0);
}
a.case-card:hover,
.case-card.is-clickable:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 26px rgba(27,58,107,0.12);
  transform: translateY(-3px);
}
.training-card.is-clickable:hover {
  border-color: var(--navy);
  box-shadow: 0 8px 26px rgba(27,58,107,0.12);
  transform: translateY(-3px);
}
.principle-card.is-clickable:hover {
  background: var(--navy-light);
  box-shadow: inset 0 0 0 1.5px var(--navy);
}
.prod-item.is-clickable:hover { padding-left: 10px; }
.prod-item.is-clickable .prod-arrow {
  color: var(--navy);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.prod-item.is-clickable:hover .prod-arrow {
  opacity: 1;
  transform: translateX(0);
}
.product-item.is-clickable::after {
  content: 'Open →';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0;
  transition: opacity 0.2s;
}
.product-item.is-clickable:hover::after { opacity: 1; }

/* ── Products-page quick navigation ── */
.product-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: sticky;
    top: 68px;
    z-index: 50;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 24px;
    background: var(--navy-dark);
      height: auto;
    max-height: none;
}

.product-nav-label {
    margin-right: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.product-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.product-nav-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--amber);
    transform: translateY(-1px);
}

.product-nav-btn svg {
    width: 13px;
    height: 13px;
    opacity: .7;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .product-nav {
        top: 60px;
        padding: 16px;
    }

    .product-nav-label {
        display: none;
    }

    .product-nav-btn {
        flex: 1 1 calc(50% - 10px);
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .product-nav-btn {
        flex: 1 1 100%;
    }
}
/* ── Footer social links ── */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-social-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-right: 0.3rem;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.social-icon:hover {
  background: rgba(255,255,255,0.14);
  border-color: var(--amber);
  color: var(--white);
  transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon.on-light {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
}
.social-icon.on-light:hover {
  background: var(--navy-light);
  border-color: var(--navy);
  color: var(--navy);
}
/* Contact page social row */
.contact-social { margin-top: 0.25rem; }
.contact-social .footer-social { gap: 0.5rem; }

/* ── Anonymous feedback affordances ── */
.btn-feedback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 20px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--amber);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s, gap 0.2s;
}
.btn-feedback:hover {
  background: var(--amber);
  color: var(--white);
  transform: translateY(-1px);
  gap: 12px;
}
.btn-feedback svg { width: 15px; height: 15px; }
.btn-feedback.on-navy {
  color: var(--white);
  border-color: rgba(232,168,62,0.7);
  background: rgba(232,168,62,0.08);
}
.btn-feedback.on-navy:hover {
  background: var(--amber);
  color: var(--ink);
}
.feedback-note {
  background: var(--amber-light);
  border: 1px solid rgba(232,168,62,0.45);
  border-radius: 12px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feedback-note-icon {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid rgba(232,168,62,0.4);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.feedback-note-icon svg { width: 20px; height: 20px; }
.feedback-note-text { flex: 1; }
.feedback-note-title {
  font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 0.35rem;
}
.feedback-note-desc {
  font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.7;
  margin-bottom: 0.85rem;
}
.footer-feedback {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.footer-feedback:hover { color: var(--amber); gap: 10px; }
.footer-feedback svg { width: 13px; height: 13px; }

/* ── Footer ABN ── */
.footer-abn {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  margin-left: 0.5rem;
}
.footer-bottom { flex-wrap: wrap; row-gap: 0.75rem; }

/* ── PayPal donation button: keep mark balanced ── */
.btn-link-secondary .paypal-mark { width: auto; height: 15px; }

/* ── Optional classroom photo strip (pattern: ozleap/classroom-strip) ── */
.classroom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.classroom-shot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.25s, transform 0.2s;
}
.classroom-shot:hover {
  box-shadow: 0 10px 30px rgba(27,58,107,0.12);
  transform: translateY(-3px);
}
.classroom-shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--mist);
}
.classroom-shot figcaption {
  padding: 0.85rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
@media (max-width: 768px) {
  .classroom-grid { grid-template-columns: 1fr; }
  .classroom-shot img { height: 200px; }
}

/* Responsive: footer-bottom now carries more items */
.footer-bottom-left { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom-right { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
@media (max-width: 768px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-social, .footer-feedback { justify-content: center; }
  .footer-bottom-left, .footer-bottom-right { justify-content: center; }
}
