/* =============================================================
   Cowork Certified  ·  Clause-inspired design system
   Forest green + lime accent · Aspekta · light mode
   ============================================================= */

:root {
  /* Colours */
  --green: #004838;
  --green-deep: #073127;
  --green-darker: #002F25;
  --lime: #E2FB6C;
  --lime-soft: #F1FEB8;
  --char: #333F3C;
  --bg: #FFFFFF;
  --off: #EBEDE8;
  --off-soft: #F4F6F2;
  --text: #0F1F1A;
  --text-mute: #5A6A65;
  --line: rgba(0, 72, 56, 0.10);
  --line-strong: rgba(0, 72, 56, 0.18);

  /* Spacing */
  --xs: 4px;
  --sm: 8px;
  --md: 16px;
  --lg: 32px;
  --xl: 64px;
  --section: 120px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.3s;
  --t-slow: 0.8s;

  /* Layout */
  --max: 1240px;

  /* Type */
  --font: 'Aspekta', 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
input, select, textarea { font: inherit; }

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--section) 0;
  position: relative;
}

.section--soft { background: var(--off-soft); }

.section--dark {
  background: var(--green-deep);
  color: var(--off);
  border-top: 1px solid var(--green-darker);
  border-bottom: 1px solid var(--green-darker);
}

.section--cta { padding: var(--xl) 0; }

.section--tight { padding: var(--xl) 0; }

.section__head {
  max-width: 760px;
  margin: 0 auto var(--xl);
  text-align: center;
}

.section__head .lede { margin-top: var(--md); }

/* ========== TYPOGRAPHY ========== */
.display {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-size: clamp(40px, 5.5vw, 76px);
  color: var(--green);
  text-wrap: balance;
}

.display--md {
  font-size: clamp(30px, 3.5vw, 48px);
}

.display--light { color: var(--off); }

.lede {
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-mute);
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.lede--light { color: rgba(235, 237, 232, 0.75); }

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0, 72, 56, 0.06);
  color: var(--green);
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: var(--lg);
}

.label svg { width: 12px; height: 12px; }

.label--lime {
  background: rgba(226, 251, 108, 0.12);
  color: var(--lime);
}

.kicker {
  display: inline-block;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--green);
  background: var(--lime);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: var(--md);
}

/* ========== NAV ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--lg);
  height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 34px;
  height: 34px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}
.brand__mark svg,
.brand__mark img { width: 100%; height: 100%; object-fit: cover; }

.nav__links {
  display: flex;
  gap: 28px;
}

.nav__links a {
  color: var(--char);
  font-size: 14.5px;
  font-weight: 500;
  transition: color var(--t-fast) var(--ease);
}

.nav__links a:hover { color: var(--green); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--off);
}
.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -12px rgba(0, 72, 56, 0.4);
}

.btn--ghost {
  background: var(--bg);
  border-color: var(--line-strong);
  color: var(--green);
}
.btn--ghost:hover {
  background: var(--off-soft);
  border-color: var(--green);
}

.btn--lime {
  background: var(--lime);
  color: var(--green);
}
.btn--lime:hover {
  background: var(--lime-soft);
  color: var(--green);
  transform: translateY(-1px);
}

.btn-link {
  color: var(--char);
  font-weight: 500;
  font-size: 14.5px;
  transition: color var(--t-fast) var(--ease);
}
.btn-link:hover { color: var(--green); }

.btn-link--light {
  color: rgba(235, 237, 232, 0.7);
}
.btn-link--light:hover { color: var(--lime); }

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--lime), 0 0 0 5px var(--green);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 100px 0 60px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--off-soft) 0%, var(--bg) 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 72, 56, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 72, 56, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 60% 60% at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, black 30%, transparent 75%);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero h1 { margin: 0 auto var(--lg); }

.hero__sub {
  max-width: 600px;
  margin: 0 auto var(--lg);
  font-size: clamp(15px, 1.15vw, 18px);
  color: var(--text-mute);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: var(--lg);
  box-shadow: 0 6px 18px -10px rgba(0, 72, 56, 0.18);
}
.chip__icon { width: 14px; height: 14px; }

.chip--launch {
  background: var(--lime);
  color: var(--green);
  border-color: var(--lime);
  font-weight: 600;
  margin-top: -22px;
  box-shadow: 0 8px 22px -10px rgba(226, 251, 108, 0.6);
}

.underline-word {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.underline-svg {
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -6px;
  width: calc(100% + 4px);
  height: 16px;
  opacity: 0;
  transform: translateY(6px) scaleX(0.4);
  transform-origin: left center;
  transition: opacity 0.7s var(--ease) 0.5s, transform 0.9s var(--ease) 0.5s;
}

.reveal.in-view .underline-svg {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

/* Floating personas */
.float {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.float--tl { top: 110px; left: 8%; }
.float--tr { top: 130px; right: 9%; }
.float--bl { bottom: 90px; left: 11%; }
.float--br { bottom: 100px; right: 10%; }

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--bg);
  box-shadow: 0 12px 24px -10px rgba(0, 72, 56, 0.25);
  background-size: cover;
  background-position: center;
  display: inline-block;
  flex-shrink: 0;
}

.avatar--a,
.avatar--b,
.avatar--c,
.avatar--d {
  background: var(--bg) url('images/Cowork.jpg') center/cover no-repeat;
}
.avatar--daniel { background: var(--bg) url('images/daniel-profile.jpg') center/cover no-repeat; }

.avatar--mini {
  width: 32px;
  height: 32px;
  border-width: 2px;
  flex-shrink: 0;
}

.arrow {
  width: 18px;
  height: 18px;
}

/* Trust strip */
.trust {
  position: relative;
  z-index: 2;
  margin-top: var(--xl);
  text-align: center;
  padding-top: var(--lg);
  border-top: 1px solid var(--line);
}

.trust__line {
  color: var(--text-mute);
  font-size: 13.5px;
  margin-bottom: 12px;
}

.trust__sources {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--green);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.trust__sources .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.4;
}

/* ========== CARDS & GRID ========== */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--stretch > * { align-self: stretch; }

@media (max-width: 980px) {
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px -28px rgba(0, 72, 56, 0.18);
}

.card__title {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 10px;
}

.card__body {
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.6;
}

.card--feature { padding: 26px; }
.card--big { padding: 36px; }

.bullets { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--text-mute);
  font-size: 14.5px;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 4px;
  background: var(--lime);
  border-radius: 4px;
}

/* ========== MINI UI MOCKS ========== */
.mock {
  margin-top: 22px;
  background: var(--off-soft);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 16px;
}

.mock__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mock__head strong {
  color: var(--green);
  font-size: 13.5px;
  font-weight: 600;
}

.mock__pill {
  font-size: 11px;
  color: var(--text-mute);
  background: var(--bg);
  padding: 3px 9px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
}

.mock__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.mock__row:first-of-type { border-top: 0; }
.mock__row--mute { opacity: 0.55; }

.mock__label { color: var(--char); flex: 1; }
.mock__sub { color: var(--text-mute); font-size: 12px; display: block; }
.mock__col { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.mock__col strong { font-size: 13px; color: var(--green); font-weight: 500; }

/* Chart bars */
.mock__bars {
  display: flex;
  align-items: flex-end;
  height: 110px;
  gap: 6px;
  margin: 8px 0 12px;
}

.mock__bars span {
  flex: 1;
  height: var(--h);
  background: rgba(0, 72, 56, 0.18);
  border-radius: 4px 4px 0 0;
  transition: background var(--t-fast) var(--ease);
}

.mock__bars .is-spike {
  background: var(--lime);
  position: relative;
}

.dot--lime {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  border: 2px solid var(--green);
}

/* Toggle */
.toggle {
  width: 32px;
  height: 18px;
  background: var(--line-strong);
  border-radius: var(--r-pill);
  position: relative;
  flex-shrink: 0;
  transition: background var(--t-fast) var(--ease);
}
.toggle span {
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: var(--bg);
  border-radius: 50%;
  transition: transform var(--t-fast) var(--ease);
}
.toggle.is-on { background: var(--green); }
.toggle.is-on span { transform: translateX(14px); }

/* ========== MODULES (dark section grid) ========== */
.modules {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: var(--lg);
}

@media (max-width: 1100px) { .modules { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .modules { grid-template-columns: 1fr; } }

.tile {
  background: var(--green-darker);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background var(--t-fast) var(--ease), transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}

.tile:hover {
  background: var(--green);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.tile__num {
  font-family: var(--font);
  font-weight: 600;
  font-size: 13px;
  color: var(--lime);
  letter-spacing: 0.08em;
}

.tile h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--off);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.tile p {
  font-size: 13px;
  color: rgba(235, 237, 232, 0.6);
  line-height: 1.5;
}

/* ========== CREDENTIAL ========== */
.cred {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .cred { grid-template-columns: 1fr; }
}

.cred__copy .display { color: var(--green); }
.cred__copy .lede { margin-top: var(--md); margin-bottom: var(--lg); max-width: none; }

.tiers { display: flex; flex-direction: column; gap: 0; }

.tier {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  display: flex;
  gap: var(--md);
  align-items: baseline;
}

.tier strong {
  font-weight: 500;
  letter-spacing: -0.01em;
  min-width: 160px;
  color: var(--green);
  font-size: 16px;
}

.tier span { color: var(--text-mute); font-size: 14px; }

.cred__visual { display: flex; justify-content: center; }

.badge {
  width: 320px;
  background: linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%);
  border-radius: var(--r-xl);
  padding: 28px;
  color: var(--off);
  position: relative;
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 0 36px 80px -32px rgba(0, 72, 56, 0.4);
}

.badge::before {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 65%);
  top: -80px;
  right: -80px;
  opacity: 0.18;
  filter: blur(20px);
}

.badge__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  position: relative;
}

.badge__top svg { width: 28px; height: 28px; }

.badge__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.badge__role {
  font-family: var(--font);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
}

.badge__sep {
  height: 1px;
  background: rgba(226, 251, 108, 0.3);
  margin: 14px 0;
  position: relative;
}

.badge__row {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
  font-size: 13px;
  position: relative;
}

.badge__row span { color: rgba(235, 237, 232, 0.6); }
.badge__row strong { color: var(--off); font-weight: 500; }

.badge__id {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--lime);
  text-transform: uppercase;
  position: relative;
}

/* ========== PRICING ========== */
.currency {
  display: inline-flex;
  margin-top: var(--lg);
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
}

.currency__btn {
  border: 0;
  background: transparent;
  color: var(--text-mute);
  padding: 8px 22px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.currency__btn.is-active {
  background: var(--green);
  color: var(--off);
}

.price-table {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: var(--xl);
}

.price-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: var(--lg);
  padding: 22px 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast) var(--ease);
}

.price-row:last-child { border-bottom: 0; }
.price-row:not(.price-row--head):hover { background: var(--off-soft); }

.price-row--head {
  background: var(--off-soft);
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text-mute);
  padding: 14px 28px;
}

.price-row--feature {
  background: linear-gradient(90deg, rgba(226, 251, 108, 0.15) 0%, rgba(226, 251, 108, 0.05) 100%);
  border-left: 4px solid var(--lime);
}

.price-row strong {
  font-weight: 500;
  letter-spacing: -0.015em;
  font-size: 16.5px;
  color: var(--green);
  display: block;
}

.price-row p {
  color: var(--text-mute);
  font-size: 13.5px;
  margin-top: 4px;
  line-height: 1.5;
}

.price-row__outcome {
  margin-top: 8px !important;
  color: var(--green) !important;
  font-style: italic;
  font-size: 13px !important;
  padding-left: 10px;
  border-left: 2px solid var(--lime);
}

.price { display: flex; flex-direction: column; gap: 3px; }

.price .cur {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 24px;
  color: var(--green);
}

.price small {
  color: var(--text-mute);
  font-size: 12.5px;
}

@media (max-width: 800px) {
  .price-row { grid-template-columns: 1fr; gap: 10px; padding: 20px; }
  .price-row--head { display: none; }
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--xl);
}

/* ========== QUOTE ========== */
.quote-wrap {
  max-width: 800px;
  text-align: center;
}

.quote-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--md);
  opacity: 0.85;
}

.quote {
  font-family: var(--font);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--green);
}

.quote__by {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: var(--lg);
}

.quote__by div { text-align: left; }
.quote__by strong { display: block; color: var(--green); font-weight: 600; font-size: 15px; }
.quote__by span { color: var(--text-mute); font-size: 13px; }

/* ========== STATS ========== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--lg);
  padding: var(--lg) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat { text-align: left; }

.stat strong {
  display: block;
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(36px, 3.6vw, 52px);
  letter-spacing: -0.035em;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.stat span {
  color: var(--text-mute);
  font-size: 14px;
  display: block;
}

/* ========== ENTERPRISE CTA BANNER ========== */
.cta-banner {
  background: var(--green-deep);
  background-image:
    radial-gradient(circle at 80% 30%, rgba(226, 251, 108, 0.12), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(226, 251, 108, 0.08), transparent 50%);
  border-radius: var(--r-xl);
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--green-darker);
}

@media (max-width: 900px) {
  .cta-banner { grid-template-columns: 1fr; padding: 36px; }
}

.cta-banner__copy .display { margin-bottom: var(--md); }
.cta-banner__copy .lede { margin: 0; max-width: none; }

.teams-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.avatar--large {
  width: 160px;
  height: 160px;
  border-width: 6px;
  box-shadow: 0 28px 56px -18px rgba(226, 251, 108, 0.35);
}

.teams-cta__by {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--off);
}

.teams-cta__by strong {
  color: var(--off);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.teams-cta__by span {
  color: rgba(235, 237, 232, 0.65);
  font-size: 13px;
}

.enq { display: flex; flex-direction: column; gap: 12px; }

.enq__intro {
  color: rgba(235, 237, 232, 0.78);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 6px;
  padding: 12px 14px;
  background: rgba(226, 251, 108, 0.06);
  border-left: 2px solid var(--lime);
  border-radius: 4px;
}

.enq__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 600px) { .enq__row { grid-template-columns: 1fr; } }

.enq label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(235, 237, 232, 0.7);
  font-weight: 500;
}

.enq input,
.enq select,
.enq textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(235, 237, 232, 0.15);
  border-radius: var(--r-md);
  padding: 11px 14px;
  color: var(--off);
  font-size: 14px;
  letter-spacing: -0.005em;
  text-transform: none;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.enq input::placeholder,
.enq textarea::placeholder { color: rgba(235, 237, 232, 0.35); }

.enq input:focus,
.enq select:focus,
.enq textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
}

.enq textarea { resize: vertical; min-height: 80px; }

.enq__ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 6px;
  flex-wrap: wrap;
}

.enq__ctas .btn--lime {
  background: var(--lime);
  color: var(--green);
}
.enq__ctas .btn--lime:hover {
  background: var(--lime-soft);
  color: var(--green);
}

/* ========== FAQ ========== */
.faq {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.faq__item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--md);
  cursor: pointer;
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--green);
  transition: color var(--t-fast) var(--ease);
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 20px;
  color: var(--green);
  flex-shrink: 0;
  background: var(--bg);
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.faq__item[open] summary::after {
  content: '\2212';
  background: var(--lime);
  border-color: var(--lime);
  transform: rotate(180deg);
}

.faq__item p {
  color: var(--text-mute);
  margin-top: 14px;
  font-size: 15px;
  max-width: 680px;
  line-height: 1.65;
}

/* ========== LEARN GRID (five things, as cards) ========== */
.learn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

.card--learn {
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px;
}

.learn-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--green);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  border-radius: 50%;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .card--learn { max-width: none; width: 100%; }
}

/* ========== PRICING CARDS (single or two-card grid) ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: var(--xl) auto 0;
  align-items: stretch;
}

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 64px -32px rgba(0, 72, 56, 0.18);
  display: flex;
  flex-direction: column;
}

.pricing-card--team {
  background: linear-gradient(180deg, var(--off-soft) 0%, var(--bg) 100%);
}

.pricing-card--team::before {
  background: var(--green);
}

.kicker--alt {
  background: var(--green);
  color: var(--lime);
}

.pricing-card__custom {
  font-family: var(--font);
  font-weight: 600;
  font-size: 44px;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 1;
}

.pricing-card__sub {
  color: var(--text-mute);
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 24px;
  min-height: 4.4em;
}

.pricing-card__sub strong { color: var(--green); font-weight: 600; }

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--lime);
}

.pricing-card .kicker { margin-bottom: var(--md); }

.pricing-card__title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(22px, 1.8vw, 26px);
  letter-spacing: -0.02em;
  color: var(--green);
  margin-bottom: 12px;
  min-height: 2.4em;
}

.pricing-card__desc {
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 28px;
  min-height: 4.8em;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  min-height: 70px;
}

.pricing-card__amount {
  font-family: var(--font);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.04em;
  color: var(--green);
  line-height: 1;
}

.pricing-card__per {
  color: var(--text-mute);
  font-size: 15px;
}

.pricing-card__volume {
  color: var(--text-mute);
  font-size: 13.5px;
  margin-bottom: 24px;
}

.pricing-card__volume .cur {
  color: var(--green);
  font-weight: 600;
}

.pricing-card__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 0;
}

.pricing-card__guarantee {
  color: var(--text-mute);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 360px;
  margin: auto auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

@media (max-width: 600px) {
  .pricing-card { padding: 28px 22px; }
  .pricing-card__amount { font-size: 44px; }
}

/* ========== FINAL CTA ========== */
.section--final {
  background: linear-gradient(180deg, var(--bg) 0%, var(--off-soft) 100%);
  padding: var(--xl) 0 var(--section);
}

.final-cta {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.final-cta .label { margin-bottom: var(--lg); }

.final-cta .display {
  margin-bottom: var(--md);
}

.final-cta .lede {
  margin: 0 auto var(--xl);
}

.final-cta__row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--lg);
}

.final-cta__direct {
  color: var(--text-mute);
  font-size: 14px;
  margin-top: var(--md);
}

.final-cta__direct a {
  color: var(--green);
  font-weight: 500;
  border-bottom: 1.5px solid var(--lime);
  padding-bottom: 1px;
  transition: color var(--t-fast) var(--ease);
}

.final-cta__direct a:hover { color: var(--green-deep); }

/* ========== FOOTER ========== */
.footer {
  background: var(--green-deep);
  color: var(--off);
  padding: var(--xl) 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: var(--xl);
  border-bottom: 1px solid var(--green-darker);
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; }
}

.footer__brand { max-width: 320px; }
.footer__brand .brand { color: var(--off); margin-bottom: var(--md); }
.footer__brand .brand__text { color: var(--off); }
.brand--footer .brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(226, 251, 108, 0.4);
}
.brand--footer .brand__mark img { object-fit: cover; }
.footer__brand p {
  color: rgba(235, 237, 232, 0.6);
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.6;
}
.footer__contact { color: var(--lime) !important; font-size: 14px !important; }

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 600px) { .footer__cols { grid-template-columns: 1fr 1fr; } }

.footer__cols h4 {
  color: var(--off);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer__cols a {
  display: block;
  color: rgba(235, 237, 232, 0.6);
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--t-fast) var(--ease);
}
.footer__cols a:hover { color: var(--lime); }

.footer__trust {
  padding: var(--lg) 0;
  border-top: 1px solid var(--green-darker);
  text-align: center;
}

.footer__trust-line {
  color: rgba(235, 237, 232, 0.55);
  font-size: 13px;
  margin-bottom: 10px;
}

.footer__trust-sources {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--lime);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.footer__trust-sources .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.5;
}

.footer__strip {
  padding: 20px 0;
  border-top: 1px solid var(--green-darker);
}

.footer__strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(235, 237, 232, 0.45);
  font-size: 13px;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .underline-svg { opacity: 1; transform: none; }
  .float { display: none; }
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 980px) {
  .float--tl { top: 80px; left: 4%; }
  .float--tr { top: 90px; right: 4%; }
  .float--bl { bottom: 60px; left: 4%; }
  .float--br { bottom: 70px; right: 4%; }
  .avatar { width: 50px; height: 50px; }
}

@media (max-width: 700px) {
  :root { --section: 80px; --xl: 48px; }
  .nav__links { display: none; }
  .hero { padding-top: 60px; }
  .float { display: none; }
  .nav__cta .btn-link { display: none; }
  .cta-banner { padding: 32px 24px; }

  /* Header brand tighter on small screens */
  .brand { font-size: 14.5px; gap: 8px; }
  .brand__mark { width: 28px; height: 28px; }

  /* Hide hard-coded line breaks in display headings on mobile */
  .display br { display: none; }

  /* Tighter container padding on very narrow screens */
  .container { padding: 0 20px; }

  /* Hero CTAs full width on narrow screens for easier tap */
  .hero__ctas .btn,
  .final-cta__row .btn { width: 100%; max-width: 320px; }
}
