/* ============================================================
   CenterCrest — styles.css
   Brand palette (from CenterCrest Brand Deck V4):
     Logo Green #46563B · Alt Green #556B35 · Grey #211D1D
     Off-White (Cream) family · Ochre #C18818 · Black #231F20
   Brand type: Gotham Bold / Gotham Medium.
   Montserrat is used as the licensed-web substitute for Gotham —
   if you have a Gotham webfont license, swap the font-family below.
   ============================================================ */
:root {
  --green: #46563b;        /* Logo Green */
  --green-dark: #39462f;   /* Logo Green, deepened */
  --green-deep: #2e3a26;
  --alt-green: #556b35;    /* Alt Green */
  --ochre: #c18818;        /* Ochre accent */
  --cream: #f1ede0;        /* Off-White (Cream), usable tint */
  --cream-light: #faf7f0;
  --surface: #fbf9f2;
  --border: #e2dcc9;
  --muted: #6b6f5e;
  --ink: #211d1d;          /* Grey */
  --white: #ffffff;
  --display: "Montserrat", "Gotham", sans-serif;
  --body: "Montserrat", "Gotham", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-weight: 400;
  background: var(--cream-light);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

.font-display { font-family: var(--display); }
::selection { background: var(--green); color: var(--cream); }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; }
.container-narrow { max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- eyebrow labels ---------- */
.eyebrow {
  font-family: var(--display);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--ochre);
}

h1, h2, h3 { font-family: var(--display); color: var(--green); letter-spacing: -0.02em; }
.h-xl { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 700; line-height: 1.05; }
.h-lg { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.12; }
.h-md { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.15; }

.text-muted { color: var(--muted); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- topo ring background ---------- */
.topo-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.6; }
.topo-bg svg { width: 100%; height: 100%; }

/* ---------- mountains ---------- */
.mountains { position: absolute; bottom: 0; left: 0; width: 100%; pointer-events: none; }
.mountains svg { display: block; width: 100%; height: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled { background: rgba(250, 247, 240, 0.9); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--border); }
.nav-inner {
  max-width: 80rem; margin: 0 auto; padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; }
.nav-logo svg { height: 30px; width: auto; }
.nav-links { display: none; align-items: center; gap: 2.2rem; }
.nav-links a, .nav-links .nav-drop-btn {
  font-size: 0.95rem; color: var(--ink); font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-drop-btn:hover { color: var(--green); }
.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 0.75rem); left: 50%; transform: translateX(-50%) translateY(6px);
  background: var(--white); border: 1px solid var(--border); border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(70, 86, 59, 0.12);
  padding: 0.5rem; min-width: 13rem;
  opacity: 0; visibility: hidden; transition: all 0.25s ease;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a { display: block; padding: 0.6rem 0.9rem; border-radius: 0.6rem; font-size: 0.9rem; }
.nav-drop-menu a:hover { background: var(--cream); }
.btn-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--cream);
  font-family: var(--display); font-weight: 600; font-size: 0.95rem;
  padding: 0.65rem 1.5rem; border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}
.btn-pill:hover { background: var(--green-dark); transform: translateY(-1px); }
.nav-burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--cream-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  opacity: 0; visibility: hidden; transition: 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--green); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
  .nav-cta-desktop { display: inline-flex; }
}
@media (max-width: 899px) {
  .nav-cta-desktop { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding: 9rem 0 6rem; }
@media (min-width: 768px) { .hero { padding: 11rem 0 8rem; } }
.hero-glow {
  position: absolute; top: -10rem; right: -10rem; height: 520px; width: 520px;
  border-radius: 50%; background: var(--cream); filter: blur(64px); opacity: 0.7;
}
.hero-grid {
  position: relative; max-width: 80rem; margin: 0 auto; padding: 0 1.25rem;
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); background: rgba(255, 255, 255, 0.7);
  border-radius: 999px; padding: 0.4rem 1rem;
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green);
}
.ping-dot { position: relative; display: inline-flex; height: 8px; width: 8px; }
.ping-dot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--ochre); opacity: 0.7; animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.ping-dot::after { content: ""; position: relative; display: block; height: 8px; width: 8px; border-radius: 50%; background: var(--ochre); }
@keyframes ping { 75%, 100% { transform: scale(2.4); opacity: 0; } }

.hero h1 { margin-top: 1.5rem; }
.hero-sub { margin-top: 1.5rem; max-width: 36rem; font-size: 1.125rem; color: var(--muted); }

.hero-ctas { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; align-items: center; } }

.btn-primary {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem;
  overflow: hidden; border-radius: 0.375rem; background: var(--green);
  padding: 1rem 2.25rem;
  font-family: var(--display); font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--cream);
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-primary .edge {
  position: absolute; top: 0; bottom: 0; left: 0; width: 4px;
  background: var(--ochre); transition: all 0.3s;
}
.btn-primary:hover .arrow { color: var(--ochre); }
.btn-primary:hover .edge { width: 100%; opacity: 0; }
.btn-primary .arrow { transition: transform 0.3s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--display); font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--green);
  position: relative;
}
.btn-ghost .play {
  display: flex; height: 36px; width: 36px; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(70, 86, 59, 0.4); transition: 0.25s;
}
.btn-ghost:hover .play { background: var(--ochre); border-color: var(--ochre); color: var(--white); }

.hero-stats { margin-top: 2.5rem; display: flex; align-items: center; gap: 2rem; font-size: 0.875rem; color: var(--muted); }
.hero-stats .divider { height: 40px; width: 1px; background: var(--border); }
.hero-stats .num { font-family: var(--display); font-size: 1.5rem; font-weight: 700; color: var(--green); display: block; }

/* --- hero phone panel --- */
.phone-panel {
  position: relative; border-radius: 1.5rem; border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(24px);
  padding: 1.5rem; box-shadow: 0 25px 50px -12px rgba(70, 86, 59, 0.1);
}
.phone-head {
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 1rem; background: var(--cream); padding: 1rem 1.25rem;
}
.phone-head-left { display: flex; align-items: center; gap: 0.9rem; }
.phone-avatar {
  display: flex; height: 42px; width: 42px; align-items: center; justify-content: center;
  border-radius: 0.8rem; background: var(--green); color: var(--cream); transition: 0.3s;
}
.phone-panel.off .phone-avatar { background: rgba(110, 114, 96, 0.2); color: var(--muted); }

/* animated voice indicator */
.voice-wave { display: inline-flex; align-items: center; gap: 3px; height: 20px; }
.voice-wave span {
  width: 3px; border-radius: 2px; background: currentColor;
  animation: voiceBar 1.1s ease-in-out infinite;
}
.voice-wave span:nth-child(1) { animation-delay: 0s; }
.voice-wave span:nth-child(2) { animation-delay: 0.18s; }
.voice-wave span:nth-child(3) { animation-delay: 0.36s; }
.voice-wave span:nth-child(4) { animation-delay: 0.54s; }
.voice-wave span:nth-child(5) { animation-delay: 0.72s; }
@keyframes voiceBar {
  0%, 100% { height: 5px; }
  30% { height: 18px; }
  60% { height: 9px; }
}
.phone-panel.off .voice-wave span { animation: none; height: 4px; }
.phone-title { font-family: var(--display); font-size: 0.875rem; font-weight: 700; color: var(--green); }
.phone-status { font-size: 0.78rem; color: var(--muted); }

.switch { position: relative; width: 56px; height: 30px; border-radius: 999px; background: var(--green); transition: 0.3s; flex-shrink: 0; }
.switch::after {
  content: ""; position: absolute; top: 3px; left: 29px; width: 24px; height: 24px;
  border-radius: 50%; background: var(--white); transition: 0.3s; box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.switch.off { background: #c6c0ab; }
.switch.off::after { left: 3px; }

.phone-body { margin-top: 1.25rem; min-height: 280px; display: flex; flex-direction: column; gap: 0.75rem; }
.bubble {
  max-width: 82%; border-radius: 1rem; padding: 0.7rem 1rem; font-size: 0.9rem; line-height: 1.45;
  opacity: 0; transform: translateY(10px); animation: bubbleIn 0.45s ease forwards;
}
.bubble.in { align-self: flex-start; background: #e9e4d3; color: var(--ink); }
.bubble.out { align-self: flex-end; background: var(--green); color: var(--cream); }
@keyframes bubbleIn { to { opacity: 1; transform: none; } }
.booked-chip {
  display: flex; align-items: center; gap: 0.7rem;
  border: 1px solid var(--border); border-radius: 0.9rem; background: var(--surface);
  padding: 0.85rem 1.1rem; font-size: 0.9rem; color: var(--ink);
  opacity: 0; transform: translateY(10px); animation: bubbleIn 0.45s ease forwards;
}
.booked-chip svg { color: var(--green); flex-shrink: 0; }

.phone-off-state { margin-top: 1.25rem; min-height: 280px; display: none; flex-direction: column; align-items: center; text-align: center; padding: 1.5rem 1rem 0; }
.phone-panel.off .phone-off-state { display: flex; }
.phone-panel.off .phone-body { display: none; }
.off-icon {
  display: flex; height: 52px; width: 52px; align-items: center; justify-content: center;
  border-radius: 1rem; border: 1px solid var(--border); background: var(--white); color: var(--muted);
}
.off-title { margin-top: 1.2rem; font-family: var(--display); font-weight: 700; color: var(--green); }
.off-text { margin-top: 0.6rem; font-size: 0.85rem; color: var(--muted); max-width: 26rem; }
.off-sms {
  margin-top: 1.4rem; text-align: left; border-radius: 1rem; background: #e9e4d3;
  padding: 0.8rem 1.1rem; font-size: 0.85rem; color: var(--ink); font-style: italic;
}

.flip-chip {
  position: absolute; left: -0.5rem; bottom: -1.1rem;
  background: var(--white); border: 1.5px solid var(--ochre); border-radius: 999px;
  padding: 0.5rem 1rem; font-size: 0.8rem; box-shadow: 0 8px 20px rgba(70, 86, 59, 0.1);
  animation: floaty 3s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ============================================================
   FEATURES  (How it works)
   ============================================================ */
.section { position: relative; padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

.features-grid { margin-top: 3.5rem; display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-card {
  border-radius: 1.5rem; border: 1px solid var(--border); background: var(--surface);
  padding: 2rem; transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(70, 86, 59, 0.08); }
.feature-card.dark { background: var(--green); border-color: var(--green); color: var(--cream); }
@media (min-width: 768px) {
  .feature-card.span2 { grid-column: span 2; }
}
.feature-icon {
  display: flex; height: 48px; width: 48px; align-items: center; justify-content: center;
  border-radius: 0.9rem; background: rgba(70, 86, 59, 0.08); color: var(--green);
}
.feature-card.dark .feature-icon { background: rgba(241, 237, 224, 0.12); color: var(--cream); }
.feature-card h3 { margin-top: 1.5rem; font-size: 1.25rem; font-weight: 700; }
.feature-card.dark h3 { color: var(--cream); }
.feature-card p { margin-top: 0.6rem; font-size: 0.95rem; color: var(--muted); }
.feature-card.dark p { color: rgba(241, 237, 224, 0.8); }

/* ============================================================
   TOGGLE SECTION  (You're in control)
   ============================================================ */
.control-section { position: relative; background: var(--cream); overflow: hidden; }
.control-copy { max-width: 34rem; }
.control-copy p { margin-top: 1.5rem; font-size: 1.05rem; color: var(--muted); }

.big-toggle {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 999px;
  padding: 0.6rem 1.4rem;
}
.big-toggle .lbl { font-size: 0.95rem; color: var(--muted); transition: 0.2s; }
.big-toggle .lbl.active { color: var(--green); font-weight: 600; }
.big-switch { position: relative; width: 76px; height: 40px; border-radius: 999px; background: var(--green); transition: 0.3s; }
.big-switch .knob {
  position: absolute; top: 4px; left: 40px; width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); transition: 0.3s; display: flex; align-items: center; justify-content: center;
  color: var(--green); box-shadow: 0 1px 5px rgba(0,0,0,0.25);
}
.big-switch.off { background: #c6c0ab; }
.big-switch.off .knob { left: 4px; }

.agent-card {
  position: relative; margin-top: 3rem; border-radius: 1.5rem; background: var(--white);
  border: 1px solid var(--border); box-shadow: 0 25px 50px -12px rgba(70, 86, 59, 0.12);
  padding: 2.3rem;
}
.agent-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cream); border-radius: 999px; padding: 0.45rem 1.1rem;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
}
.agent-card h3 { margin-top: 1.4rem; font-size: 1.5rem; }
.agent-card > p { margin-top: 0.8rem; color: var(--muted); }
.agent-checks { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.9rem; }
.agent-checks li { display: flex; align-items: center; gap: 0.9rem; color: var(--ink); font-size: 0.98rem; }
.check-dot {
  display: flex; height: 24px; width: 24px; flex-shrink: 0; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--alt-green); color: var(--cream);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 700px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
.industry-card {
  display: block; border-radius: 1.25rem; border: 1px solid var(--border); background: var(--white);
  overflow: hidden; transition: transform 0.3s, box-shadow 0.3s;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 22px 44px rgba(70, 86, 59, 0.12); }
.industry-media { position: relative; height: 190px; margin: 0.8rem; border-radius: 0.9rem; overflow: hidden; }
.industry-media img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.5s; filter: saturate(0.6); }
.industry-card:hover .industry-media img { transform: scale(1.05); }
.industry-icon {
  position: absolute; top: 0.7rem; left: 0.7rem;
  display: flex; height: 40px; width: 40px; align-items: center; justify-content: center;
  border-radius: 0.7rem; background: rgba(250, 247, 240, 0.92); color: var(--green);
}
.industry-body { padding: 0.6rem 1.4rem 1.5rem; }
.industry-title { display: flex; align-items: center; justify-content: space-between; }
.industry-title h3 { font-size: 1.2rem; }
.industry-title svg { color: var(--green); transition: transform 0.25s; }
.industry-card:hover .industry-title svg { transform: translate(3px, -3px); }
.industry-body p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section { border-top: 1px solid var(--border); background: var(--cream-light); }
.stats-grid { margin-top: 3.5rem; display: grid; gap: 2.5rem; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--display); font-size: clamp(3rem, 5vw, 4.2rem); font-weight: 700; color: var(--green); line-height: 1; }
.stat-cap { margin-top: 0.8rem; font-size: 0.95rem; color: var(--muted); max-width: 16rem; }

/* ============================================================
   CRM MARQUEE
   ============================================================ */
.crm-section { padding: 5rem 0 6rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); }
.crm-head { text-align: center; max-width: 42rem; margin: 0 auto; }
.crm-head p.note { margin-top: 1rem; color: var(--muted); }
.marquee-wrap {
  position: relative; margin-top: 3rem; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track { display: flex; width: max-content; gap: 1.25rem; animation: marquee 45s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.crm-card {
  display: flex; height: 80px; width: 208px; flex-shrink: 0;
  align-items: center; justify-content: center; gap: 0.75rem;
  border-radius: 1rem; border: 1px solid var(--border); background: var(--white);
  padding: 0 1.5rem; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s, transform 0.25s;
}
.crm-card:hover { border-color: var(--alt-green); transform: translateY(-4px); }
.crm-card img { height: 28px; width: 28px; object-fit: contain; flex-shrink: 0; }
.crm-card span { font-family: var(--display); font-weight: 700; color: var(--green); font-size: 1rem; white-space: nowrap; }
.crm-foot { margin-top: 2rem; text-align: center; font-size: 0.875rem; color: rgba(110, 114, 96, 0.7); }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap { position: relative; background: var(--green-dark); color: var(--cream); overflow: hidden; }
.roadmap .eyebrow { color: rgba(241, 237, 224, 0.55); }
.roadmap h2 { color: var(--cream); }
.roadmap-grid { position: relative; margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .roadmap-grid { grid-template-columns: repeat(3, 1fr); } }
.road-card { border-radius: 1.5rem; padding: 2rem; border: 1px solid rgba(241, 237, 224, 0.18); }
.road-card.now { background: var(--surface); border-color: var(--surface); color: var(--ink); }
.road-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(241, 237, 224, 0.6);
}
.road-card.now .road-tag { color: var(--ochre); }
.road-card h3 { margin-top: 1.1rem; font-size: 1.6rem; color: var(--cream); }
.road-card.now h3 { color: var(--green); }
.road-card ul { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; }
.road-card li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.95rem; color: rgba(241, 237, 224, 0.85); }
.road-card.now li { color: var(--ink); }
.road-card li svg { flex-shrink: 0; margin-top: 3px; color: rgba(241, 237, 224, 0.6); }
.road-card.now li svg { color: var(--green); }

/* ============================================================
   BOOK A DEMO
   ============================================================ */
.bookdemo { position: relative; background: var(--cream-light); overflow: hidden; }
.bookdemo-grid { position: relative; display: grid; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .bookdemo-grid { grid-template-columns: 2fr 3fr; } }
.bd-checks { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.bd-checks li { display: flex; align-items: center; gap: 0.8rem; color: var(--muted); }
.bd-checks svg { color: var(--green); flex-shrink: 0; }
.calendly-card {
  border-radius: 1.5rem; border: 1px solid var(--border); background: var(--white);
  padding: 0.5rem; box-shadow: 0 25px 50px -12px rgba(70, 86, 59, 0.1); overflow: hidden;
}
.calendly-inline-widget { border-radius: 1rem; overflow: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: var(--green); color: var(--cream); overflow: hidden; }
.footer-inner { position: relative; max-width: 80rem; margin: 0 auto; padding: 4rem 1.25rem; }
.footer-grid { display: grid; gap: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-logo img, .footer-logo svg { height: 48px; width: auto; }
.footer-tag { margin-top: 1.25rem; font-size: 0.875rem; color: rgba(241, 237, 224, 0.7); }
.footer h4 {
  font-family: var(--display); font-size: 0.875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: rgba(241, 237, 224, 0.6);
}
.footer-col ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; color: rgba(241, 237, 224, 0.85); }
.footer-col a:hover { color: var(--white); }
.footer-cta-text { margin-top: 1rem; font-size: 0.9rem; color: rgba(241, 237, 224, 0.85); }
.btn-cream {
  margin-top: 1rem; display: inline-block; border-radius: 999px; background: var(--cream);
  padding: 0.65rem 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--green);
  transition: background 0.2s;
}
.btn-cream:hover { background: var(--white); }
.footer-bottom {
  margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid rgba(241, 237, 224, 0.15);
  display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: rgba(241, 237, 224, 0.6);
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-motto { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.3em; color: rgba(241, 237, 224, 0.5); }

/* ============================================================
   INDUSTRY DETAIL PAGE
   ============================================================ */
.ind-hero { position: relative; overflow: hidden; padding: 10rem 0 4rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.9rem; }
.breadcrumb a { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.95rem; color: var(--ink); }
.breadcrumb a:hover { color: var(--green); }
.crumb-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--border); background: var(--white); border-radius: 999px;
  padding: 0.4rem 1rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green);
}
.ind-hero h1 { margin-top: 1.6rem; max-width: 46rem; }
.ind-hero .lede { margin-top: 1.5rem; max-width: 38rem; font-size: 1.1rem; color: var(--muted); }
.ind-hero .btn-primary { margin-top: 2.2rem; border-radius: 999px; text-transform: none; letter-spacing: 0; font-size: 1rem; padding: 0.95rem 2rem; }

.ind-media { position: relative; margin-top: 3.5rem; border-radius: 1.5rem; overflow: hidden; }
.ind-media img { width: 100%; height: clamp(300px, 48vw, 560px); object-fit: cover; filter: saturate(0.6); }
.ind-stat {
  position: absolute; left: 0; bottom: 2rem; transform: translateX(-0.5rem);
  background: var(--white); border-radius: 0 1rem 1rem 0; padding: 1.3rem 1.7rem 1.3rem 1.8rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14); max-width: 250px;
}
.ind-stat .num { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--ochre); line-height: 1.1; }
.ind-stat .cap { margin-top: 0.35rem; font-size: 0.8rem; color: var(--muted); }

.does-grid { margin-top: 3rem; display: grid; gap: 1.4rem; }
@media (min-width: 768px) { .does-grid { grid-template-columns: repeat(2, 1fr); } }
.does-card {
  display: flex; align-items: center; gap: 1.1rem;
  border-radius: 1.25rem; border: 1px solid var(--border); background: var(--surface);
  padding: 1.7rem 1.9rem; font-size: 1.05rem; color: var(--ink);
}
.does-card .check-dot { height: 34px; width: 34px; }

.flow-section { background: var(--cream); }
.flow-grid { margin-top: 3rem; display: grid; gap: 1.4rem; }
@media (min-width: 640px) { .flow-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .flow-grid { grid-template-columns: repeat(4, 1fr); } }
.flow-card { border-radius: 1.25rem; border: 1px solid var(--border); background: var(--white); padding: 1.8rem; }
.flow-num { font-family: var(--display); font-size: 2.4rem; font-weight: 700; color: rgba(70, 86, 59, 0.25); }
.flow-card h3 { margin-top: 0.7rem; font-size: 1.15rem; }
.flow-card p { margin-top: 0.6rem; font-size: 0.9rem; color: var(--muted); }

.questions-card {
  position: relative; border-radius: 1.5rem; background: var(--green-dark); color: var(--cream);
  padding: 3rem; overflow: hidden;
}
.questions-card .quote-mark { color: rgba(241, 237, 224, 0.45); font-family: var(--display); }
.questions-card .tag {
  margin-top: 1.2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(241, 237, 224, 0.6);
}
.questions-card ul { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 1.1rem; }
.questions-card li {
  display: flex; align-items: baseline; gap: 1rem;
  font-family: var(--display); font-size: clamp(1.15rem, 2.2vw, 1.5rem); font-weight: 600; color: var(--cream);
}
.questions-card li .arr { color: var(--ochre); flex-shrink: 0; }
.questions-card .note { margin-top: 1.8rem; font-size: 0.9rem; color: rgba(241, 237, 224, 0.7); max-width: 34rem; font-family: var(--body); }

.also-grid { margin-top: 1.6rem; display: grid; gap: 1.2rem; }
@media (min-width: 640px) { .also-grid { grid-template-columns: repeat(3, 1fr); } }
.also-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-radius: 1.1rem; border: 1px solid var(--border); background: var(--white);
  padding: 1.2rem 1.4rem; transition: transform 0.25s, box-shadow 0.25s;
}
.also-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(70, 86, 59, 0.1); }
.also-left { display: flex; align-items: center; gap: 0.9rem; font-family: var(--display); font-weight: 700; color: var(--green); }
.also-icon {
  display: flex; height: 44px; width: 44px; align-items: center; justify-content: center;
  border-radius: 0.8rem; background: var(--cream); color: var(--green);
}
.also-card > svg { color: var(--green); }

/* ============================================================
   ABOUT PAGE — values
   ============================================================ */
.values-grid { display: grid; gap: 4rem; max-width: 62rem; margin: 0 auto; }
@media (min-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .values-grid > div { padding: 0 3.5rem; }
  .values-grid > div:last-child { border-left: 1px solid var(--border); }
}
.values-list { margin-top: 2.2rem; display: flex; flex-direction: column; gap: 2.2rem; text-align: left; }
.values-list li { display: flex; align-items: flex-start; gap: 1.4rem; }
.value-letter {
  font-family: var(--display); font-size: 2.6rem; font-weight: 800; line-height: 1;
  color: var(--green); flex-shrink: 0; width: 3rem;
}
.value-letter.ochre { color: var(--ochre); }
.values-list h3 { font-size: 1.15rem; color: var(--ink); font-weight: 700; }
.values-list p { margin-top: 0.35rem; font-size: 0.95rem; color: var(--muted); }
.values-list p.q { font-style: italic; }
.beliefs p { font-size: 1.2rem; color: rgba(241, 237, 224, 0.9); font-style: italic; margin-top: 0.4rem; }
