/* ===========================================================
   NAVIFAIR — shared styles
   Brand: navy #1B2A4A + beige/cream. Headings: Fraunces. Body: Inter.
   =========================================================== */

:root {
  --navy: #1B2A4A;
  --navy-grey: #5B6478;
  --cream: #FBF6EC;
  --beige: #E7DAC1;
  --sand: #D8C5A0;
  --gold: #C2A14D;
  --white: #FFFFFF;

  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 18px 40px -24px rgba(27, 42, 74, 0.45);
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: -0.3px; }
h3 { font-size: 1.25rem; }
p { color: var(--navy-grey); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 88px 0; }
.section--cream { background: var(--cream); }
.section--beige { background: var(--beige); }
.section--navy { background: var(--navy); }
.section--navy h2, .section--navy h3 { color: var(--cream); }
.section--navy p { color: rgba(251, 246, 236, 0.82); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--beige);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section--navy .eyebrow { background: rgba(251,246,236,0.14); color: var(--cream); }

.lead { font-size: 1.12rem; max-width: 56ch; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--navy); transition: transform .15s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--navy); color: var(--cream); }
.btn-primary:hover { background: #142035; }
.btn-outline { background: transparent; color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.btn-light:hover { background: var(--beige); border-color: var(--beige); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(251,246,236,0.6); }
.btn-ghost-light:hover { background: rgba(251,246,236,0.12); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 236, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 600; font-size: 1.15rem; letter-spacing: 2.5px; color: var(--navy); }
.logo-mark { height: 32px; width: auto; display: block; }
.logo-chip { background: var(--cream); border-radius: 8px; padding: 5px; display: inline-flex; }
.logo-chip img { height: 24px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: var(--navy); }
.nav-links a:hover { color: var(--navy-grey); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .2s; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 70px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; font-size: 1.18rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note { margin-top: 18px; font-size: 0.9rem; color: var(--navy-grey); }

/* phone mockup */
.phone {
  width: 280px; max-width: 100%; margin: 0 auto; aspect-ratio: 9 / 18.5;
  background: var(--navy); border-radius: 38px; padding: 14px;
  box-shadow: var(--shadow); position: relative;
}
.phone::before { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 90px; height: 7px; background: rgba(251,246,236,0.3); border-radius: 999px; }
.phone-screen { width: 100%; height: 100%; background: var(--cream); border-radius: 26px; overflow: hidden; }

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

.card {
  background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius);
  padding: 28px; height: 100%;
}
.section--beige .card { background: var(--white); border-color: rgba(0,0,0,0.05); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; }
.card .icon { width: 42px; height: 42px; margin-bottom: 16px; color: var(--navy); }
.card .icon svg { width: 100%; height: 100%; }

/* problem row */
.points { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 36px; }
.point { padding: 22px; border-left: 3px solid var(--sand); }
.point strong { color: var(--navy); }

/* steps */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step { position: relative; padding-top: 18px; }
.step .num {
  font-family: var(--font-head); font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 12px; display:block;
}

/* about / split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* mini map illustration */
.mini-map { width: 100%; height: 100%; display: block; }

/* ---------- About list ---------- */
.checklist { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--navy-grey); }
.checklist svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin: 0 auto 28px; max-width: 52ch; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: var(--cream); padding: 60px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer .logo { color: var(--cream); }
.footer p, .footer a { color: rgba(251,246,236,0.78); font-size: 0.95rem; }
.footer a:hover { color: var(--cream); }
.footer h4 { font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; color: var(--cream); }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(251,246,236,0.18); display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: rgba(251,246,236,0.6); }

/* ---------- Contact ---------- */
.contact-head { text-align: center; padding: 70px 0 10px; }
.tabs { display: flex; gap: 10px; justify-content: center; margin: 34px 0 30px; flex-wrap: wrap; }
.tab {
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--sand);
  background: transparent; color: var(--navy); cursor: pointer; transition: .2s;
}
.tab.active { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.form-card {
  max-width: 640px; margin: 0 auto; background: var(--cream);
  border: 1px solid var(--sand); border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 1.6rem; margin-bottom: 6px; }
.form-card .sub { margin-bottom: 24px; font-size: 0.97rem; }
.form-panel { display: none; }
.form-panel.active { display: block; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 7px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 1rem;
  color: var(--navy); background: var(--white);
  border: 1px solid var(--sand); border-radius: 10px; outline: none; transition: border .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy); }
.field textarea { min-height: 120px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn { width: 100%; margin-top: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3, .steps, .points { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 18px;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--cream); padding: 24px; border-bottom: 1px solid var(--sand);
  }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-cta .btn { padding: 10px 18px; font-size: 0.9rem; }
}

/* ===========================================================
   Extra components: reveal, about/team, sustainability, contact info
   =========================================================== */

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* sub-page hero */
.page-hero { padding: 76px 0 24px; text-align: center; }
.page-hero .lead { margin: 16px auto 0; }

/* About — founder bio */
.bio { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: start; }
.bio-photo { position: relative; background: var(--beige); border: 1px solid var(--sand); border-radius: var(--radius); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.bio-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.bio-photo .ph { font-family: var(--font-head); font-size: 3.4rem; color: var(--navy); letter-spacing: 2px; }
.bio .role { color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: 0.8rem; background: var(--beige); color: var(--navy); padding: 6px 12px; border-radius: 999px; }
.bio-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 30px; }
.bio-cols h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; color: var(--navy-grey); margin-bottom: 12px; }
.bio-cols ul { list-style: none; display: grid; gap: 9px; }
.bio-cols li { font-size: 0.95rem; color: var(--navy-grey); padding-left: 16px; position: relative; }
.bio-cols li::before { content: ""; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 999px; background: var(--gold); }
.bio-cols b { color: var(--navy); font-weight: 600; }

/* About — team grid */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.member { text-align: center; }
.avatar { position: relative; width: 116px; height: 116px; border-radius: 999px; margin: 0 auto 16px; background: var(--navy); color: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2rem; overflow: hidden; border: 3px solid var(--sand); }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member h3 { font-size: 1.08rem; margin-bottom: 4px; }
.member .role { font-size: 0.88rem; color: var(--gold); font-weight: 600; margin: 0; }

/* Sustainability calculator */
.calc { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.calc-controls label { font-weight: 600; color: var(--navy); display: block; margin-bottom: 10px; }
.calc-controls input[type=range] { width: 100%; accent-color: var(--navy); height: 6px; }
.calc-visitors { font-family: var(--font-head); font-size: 2.6rem; color: var(--navy); line-height: 1; }
.calc-visitors small { font-family: var(--font-body); font-size: 0.95rem; color: var(--navy-grey); font-weight: 500; }
.calc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.stat { background: var(--cream); border: 1px solid var(--sand); border-radius: var(--radius); padding: 18px 14px; text-align: center; }
.stat .n { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy); display: block; }
.stat .l { font-size: 0.74rem; color: var(--navy-grey); text-transform: uppercase; letter-spacing: 0.5px; }
.forest { background: linear-gradient(180deg, #ffffff, var(--beige)); border: 1px solid var(--sand); border-radius: var(--radius); padding: 18px; min-height: 300px; display: flex; flex-wrap: wrap; gap: 6px; align-content: flex-end; justify-content: center; }
.forest .tree { width: 26px; height: 30px; color: #2f6b3f; opacity: 0; transform: translateY(8px) scale(.5); transition: .45s ease; }
.forest .tree.show { opacity: 1; transform: none; }
.assump { font-size: 0.82rem; color: var(--navy-grey); margin-top: 16px; }

/* Contact info cards */
.contact-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 880px; margin: 0 auto 8px; }
.info-card { text-align: center; padding: 24px; border: 1px solid var(--sand); border-radius: var(--radius); background: var(--cream); }
.info-card .icon { width: 34px; height: 34px; margin: 0 auto 12px; color: var(--navy); }
.info-card .icon svg { width: 100%; height: 100%; }
.info-card a, .info-card p { color: var(--navy); font-weight: 500; font-size: 0.98rem; }
.info-card span.l { display: block; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1px; color: var(--navy-grey); margin-bottom: 6px; }

@media (max-width: 900px) {
  .bio { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .calc { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .bio-cols { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .team { grid-template-columns: 1fr; }
  .calc-stats { grid-template-columns: 1fr; }
}

/* ===========================================================
   Platform positioning: metrics, roles, comparison
   =========================================================== */

/* market metrics band */
.metrics { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; text-align: center; margin-top: 10px; }
.metric .n { font-family: var(--font-head); font-size: clamp(1.5rem, 2.6vw, 2.3rem); line-height: 1; display: block; color: var(--navy); }
.metric .l { font-size: 0.78rem; letter-spacing: 0.3px; margin-top: 6px; color: var(--navy-grey); }
.section--navy .metric .n { color: var(--cream); }
.section--navy .metric .l { color: rgba(251, 246, 236, 0.72); }

/* five roles */
.roles { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.role { text-align: center; padding: 26px 14px; border: 1px solid var(--sand); border-radius: var(--radius); background: var(--cream); }
.section--beige .role { background: var(--white); }
.role .icon { width: 34px; height: 34px; margin: 0 auto 12px; color: var(--navy); }
.role .icon svg { width: 100%; height: 100%; }
.role h3 { font-size: 1rem; margin-bottom: 6px; }
.role p { font-size: 0.86rem; }

/* comparison: old way vs NAVIFAIR */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare .col { border-radius: var(--radius); padding: 32px; border: 1px solid var(--sand); }
.compare .old { background: var(--cream); }
.compare .new { background: var(--navy); border-color: var(--navy); }
.compare .new h3 { color: var(--cream); }
.compare .tag-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; display: block; color: var(--navy-grey); }
.compare .new .tag-label { color: var(--sand); }
.compare h3 { margin-bottom: 16px; }
.compare ul { list-style: none; display: grid; gap: 11px; }
.compare li { padding-left: 28px; position: relative; font-size: 0.96rem; color: var(--navy-grey); }
.compare .old li::before { content: "\00d7"; position: absolute; left: 0; top: -1px; color: #b4441f; font-weight: 700; font-size: 1.1rem; }
.compare .new li { color: rgba(251, 246, 236, 0.92); }
.compare .new li::before { content: "\2713"; position: absolute; left: 0; color: #7fcf9b; font-weight: 700; }

@media (max-width: 900px) {
  .metrics { grid-template-columns: repeat(3, 1fr); row-gap: 26px; }
  .roles { grid-template-columns: repeat(2, 1fr); }
  .compare { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .roles { grid-template-columns: 1fr; }
}

/* FIX: cards inside navy sections must keep dark text on their light card background */
.section--navy .card h3 { color: var(--navy); }
.section--navy .card p { color: var(--navy-grey); }
.section--navy .card .icon { color: var(--navy); }

/* Home — team teaser row */
.team-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 30px 0 26px; }
.team-row .avatar { width: 84px; height: 84px; font-size: 1.5rem; margin: 0; }

/* team grid when only two members */
.team--two { grid-template-columns: repeat(2, minmax(0, 260px)); justify-content: center; }
@media (max-width: 640px) { .team--two { grid-template-columns: 1fr; } }

/* ===========================================================
   Interactive in-page app demo
   =========================================================== */
.demo-phone { width: 322px; max-width: 100%; margin: 0 auto; background: var(--navy); border: 2px solid var(--sand); border-radius: 42px; padding: 14px; box-shadow: 0 28px 60px -18px rgba(0,0,0,0.6), 0 0 0 8px rgba(216,197,160,0.12); position: relative; }
.demo-phone::before { content: ""; position: absolute; top: 24px; left: 50%; transform: translateX(-50%); width: 80px; height: 6px; background: rgba(251,246,236,0.3); border-radius: 999px; z-index: 3; }
.demo-screen-wrap { background: var(--cream); border-radius: 30px; overflow: hidden; height: 560px; display: flex; flex-direction: column; }
.demo-topbar { background: var(--navy); color: var(--cream); padding: 22px 16px 14px; font-weight: 600; font-size: 0.92rem; }
.demo-body { position: relative; flex: 1; }
.demo-screen { position: absolute; inset: 0; padding: 14px; overflow-y: auto; opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.demo-screen.active { opacity: 1; transform: none; pointer-events: auto; }
.demo-tabs { display: flex; background: #fff; border-top: 1px solid var(--sand); }
.demo-tab { flex: 1; border: 0; background: none; padding: 10px 2px; cursor: pointer; color: var(--navy-grey); font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.demo-tab svg { width: 20px; height: 20px; }
.demo-tab.active { color: var(--navy); }

/* demo UI atoms */
.d-h { font-weight: 600; color: var(--navy); margin-bottom: 10px; font-size: 0.9rem; }
.d-row { display: flex; gap: 10px; align-items: center; background: #fff; border: 1px solid var(--sand); border-radius: 12px; padding: 10px; margin-bottom: 8px; }
.d-ava { width: 36px; height: 36px; border-radius: 999px; background: var(--navy); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 0.74rem; font-weight: 600; flex: 0 0 auto; }
.d-row .t, .d-post .t { font-size: 0.8rem; color: var(--navy); font-weight: 600; }
.d-row .s, .d-post .s { font-size: 0.68rem; color: var(--navy-grey); }
.d-badge { margin-left: auto; background: var(--beige); color: var(--navy); border-radius: 999px; padding: 3px 9px; font-size: 0.7rem; font-weight: 700; }
.d-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.d-chip { background: var(--beige); color: var(--navy); border-radius: 999px; padding: 4px 10px; font-size: 0.66rem; font-weight: 600; }
.d-bubble { max-width: 84%; padding: 9px 12px; border-radius: 14px; font-size: 0.76rem; margin-bottom: 8px; line-height: 1.4; }
.d-bubble.ai { background: #fff; border: 1px solid var(--sand); color: var(--navy); border-bottom-left-radius: 4px; }
.d-bubble.me { background: var(--navy); color: var(--cream); margin-left: auto; border-bottom-right-radius: 4px; }
.d-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.d-kpi { background: #fff; border: 1px solid var(--sand); border-radius: 12px; padding: 10px 6px; text-align: center; }
.d-kpi .n { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); display: block; }
.d-kpi .l { font-size: 0.56rem; color: var(--navy-grey); text-transform: uppercase; letter-spacing: 0.4px; }
.d-bars { display: flex; align-items: flex-end; gap: 7px; height: 96px; padding: 12px; background: #fff; border: 1px solid var(--sand); border-radius: 12px; }
.d-bar { flex: 1; background: var(--navy); border-radius: 5px 5px 0 0; }
.d-bar.peak { background: var(--gold); }
.d-map { background: #fff; border: 1px solid var(--sand); border-radius: 12px; overflow: hidden; }
.d-post { background: #fff; border: 1px solid var(--sand); border-radius: 12px; padding: 12px; margin-bottom: 10px; }
.d-post .meta { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.d-post p { font-size: 0.78rem; color: var(--navy); }
.d-post .act { display: flex; gap: 14px; margin-top: 8px; font-size: 0.68rem; color: var(--navy-grey); }
.d-btn { display: block; text-align: center; background: var(--navy); color: var(--cream); border-radius: 999px; padding: 11px; font-size: 0.78rem; font-weight: 600; margin-top: 4px; }

/* ===========================================================
   Sustainability world map
   =========================================================== */
.worldmap-wrap { background: linear-gradient(180deg, #ffffff, var(--beige)); border: 1px solid var(--sand); border-radius: var(--radius); padding: 16px; }
#worldmap { width: 100%; height: auto; display: block; }
.wm-tree { fill: #2f6b3f; transform-box: fill-box; transform-origin: center bottom; animation: wmpop .45s ease backwards; }
@keyframes wmpop { from { opacity: 0; transform: scale(.2); } to { opacity: 1; transform: scale(1); } }
