/* =====================================================================
   Future Pathways — Design System
   Modern EdTech / B2B SaaS · clinical, structured, conversion-focused
   Card-based, modular, negative-space led. Zero external dependencies
   beyond the (optional) Google Fonts link in the header.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — aligned to Future Pathways logo */
  --ink:        #143A5A;   /* deep navy — trust, corporate-credible base */
  --ink-700:    #1B4A72;
  --ink-050:    #EAF0F5;
  --amber:      #F4A93A;   /* gold — energy, optimism, possibility */
  --amber-600:  #E0952A;
  --amber-050:  #FDF3E1;
  --green:      #2BA67A;   /* deep teal — growth, pathways */
  --green-050:  #E4F4EE;
  --sage:       #55897B;   /* secondary teal accent */
  --gold-ink:   #8A6410;   /* AA-contrast gold for text on light backgrounds */

  /* Neutrals */
  --paper:      #F7F6F2;   /* off-white page base */
  --white:      #FFFFFF;
  --charcoal:   #1F2933;   /* body text */
  --slate:      #52606D;   /* secondary text */
  --line:       #E4E7EB;   /* hairline borders */
  --line-soft:  #EEF0F2;

  /* Type */
  --font-display: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm & shape */
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --shadow-sm:   0 1px 2px rgba(20,58,90,.06), 0 1px 3px rgba(20,58,90,.05);
  --shadow-md:   0 4px 16px rgba(20,58,90,.08), 0 2px 6px rgba(20,58,90,.05);
  --shadow-lg:   0 18px 48px rgba(20,58,90,.14);
  --maxw:        1160px;
  --gap:         clamp(1rem, 2.5vw, 2rem);
  --section-y:   clamp(3.5rem, 8vw, 7rem);
  --ease:        cubic-bezier(.4, 0, .2, 1);
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -.01em; }
h4 { font-size: 1.02rem; letter-spacing: 0; }
p { color: var(--slate); }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--slate); line-height: 1.55; }
strong { color: var(--charcoal); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--green); border-radius: 2px; }
.eyebrow.amber { color: var(--gold-ink); } .eyebrow.amber::before { background: var(--amber); }
/* On dark backgrounds, restore the bright gold for contrast */
.ctaband .eyebrow.amber, .section--ink .eyebrow.amber { color: var(--amber); }
.eyebrow.ink   { color: var(--ink-700); }   .eyebrow.ink::before   { background: var(--ink-700); }

/* ---------- Layout primitives ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--ink   { background: var(--ink); color: #C9D6E2; }
.section--ink h2, .section--ink h3 { color: #fff; }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure.center { margin-inline: auto; }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .lead { margin-top: 1rem; }

/* Grid utilities (modular, card-based) */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.5rem; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .15s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--amber); color: var(--ink); box-shadow: 0 6px 18px rgba(244,169,58,.35); }
.btn--primary:hover { background: var(--amber-600); box-shadow: 0 10px 26px rgba(244,169,58,.45); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-700); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--white); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: #24916b; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn-row.center { justify-content: center; }
.textlink { color: var(--ink); font-weight: 600; font-family: var(--font-display); display: inline-flex; align-items: center; gap: .35rem; }
.textlink::after { content: "→"; transition: transform .2s var(--ease); }
.textlink:hover::after { transform: translateX(4px); }
.textlink.light { color: #fff; }

/* ---------- Cards ---------- */
.card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  height: 100%;
}
.card--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--ink-050); }
.card__num { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--amber-600);
  letter-spacing: .05em; display: block; margin-bottom: .9rem; }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  background: var(--ink-050); color: var(--ink); margin-bottom: 1.1rem; font-size: 1.5rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .97rem; }

/* Icon tints */
.tint-amber { background: var(--amber-050); color: var(--amber-600); }
.tint-green { background: var(--green-050); color: var(--green); }
.tint-ink   { background: var(--ink-050);   color: var(--ink); }

/* Sector card (image top) */
.sector { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.sector--hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.sector__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-050); }
.sector__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.sector--hover:hover .sector__img img { transform: scale(1.05); }
.sector__body { padding: 1.3rem 1.4rem 1.5rem; }
.sector__body h3 { display: flex; align-items: center; gap: .55rem; }
.sector__tag { font-size: .95rem; }

/* ---------- Pills / trust strip ---------- */
.pills { display: flex; flex-wrap: wrap; gap: .6rem .9rem; }
.pill { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 500;
  color: var(--charcoal); background: var(--white); border: 1px solid var(--line);
  padding: .5rem .9rem; border-radius: 999px; }
.pill svg { width: 16px; height: 16px; color: var(--green); flex: none; }
.pills--onink .pill { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #E4ECF3; }
.pills--onink .pill svg { color: var(--amber); }

/* ---------- Header ---------- */
.topbanner { background: var(--ink); color: #fff; text-align: center; font-size: .9rem; padding: .55rem 1rem; }
.topbanner a { color: var(--amber); font-weight: 700; }
.topbanner strong { color: #fff; }

.header { position: sticky; top: 0; z-index: 60; background: rgba(247,246,242,.85);
  backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--line); }
.header__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 72px; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: .3rem; }
.nav a.navlink { font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--charcoal);
  padding: .5rem .8rem; border-radius: 8px; transition: background .15s, color .15s; }
.nav a.navlink:hover { background: var(--ink-050); color: var(--ink); }
.nav a.navlink.is-active { color: var(--ink); }
.nav a.navlink.is-active::after { content: ""; display: block; height: 2px; background: var(--amber); border-radius: 2px; margin-top: 3px; }
.header__cta { display: flex; align-items: center; gap: .6rem; }
.wa-icon { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center;
  background: var(--green-050); color: var(--green); }
.wa-icon svg { width: 22px; height: 22px; }
.navtoggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); align-items: center; justify-content: center; }
.navtoggle span, .navtoggle span::before, .navtoggle span::after { content: ""; display: block; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; position: relative; transition: .2s var(--ease); }
.navtoggle span::before { position: absolute; top: -6px; } .navtoggle span::after { position: absolute; top: 6px; }
.navtoggle[aria-expanded="true"] span { background: transparent; }
.navtoggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.navtoggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 940px) {
  .navtoggle { display: inline-flex; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); flex-direction: column; align-items: stretch;
    background: var(--white); padding: 5.5rem 1.4rem 2rem; gap: .2rem; transform: translateX(100%);
    transition: transform .28s var(--ease); box-shadow: var(--shadow-lg); z-index: 55; }
  .nav.is-open { transform: translateX(0); }
  .nav a.navlink { padding: .85rem .6rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav a.navlink.is-active::after { display: none; }
  .nav .btn { margin-top: 1rem; }
  .scrim { position: fixed; inset: 0; background: rgba(20,58,90,.35); opacity: 0; pointer-events: none; transition: opacity .28s; z-index: 54; }
  .scrim.is-open { opacity: 1; pointer-events: auto; }
}
.nav .nav-mobile-only { display: none; }
@media (max-width: 940px) { .nav .nav-mobile-only { display: flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { margin-bottom: 1.7rem; max-width: 42ch; }
.hero__media { position: relative; }
.hero__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.hero__badge { position: absolute; left: -14px; bottom: 22px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: .9rem 1.1rem; display: flex; align-items: center; gap: .7rem; max-width: 240px; }
.hero__badge .n { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--ink); line-height: 1; }
.hero__badge .t { font-size: .8rem; color: var(--slate); line-height: 1.3; }
@media (max-width: 860px) { .hero__badge { left: 8px; } }
.hero__trust { margin-top: 1.6rem; }

/* Decorative path line motif */
.pathline { position: absolute; inset: 0; pointer-events: none; opacity: .5; z-index: 0; }
.hero .container { position: relative; z-index: 1; }

/* ---------- Corporate fork band ---------- */
.fork { background: linear-gradient(100deg, var(--ink) 0%, var(--ink-700) 100%); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.2rem) clamp(1.5rem, 4vw, 2.6rem); display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; box-shadow: var(--shadow-md); }
.fork h3 { color: #fff; margin-bottom: .3rem; }
.fork p { color: #C4D2DF; max-width: 60ch; }
.fork__text { flex: 1 1 420px; }

/* ---------- Stat / feature rows ---------- */
.iconrow { display: flex; gap: 1rem; align-items: flex-start; }
.iconrow .card__icon { flex: none; margin-bottom: 0; width: 46px; height: 46px; }
.iconrow h4 { margin-bottom: .25rem; }
.iconrow p { font-size: .95rem; }

/* Split media block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.split--rev .split__media { order: -1; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 3/2; object-fit: cover; width: 100%; }

/* ---------- Timeline / table ---------- */
.dtable { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.dtable th, .dtable td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line-soft); font-size: .96rem; }
.dtable thead th { background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase; }
.dtable tbody tr:last-child td { border-bottom: none; }
.dtable tbody tr:nth-child(even) td { background: var(--paper); }
.dtable td:first-child { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.tablewrap { overflow-x: auto; }
@media (max-width: 560px) { .dtable th, .dtable td { padding: .8rem .7rem; font-size: .88rem; } }

/* Checklist */
.checklist { display: grid; gap: .8rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; color: var(--charcoal); }
.checklist li svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }
.checklist.amber li svg { color: var(--amber-600); }

/* Value / included list */
.included { display: flex; flex-wrap: wrap; gap: .6rem; }
.included .tag { background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .55rem 1rem; font-size: .9rem; font-weight: 500; color: var(--charcoal); }

/* Price block */
.price { display: inline-flex; align-items: baseline; gap: .5rem; }
.price .amt { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 3.6rem); color: var(--ink); letter-spacing: -.03em; }
.price .per { color: var(--slate); font-size: 1rem; }

/* ---------- Accordion (FAQ) ---------- */
.accordion { display: grid; gap: .7rem; }
.acc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.acc__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem; font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.02rem; background: none; border: none; }
.acc__q .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ink-050); color: var(--ink);
  display: grid; place-items: center; font-size: 1.2rem; line-height: 1; transition: .2s var(--ease); }
.acc[open] .acc__q .ico { transform: rotate(45deg); background: var(--amber); color: var(--ink); }
.acc__a { padding: 0 1.3rem 1.2rem; color: var(--slate); font-size: .97rem; }
.acc summary { cursor: pointer; list-style: none; } .acc summary::-webkit-details-marker { display: none; }

/* ---------- Forms ---------- */
.formcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 4vw, 2.6rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.field .req { color: var(--amber-600); }
.field .hint { font-weight: 400; color: var(--slate); font-size: .82rem; }
.input, .select, .textarea {
  width: 100%; padding: .8rem 1rem; font: inherit; font-size: .98rem; color: var(--charcoal);
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-sm); transition: border-color .15s, background .15s, box-shadow .15s;
}
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--ink); background: var(--white); box-shadow: 0 0 0 3px rgba(20,58,90,.1); }
.textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: var(--charcoal); }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--ink); flex: none; }
.form-note { font-size: .85rem; color: var(--slate); margin-top: .7rem; text-align: center; }
.form-error { background: var(--amber-050); border: 1px solid var(--amber); color: #8a5a12; padding: .9rem 1.1rem; border-radius: var(--radius-sm); margin-bottom: 1.3rem; font-size: .92rem; }
.form-error ul { margin: .4rem 0 0; padding-left: 1.1rem; list-style: disc; }
.field .input.invalid, .field .select.invalid, .field .textarea.invalid { border-color: #cf4a2f; }

/* Founding-partner logo strip + testimonial */
.logo-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.6rem 2.4rem; }
.logo-strip img { height: 46px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .2s, opacity .2s; }
.logo-strip img:hover { filter: none; opacity: 1; }
.logo-strip__name { font-family: var(--font-display); font-weight: 700; color: var(--ink-700); font-size: 1.05rem; opacity: .8; }
.quote-card { max-width: 720px; margin-inline: auto; background: var(--white); border: 1px solid var(--line-soft);
  border-left: 4px solid var(--amber); border-radius: var(--radius); padding: 1.6rem 1.8rem; box-shadow: var(--shadow-sm); }
.quote-card blockquote { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.5; color: var(--ink); font-weight: 600; }
.quote-card figcaption { margin-top: .8rem; color: var(--slate); font-size: .95rem; }

/* Signature pad */
.sigpad { border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); overflow: hidden; }
.sigpad__canvas { display: block; width: 100%; height: 200px; touch-action: none; background:
  repeating-linear-gradient(var(--white), var(--white) 39px, var(--line-soft) 40px); cursor: crosshair; }
.sigpad__bar { display: flex; align-items: center; justify-content: space-between; padding: .5rem .8rem; border-top: 1px solid var(--line-soft); }
.sigpad__hint { font-size: .8rem; color: var(--slate); }
.sigpad__clear { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .9rem; }
.sigpad__clear:hover { border-color: var(--ink); }

/* Success / confirmation */
.confirm { text-align: center; max-width: 640px; margin-inline: auto; }
.confirm__check { width: 74px; height: 74px; border-radius: 50%; background: var(--green-050); color: var(--green);
  display: grid; place-items: center; margin: 0 auto 1.4rem; }
.confirm__check svg { width: 38px; height: 38px; }

/* Reassurance strip */
.reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem .9rem; margin-top: 1.6rem; }

/* ---------- CTA band ---------- */
.ctaband { background: linear-gradient(135deg, var(--ink) 0%, #0E2C46 100%); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(2.2rem, 6vw, 4rem); text-align: center; position: relative; overflow: hidden; }
.ctaband h2 { color: #fff; }
.ctaband p { color: #C4D2DF; }
.ctaband .btn-row { margin-top: 1.6rem; justify-content: center; }
.split-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 720px) { .split-cta { grid-template-columns: 1fr; } }
.split-cta .card { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.split-cta .card h3 { margin: 0; }

/* ---------- Footer ---------- */
.footer { background: #0E2C46; color: #9FB3C4; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr 1.3fr; gap: 2rem; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer img.flogo { height: 34px; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer a { color: #B8C7D6; }
.footer a:hover { color: #fff; }
.footer .fnav { display: grid; gap: .55rem; font-size: .93rem; }
.footer .fcontact { display: grid; gap: .6rem; font-size: .93rem; }
.footer .fcontact a { display: inline-flex; gap: .5rem; align-items: center; }
.footer .tagline { color: #C4D2DF; font-size: .95rem; max-width: 30ch; }
.footer__newsletter input { width: 100%; padding: .7rem .9rem; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06); color: #fff; margin-bottom: .6rem; }
.footer__newsletter input::placeholder { color: #8fa4b6; }
.footer__base { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: .6rem; font-size: .84rem; color: #7f97ab; }
.footer__base a { color: #9FB3C4; }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 70; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ---------- Page hero (interior) ---------- */
.pagehero { background: var(--white); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.pagehero .eyebrow { margin-bottom: 1rem; }
.pagehero h1 { max-width: 20ch; }
.pagehero .lead { max-width: 60ch; margin-top: 1rem; }

/* ---------- Misc helpers ---------- */
.badge-note { display: inline-block; background: var(--amber-050); color: #8a5a12; border: 1px solid var(--amber);
  border-radius: 999px; padding: .35rem .85rem; font-size: .82rem; font-weight: 600; }
.hr-soft { border: none; border-top: 1px solid var(--line); margin-block: 1.5rem; }
.small { font-size: .85rem; color: var(--slate); }
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.text-amber{color:var(--gold-ink)} .text-green{color:var(--green)}

/* Skip link (accessibility) */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 8px 0; font-family: var(--font-display); font-weight: 600; }
.skip-link:focus { left: 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card--hover:hover, .sector--hover:hover { transform: none; }
}
