/* ============================================================
   CAMZOID LIMITED — Global Stylesheet
   Affordable. Solar-Integrated. African-Built.
   Brand: Navy #0A1628 · Deep Green #1A6B3C · Accent Green #4CAF50
   ============================================================ */

:root {
  --navy: #0A1628;
  --navy-2: #0e2036;
  --navy-3: #13304f;
  --green-deep: #1A6B3C;
  --green: #4CAF50;
  --green-bright: #5ED674;
  --solar: #F5B731;       /* solar gold accent */
  --solar-soft: #ffd874;
  --ink: #0d1b2a;
  --slate: #51637a;
  --mist: #8499b0;
  --line: #e4ebf2;
  --paper: #ffffff;
  --paper-2: #f6f9fb;
  --paper-3: #eef4f8;
  --white: #ffffff;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(10,22,40,.06);
  --shadow: 0 18px 50px rgba(10,22,40,.10);
  --shadow-lg: 0 40px 90px rgba(10,22,40,.18);
  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --display: "Sora", "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
section { position: relative; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--slate); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep);
  background: rgba(76,175,80,.10); padding: 7px 15px; border-radius: 100px;
  border: 1px solid rgba(76,175,80,.22);
}
.eyebrow.light { color: var(--green-bright); background: rgba(94,214,116,.12); border-color: rgba(94,214,116,.28); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--slate); max-width: 62ch; }
.section-head { max-width: 720px; margin: 0 auto 56px; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all .35s var(--ease);
  white-space: nowrap; position: relative;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); color: #fff; box-shadow: 0 12px 28px rgba(26,107,60,.32); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(26,107,60,.42); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.5); transform: translateY(-3px); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-3); transform: translateY(-3px); }
.btn-outline { background: #fff; border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--green); color: var(--green-deep); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all .4s var(--ease); padding: 16px 0;
}
.site-header .nav {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,22,40,.55); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08); border-radius: 100px;
  padding: 10px 12px 10px 22px;
}
.site-header.scrolled { padding: 10px 0; }
.site-header.scrolled .nav { background: rgba(255,255,255,.86); border-color: var(--line); box-shadow: var(--shadow-sm); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: #fff; letter-spacing: -.02em; }
.site-header.scrolled .brand { color: var(--ink); }
.brand .logo-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--display); font-weight: 500; font-size: .94rem;
  color: rgba(255,255,255,.82); padding: 9px 15px; border-radius: 100px;
  transition: all .25s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }
.site-header.scrolled .nav-links a { color: var(--slate); }
.site-header.scrolled .nav-links a:hover, .site-header.scrolled .nav-links a.active { color: var(--green-deep); background: rgba(76,175,80,.10); }
.nav-buttons { display: flex; align-items: center; gap: 10px; }
.nav-buttons .btn { padding: 10px 18px; font-size: .9rem; }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; border-radius: 12px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px auto; border-radius: 2px; transition: all .3s var(--ease); }
.site-header.scrolled .nav-toggle span { background: var(--ink); }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-buttons { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 720px) {
  .access-cards { grid-template-columns: 1fr; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999; background: var(--navy);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: all .4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--display); font-weight: 600; font-size: 1.6rem; color: #fff; padding: 12px; }
.mobile-menu a:hover { color: var(--green-bright); }
.mobile-menu .btn { margin-top: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 170px 0 90px;
  background:
    radial-gradient(1100px 600px at 78% -8%, rgba(76,175,80,.20), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(245,183,49,.12), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #0c2742 100%);
  color: #fff; overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5; pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--green-bright), var(--solar)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: rgba(255,255,255,.78); font-size: 1.12rem; max-width: 54ch; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 30px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .stat strong { font-family: var(--display); font-size: 1.9rem; color: #fff; display: block; line-height: 1; }
.hero-stats .stat span { font-size: .85rem; color: rgba(255,255,255,.6); }
.hero-art { position: relative; }
.hero-badges { position: absolute; inset: 0; pointer-events: none; }
.float-badge {
  position: absolute; background: rgba(255,255,255,.10); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px; font-size: .82rem; color: #fff; font-weight: 600;
  font-family: var(--display); box-shadow: var(--shadow);
}
.float-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(94,214,116,.25); }
.fb-1 { top: 8%; left: -4%; animation: floaty 6s ease-in-out infinite; }
.fb-2 { bottom: 14%; right: -2%; animation: floaty 7s ease-in-out infinite .8s; }
.fb-3 { bottom: -2%; left: 12%; animation: floaty 6.5s ease-in-out infinite .4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.marquee-strip { background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 18px 0; }
.marquee { display: flex; gap: 56px; white-space: nowrap; animation: marquee 26s linear infinite; width: max-content; }
.marquee span { font-family: var(--display); font-weight: 600; color: rgba(255,255,255,.45); font-size: .95rem; display: inline-flex; align-items: center; gap: 12px; }
.marquee span::before { content: "◆"; color: var(--green); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(76,175,80,.4); }
.card .icon-box {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(76,175,80,.14), rgba(26,107,60,.10)); margin-bottom: 20px;
}
.card .icon-box svg { width: 28px; height: 28px; color: var(--green-deep); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .96rem; }
.card .card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--display); font-weight: 600; font-size: .92rem; color: var(--green-deep); }
.card .card-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* feature chips (icon + text rows) */
.feature-row { display: flex; gap: 16px; align-items: flex-start; }
.feature-row .fi { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; background: rgba(76,175,80,.12); color: var(--green-deep); }
.feature-row .fi svg { width: 24px; height: 24px; }
.feature-row h4 { font-family: var(--display); font-size: 1.05rem; margin-bottom: 4px; }
.feature-row p { font-size: .92rem; }

/* ---------- Stream / pricing cards ---------- */
.stream-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: all .4s var(--ease); display: flex; flex-direction: column; }
.stream-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.stream-head { padding: 28px 30px; color: #fff; position: relative; overflow: hidden; }
.stream-head.two { background: linear-gradient(135deg, var(--green-deep), #134d2b); }
.stream-head.four { background: linear-gradient(135deg, var(--navy-3), var(--navy)); }
.stream-head h3 { color: #fff; position: relative; z-index: 2; }
.stream-head .tag { font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .8; position: relative; z-index: 2; }
.stream-body { padding: 26px 30px 30px; flex: 1; display: flex; flex-direction: column; }
.price-row { display: flex; align-items: baseline; gap: 8px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.price-row:last-of-type { border-bottom: 0; }
.price-row .pl { font-family: var(--display); font-weight: 600; color: var(--ink); }
.price-row .pp { margin-left: auto; font-family: var(--display); font-weight: 700; color: var(--green-deep); }
.price-row .pt { font-size: .82rem; color: var(--mist); display: block; }
.tier-list { display: grid; gap: 0; }
.note { font-size: .82rem; color: var(--mist); margin-top: auto; padding-top: 18px; }

/* ---------- Systems (proprietary) ---------- */
.systems { background: var(--navy); color: #fff; overflow: hidden; }
.systems::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 400px at 90% 0, rgba(76,175,80,.16), transparent 60%); }
.systems .container { position: relative; z-index: 2; }
.systems h2, .systems h3 { color: #fff; }
.systems .lead { color: rgba(255,255,255,.72); }
.system-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding: 30px; transition: all .4s var(--ease); }
.system-card:hover { background: rgba(255,255,255,.07); border-color: rgba(94,214,116,.4); transform: translateY(-6px); }
.system-card .icon-box { background: rgba(76,175,80,.16); }
.system-card .icon-box svg { color: var(--green-bright); }
.system-card p { color: rgba(255,255,255,.68); }
.system-card .specs { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.system-card .specs .chip { font-size: .76rem; font-family: var(--display); font-weight: 500; color: rgba(255,255,255,.85); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); padding: 5px 11px; border-radius: 100px; }
.validation-note { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--solar-soft); background: rgba(245,183,49,.10); border: 1px solid rgba(245,183,49,.25); padding: 8px 15px; border-radius: 100px; margin-top: 22px; }

/* ---------- Quote calculator ---------- */
.calc-wrap { background: linear-gradient(150deg, var(--paper-2), #fff); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.calc-grid { display: grid; grid-template-columns: 1fr .9fr; }
.calc-form { padding: clamp(28px, 4vw, 48px); }
.calc-result { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }
.field { margin-bottom: 22px; }
.field label { display: block; font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 9px; }
.field select, .field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .98rem; color: var(--ink); background: #fff; transition: all .25s var(--ease);
}
.field select:focus, .field input:focus, .field textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(76,175,80,.14); }
.field textarea { resize: vertical; min-height: 120px; }
.range-head { display: flex; justify-content: space-between; align-items: baseline; }
.range-head .val { font-family: var(--display); font-weight: 700; color: var(--green-deep); }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 100px; background: var(--paper-3); margin-top: 12px; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; box-shadow: 0 2px 8px rgba(26,107,60,.4); border: 3px solid #fff; }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--green); cursor: pointer; border: 3px solid #fff; }
.seg { display: flex; gap: 8px; flex-wrap: wrap; }
.seg button { flex: 1; min-width: 90px; padding: 11px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); font-family: var(--display); font-weight: 600; font-size: .9rem; color: var(--slate); cursor: pointer; transition: all .25s var(--ease); }
.seg button.active { background: rgba(76,175,80,.12); border-color: var(--green); color: var(--green-deep); }
.result-label { font-size: .85rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }
.result-amount { font-family: var(--display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: #fff; margin: 6px 0; line-height: 1; }
.result-amount .ngn { display: block; font-size: 1.05rem; color: var(--green-bright); font-weight: 600; margin-top: 8px; }
.result-meta { font-size: .85rem; color: rgba(255,255,255,.6); margin: 18px 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.result-bars { margin: 16px 0; }
.result-bars .rb { margin-bottom: 12px; }
.result-bars .rb-top { display: flex; justify-content: space-between; font-size: .82rem; color: rgba(255,255,255,.78); margin-bottom: 5px; }
.result-bars .rb-track { height: 7px; background: rgba(255,255,255,.10); border-radius: 100px; overflow: hidden; }
.result-bars .rb-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--green), var(--green-bright)); transition: width .6s var(--ease); }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--green-deep), #0f4527); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 70px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 80% 120%, rgba(245,183,49,.25), transparent 60%); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 52ch; margin: 0 auto 28px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-tile { text-align: center; padding: 30px 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.stat-tile strong { font-family: var(--display); font-size: clamp(2rem,3.4vw,2.8rem); color: var(--green-deep); display: block; line-height: 1; }
.stat-tile span { font-size: .9rem; color: var(--slate); margin-top: 8px; display: block; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--ink); font-weight: 500; }
.check-list li svg { width: 22px; height: 22px; flex: 0 0 auto; color: var(--green); margin-top: 2px; }
.check-list li span { color: var(--slate); font-weight: 400; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 150px 0 70px; background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; inset:0; background: radial-gradient(800px 400px at 50% -20%, rgba(76,175,80,.20), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.76); max-width: 60ch; margin: 16px auto 0; }
.breadcrumb { display: inline-flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--green-bright); }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 0; }
.tl-item { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--line); }
.tl-item:first-child { border-top: 0; }
.tl-phase { font-family: var(--display); font-weight: 700; color: var(--green-deep); }
.tl-phase .ph { display: block; font-size: .78rem; color: var(--mist); font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.tl-body h4 { font-family: var(--display); margin-bottom: 6px; }
.tl-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tl-tags .chip { font-size: .78rem; background: var(--paper-3); color: var(--slate); padding: 5px 11px; border-radius: 100px; }
.tl-item.now .tl-phase { color: var(--green); }
.tl-item.now { background: linear-gradient(90deg, rgba(76,175,80,.06), transparent); border-radius: var(--radius); }

/* ---------- Team ---------- */
.team-card { text-align: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 26px; transition: all .4s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar { width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; background: linear-gradient(160deg, var(--paper-3), #dbe7ee); box-shadow: inset 0 0 0 4px #fff, var(--shadow-sm); }
.team-card h3 { font-size: 1.25rem; }
.team-role { font-family: var(--display); font-weight: 600; color: var(--green-deep); font-size: .92rem; margin: 4px 0 12px; }
.team-card p { font-size: .92rem; }
.team-tags { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: 16px; }
.team-tags .chip { font-size: .76rem; background: var(--paper-3); color: var(--slate); padding: 5px 11px; border-radius: 100px; }

/* ---------- Community ---------- */
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.community-feature { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.event-card { display: grid; grid-template-columns: 84px 1fr; gap: 20px; align-items: center; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; transition: all .3s var(--ease); }
.event-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(76,175,80,.4); }
.event-date { text-align: center; background: linear-gradient(160deg, var(--green-deep), #134d2b); color: #fff; border-radius: 14px; padding: 12px 8px; }
.event-date .d { font-family: var(--display); font-weight: 800; font-size: 1.6rem; line-height: 1; }
.event-date .m { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.event-card h4 { font-family: var(--display); margin-bottom: 4px; }
.event-card .meta { font-size: .85rem; color: var(--mist); }
.testimonial { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.testimonial .quote { font-size: 1.02rem; color: var(--ink); font-style: italic; line-height: 1.7; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial .who .av { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex: 0 0 auto; }
.testimonial .who strong { font-family: var(--display); font-size: .92rem; display: block; }
.testimonial .who span { font-size: .82rem; color: var(--mist); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
.contact-info-card { background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { color: #fff; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
.cinfo:last-child { border-bottom: 0; }
.cinfo .ci-icon { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 13px; display: grid; place-items: center; background: rgba(76,175,80,.18); color: var(--green-bright); }
.cinfo .ci-icon svg { width: 22px; height: 22px; }
.cinfo h4 { font-family: var(--display); font-size: .92rem; color: rgba(255,255,255,.6); font-weight: 500; margin-bottom: 3px; }
.cinfo a, .cinfo p { color: #fff; font-weight: 500; font-size: .98rem; }
.cinfo a:hover { color: var(--green-bright); }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; transition: all .3s var(--ease); }
.social-row a:hover { background: var(--green); transform: translateY(-3px); }
.social-row a svg { width: 20px; height: 20px; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-msg { padding: 14px 18px; border-radius: var(--radius-sm); font-weight: 500; font-size: .92rem; margin-top: 16px; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: rgba(76,175,80,.12); color: var(--green-deep); border: 1px solid rgba(76,175,80,.3); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%; background: rgba(76,175,80,.12); color: var(--green-deep); display: grid; place-items: center; transition: all .3s var(--ease); font-size: 1.2rem; }
.faq-item.open .faq-q .pm { background: var(--green); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding-bottom: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.10); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer p { color: rgba(255,255,255,.6); font-size: .92rem; }
.footer-col h4 { font-family: var(--display); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(255,255,255,.7); font-size: .94rem; padding: 6px 0; transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--green-bright); }
.footer-newsletter input { width: 100%; padding: 12px 15px; border-radius: 100px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font-family: var(--font); margin-bottom: 10px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.45); }
.footer-newsletter input:focus { outline: none; border-color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { font-size: .85rem; }
.footer-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-pills span { font-size: .76rem; color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); padding: 6px 13px; border-radius: 100px; border: 1px solid rgba(255,255,255,.1); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .calc-grid, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .hero-art { max-width: 460px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-band, .impact-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2, .stats-band, .impact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
  .event-card { grid-template-columns: 70px 1fr; }
}
