/* ============================================================
   style.css — Zenvia main stylesheet
   Mobile-first. Uses CSS custom properties throughout.
   Organised: Variables → Reset → Layout → Components → Pages → Utilities → Media Queries
   ============================================================ */


/* ============================================================
   1. CSS CUSTOM PROPERTIES (design tokens)
   ============================================================ */
:root {
  /* Colours */
  --color-navy:       #0f172a;
  --color-slate:      #1e293b;
  --color-teal:       #0f766e;
  --color-teal-2:     #14b8a6;
  --color-mint:       #ccfbf1;
  --color-sky:        #e0f2fe;
  --color-soft:       #f8fafc;
  --color-border:     #e2e8f0;
  --color-text:       #0f172a;
  --color-muted:      #475569;
  --color-gold:       #f59e0b;
  --color-success:    #166534;
  --color-success-bg: #f0fdf4;
  --color-success-bd: #dcfce7;
  --color-white:      #ffffff;

  /* Gradients */
  --grad-teal:        linear-gradient(135deg, var(--color-teal), var(--color-teal-2));
  --grad-hero:        linear-gradient(180deg, #f8fffe 0%, #ffffff 52%, #ffffff 100%);
  --grad-dark:        linear-gradient(135deg, var(--color-navy) 0%, #134e4a 100%);
  --grad-cta:         linear-gradient(135deg, var(--color-teal), var(--color-navy));

  /* Shadows */
  --shadow-soft:      0 20px 50px rgba(15, 23, 42, .08);
  --shadow-card:      0 10px 30px rgba(15, 23, 42, .06);

  /* Border radius */
  --radius-xl:        26px;
  --radius-lg:        20px;
  --radius-md:        16px;
  --radius-sm:        12px;
  --radius-pill:      999px;

  /* Typography */
  --font-body:        "Inter", sans-serif;
  --font-heading:     "Inter", sans-serif;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  0.85rem;
  --space-md:  1.5rem;
  --space-lg:  2.25rem;
  --space-xl:  4.5rem;
  --space-2xl: 5.5rem;
}


/* ============================================================
   2. RESET / BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  margin: 0;
}

a {
  text-decoration: none;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   3. ACCESSIBILITY
   ============================================================ */

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
  color: var(--color-white);
}

/* Bootstrap ships this on every other marketing page; index.njk doesn't
   load Bootstrap (see PLATFORM section), so its lead-capture form labels
   need it defined here instead. */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Visible focus styles */
:focus-visible {
  outline: 3px solid var(--color-teal-2);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container-xxl {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 1rem;
}


/* ============================================================
   5. NAVBAR
   ============================================================ */
.navbar {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
}

.navbar-brand {
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--color-navy);
  font-size: 1.5rem;
}

.navbar-brand span {
  color: var(--color-teal);
}

.nav-link {
  color: var(--color-slate);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--color-teal);
}


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  border-radius: var(--radius-pill);
  font-weight: 700;
  padding: .85rem 1.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

/* Primary */
.btn-zenvia {
  background: var(--grad-teal);
  color: var(--color-white);
  border: none;
  box-shadow: 0 12px 24px rgba(20, 184, 166, .22);
}

.btn-zenvia:hover,
.btn-zenvia:focus {
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(20, 184, 166, .30);
}

/* Outline */
.btn-outline-zenvia {
  border: 1.5px solid var(--color-border);
  color: var(--color-slate);
  background: var(--color-white);
}

.btn-outline-zenvia:hover,
.btn-outline-zenvia:focus {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background: #f0fdfa;
}


/* ============================================================
   7. BADGES & PILLS
   ============================================================ */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: var(--radius-pill);
  background: #ecfeff;
  color: var(--color-teal);
  font-weight: 700;
  font-size: .86rem;
  border: 1px solid var(--color-mint);
}

.pill {
  display: inline-block;
  padding: .35rem .65rem;
  border-radius: var(--radius-pill);
  font-size: .76rem;
  font-weight: 800;
  background: #ecfeff;
  color: var(--color-teal);
}


/* ============================================================
   8. SECTION TYPOGRAPHY
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--color-teal);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--color-muted);
  max-width: 780px;
}

section {
  padding: 4.5rem 0;
}


/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .15), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(14, 165, 233, .14), transparent 22%),
    var(--grad-hero);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 0 auto;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(20, 184, 166, .16), transparent 66%);
  filter: blur(25px);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.35rem, 10vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

.hero-title .grad {
  background: linear-gradient(135deg, var(--color-teal), #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 700px;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 1.6rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.25rem;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .9rem;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  color: var(--color-slate);
  font-weight: 700;
  font-size: .92rem;
  min-height: 44px;
}

/* Hero visual / dashboard mockup */
.hero-visual {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

.dashboard-card {
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.mock-browser {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, .95);
  background: var(--color-white);
}

.mock-topbar {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1rem;
  background: var(--color-soft);
  border-bottom: 1px solid var(--color-border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
}

.panel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 1rem;
}

.panel-soft {
  background: linear-gradient(180deg, #f0fdfa, var(--color-white));
}

.metric {
  padding: .9rem;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
}

.metric small {
  display: block;
  color: #64748b;
  font-weight: 700;
  margin-bottom: .35rem;
}

.metric strong {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--color-navy);
}

.counsellor-list {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}

.counsellor-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .8rem;
  border-radius: var(--radius-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #99f6e4, #bfdbfe);
  color: var(--color-navy);
  font-weight: 800;
  flex-shrink: 0;
}


/* ============================================================
   10. SEARCH SHELL (hero inline search)
   ============================================================ */
.search-shell {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  background: var(--color-white);
  border: 1px solid rgba(226, 232, 240, .9);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.search-label {
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #64748b;
  display: block;
  margin-bottom: .45rem;
}

.form-control,
.form-select {
  border-radius: 14px;
  border: 1px solid var(--color-border);
  min-height: 52px;
  padding: .85rem 1rem;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: #5eead4;
}


/* ============================================================
   11. TRUST STRIP (logo / feature strip below hero)
   ============================================================ */
.trust-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-white);
}

.trust-strip__label {
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-muted);
}

.trust-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  color: var(--color-muted);
  font-weight: 600;
}


/* ============================================================
   12. SECTION BACKGROUND VARIANTS
   ============================================================ */
.section-soft {
  background: var(--color-soft);
}


/* ============================================================
   13. HOW IT WORKS — STEP CARDS
   ============================================================ */
.card-zen {
  height: 100%;
  border: none;
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-zen:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
}

.card-zen .card-body {
  padding: 1.4rem;
}

.icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-mint), var(--color-sky));
  color: var(--color-teal);
  margin-bottom: 1rem;
}


/* ============================================================
   14. PLATFORM / SPLIT FEATURE SECTION
   ============================================================ */
.split-feature {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.split-pane {
  padding: 2rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.feature-item .check {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  background: #ecfeff;
  color: var(--color-teal);
  font-weight: 900;
}


/* ============================================================
   15. COUNSELLOR PROFILE CARDS
   ============================================================ */
.profile-card {
  height: 100%;
  border-radius: 26px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
}

.profile-head {
  padding: 1.3rem 1.3rem 0;
}

.profile-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #bfdbfe, #99f6e4);
  color: var(--color-navy);
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.rating {
  color: var(--color-gold);
  letter-spacing: .08em;
  font-size: .92rem;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--color-success);
  background: var(--color-success-bg);
  border: 1px solid var(--color-success-bd);
  padding: .45rem .65rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  min-height: 44px;
}


/* ============================================================
   16. TOPIC CARDS
   ============================================================ */
.topic-card,
.tool-card,
.trust-card {
  height: 100%;
  padding: 1.25rem;
  border-radius: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  color: var(--color-text);
}

.topic-card:hover,
.tool-card:hover,
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .10);
  color: var(--color-text);
}

.topic-card h5,
.tool-card h5,
.trust-card h5 {
  font-weight: 800;
  margin-bottom: .45rem;
}


/* ============================================================
   17. TOOLS LIBRARY BAND
   ============================================================ */
.library-band {
  padding: 2rem;
  border-radius: 30px;
  background: var(--grad-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.library-chip {
  display: inline-flex;
  align-items: center;
  padding: .55rem .85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  margin: .35rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-white);
}


/* ============================================================
   18. AI CARD
   ============================================================ */
.ai-card {
  position: relative;
  padding: 2rem;
  background: linear-gradient(180deg, var(--color-white), var(--color-soft));
  border: 1px solid var(--color-border);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.ai-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, .2), transparent 65%);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.ai-preview {
  border-radius: 24px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.preview-head {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: var(--color-soft);
}

.preview-body {
  padding: 1.1rem;
}

.line {
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--color-border);
  margin-bottom: .75rem;
}

.line--teal {
  background: linear-gradient(90deg, var(--color-teal-2), #67e8f9);
}


/* ============================================================
   19. TESTIMONIALS
   ============================================================ */
.testimonial {
  height: 100%;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 24px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: #99f6e4;
  font-weight: 900;
  margin-bottom: .25rem;
}


/* ============================================================
   20. CTA BAND
   ============================================================ */
.cta-band {
  padding: 2.25rem;
  border-radius: 32px;
  background: var(--grad-cta);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}


/* ============================================================
   21. FOOTER
   ============================================================ */
.footer {
  background: var(--color-navy);
  color: #cbd5e1;
  padding: 4.5rem 0 2rem;
}

.footer-brand {
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--color-white);
  font-size: 1.5rem;
  display: inline-block;
}

.footer-brand span {
  color: var(--color-teal-2);
}

.footer-title {
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: .65rem;
}

.footer-links a {
  color: #e2e8f0;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #99f6e4;
}

.footer-divider {
  border-color: rgba(255, 255, 255, .1);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .875rem;
}

.footer-muted {
  color: #94a3b8;
}


/* ============================================================
   22. PAGE-SPECIFIC — ABOUT
   ============================================================ */
.about-hero {
  padding: 8rem 0 5rem;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .12), transparent 32%),
    var(--grad-hero);
}

.about-value-card {
  padding: 1.5rem;
  border-radius: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.about-value-card h4 {
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: .5rem;
}

.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  height: 100%;
}

.team-card .team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #99f6e4, #bfdbfe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--color-navy);
  margin: 0 auto 1rem;
}


/* ============================================================
   23. PAGE-SPECIFIC — CONTACT
   ============================================================ */
.contact-hero {
  padding: 8rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, .12), transparent 32%),
    var(--grad-hero);
}

.contact-card {
  background: var(--color-white);
  border-radius: 30px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  padding: 2.5rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
}

.contact-info-item .icon-wrap {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* Form labels */
.form-label {
  font-weight: 700;
  color: var(--color-slate);
  margin-bottom: .45rem;
  display: block;
}


/* ============================================================
   24. PAGE-SPECIFIC — 404
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.error-code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.06em;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ============================================================
   25. UTILITY CLASSES
   ============================================================ */
.text-teal    { color: var(--color-teal); }
.text-navy    { color: var(--color-navy); }
.bg-soft      { background: var(--color-soft); }
.rounded-pill { border-radius: var(--radius-pill); }


/* ============================================================
   26. MEDIA QUERIES — mobile-first progressive enhancement
   ============================================================ */

/* --- Tablet: 768px and above --- */
@media (min-width: 768px) {
  section {
    padding: 5rem 0;
  }

  .hero {
    padding-top: 7.5rem;
  }

  .container-xxl {
    padding-inline: 1.5rem;
  }

  .dashboard-grid {
    grid-template-columns: 1.15fr .85fr;
  }

  .trust-strip__items {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* --- Desktop: 1024px and above --- */
@media (min-width: 1024px) {
  section {
    padding: 5.5rem 0;
  }

  .hero {
    padding: 9rem 0 5.5rem;
  }

  .hero-visual {
    margin-top: 0;
    min-height: 600px;
    position: relative;
  }

  .hero-title {
    font-size: clamp(2.7rem, 6vw, 5.3rem);
  }

  .dashboard-card {
    position: absolute;
    margin-bottom: 0;
  }

  .dashboard-main {
    right: 0;
    top: 35px;
    width: min(100%, 510px);
    padding: 1.35rem;
  }

  .dashboard-mini {
    left: 8%;
    bottom: 68px;
    width: 250px;
    padding: 1rem;
  }

  .dashboard-float {
    right: 3%;
    bottom: 16px;
    width: 220px;
    padding: 1rem;
  }

  .hero-lead {
    font-size: 1.18rem;
  }
}

/* --- Wide: 1280px and above --- */
@media (min-width: 1280px) {
  .container-xxl {
    padding-inline: 2rem;
  }
}


/* ============================================================
   9. PLATFORM (B2B) PAGES — homepage, pricing, ai-session-notes,
   security, migration. A deliberately separate visual language from
   the consumer-facing pages above (find-a-counsellor, meet-the-team,
   book) — those keep the original palette/Inter typeface untouched;
   these use the design handed over in Zenvia_Home_Light_SEO.html /
   Zenvia_Copy_Revisions.md (2026-08-23), scoped under .plat so nothing
   here leaks onto the pages this pass didn't touch. `--plat-*` custom
   properties, not the shared `--color-*`/`--font-*` tokens above, for
   the same reason.

   Fonts are self-hosted (public/marketing/fonts/) rather than a Google
   Fonts request, per the copy-revisions doc's privacy note for a
   health product — see the @font-face rules below.
   ============================================================ */

@font-face {
  /* Replaced Instrument Serif 2026-08-24 — its tall x-height/high
     contrast read as "stretched" at heading sizes. Lora is a more
     evenly-proportioned book serif that still reads as editorial/premium
     rather than a generic sans-serif heading. */
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lora-normal.woff2') format('woff2');
}
@font-face {
  /* Variable font — one file covers weights 400-800, matching how
     Google Fonts itself serves it (confirmed identical URL across
     every weight's @font-face block when this was fetched for
     self-hosting). */
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/manrope-variable.woff2') format('woff2');
}

.plat {
  --plat-bg:        #FBF9F5;
  --plat-tan:       #F1E9DC;
  --plat-text:      #16211F;
  --plat-muted:     #5F6663;
  --plat-muted-2:   #4A524F;
  --plat-teal:      #0B7A6E;
  --plat-teal-hover:#095F56;
  --plat-teal-soft: #DCF2EE;
  --plat-teal-soft-2:#C9E9E3;
  --plat-mint:      #9FE0D6;
  --plat-mint-2:    #5EC8BB;
  --plat-navy:      #0B1220;
  --plat-border:    rgba(22,33,31,.09);
  --plat-border-md: rgba(22,33,31,.14);
  --plat-radius-sm: 14px;
  --plat-radius-md: 20px;
  --plat-radius-lg: 24px;
  --plat-radius-xl: 28px;
  --plat-font-serif: 'Lora', Georgia, serif;
  --plat-font-body:  'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  background: var(--plat-bg);
  color: var(--plat-text);
  font-family: var(--plat-font-body);
  -webkit-font-smoothing: antialiased;
}
.plat a { color: var(--plat-teal); }
.plat a:hover { color: var(--plat-teal-hover); }
.plat h1, .plat h2, .plat h3 { font-family: var(--plat-font-serif); font-weight: 400; letter-spacing: -.02em; margin: 0; }

/* Nav */
.plat-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,245,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--plat-border);
}
.plat-nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 16px 32px;
  display: flex; align-items: center; gap: 40px;
}
.plat-nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.plat-nav-link { color: var(--plat-muted); font-size: 15px; font-weight: 500; }
.plat-nav-link:hover { color: var(--plat-text); }
.plat-nav-cta-wrap { display: flex; align-items: center; gap: 12px; margin-left: 12px; }
.plat-btn-outline {
  color: var(--plat-text); font-size: 15px; font-weight: 600; padding: 10px 16px;
  border: 1px solid var(--plat-border-md); border-radius: 999px; display: inline-block;
}
.plat-btn-outline:hover { background: #fff; color: var(--plat-text); }
.plat-btn {
  color: #fff; background: var(--plat-teal); font-size: 15px; font-weight: 700;
  padding: 11px 20px; border-radius: 999px; display: inline-block; border: none; cursor: pointer;
  font-family: var(--plat-font-body);
}
.plat-btn:hover { background: var(--plat-teal-hover); color: #fff; }
.plat-btn-lg { font-size: 17px; padding: 17px 30px; }
.plat-btn-outline-lg { font-size: 17px; padding: 17px 30px; border-radius: 999px; }
.plat-btn-on-dark { border: 1px solid rgba(255,255,255,.28); color: #fff; }
.plat-btn-on-dark:hover { background: rgba(255,255,255,.07); color: #fff; }
.plat-menu-toggle { display: none; margin-left: auto; align-items: center; gap: 9px; color: var(--plat-text); font-size: 15px; font-weight: 600; padding: 10px 16px; border: 1px solid var(--plat-border-md); border-radius: 999px; }

/* `.plat a { color: var(--plat-teal) }` above has specificity (0,1,1) —
   class + tag — which beats a plain `.plat-btn`-style class selector
   (0,1,0) regardless of source order, so every button/nav-link rendered
   as an <a> was silently rendering teal text instead of the colour set
   above. These tag-qualified duplicates match that specificity and win
   on source order (they come later), without touching the non-anchor
   uses of the same classes (e.g. <button class="plat-btn"> in the lead
   forms, which the rules above already colour correctly on their own). */
a.plat-btn, a.plat-btn:hover { color: #fff; }
a.plat-btn-outline, a.plat-btn-outline:hover { color: var(--plat-text); }
a.plat-btn-on-dark, a.plat-btn-on-dark:hover { color: #fff; }
a.plat-nav-link { color: var(--plat-muted); }
a.plat-nav-link:hover { color: var(--plat-text); }
a.plat-menu-toggle { color: var(--plat-text); }

/* Layout helpers */
.plat-wrap { max-width: 1240px; margin: 0 auto; }
.plat-section { padding: 64px 32px; }
.plat-section-tight { padding: 0 32px 64px; }
.plat-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--plat-teal); }
.plat-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px;
  border: 1px solid rgba(11,122,110,.35); border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--plat-teal);
}
.plat-h1 { font-size: 76px; line-height: 1.02; margin-top: 26px; text-wrap: pretty; }
.plat-h2 { font-size: 52px; line-height: 1.08; margin-top: 16px; text-wrap: pretty; }
.plat-h3-sm { font-size: 38px; line-height: 1.1; }
.plat-lead { font-size: 20px; line-height: 1.6; color: var(--plat-muted); margin-top: 24px; text-wrap: pretty; }
.plat-p { font-size: 19px; line-height: 1.6; color: var(--plat-muted); margin-top: 18px; text-wrap: pretty; }
.plat-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.plat-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.plat-hero-facts { display: flex; flex-direction: column; gap: 14px; margin-top: 34px; font-size: 15px; color: var(--plat-muted); list-style: none; padding: 0; }
.plat-hero-facts li { display: flex; align-items: center; gap: 8px; }
.plat-hero-facts li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--plat-teal); flex: none; }

/* Cards */
.plat-cards3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.plat-cards4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 44px; }
.plat-card {
  background: #fff; border: 1px solid rgba(22,33,31,.08); border-radius: var(--plat-radius-md); padding: 30px;
}
.plat-card:hover { border-color: rgba(14,147,132,.45); }
.plat-card-num {
  width: 44px; height: 44px; border-radius: 13px; background: var(--plat-teal-soft);
  display: flex; align-items: center; justify-content: center; color: var(--plat-teal); font-weight: 800;
}
.plat-card h3 { font-family: var(--plat-font-body); font-size: 21px; font-weight: 800; margin: 20px 0 8px; letter-spacing: 0; }
.plat-card p { font-size: 16px; line-height: 1.6; color: var(--plat-muted); margin: 0; }
.plat-card-dark {
  background: var(--plat-navy); color: #fff; border-radius: var(--plat-radius-md); padding: 30px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.plat-card-dark h3 { font-family: var(--plat-font-body); font-size: 21px; font-weight: 800; margin: 0 0 8px; }
.plat-card-dark p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.68); margin: 0; }
.plat-card-dark a { color: var(--plat-mint-2); font-weight: 700; font-size: 16px; margin-top: 22px; display: inline-block; }

/* Bands / panels */
.plat-band { background: var(--plat-bg); border: 1px solid var(--plat-border); border-radius: var(--plat-radius-lg); padding: 38px; }
.plat-band-tan { background: var(--plat-tan); border: 1px solid var(--plat-border); border-radius: var(--plat-radius-xl); padding: 48px; }
.plat-band-dark { background: var(--plat-navy); color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: var(--plat-radius-lg); padding: 36px; }
.plat-video-wrap { border: 1px solid var(--plat-border); border-radius: var(--plat-radius-lg); overflow: hidden; background: var(--plat-navy); }
.plat-video-wrap video { display: block; width: 100%; aspect-ratio: 16 / 9; background: var(--plat-navy); }
.plat-video-caption { font-size: 13.5px; color: var(--plat-muted); text-align: center; padding: 12px 16px; margin: 0; background: var(--plat-bg); }

/* Checklist (AI notes section) */
.plat-checklist { display: grid; gap: 22px; list-style: none; padding: 0; margin: 0; }
.plat-checklist li { display: flex; gap: 14px; }
.plat-check-icon {
  width: 26px; height: 26px; flex: 0 0 26px; border-radius: 8px; background: var(--plat-teal-soft);
  color: var(--plat-teal); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800;
}
.plat-checklist strong { display: block; font-family: var(--plat-font-body); font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.plat-checklist span { font-size: 16px; line-height: 1.6; color: var(--plat-muted); }

/* AI & privacy FAQ */
.plat-faq-item { background: #fff; border: 1px solid var(--plat-border-md); border-radius: 16px; padding: 22px 24px; }
.plat-faq-item h3 { font-family: var(--plat-font-body); font-weight: 800; font-size: 17px; margin: 0 0 6px; }
.plat-faq-item p { font-size: 16px; line-height: 1.6; color: var(--plat-muted); margin: 0; }
.plat-faq-list { display: grid; gap: 14px; }

/* Tag pills (tools library) */
.plat-tag {
  font-size: 14px; font-weight: 600; color: var(--plat-text); background: #fff;
  border: 1px solid var(--plat-border-md); border-radius: 999px; padding: 10px 18px; display: inline-block;
}

/* Pricing (dark navy section) */
.plat-pricing {
  background: var(--plat-navy);
  background-image: radial-gradient(800px 400px at 12% 0%, rgba(94,200,187,.16), transparent 70%);
  color: #fff;
}
.plat-pricing .plat-eyebrow { color: var(--plat-mint); }
.plat-pricing .plat-lead, .plat-pricing .plat-p { color: rgba(255,255,255,.72); }
.plat-price-figure { display: flex; align-items: baseline; gap: 12px; }
.plat-price-figure .num { font-family: var(--plat-font-serif); font-size: 86px; line-height: .9; }
.plat-price-ticks { display: grid; gap: 14px; font-size: 16px; line-height: 1.5; list-style: none; padding: 0; margin: 0; }
.plat-price-ticks li { display: flex; gap: 12px; }
.plat-price-ticks li::before { content: '✓'; color: var(--plat-mint-2); font-weight: 800; }
.plat-hr-dark { height: 1px; background: rgba(255,255,255,.14); margin: 28px 0; border: none; }

/* ROI calculator */
.plat-calc-input { margin-bottom: 26px; }
.plat-calc-input:last-child { margin-bottom: 0; }
.plat-calc-input-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.plat-calc-input label { font-size: 16px; font-weight: 600; color: rgba(255,255,255,.78); }
.plat-calc-input output { font-size: 22px; font-weight: 800; }
.plat-calc-input input[type="range"] { width: 100%; accent-color: var(--plat-mint-2); height: 26px; cursor: pointer; }
.plat-calc-result { background: var(--plat-navy); border: 1px solid rgba(255,255,255,.12); border-radius: var(--plat-radius-md); padding: 34px; }
.plat-calc-bar { display: flex; height: 14px; border-radius: 999px; overflow: hidden; margin-top: 26px; }
.plat-calc-stat { background: rgba(255,255,255,.06); border-radius: 16px; padding: 18px; }
.plat-calc-stat .label { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.plat-calc-stat .value { font-family: var(--plat-font-serif); font-size: 38px; line-height: 1; margin-top: 8px; }

/* Footer */
.plat-footer { background: var(--plat-navy); color: rgba(255,255,255,.62); padding: 72px 32px 40px; }
.plat-footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.plat-footer h4 { font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 16px; }
.plat-footer-links { display: grid; gap: 10px; font-size: 15px; list-style: none; padding: 0; margin: 0; }
.plat-footer-links a { color: rgba(255,255,255,.72); }
.plat-footer-links a:hover { color: #fff; }
.plat-footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 14px; color: rgba(255,255,255,.45);
}

/* Trust strip ("Built for...") */
.plat-strip { background: var(--plat-tan); color: var(--plat-muted-2); padding: 26px 32px; border-top: 1px solid var(--plat-border); }
.plat-strip-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 36px; flex-wrap: wrap; list-style: none; padding: 0; }
.plat-strip-label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #6E7573; }
.plat-strip-item { font-size: 15px; font-weight: 600; }

/* Hero visual (dashboard mock) */
.plat-hero-visual { display: grid; gap: 18px; }
.plat-dash-card { background: #fff; border-radius: 22px; padding: 22px; box-shadow: 0 26px 60px -30px rgba(22,33,31,.30); border: 1px solid rgba(22,33,31,.07); color: var(--plat-text); }
.plat-dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.plat-dash-badge { font-size: 12px; font-weight: 700; color: var(--plat-teal); background: var(--plat-teal-soft); padding: 6px 12px; border-radius: 999px; }
.plat-dash-rows { display: grid; gap: 10px; }
.plat-dash-row { display: flex; align-items: center; gap: 12px; border: 1px solid rgba(22,33,31,.09); border-radius: 14px; padding: 12px 14px; }
.plat-dash-time { width: 38px; height: 38px; border-radius: 11px; background: var(--plat-text); color: var(--plat-bg); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.plat-dash-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-top: 16px; }
.plat-dash-stat { background: var(--plat-tan); border-radius: 14px; padding: 12px; }
.plat-dash-stat .k { font-size: 12px; color: var(--plat-muted); font-weight: 600; }
.plat-dash-stat .v { font-size: 22px; font-weight: 800; }
.plat-note-card { background: #fff; border: 1px solid rgba(22,33,31,.12); border-radius: 18px; padding: 18px 20px; }

/* Growth / profile section */
.plat-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plat-pair-card { border: 1px solid var(--plat-border-md); border-radius: 16px; padding: 20px; }
.plat-pair-card .t { font-family: var(--plat-font-serif); font-size: 34px; line-height: 1; }
.plat-pair-card .d { font-size: 15px; color: var(--plat-muted); margin-top: 6px; }
.plat-mini-card { border: 1px solid var(--plat-border-md); border-radius: 20px; padding: 20px; background: var(--plat-bg); }

@media (max-width: 1080px) {
  .plat-split { grid-template-columns: 1fr; gap: 44px; }
  .plat-cards3, .plat-cards4 { grid-template-columns: 1fr 1fr; }
  .plat-footer-cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .plat-nav-links { display: none; }
  .plat-menu-toggle { display: inline-flex; }
  .plat-band-tan, .plat-band, .plat-band-dark { padding: 36px; }
}
@media (max-width: 760px) {
  .plat-cards3, .plat-cards4, .plat-footer-cols, .plat-pair, .plat-dash-stats { grid-template-columns: 1fr; }
  .plat-section { padding: 48px 22px; }
  .plat-section-tight { padding: 0 22px 48px; }
  .plat-h1 { font-size: 42px; }
  .plat-h2 { font-size: 32px; }
  .plat-band-tan, .plat-band, .plat-band-dark { padding: 28px; border-radius: 22px; }
  .plat-lead { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .plat * { scroll-behavior: auto !important; transition: none !important; }
}

/* Lead-capture forms (hero/pricing/closing signup, consent-script
   download, ROI "email me these numbers") — see public/marketing/js/home.js */
.plat-lead-form { display: flex; flex-wrap: wrap; gap: 10px; }
.plat-lead-form input[type="email"], .plat-lead-form input[type="text"], .plat-lead-form input[type="tel"] {
  flex: 1 1 220px; font-family: var(--plat-font-body); font-size: 16px; padding: 14px 18px;
  border-radius: 999px; border: 1px solid var(--plat-border-md); background: #fff; color: var(--plat-text);
}
.plat-lead-form input::placeholder { color: rgba(22,33,31,.45); }
.plat-lead-form--dark input[type="email"], .plat-lead-form--dark input[type="text"] {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.24); color: #fff;
}
.plat-lead-form--dark input::placeholder { color: rgba(255,255,255,.45); }
.plat-lead-status { display: block; width: 100%; font-size: 14px; margin-top: 4px; min-height: 20px; }
.plat-lead-status--ok { color: var(--plat-teal); font-weight: 600; }
.plat-lead-status--error { color: #b3261e; font-weight: 600; }
.plat-pricing .plat-lead-status--ok { color: var(--plat-mint-2); }
.plat-form-trust { flex-basis: 100%; font-size: 12.5px; color: var(--plat-muted); margin: 6px 0 0; }
.plat-lead-form--dark .plat-form-trust { color: rgba(255,255,255,.45); }

/* Generic form controls — contact, book, and any future .plat form that
   isn't the pill-shaped inline lead-capture forms (.plat-lead-form). */
.plat-field { margin-bottom: 20px; }
.plat-field label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--plat-text); }
.plat-field .hint { font-size: 13px; color: var(--plat-muted); margin-top: 6px; display: block; }
.plat-input, .plat-select, .plat-textarea {
  width: 100%; font-family: var(--plat-font-body); font-size: 16px; padding: 13px 16px;
  border-radius: 12px; border: 1px solid var(--plat-border-md); background: #fff; color: var(--plat-text);
}
.plat-input:focus, .plat-select:focus, .plat-textarea:focus { outline: 2px solid var(--plat-teal); outline-offset: 1px; }
.plat-textarea { resize: vertical; min-height: 110px; }
.plat-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .plat-field-row { grid-template-columns: 1fr; } }
.plat-alert { border-radius: 12px; padding: 14px 18px; font-size: 15px; margin-bottom: 20px; }
.plat-alert--error { background: #fdecea; color: #9c2b25; border: 1px solid #f3c6c1; }
.plat-alert--ok { background: var(--plat-teal-soft); color: var(--plat-teal-hover); border: 1px solid var(--plat-teal-soft-2); }
.plat-btn-block { width: 100%; text-align: center; display: block; }
.plat-btn[disabled] { opacity: .6; cursor: default; }

/* Profile cards — find-a-counsellor / meet-the-team */
.plat-profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 1080px) { .plat-profile-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .plat-profile-grid { grid-template-columns: 1fr; } }
.plat-profile-card { background: #fff; border: 1px solid var(--plat-border-md); border-radius: 20px; overflow: hidden; display: flex; flex-direction: column; }
.plat-profile-head { padding: 26px 24px 0; }
.plat-profile-avatar {
  width: 52px; height: 52px; border-radius: 14px; background: var(--plat-teal-soft); color: var(--plat-teal-hover);
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 17px; margin-bottom: 14px;
}
.plat-profile-card h2 { font-family: var(--plat-font-body); font-size: 19px; font-weight: 800; margin: 0 0 4px; }
.plat-profile-meta { font-size: 14px; color: var(--plat-muted); }
.plat-profile-body { padding: 16px 24px 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.plat-profile-body p { font-size: 15px; line-height: 1.6; color: var(--plat-muted); margin: 0; }
.plat-profile-tags { display: flex; flex-wrap: wrap; gap: 6px; }

/* Sidebar/aside info blocks — contact, book */
.plat-info-item { display: flex; gap: 14px; align-items: flex-start; }
.plat-info-icon { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 12px; background: var(--plat-teal-soft); color: var(--plat-teal-hover); display: flex; align-items: center; justify-content: center; }
.plat-info-item strong { display: block; font-size: 15px; font-weight: 700; }
.plat-info-item span { font-size: 14px; color: var(--plat-muted); }
.plat-resource-card { background: #fff; border: 1px solid var(--plat-border-md); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; gap: 10px; }
.plat-resource-card h3 { font-family: var(--plat-font-body); font-size: 18px; font-weight: 800; margin: 0; }
.plat-resource-card p { font-size: 15px; color: var(--plat-muted); margin: 0; flex: 1; }

@media (max-width: 1080px) {
  .plat-nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--plat-bg);
    border-bottom: 1px solid var(--plat-border); flex-direction: column; align-items: flex-start;
    padding: 20px 32px 28px; gap: 16px;
  }
  .plat-nav-links--open { display: flex !important; }
  .plat-nav-cta-wrap { margin-left: 0; flex-wrap: wrap; }
}
