@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* =====================================================
   Crewstro — shared stylesheet
   "Crewstro Premium" — Oura-inspired: calm, minimal, luxurious
   Palette: Porcelain + Midnight + restrained refined Gold
   Font: Manrope (200..800) for everything
   ===================================================== */

:root {
  /* Midnight (primary / ink) */
  --ink: #16181F;
  --ink-2: #232733;
  --ink-soft: #2C3140;
  --midnight: #1C2230;
  --midnight-band: #141821;

  /* Refined gold accent (used SPARINGLY) */
  --coral: #7E6011;          /* legacy var remapped -> gold for text/icons on LIGHT bg (AA) */
  --coral-dark: #7E6011;     /* deeper gold */
  --coral-light: #F2EEE1;    /* soft gold wash for light chips */
  --gold: #7E6011;           /* gold on light — darkened to clear WCAG AA for small text/icons on white/cream/gold-soft */
  --gold-on-dark: #C9A227;   /* gold on dark surfaces only */
  --gold-soft: #F2EEE1;      /* faint warm gold tint */

  /* Secondary sage (checkmarks / success) */
  --violet: #5F7E63;         /* legacy var remapped -> sage */
  --sage: #5F7E63;
  --sage-deep: #4C6650;

  /* Porcelain neutrals */
  --cream: #F6F5F2;          /* porcelain background */
  --cream-warm: #EFEDE8;     /* slightly deeper porcelain */
  --peach: #EEEAE0;          /* neutral warm tint (was peach) */
  --mint: #E4EBE3;           /* soft sage tint (was mint) */
  --lilac: #EAE9E4;          /* neutral tint (was lilac) */
  --white: #FFFFFF;
  --border: #E8E6E1;         /* hairline border */
  --text: #16181F;           /* ink text */
  --text-mute: #6E7178;      /* muted text */

  --font-display: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 26px;

  --shadow-soft: 0 2px 14px rgba(20, 22, 28, 0.04), 0 12px 32px -22px rgba(20, 22, 28, 0.10);
  --shadow-card: 0 18px 48px -24px rgba(20, 22, 28, 0.18);
  --shadow-cta: 0 10px 26px -14px rgba(28, 34, 48, 0.45);
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 300;
  color: var(--ink);
}
h4, h5 { font-weight: 600; letter-spacing: -0.01em; }

/* Accessibility — clear focus rings everywhere */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ---------- Promo banner ---------- */
.promo-bar {
  background: var(--midnight-band);
  color: var(--cream);
  padding: 11px 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 30;
}
.promo-bar a {
  color: var(--gold-on-dark);
  font-weight: 600;
  margin-left: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.promo-bar .spark { display: inline-block; margin-right: 8px; transform: translateY(1px); color: var(--gold-on-dark); }

/* ---------- Navigation (glassy sticky) ---------- */
.nav-wrap {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--midnight);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.logo-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 28%, rgba(201, 162, 39, 0.55) 0%, transparent 58%);
}
.logo-mark svg { position: relative; z-index: 1; }

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu li a {
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 10px;
  transition: background .18s ease, color .18s ease;
}
.nav-menu li a:hover { background: var(--cream-warm); }
.nav-menu li a.active {
  color: var(--ink);
  background: transparent;
  position: relative;
}
.nav-menu li a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-right .phone { font-weight: 600; font-size: 14px; color: var(--ink); padding: 8px 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary { background: var(--midnight); color: var(--white); box-shadow: var(--shadow-cta); }
.btn-primary:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: 0 14px 30px -14px rgba(28, 34, 48, 0.5); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--white); border-color: var(--ink); transform: translateY(-1px); }
.btn-dark { background: var(--midnight); color: var(--cream); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

.nav-mobile-toggle { display: none; color: var(--ink); }

/* ---------- Generic page hero ---------- */
.page-hero {
  padding: 96px 0 76px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(152, 116, 27, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(95, 126, 99, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--gold);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.page-hero .eyebrow .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold);
}
.page-hero .eyebrow .ico svg { width: 16px; height: 16px; display: block; }
.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 74px);
  font-weight: 300;
  max-width: 900px;
  margin: 0 auto 24px;
}
.page-hero h1 .accent { color: var(--gold); font-style: normal; font-weight: 400; }
.page-hero p {
  font-size: 19px;
  color: var(--text-mute);
  max-width: 640px;
  margin: 0 auto 38px;
  line-height: 1.6;
  font-weight: 400;
}
.page-hero .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Home hero (special) ---------- */
.hero { position: relative; background: var(--cream); padding: 80px 0 56px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -240px; right: -220px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(152, 116, 27, 0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; bottom: -320px; left: -220px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(95, 126, 99, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 64px; align-items: center;
}
.hero-copy { position: relative; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 16px 6px 8px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--ink);
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
}
.hero-kicker .dot {
  width: 20px; height: 20px; background: var(--gold);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 11px;
}
.hero h1 {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300; color: var(--ink); margin-bottom: 26px;
  letter-spacing: -0.025em;
}
.hero h1 .accent { color: var(--gold); font-style: normal; font-weight: 400; }
.hero-sub {
  font-size: 20px; color: var(--text-mute);
  max-width: 540px; margin-bottom: 38px; line-height: 1.55;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-reviews { display: flex; gap: 36px; align-items: center; }
.review-item { display: flex; align-items: center; gap: 12px; }
.review-score {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 300; color: var(--ink); line-height: 1;
  letter-spacing: -0.02em;
}
.review-meta { font-size: 12px; color: var(--text-mute); line-height: 1.3; }
.review-meta .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

.hero-visual { position: relative; }
.hero-phone {
  position: relative; background: var(--midnight);
  border-radius: 38px; padding: 14px;
  box-shadow: var(--shadow-card);
  transform: rotate(2deg);
  max-width: 320px; margin: 0 auto;
}
.hero-phone-screen {
  background: var(--white); border-radius: 26px;
  padding: 22px; aspect-ratio: 9/17.5;
  display: flex; flex-direction: column; gap: 14px;
}
.ph-header { display: flex; justify-content: space-between; align-items: center; }
.ph-label { font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600; }
.ph-title { font-family: var(--font-display); font-weight: 300; font-size: 23px; color: var(--ink); letter-spacing: -0.02em; }
.ph-card {
  padding: 15px; border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.ph-card strong { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink); }
.ph-card small { font-size: 11px; color: var(--text-mute); display: block; margin-top: 2px; }
.ph-status { font-size: 10px; padding: 4px 9px; border-radius: 999px; font-weight: 600; }
.ph-status.paid { background: var(--mint); color: var(--sage-deep); }
.ph-status.pending { background: var(--gold-soft); color: var(--gold); }
.ph-total {
  margin-top: auto; padding: 18px; border-radius: var(--radius);
  background: var(--midnight); color: var(--cream);
}
.ph-total .lbl { font-size: 11px; opacity: .65; text-transform: uppercase; letter-spacing: 0.14em; }
.ph-total .val { font-family: var(--font-display); font-size: 27px; font-weight: 300; margin-top: 4px; letter-spacing: -0.02em; }
.ph-total .diff { font-size: 11px; color: var(--gold-on-dark); margin-top: 6px; font-weight: 600; }

.hero-float-card {
  position: absolute; background: var(--white);
  border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.hero-float-card .icon {
  width: 36px; height: 36px;
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.hero-float-card .label { font-size: 11px; color: var(--text-mute); }
.hero-float-card .val { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 16px; }
.float-1 { top: 20px; left: -10px; }
.float-1 .icon { background: var(--mint); color: var(--sage-deep); }
.float-2 { bottom: 40px; right: -20px; }
.float-2 .icon { background: var(--gold-soft); color: var(--gold); }

/* ---------- Marquee ---------- */
.marquee-wrap { background: var(--cream); padding: 44px 0 64px; overflow: hidden; }
.marquee { display: flex; gap: 20px; animation: scroll 40s linear infinite; width: max-content; }
.marquee-card {
  flex-shrink: 0; width: 300px; height: 200px;
  border-radius: var(--radius-lg); position: relative; overflow: hidden;
  background: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}
.marquee-card img { width: 100%; height: 100%; object-fit: cover; }
.marquee-card .caption {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  color: white; font-size: 13px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.marquee-card .caption strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 2px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { animation: none; }
  * { scroll-behavior: auto; }
}

/* ---------- Pillars (home) ---------- */
.pillars { padding: 112px 0 128px; background: var(--cream); }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 300; margin-bottom: 20px; }
.section-head p { font-size: 18px; color: var(--text-mute); font-weight: 400; }

/* Base eyebrow + accent (page-hero / ai-head variants below override these) */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.accent { color: var(--gold); font-weight: 400; font-style: normal; }

.tab-bar {
  display: flex; justify-content: center; gap: 6px;
  flex-wrap: wrap; margin: 0 auto 50px;
  padding: 6px; background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px; width: fit-content;
  box-shadow: var(--shadow-soft);
}
.tab-bar button, .tab-btn {
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 500; font-size: 15px;
  color: var(--text-mute);
  transition: all .2s ease;
  cursor: pointer; background: transparent; border: none;
  font-family: inherit;
}
.tab-bar button.active, .tab-btn.active { background: var(--midnight); color: var(--cream); }
.tab-bar button:not(.active):hover, .tab-btn:not(.active):hover { color: var(--ink); }

.pillar-panel {
  display: none; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 44px; background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.pillar-panel.active { display: grid; }
.pillar-content h3 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 300; margin-bottom: 18px; }
.pillar-content p { font-size: 17px; color: var(--text-mute); margin-bottom: 28px; font-weight: 400; }
.pillar-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--gold);
  padding-bottom: 2px; border-bottom: 1.5px solid var(--gold);
  transition: gap .2s ease;
}
.pillar-link:hover { gap: 12px; }
.pillar-stat { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); }
.pillar-stat .num { font-family: var(--font-display); font-size: 42px; font-weight: 300; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.pillar-stat .lbl { font-size: 14px; color: var(--text-mute); margin-top: 6px; }
.pillar-quote {
  margin-top: 28px; padding: 22px;
  background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 15px; font-style: normal;
  color: var(--ink); line-height: 1.6;
}
.pillar-quote-author {
  display: flex; align-items: center; gap: 10px;
  margin-top: 14px; font-style: normal;
}
.pillar-quote-author .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--midnight);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-on-dark); font-weight: 600; font-family: var(--font-display);
}
.pillar-quote-author small { font-size: 12px; color: var(--text-mute); display: block; }

.pillar-visual {
  aspect-ratio: 1/1; border-radius: var(--radius-xl);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  border: 1px solid var(--border);
}
.pillar-visual.v-1 { background: linear-gradient(135deg, #FBFAF7 0%, var(--cream-warm) 100%); }
.pillar-visual.v-2 { background: linear-gradient(135deg, #FBFAF7 0%, var(--lilac) 100%); }
.pillar-visual.v-3 { background: linear-gradient(135deg, #FBFAF7 0%, var(--mint) 100%); }
.pillar-visual.v-4 { background: linear-gradient(135deg, #FBFAF7 0%, var(--gold-soft) 100%); }

.ui-card {
  background: var(--white); border-radius: var(--radius);
  padding: 22px; width: 100%; max-width: 400px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.ui-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.ui-card-head strong { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.ui-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.ui-row:last-child { border-bottom: none; }
.ui-pill { font-size: 11px; padding: 3px 9px; border-radius: 999px; font-weight: 600; }
.pill-green { background: var(--mint); color: var(--sage-deep); }
.pill-coral { background: var(--gold-soft); color: var(--gold); }
.pill-violet { background: var(--lilac); color: var(--ink); }
.pill-dark { background: var(--midnight); color: var(--cream); }

/* ---------- Stats band (dark midnight) ---------- */
.stats-band {
  padding: 112px 0; background: var(--midnight-band);
  color: var(--cream); position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute;
  top: -150px; right: -150px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201, 162, 39, .12) 0%, transparent 70%);
}
.stats-band .container { position: relative; z-index: 2; }
.stats-band h2 {
  color: var(--cream);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 300;
  margin-bottom: 60px; text-align: center;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 60px; }
.stat-item .big {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 300; color: var(--gold-on-dark);
  line-height: 1; margin-bottom: 12px; letter-spacing: -0.03em;
}
.stat-item p { font-size: 15px; color: var(--cream); opacity: .82; line-height: 1.5; }
.stats-cta { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.stats-cta small { font-size: 13px; opacity: .65; }

/* ---------- AI Section ---------- */
.ai-section { padding: 128px 0; background: var(--cream-warm); }
.ai-head { text-align: center; max-width: 780px; margin: 0 auto 70px; }
.ai-head .eyebrow {
  display: inline-block; padding: 0;
  background: transparent; color: var(--gold);
  border-radius: 0;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 22px;
}
.ai-head h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 300; }
.ai-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 44px; }
.ai-card {
  background: var(--white); border-radius: var(--radius);
  padding: 38px; border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ai-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ai-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.ai-card:nth-child(1) .ai-icon { background: var(--gold-soft); color: var(--gold); }
.ai-card:nth-child(2) .ai-icon { background: var(--mint); color: var(--sage-deep); }
.ai-card:nth-child(3) .ai-icon { background: var(--lilac); color: var(--ink); }
.ai-card h4 { font-size: 22px; font-weight: 600; margin-bottom: 14px; }
.ai-card p { font-size: 15px; color: var(--text-mute); line-height: 1.65; }
.ai-cta { text-align: center; }

/* ---------- Industries ---------- */
.industries { padding: 112px 0; background: var(--cream); }
.ind-head { text-align: center; margin-bottom: 52px; }
.ind-head h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 300; }
.ind-grid, .ind-pills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px; max-width: 1000px; margin: 0 auto 40px;
}
.ind-pill {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 18px 13px 13px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 500; font-size: 15px; color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.ind-pill:hover { background: var(--midnight); color: var(--cream); transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--midnight); }
/* Refined monoline icon tile */
.ind-pill .ico {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-soft);
  border-radius: 10px;
  color: var(--gold);
  transition: background .2s ease, color .2s ease;
}
.ind-pill .ico svg { width: 20px; height: 20px; display: block; }
.ind-pill:hover .ico { background: rgba(201, 162, 39, 0.16); color: var(--gold-on-dark); }
.ind-more { text-align: center; }
.ind-more a { font-weight: 600; color: var(--gold); border-bottom: 1.5px solid var(--gold); padding-bottom: 2px; }

/* Industry detail cards (industries.html) */
.ind-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.ind-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.ind-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.ind-card .emoji {
  width: 60px; height: 60px;
  background: var(--gold-soft); border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  color: var(--gold);
  transition: background .25s ease, color .25s ease;
}
.ind-card .emoji svg { width: 28px; height: 28px; display: block; }
.ind-card-link:hover .emoji { background: rgba(126, 96, 17, 0.10); }
.ind-card h4 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.ind-card p { font-size: 15px; color: var(--text-mute); margin-bottom: 18px; line-height: 1.65; }
.ind-card a, .ind-card .card-link { font-weight: 600; color: var(--gold); font-size: 14px; }
.ind-card-link { display: flex; flex-direction: column; cursor: pointer; text-decoration: none; color: inherit; }
.ind-card-link:hover { color: inherit; }
.ind-card-link:hover .card-link { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Testimonial band ---------- */
.testimonial-band {
  padding: 128px 0; background: var(--cream-warm);
  position: relative; overflow: hidden;
}
.testimonial-band::before {
  content: "\201C"; position: absolute;
  top: -40px; left: 24px;
  font-family: var(--font-display); font-size: 360px; font-weight: 700;
  color: var(--gold); opacity: .08; line-height: 1;
}
.testimonial-band .container { max-width: 900px; text-align: center; position: relative; z-index: 2; }
.testimonial-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.3; color: var(--ink);
  margin-bottom: 38px; font-weight: 300;
  letter-spacing: -0.02em;
}
.test-author {
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
}
.test-author .ava {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--midnight); color: var(--gold-on-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600; font-size: 20px;
}
.test-author strong { font-family: var(--font-display); font-weight: 600; color: var(--ink); display: block; }
.test-author small { font-size: 13px; color: var(--text-mute); }

/* ---------- Back band ---------- */
.back-band { padding: 128px 0; background: var(--cream); text-align: center; }
.back-band h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 300; margin-bottom: 22px; max-width: 820px; margin-left: auto; margin-right: auto; }
.back-band p { font-size: 18px; color: var(--text-mute); max-width: 620px; margin: 0 auto 38px; }

/* ---------- Resources ---------- */
.resources { padding: 128px 0; background: var(--cream-warm); }
.res-head { text-align: center; margin-bottom: 60px; }
.res-head h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 300; }
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.res-grid .big-card { grid-column: span 2; grid-row: span 2; }
.res-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 280px;
}
.res-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.res-card-visual { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.res-card.big-card .res-card-visual { aspect-ratio: 16/9; }
.res-card-body { padding: 30px; flex-grow: 1; }
.res-card-body h4 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.res-card-body p { font-size: 15px; color: var(--text-mute); margin-bottom: 18px; }
.res-link { font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.bg-podcast { background: linear-gradient(135deg, var(--midnight-band) 0%, var(--ink-soft) 100%); }
.bg-academy { background: linear-gradient(135deg, var(--lilac) 0%, #DEDCD4 100%); }
.bg-tools { background: linear-gradient(135deg, var(--mint) 0%, #D6E0D4 100%); }
.bg-grants { background: linear-gradient(135deg, var(--midnight) 0%, var(--ink-soft) 100%); }
.bg-summit { background: linear-gradient(135deg, var(--gold-soft) 0%, #E8E0CB 100%); }
.res-visual-content {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display);
  font-size: 56px; font-weight: 300; letter-spacing: -0.03em;
}
.bg-academy .res-visual-content, .bg-tools .res-visual-content, .bg-summit .res-visual-content { color: var(--ink); }

/* ---------- Features page ---------- */
.features-section { padding: 88px 0 128px; background: var(--cream); }
.feature-group { margin-bottom: 80px; }
.feature-group:last-child { margin-bottom: 0; }
.feature-group-head {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.feature-group-head .fg-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--midnight); color: var(--gold-on-dark);
  font-size: 24px; flex-shrink: 0;
}
.feature-group-head .fg-icon svg { width: 28px; height: 28px; display: block; }
.feature-group-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 300;
  margin: 0;
}
.feature-group-head p { color: var(--text-mute); font-size: 15px; margin-top: 6px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature-card .check {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--mint); color: var(--sage-deep);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-card h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; }
.feature-card p { font-size: 14px; color: var(--text-mute); line-height: 1.6; }

.fg-icon.i-coral { background: var(--midnight); color: var(--gold-on-dark); }
.fg-icon.i-violet { background: var(--sage); color: #fff; }
.fg-icon.i-dark { background: var(--midnight); color: var(--gold-on-dark); }
.fg-icon.i-mint { background: var(--sage); color: #fff; }
.fg-icon.i-peach { background: var(--ink-soft); color: var(--gold-on-dark); }

/* ---------- Pricing page ---------- */
.pricing-section { padding: 48px 0 128px; background: var(--cream); }
.pricing-toggle {
  display: flex; justify-content: center;
  gap: 4px; padding: 4px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; width: fit-content;
  margin: 0 auto 60px;
  box-shadow: var(--shadow-soft);
}
.pricing-toggle button {
  padding: 10px 22px; border-radius: 999px;
  font-weight: 500; font-size: 14px;
  color: var(--text-mute); border: none; background: transparent; cursor: pointer;
  font-family: inherit;
}
.pricing-toggle button.active { background: var(--midnight); color: var(--cream); }
.pricing-toggle .save {
  background: var(--gold-soft); color: var(--gold);
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 999px;
  margin-left: 6px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; align-items: flex-start;
}
.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 42px 32px;
  position: relative; box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

/* ONE highlighted tier — gold ring on light card */
.price-card.featured {
  background: var(--white); color: var(--ink);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-card);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-card.featured h3 { color: var(--ink); }
.price-card.featured .price-tag { color: var(--ink); }
.price-card.featured .price-tag .currency, .price-card.featured .price-tag .period { color: var(--gold); }
.price-card.featured .tagline { color: var(--text-mute); }
.price-card.featured .price-divider { background: var(--border); }
.price-card.featured .feature-line { color: var(--ink); }
.price-card.featured .feature-line.muted { color: #B6B6BC; }
.price-card.featured .feature-line svg { color: var(--gold); }

.popular-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--midnight); color: var(--gold-on-dark);
  padding: 6px 18px; border-radius: 999px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.price-card h3 { font-size: 28px; font-weight: 300; margin-bottom: 6px; }
.price-card .tagline {
  font-size: 14px; color: var(--text-mute);
  min-height: 42px; margin-bottom: 24px;
}
.price-tag { display: flex; align-items: baseline; gap: 2px; margin-bottom: 28px; }
.price-tag .currency { font-family: var(--font-display); font-size: 24px; font-weight: 400; color: var(--gold); }
.price-tag .amount { font-family: var(--font-display); font-size: 62px; font-weight: 300; color: var(--ink); line-height: 1; letter-spacing: -0.04em; }
.price-tag .period { font-size: 16px; color: var(--text-mute); margin-left: 6px; }

.price-divider { height: 1px; background: var(--border); margin: 24px 0; }

.feature-line {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.5;
  padding: 7px 0; color: var(--ink);
}
.feature-line svg { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.feature-line.muted { color: #B6B6BC; text-decoration: line-through; text-decoration-color: rgba(182,182,188,.4); }
.feature-line.muted svg { color: #B6B6BC; }

/* Pricing comparison table */
.compare-section { padding: 88px 0; background: var(--cream-warm); }
.compare-section h2 { text-align: center; margin-bottom: 50px; font-size: clamp(30px, 4vw, 44px); font-weight: 300; }
.compare-table {
  width: 100%; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 18px 22px; text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th {
  background: var(--cream);
  font-family: var(--font-display); font-size: 16px;
  color: var(--ink); font-weight: 600;
}
.compare-table td:first-child { font-weight: 500; color: var(--ink); }
.compare-table td.center { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.tag-yes { color: var(--sage); font-weight: 700; font-size: 18px; }
.tag-no { color: #C7C6C2; font-size: 18px; }

/* FAQ */
.faq-section { padding: 112px 0; background: var(--cream); }
.faq-section h2 { text-align: center; margin-bottom: 40px; font-size: clamp(30px, 4vw, 44px); font-weight: 300; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-q {
  padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 500; font-size: 16px;
  color: var(--ink);
}
.faq-q:hover { background: var(--cream); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  transition: transform .2s ease;
  flex-shrink: 0; margin-left: 14px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 26px;
  color: var(--text-mute); font-size: 15px; line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 26px 24px; }

/* ---------- About page ---------- */
.about-values { padding: 112px 0; background: var(--cream-warm); }
.values-head { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.values-head h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 300; margin-bottom: 18px; }
.values-head p { font-size: 17px; color: var(--text-mute); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); padding: 38px;
  border-radius: var(--radius); border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.value-card .val-num {
  font-family: var(--font-display); font-size: 46px;
  font-weight: 300; color: var(--gold); line-height: 1;
  margin-bottom: 20px; letter-spacing: -0.03em;
}
.value-card h4 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.value-card p { font-size: 15px; color: var(--text-mute); line-height: 1.65; }

.about-story { padding: 128px 0; background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-visual {
  aspect-ratio: 1/1.1; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #FBFAF7 0%, var(--cream-warm) 100%);
  position: relative; overflow: hidden;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.story-visual::before {
  content: ""; position: absolute;
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(152, 116, 27, 0.12) 0%, transparent 60%);
}
.story-visual .big-num {
  font-family: var(--font-display); font-size: 160px;
  font-weight: 200; color: var(--ink);
  letter-spacing: -0.05em; position: relative; z-index: 2;
}
.story-content h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 300; margin-bottom: 24px; }
.story-content p { font-size: 17px; color: var(--text-mute); line-height: 1.75; margin-bottom: 20px; }

.team-section { padding: 112px 0; background: var(--cream-warm); }
.team-head { text-align: center; margin-bottom: 60px; }
.team-head h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 300; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: var(--white); padding: 26px;
  border-radius: var(--radius); text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--midnight); color: var(--gold-on-dark);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600;
  font-size: 32px; margin-bottom: 18px;
}
.team-card h5 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.team-card small { font-size: 13px; color: var(--text-mute); }

/* ---------- Contact page ---------- */
.contact-section { padding: 48px 0 128px; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: flex-start; }
.contact-info h2 { font-size: clamp(32px, 4.5vw, 48px); font-weight: 300; margin-bottom: 20px; }
.contact-info > p { font-size: 17px; color: var(--text-mute); margin-bottom: 36px; line-height: 1.65; }
.contact-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-row .ci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-row strong { font-family: var(--font-display); font-weight: 600; font-size: 17px; display: block; margin-bottom: 4px; }
.contact-row p { font-size: 14px; color: var(--text-mute); line-height: 1.55; }
.contact-row a { color: var(--gold); font-weight: 600; }

.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 42px; box-shadow: var(--shadow-card);
}
.contact-form h3 { font-size: 26px; font-weight: 300; margin-bottom: 8px; }
.contact-form > p { font-size: 14px; color: var(--text-mute); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--cream); transition: border .18s ease, background .18s ease, box-shadow .18s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(152, 116, 27, 0.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-footer { margin-top: 20px; }
.form-note { font-size: 12px; color: var(--text-mute); margin-top: 14px; text-align: center; }

/* ---------- Footer (dark midnight band) ---------- */
footer { background: var(--midnight-band); color: var(--cream); padding: 88px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-brand .logo { color: var(--cream); font-size: 26px; margin-bottom: 20px; }
.footer-brand .logo .logo-mark::before { background: radial-gradient(circle at 30% 28%, rgba(201, 162, 39, 0.6) 0%, transparent 58%); }
.footer-brand p { font-size: 14px; opacity: .65; max-width: 280px; line-height: 1.65; }
.footer-col h5 {
  color: var(--gold-on-dark);
  font-family: var(--font-body);
  font-weight: 600; text-transform: uppercase;
  font-size: 12px; letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; opacity: .72; transition: opacity .18s ease, color .18s ease; }
.footer-col ul li a:hover { opacity: 1; color: var(--gold-on-dark); }
.footer-bottom {
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; opacity: .65;
}
.footer-bottom .links a { margin-left: 20px; opacity: .85; }
.footer-bottom .links a:hover { color: var(--gold-on-dark); opacity: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .pillar-panel.active, .ai-grid, .res-grid,
  .story-grid, .contact-grid, .pricing-grid, .feature-grid, .values-grid {
    grid-template-columns: 1fr; gap: 40px;
  }
  .res-grid .big-card { grid-column: span 1; grid-row: auto; }
  .stats-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-right .phone, .nav-right .btn-ghost { display: none; }
  .hero { padding-top: 44px; }
  .hero-visual { order: -1; }
  .tab-bar { font-size: 13px; }
  .tab-bar button, .tab-btn { padding: 10px 14px; font-size: 13px; }
  .hero-float-card { display: none; }
  .hero-phone { transform: rotate(0); max-width: 260px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }
  .form-row { grid-template-columns: 1fr; }
  .story-visual .big-num { font-size: 100px; }
  .compare-table { overflow-x: auto; }
  .compare-table table { min-width: 640px; }
}
@media (max-width: 580px) {
  .stats-grid, .team-grid, .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .hero-reviews { flex-direction: column; gap: 14px; align-items: flex-start; }
  .ind-grid, .ind-pills { grid-template-columns: 1fr 1fr; }
  .feature-group-head { flex-direction: column; align-items: flex-start; }
}

/* ============= Pricing — Jobber-style 4 plans ============= */
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pricing-grid-4 .price-card { padding: 34px 24px; }
.pricing-grid-4 .price-card h3 { font-size: 24px; }
.pricing-grid-4 .price-tag .amount { font-size: 50px; }
.pricing-grid-4 .price-card .tagline { min-height: 60px; font-size: 13px; margin-bottom: 18px; }

/* Featured (Grow) — ONE highlighted tier: gold ring on light card */
.pricing-grid-4 .price-card.featured {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-card);
  transform: scale(1.04);
}
.pricing-grid-4 .price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-grid-4 .price-card.featured h3 { color: var(--ink); }
.pricing-grid-4 .price-card.featured .tagline { color: var(--text-mute); }
.pricing-grid-4 .price-card.featured .price-tag { color: var(--gold); }
.pricing-grid-4 .price-card.featured .price-tag .currency,
.pricing-grid-4 .price-card.featured .price-tag .amount,
.pricing-grid-4 .price-card.featured .price-tag .period { color: var(--gold); }
.pricing-grid-4 .price-card.featured .price-divider { background: var(--border); }
.pricing-grid-4 .price-card.featured .feature-line { color: var(--ink); }
.pricing-grid-4 .price-card.featured .feature-line svg { color: var(--sage); }
.pricing-grid-4 .price-card.featured .features-heading { color: var(--ink); }
.pricing-grid-4 .price-card.featured .users-line {
  color: var(--gold);
  border-color: var(--gold-soft);
  background: var(--gold-soft);
}

.users-line {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin: 0 0 16px;
  text-align: center;
}

.features-heading {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 10px;
}

/* Compare table — featured column highlight (gold, restrained) */
.compare-table th.th-featured {
  background: var(--midnight);
  color: var(--gold-on-dark);
}
.compare-table td.td-featured {
  background: rgba(152, 116, 27, 0.05);
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 1100px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-4 .price-card.featured { transform: none; }
  .pricing-grid-4 .price-card.featured:hover { transform: translateY(-4px); }
}
@media (max-width: 580px) {
  .pricing-grid-4 { grid-template-columns: 1fr; }
}

/* =====================================================
   Legal pages (terms / privacy / security / accessibility)
   ===================================================== */
.legal-updated {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mute);
}
.legal-section { padding: 64px 0 96px; background: var(--cream); }
.legal-prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
}
/* Template / counsel notice */
.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 48px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
}
.legal-note .ico {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  color: var(--gold);
}
.legal-note .ico svg { width: 18px; height: 18px; display: block; }
.legal-note strong { font-weight: 700; }
.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 44px 0 14px;
}
.legal-prose h2:first-of-type { margin-top: 0; }
.legal-prose h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-prose p { margin: 0 0 16px; }
.legal-prose ul, .legal-prose ol { margin: 0 0 18px; padding-left: 22px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid rgba(126, 96, 17, 0.35);
}
.legal-prose a:hover { border-bottom-color: var(--gold); }
.legal-prose strong { color: var(--ink); font-weight: 600; }
.legal-toc {
  margin: 0 0 48px;
  padding: 22px 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.legal-toc h2 {
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 14px !important;
}
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.legal-toc li { margin-bottom: 8px; }
.legal-toc a { border-bottom: none; }
@media (max-width: 580px) {
  .legal-toc ol { columns: 1; }
}
