/* =========================================================
   GROWTH LOGIC — DESIGN SYSTEM
   Playfair Display + DM Sans · Forest Green + Warm Gold
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300&display=swap');

/* ─── DESIGN TOKENS ─── */
:root {
  --deep-pine:      #1A3C34;
  --sage:           #2D6A4F;
  --growth-mid:     #40916C;
  --fresh-mint:     #74C69D;
  --warm-gold:      #C9A84C;
  --mist:           #D8F3DC;
  --slate:          #1C2B2A;
  --off-white:      #F7FAF8;

  /* derived */
  --body-on-dark:   rgba(255, 255, 255, 0.92);
  --border-dark:    rgba(116, 198, 157, 0.13);
  --border-light:   rgba(26, 60, 52, 0.09);
  --card-bg:        #ffffff;
  --radius:         12px;
  --radius-sm:      8px;
  --t:              0.22s ease;
  --t-slow:         0.45s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--slate);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── TYPOGRAPHY ─── */
h1, h2 { font-family: 'Playfair Display', serif; }

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.35;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 72px;
  background: transparent;
  transition: background var(--t-slow), box-shadow var(--t-slow);
}

nav.scrolled {
  background: var(--deep-pine);
  box-shadow: 0 2px 32px rgba(0,0,0,0.2);
}

/* Light-hero pages (websites.html) */
nav.light-nav {
  background: rgba(247,250,248,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
nav.light-nav.scrolled {
  background: var(--deep-pine);
  border-bottom: none;
  box-shadow: 0 2px 32px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
}
nav.light-nav .nav-logo { color: var(--deep-pine); }
nav.light-nav.scrolled .nav-logo { color: #fff; }

.nav-logo-img {
  height: 46px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.footer-brand .nav-logo-img {
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  transition: color var(--t);
}
.nav-links a:hover { color: #fff; }

nav.light-nav .nav-links a { color: var(--slate); opacity: 0.72; }
nav.light-nav .nav-links a:hover { color: var(--deep-pine); opacity: 1; }
nav.light-nav.scrolled .nav-links a { color: rgba(255,255,255,0.9); opacity: 1; }
nav.light-nav.scrolled .nav-links a:hover { color: #fff; }

/* ─── NAV DROPDOWN ─── */
.nav-item { position: relative; }
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-item > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
  transition: transform var(--t), opacity var(--t);
}
.nav-item:hover > a::after {
  transform: rotate(-135deg) translateY(-2px);
  opacity: 1;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep-pine);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  min-width: 210px;
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
  z-index: 300;
  list-style: none;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--deep-pine);
  border-left: 1px solid var(--border-dark);
  border-top: 1px solid var(--border-dark);
}
.nav-item:hover .nav-dropdown { display: block; }
/* Transparent bridge across the gap so the menu stays open while the cursor
   travels from the parent link down to the dropdown. */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.835rem;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: color var(--t), background var(--t);
}
.nav-dropdown li a:hover {
  color: #fff;
  background: rgba(64,145,108,0.18);
}
.nav-dropdown li:not(:last-child) a {
  border-bottom: 1px solid var(--border-dark);
}

/* light-nav variant */
nav.light-nav:not(.scrolled) .nav-dropdown {
  background: #fff;
  border-color: var(--border-light);
  box-shadow: 0 20px 48px rgba(26,60,52,0.12);
}
nav.light-nav:not(.scrolled) .nav-dropdown::before {
  background: #fff;
  border-color: var(--border-light);
}
nav.light-nav:not(.scrolled) .nav-dropdown li a {
  color: var(--slate);
  opacity: 0.72;
}
nav.light-nav:not(.scrolled) .nav-dropdown li a:hover {
  color: var(--deep-pine);
  opacity: 1;
  background: var(--mist);
}
nav.light-nav:not(.scrolled) .nav-dropdown li:not(:last-child) a {
  border-bottom-color: var(--border-light);
}

/* hide dropdown on mobile (burger covers it) */
@media (max-width: 900px) {
  .nav-item > a::after { display: none; }
  .nav-dropdown { display: none !important; }
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--growth-mid) !important;
  color: #fff !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  opacity: 1 !important;
  transition: background var(--t), box-shadow var(--t), transform var(--t);
}
.nav-cta:hover {
  background: var(--sage) !important;
  box-shadow: 0 6px 24px rgba(64,145,108,0.35) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Ghost pill — Logic Hub Login */
.nav-cta-ghost {
  padding: 10px 22px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  letter-spacing: 0.02em;
  opacity: 1 !important;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.nav-cta-ghost:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.65) !important;
  color: #fff !important;
  transform: translateY(-1px);
}
/* Adjust ghost for light nav (non-scrolled) */
nav.light-nav:not(.scrolled) .nav-cta-ghost {
  color: var(--slate) !important;
  border-color: rgba(26,60,52,0.28) !important;
  opacity: 1 !important;
}
nav.light-nav:not(.scrolled) .nav-cta-ghost:hover {
  background: var(--mist) !important;
  border-color: var(--growth-mid) !important;
  color: var(--deep-pine) !important;
}

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
nav.light-nav .nav-burger span { background: var(--deep-pine); }
nav.light-nav.scrolled .nav-burger span { background: #fff; }
.nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 64px 88px;
  background: var(--deep-pine);
  overflow: hidden;
}
.hero-sm {
  min-height: 54vh;
  padding: 140px 64px 72px;
}
.hero-light {
  background: var(--off-white);
  min-height: 52vh;
}

/* Radial glow + ring decoration */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 72% 44%, rgba(116,198,157,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 18% 78%, rgba(64,145,108,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 580px; height: 580px;
  border: 1px solid rgba(116,198,157,0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(116,198,157,0.04),
    0 0 0 144px rgba(116,198,157,0.025),
    0 0 0 220px rgba(116,198,157,0.01);
  pointer-events: none;
}
.hero-light::before, .hero-light::after { display: none; }

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(116,198,157,0.11);
  border: 1px solid rgba(116,198,157,0.22);
  color: var(--fresh-mint);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}
.hero-light .hero-eyebrow {
  background: rgba(64,145,108,0.08);
  border-color: rgba(64,145,108,0.18);
  color: var(--growth-mid);
}

.hero h1 { color: #fff; max-width: 780px; margin-bottom: 24px; }
.hero h1 .accent { color: var(--fresh-mint); }
.hero h1 .gold   { color: var(--warm-gold); }
.hero-light h1    { color: var(--deep-pine); }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 500px;
  line-height: 1.82;
  margin-bottom: 44px;
}
.hero-light .hero-sub { color: var(--slate); opacity: 0.7; }

.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ─── HERO STATS STRIP ─── */
.hero-strip {
  display: flex;
  align-items: center;
  gap: 52px;
  margin-top: 76px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.strip-item { display: flex; flex-direction: column; gap: 3px; }
.strip-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.strip-label {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--body-on-dark);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.strip-div { width: 1px; height: 34px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--t), box-shadow var(--t), transform var(--t), border-color var(--t), color var(--t);
  cursor: pointer;
  border: none;
}
.btn-primary {
  padding: 13px 28px;
  background: var(--growth-mid);
  color: #fff;
  font-size: 0.9rem;
}
.btn-primary:hover {
  background: var(--sage);
  box-shadow: 0 8px 32px rgba(64,145,108,0.32);
  transform: translateY(-1px);
}
.btn-ghost {
  padding: 12px 26px;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  background: transparent;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-ghost-dark {
  padding: 12px 26px;
  border: 1.5px solid var(--border-light);
  color: var(--growth-mid);
  font-size: 0.9rem;
  background: transparent;
}
.btn-ghost-dark:hover { border-color: var(--growth-mid); background: rgba(64,145,108,0.06); }
.btn-outline-mint {
  padding: 12px 26px;
  border: 1.5px solid rgba(116,198,157,0.3);
  color: var(--fresh-mint);
  font-size: 0.875rem;
  background: transparent;
}
.btn-outline-mint:hover { border-color: var(--fresh-mint); color: #fff; }

/* ─── SECTION UTILITIES ─── */
.sec    { padding: 96px 64px; }
.sec-sm { padding: 72px 64px; }
.inner  { max-width: 1200px; margin: 0 auto; }

.sec-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fresh-mint);
  margin-bottom: 12px;
}
.sec-label.dark { color: var(--growth-mid); }
.bg-sage .sec-label,
.bg-deep .sec-label { color: var(--warm-gold); opacity: 0.9; }

.sec-head { margin-bottom: 14px; }
.sec-header { margin-bottom: 56px; }

.sec-sub {
  font-size: 0.975rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate);
  opacity: 0.72;
  max-width: 520px;
}
.sec-sub.light { color: var(--body-on-dark); opacity: 1; }

/* Section backgrounds */
.bg-deep  { background: var(--deep-pine); }
.bg-sage  { background: var(--sage); }
.bg-off   { background: var(--off-white); }
.bg-white { background: #ffffff; }
.bg-mist  { background: var(--mist); }

/* ─── QUOTE SECTION ─── */
.quote-sec { background: var(--sage); padding: 80px 64px; }
.quote-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.quote-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.56;
  letter-spacing: -0.01em;
}
.quote-inner blockquote span { font-weight: 300; opacity: 0.76; }

/* ─── PILLAR CARDS ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: block;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.pillar:hover {
  box-shadow: 0 12px 40px rgba(26,60,52,0.1);
  transform: translateY(-4px);
  border-color: rgba(64,145,108,0.32);
}
.pillar-num {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--growth-mid);
  margin-bottom: 18px;
}
.pillar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 12px;
}
.pillar p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.72;
  opacity: 0.76;
  margin-bottom: 24px;
}
.pillar-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--growth-mid);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t);
}
.pillar:hover .pillar-link { gap: 10px; }

/* ─── SOLUTION CARDS ─── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.sol-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.sol-card:hover {
  border-color: rgba(201,168,76,0.38);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.sol-tag {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gold);
}
.sol-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
.sol-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--body-on-dark);
  line-height: 1.74;
  flex: 1;
}
.sol-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 4px;
}
.sol-chips span {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--fresh-mint);
  background: rgba(116,198,157,0.1);
  border: 1px solid rgba(116,198,157,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.sol-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fresh-mint);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  transition: gap var(--t);
}
.sol-card:hover .sol-link { gap: 10px; }
.sol-dim { opacity: 0.36; pointer-events: none; }

/* ─── WHY CARDS ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.why-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  gap: 20px;
  background: #fff;
  transition: box-shadow var(--t), border-color var(--t);
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(26,60,52,0.08);
  border-color: rgba(64,145,108,0.28);
}
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--mist);
  line-height: 1;
  flex-shrink: 0;
  min-width: 42px;
}
.why-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 8px;
  line-height: 1.46;
}
.why-card p {
  font-size: 0.855rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.72;
  opacity: 0.74;
}

/* ─── CTA SECTION ─── */
.cta-sec {
  background: var(--sage);
  padding: 96px 64px;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-sec .sec-label { color: rgba(255,255,255,0.75); text-align: center; }
.cta-sec h2 { color: #fff; margin-bottom: 18px; }
.cta-sec p {
  font-size: 0.975rem;
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  margin-bottom: 40px;
}
.cta-sec.dark { background: var(--deep-pine); }
.cta-sec.dark .sec-label { color: var(--fresh-mint); }

/* ─── PRODUCT BLOCKS (products page) ─── */
.product-block-wrap {
  padding: 88px 64px;
  position: relative;
}
.product-block-wrap:nth-child(odd)  { background: #fff; }
.product-block-wrap:nth-child(even) { background: var(--deep-pine); }

.product-block {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.product-block.flip { direction: rtl; }
.product-block.flip > * { direction: ltr; }

.product-visual {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  overflow: hidden;
  position: relative;
}
.pv-light {
  background: var(--mist);
  border: 1px solid rgba(64,145,108,0.16);
  color: var(--growth-mid);
}
.pv-dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  color: var(--fresh-mint);
}
.pv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}
.pv-inner svg { width: 36px; height: 36px; }
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  border-radius: var(--radius);
}

.product-content .sec-label { margin-bottom: 12px; }
.product-content h2 { color: var(--deep-pine); margin-bottom: 16px; }
.product-block-wrap:nth-child(even) .product-content h2 { color: #fff; }
.product-block-wrap:nth-child(even) .sec-sub { color: var(--body-on-dark); opacity: 1; }

.product-who {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(64,145,108,0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--growth-mid);
}
.product-block-wrap:nth-child(even) .product-who {
  background: rgba(116,198,157,0.08);
  border-left-color: var(--fresh-mint);
}
.product-who-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--growth-mid);
  white-space: nowrap;
  padding-top: 2px;
}
.product-block-wrap:nth-child(even) .product-who-label { color: var(--fresh-mint); }
.product-who p {
  font-size: 0.855rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.62;
  opacity: 0.8;
}
.product-block-wrap:nth-child(even) .product-who p { color: var(--body-on-dark); opacity: 1; }
.product-cta { margin-top: 28px; }

/* ─── SNAPSHOT CARDS ─── */
.snapshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.snap-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.snap-card:hover {
  box-shadow: 0 12px 40px rgba(26,60,52,0.1);
  transform: translateY(-4px);
  border-color: rgba(64,145,108,0.28);
}
.snap-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.24);
  color: var(--warm-gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  width: fit-content;
}
.snap-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-pine);
}
.snap-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}
.snap-includes li {
  font-size: 0.845rem;
  font-weight: 300;
  color: var(--slate);
  opacity: 0.78;
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.snap-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--growth-mid);
  font-size: 0.72rem;
  line-height: 1.55;
}
.snap-for {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--growth-mid);
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
}
.snap-for strong { font-weight: 600; }
.snap-cta { margin-top: 4px; }

/* ─── CALLOUT ─── */
.callout {
  background: rgba(64,145,108,0.07);
  border: 1px solid rgba(64,145,108,0.18);
  border-left: 4px solid var(--growth-mid);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 52px;
}
.callout p { font-size: 0.93rem; font-weight: 300; color: var(--slate); line-height: 1.74; }
.callout p strong { font-weight: 600; color: var(--deep-pine); }

/* ─── BUYER NOTES ─── */
.buyer-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.buyer-note {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.buyer-note-icon {
  width: 36px; height: 36px;
  background: var(--mist);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1rem;
}
.buyer-note h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 8px;
}
.buyer-note p {
  font-size: 0.845rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  opacity: 0.76;
}

/* ─── DUAL CTA ROW ─── */
.dual-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
  flex-wrap: wrap;
}

/* ─── WEBSITES: COMPARE ─── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-col {
  padding: 40px 36px;
}
.compare-no {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius) 0 0 var(--radius);
}
.compare-yes {
  background: rgba(64,145,108,0.12);
  border: 1px solid rgba(64,145,108,0.28);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.compare-col-head {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.compare-no .compare-col-head { color: rgba(255,255,255,0.7); }
.compare-yes .compare-col-head { color: var(--fresh-mint); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.compare-col ul li {
  font-size: 0.895rem;
  font-weight: 300;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.compare-col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.compare-no ul li { color: rgba(255,255,255,0.7); }
.compare-no ul li::before { background: rgba(255,255,255,0.35); }
.compare-yes ul li { color: rgba(255,255,255,0.95); }
.compare-yes ul li::before { background: var(--fresh-mint); }

/* ─── WEBSITES: SMART FEATURES ─── */
.smart-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.smart-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.smart-card:hover {
  box-shadow: 0 8px 32px rgba(26,60,52,0.07);
  border-color: rgba(64,145,108,0.3);
  transform: translateY(-3px);
}
.smart-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--mist);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.smart-icon svg { width: 20px; height: 20px; stroke: var(--growth-mid); }
.smart-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 8px;
}
.smart-content p {
  font-size: 0.845rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.74;
  opacity: 0.72;
  margin-bottom: 14px;
}
.smart-benefit {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--growth-mid);
  background: rgba(64,145,108,0.08);
  border: 1px solid rgba(64,145,108,0.18);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
}

/* ─── WEBSITES: INCLUDED ─── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.included-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: box-shadow var(--t), border-color var(--t), transform var(--t);
}
.included-card:hover {
  box-shadow: 0 8px 32px rgba(26,60,52,0.07);
  border-color: rgba(64,145,108,0.28);
  transform: translateY(-3px);
}
.included-icon {
  width: 44px; height: 44px;
  background: var(--mist);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.included-icon svg { width: 20px; height: 20px; }
.included-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 10px;
}
.included-card p {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.74;
  opacity: 0.74;
}

/* ─── PORTFOLIO PREVIEW ─── */
.portfolio-frame {
  background: linear-gradient(140deg, var(--deep-pine) 0%, var(--sage) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.portfolio-frame::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(116,198,157,0.08) 0%, transparent 70%);
}
.pf-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  z-index: 1;
}
.pf-placeholder svg { width: 40px; height: 40px; margin: 0 auto 12px; opacity: 0.4; }
.portfolio-caption {
  background: #fff;
  border: 1px solid var(--border-light);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.portfolio-caption p { font-size: 0.875rem; font-weight: 300; color: var(--slate); opacity: 0.76; flex: 1; line-height: 1.6; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ptag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--growth-mid);
  background: var(--mist);
  padding: 4px 10px;
  border-radius: 20px;
}

/* ─── PRICING TIERS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow var(--t), transform var(--t), border-color var(--t);
}
.price-card:hover {
  box-shadow: 0 12px 40px rgba(26,60,52,0.1);
  transform: translateY(-4px);
}
.price-card.featured { border-color: var(--growth-mid); box-shadow: 0 8px 32px rgba(64,145,108,0.13); }
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--warm-gold);
  color: var(--deep-pine);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-tier {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--growth-mid);
}
.price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-pine);
}
.price-card p { font-size: 0.86rem; font-weight: 300; color: var(--slate); line-height: 1.74; opacity: 0.74; flex: 1; }
.price-note {
  font-size: 0.8rem;
  color: var(--growth-mid);
  font-weight: 400;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  margin-top: auto;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.service-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.service-card:hover {
  border-color: rgba(64,145,108,0.32);
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(26,60,52,0.07);
  transform: translateY(-2px);
}
.service-new {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 4px;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate);
  opacity: 0.78;
  line-height: 1.74;
  margin-bottom: 18px;
}
.service-meta { display: flex; flex-direction: column; gap: 6px; }
.service-meta-row { display: flex; gap: 8px; align-items: baseline; }
.sml {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--growth-mid);
  opacity: 0.85;
  min-width: 70px;
  flex-shrink: 0;
}
.smv { font-size: 0.845rem; font-weight: 300; color: var(--slate); opacity: 0.68; }

/* ─── HOW IT WORKS ─── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 1px;
  background: linear-gradient(to right, rgba(116,198,157,0.35), rgba(116,198,157,0.12));
}
.how-step { padding: 0 28px; text-align: center; }
.step-num {
  width: 56px; height: 56px;
  background: var(--deep-pine);
  border: 1.5px solid rgba(116,198,157,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--fresh-mint);
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.how-step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 10px;
}
.how-step p {
  font-size: 0.845rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.72;
}

/* ─── FOOTER ─── */
footer {
  background: var(--deep-pine);
  border-top: 1px solid var(--border-dark);
  padding: 60px 64px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border-dark);
  flex-wrap: wrap;
}
.footer-brand .nav-logo { margin-bottom: 14px; font-size: 0.95rem; }
.footer-tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.92);
  max-width: 240px;
  line-height: 1.68;
}
.footer-nav { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fresh-mint);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.845rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  transition: opacity var(--t);
}
.footer-col ul a:hover { opacity: 1; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.76rem; color: rgba(255, 255, 255, 0.8); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--t), background var(--t);
}
.social-link:hover { border-color: var(--fresh-mint); background: rgba(116,198,157,0.1); }
.social-link svg { width: 14px; height: 14px; fill: var(--body-on-dark); opacity: 0.58; transition: opacity var(--t); }
.social-link:hover svg { opacity: 1; }

/* ─── HERO TRUST LINE ─── */
.hero-trust {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  margin-top: 14px;
}

/* ─── PAIN SECTION ─── */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pain-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color var(--t), box-shadow var(--t);
}
.pain-item:hover { border-color: rgba(64,145,108,0.24); box-shadow: 0 4px 16px rgba(26,60,52,0.06); }
.pain-x {
  width: 26px; height: 26px;
  background: rgba(224,82,82,0.09);
  border: 1px solid rgba(224,82,82,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.66rem;
  font-weight: 700;
  color: #c0504a;
  flex-shrink: 0;
  margin-top: 1px;
}
.pain-item p {
  font-size: 0.915rem;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.62;
}
.pain-pull { padding: 0 8px; }
.pain-rule { width: 44px; height: 3px; background: var(--warm-gold); border-radius: 2px; margin-bottom: 24px; }
.pain-pull blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: var(--deep-pine);
  line-height: 1.5;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.pain-sub {
  font-size: 0.915rem;
  font-weight: 300;
  color: var(--slate);
  opacity: 0.68;
  line-height: 1.78;
  margin-bottom: 28px;
}
.pain-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--growth-mid);
}
.pain-highlight::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--growth-mid);
  border-radius: 50%;
}

/* ─── HOW IT WORKS on dark/sage bg ─── */
.bg-sage .how-steps::before {
  background: linear-gradient(to right, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
}
.bg-sage .step-num {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.bg-sage .how-step h4 { color: #fff; }
.bg-sage .how-step p { color: rgba(255,255,255,0.92); }

/* ─── SOL CARDS on light bg ─── */
.bg-off .sol-card,
.bg-white .sol-card {
  background: #fff;
  border-color: var(--border-light);
}
.bg-off .sol-card:hover,
.bg-white .sol-card:hover {
  border-color: rgba(64,145,108,0.3);
  background: #fff;
  box-shadow: 0 8px 32px rgba(26,60,52,0.08);
}
.bg-off .sol-tag, .bg-white .sol-tag { color: var(--growth-mid); }
.bg-off .sol-card h3, .bg-white .sol-card h3 { color: var(--deep-pine); }
.bg-off .sol-card p, .bg-white .sol-card p { color: var(--slate); opacity: 0.72; }
.bg-off .sol-chips span, .bg-white .sol-chips span {
  color: var(--growth-mid);
  background: rgba(64,145,108,0.07);
  border-color: rgba(64,145,108,0.18);
}
.bg-off .sol-link, .bg-white .sol-link { color: var(--growth-mid); }
.bg-off .sol-card:hover .sol-link, .bg-white .sol-card:hover .sol-link { gap: 10px; }

/* ─── WHY STRIP (inside light product section) ─── */
.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}
.why-strip-item {
  padding: 0 28px;
  border-right: 1px solid var(--border-light);
}
.why-strip-item:first-child { padding-left: 0; }
.why-strip-item:last-child { border-right: none; }
.why-strip-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--mist);
  line-height: 1;
  margin-bottom: 10px;
}
.why-strip-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 8px;
  line-height: 1.44;
}
.why-strip-item p {
  font-size: 0.835rem;
  font-weight: 300;
  color: var(--slate);
  line-height: 1.7;
  opacity: 0.65;
}

@media (max-width: 1024px) {
  .why-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-strip-item { border-right: none; padding: 0; }
  .pain-grid { gap: 48px; }
}
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-strip { grid-template-columns: 1fr; }
  .pain-pull { padding: 0; }
}

/* ─── ANIMATION SYSTEM ─── */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}
.animate.visible { opacity: 1; transform: none; }

.animate-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-up.visible { opacity: 1; transform: none; }

.animate-fade {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.animate-fade.visible { opacity: 1; }

.stagger-1 { transition-delay: 0ms; }
.stagger-2 { transition-delay: 90ms; }
.stagger-3 { transition-delay: 180ms; }
.stagger-4 { transition-delay: 270ms; }

/* ─── SERVICE CARDS on dark bg ─── */
.bg-sage .service-card,
.bg-deep .service-card {
  background: rgba(255,255,255,0.13);
  border-color: rgba(255,255,255,0.2);
}
.bg-sage .service-card:hover,
.bg-deep .service-card:hover {
  background: rgba(255,255,255,0.19);
  border-color: rgba(116,198,157,0.45);
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}
.bg-sage .service-card h3,
.bg-deep .service-card h3 { color: var(--warm-gold); }
.bg-sage .service-card > p,
.bg-deep .service-card > p { color: rgba(255,255,255,0.92); opacity: 1; }
.bg-sage .sml, .bg-deep .sml { color: var(--fresh-mint); opacity: 0.9; }
.bg-sage .smv, .bg-deep .smv { color: rgba(255,255,255,0.85); opacity: 1; }
.bg-sage .service-new, .bg-deep .service-new { color: var(--warm-gold); }

/* ─── WHY CARDS on dark bg ─── */
.bg-deep .why-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.bg-deep .why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(116,198,157,0.22);
  box-shadow: none;
}
.bg-deep .why-num { color: var(--warm-gold); opacity: 0.85; }
.bg-deep .why-card h4 { color: #fff; }
.bg-deep .why-card p { color: var(--body-on-dark); opacity: 1; }
.bg-sage .smv-price,
.bg-deep .smv-price { color: var(--warm-gold) !important; opacity: 1; }

/* ─── PWA SECTION on light bg ─── */
.bg-off .pwa-feat,
.bg-white .pwa-feat {
  background: #fff;
  border-color: var(--border-light);
}
.bg-off .pwa-feat:hover,
.bg-white .pwa-feat:hover {
  border-color: rgba(64,145,108,0.28);
  box-shadow: 0 4px 14px rgba(26,60,52,0.07);
  transform: translateY(-2px);
}
.bg-off .pwa-feat-icon,
.bg-white .pwa-feat-icon {
  background: var(--mist);
  border-color: rgba(64,145,108,0.28);
  color: var(--growth-mid);
}
.bg-off .pwa-feat h5,
.bg-white .pwa-feat h5 { color: var(--deep-pine); }
.bg-off .pwa-feat p,
.bg-white .pwa-feat p { color: var(--slate); opacity: 0.68; }
.bg-off .pwa-range-label,
.bg-white .pwa-range-label { color: var(--growth-mid); opacity: 0.8; }
.bg-off .pwa-range-bar,
.bg-white .pwa-range-bar { background: rgba(26,60,52,0.1); }
.bg-off .pwa-range-examples,
.bg-white .pwa-range-examples { color: var(--slate); opacity: 0.42; font-style: italic; }
.bg-off .pwa-vs,
.bg-white .pwa-vs {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.2);
  color: var(--slate);
  opacity: 1;
}
.bg-off .pwa-vs strong,
.bg-white .pwa-vs strong { color: var(--deep-pine); font-weight: 600; }
.bg-off .pwa-stack,
.bg-white .pwa-stack { border-top-color: var(--border-light); }
.bg-off .pwa-stack-label,
.bg-white .pwa-stack-label { color: var(--slate); opacity: 0.28; }
.bg-off .pwa-stack-tier,
.bg-white .pwa-stack-tier { color: var(--growth-mid); opacity: 0.75; }
.bg-off .pwa-chip,
.bg-white .pwa-chip {
  color: var(--slate);
  background: rgba(26,60,52,0.05);
  border-color: var(--border-light);
}
.bg-off .pwa-chip:hover,
.bg-white .pwa-chip:hover {
  background: rgba(64,145,108,0.07);
  border-color: rgba(64,145,108,0.22);
  color: var(--deep-pine);
}
.bg-off .pwa-chip.gold,
.bg-white .pwa-chip.gold {
  color: var(--warm-gold);
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.18);
}

/* ─── STACK LOGO BAR ─── */
.stack-bar {
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  position: relative;
}
.stack-bar-label {
  text-align: center;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  opacity: 0.28;
  padding: 28px 0 16px;
  display: block;
}
/* Fade edges */
.stack-bar::before,
.stack-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.stack-bar::before { left: 0; background: linear-gradient(to right, #fff 40%, transparent); }
.stack-bar::after  { right: 0; background: linear-gradient(to left,  #fff 40%, transparent); }

.stack-track-wrap { overflow: hidden; padding-bottom: 28px; }
.stack-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: stack-marquee 36s linear infinite;
}
.stack-track:hover { animation-play-state: paused; }
@keyframes stack-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stack-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 40px;
  opacity: 0.28;
  filter: grayscale(1) brightness(0.4);
  transition: opacity 0.25s ease, filter 0.25s ease;
  white-space: nowrap;
  cursor: default;
  user-select: none;
}
.stack-logo:hover {
  opacity: 1;
  filter: none;
}
.stack-logo svg {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}
.stack-logo-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.02em;
}
/* individual brand colours shown on hover */
.stack-logo.brand-wa:hover     { color: #25D366; }
.stack-logo.brand-wa:hover svg { fill: #25D366; }
.stack-logo.brand-wa:hover .stack-logo-name { color: #25D366; }

.stack-logo.brand-supabase:hover svg { fill: #3ECF8E; }
.stack-logo.brand-supabase:hover .stack-logo-name { color: #3ECF8E; }

.stack-logo.brand-vercel:hover svg { fill: #000; }
.stack-logo.brand-vercel:hover .stack-logo-name { color: #000; }

.stack-logo.brand-next:hover .stack-logo-name { color: #000; }

.stack-logo.brand-tailwind:hover svg { fill: #06B6D4; }
.stack-logo.brand-tailwind:hover .stack-logo-name { color: #06B6D4; }

.stack-logo.brand-react:hover svg { stroke: #61DAFB; fill: #61DAFB; }
.stack-logo.brand-react:hover .stack-logo-name { color: #61DAFB; }

.stack-logo.brand-n8n:hover .stack-logo-name { color: #EA4B71; }
.stack-logo.brand-n8n:hover .n8n-dot { fill: #EA4B71; }

.stack-logo.brand-claude:hover svg { fill: #D97757; }
.stack-logo.brand-claude:hover .stack-logo-name { color: #D97757; }

.stack-logo.brand-payfast:hover svg { fill: #0077C8; }
.stack-logo.brand-payfast:hover .stack-logo-name { color: #0077C8; }

/* ─── PWA FEATURE SECTION ─── */
.pwa-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.pwa-block .sec-sub.light { max-width: 100%; }
.pwa-range {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 8px;
}
.pwa-range-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fresh-mint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pwa-range-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.pwa-range-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, var(--fresh-mint), var(--warm-gold));
  border-radius: 2px;
}
.pwa-range-examples {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  font-style: italic;
}
.pwa-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pwa-feat {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.pwa-feat:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(116,198,157,0.28);
  transform: translateY(-2px);
}
.pwa-feat-icon {
  width: 26px; height: 26px;
  background: rgba(116,198,157,0.18);
  border: 1px solid rgba(116,198,157,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fresh-mint);
  flex-shrink: 0;
  margin-top: 1px;
}
.pwa-feat h5 {
  font-size: 0.87rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.42;
}
.pwa-feat p {
  font-size: 0.79rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1.62;
}
.pwa-vs {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--warm-gold);
  font-weight: 400;
  line-height: 1.65;
}
.pwa-vs strong { font-weight: 600; }

/* ─── PWA STACK ─── */
.pwa-stack {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 56px;
  padding-top: 40px;
}
.pwa-stack-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 22px;
}
.pwa-stack-layers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pwa-stack-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pwa-stack-tier {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fresh-mint);
  opacity: 0.65;
  min-width: 110px;
  flex-shrink: 0;
}
.pwa-chip {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 100px;
  padding: 4px 13px;
  white-space: nowrap;
  transition: background var(--t), border-color var(--t);
  cursor: default;
}
.pwa-chip:hover {
  background: rgba(116,198,157,0.13);
  border-color: rgba(116,198,157,0.28);
  color: #fff;
}
.pwa-chip.gold {
  color: var(--warm-gold);
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.2);
}
.pwa-chip.gold:hover {
  background: rgba(201,168,76,0.14);
  border-color: rgba(201,168,76,0.35);
}

@media (max-width: 1024px) {
  .pwa-block { grid-template-columns: 1fr; gap: 48px; }
  .pwa-stack-tier { min-width: 80px; }
}
@media (max-width: 768px) {
  .pwa-feat-grid { grid-template-columns: 1fr; }
  .pwa-stack-row { gap: 6px; }
  .pwa-stack-tier { min-width: 100%; margin-bottom: 4px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 20px; font-size: 0.88rem; }
  .hero, .sec, .sec-sm, .quote-sec, .cta-sec,
  footer, .product-block-wrap { padding-left: 32px; padding-right: 32px; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshots-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .smart-grid { grid-template-columns: repeat(2, 1fr); }
  .product-block { gap: 44px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--deep-pine);
    padding: 24px 20px 32px;
    border-top: 1px solid var(--border-dark);
    gap: 4px;
    z-index: 199;
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
  }
  .nav-links.open a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid var(--border-dark);
  }
  .nav-links.open a:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .hero { padding: 100px 20px 64px; }
  .hero-sm { padding: 100px 20px 56px; }
  .sec, .sec-sm { padding: 64px 20px; }
  .quote-sec, .cta-sec { padding: 64px 20px; }
  footer { padding: 48px 20px; }
  .product-block-wrap { padding: 64px 20px; }

  .pillars-grid, .solutions-grid, .why-grid,
  .snapshots-grid, .buyer-notes, .included-grid,
  .pricing-grid, .services-grid, .how-steps,
  .smart-grid, .compare-grid { grid-template-columns: 1fr; }

  .compare-no { border-radius: var(--radius) var(--radius) 0 0; }
  .compare-yes { border-radius: 0 0 var(--radius) var(--radius); }

  .smart-card { flex-direction: column; gap: 16px; }

  .how-steps::before { display: none; }
  .how-step { padding: 0; text-align: left; display: flex; gap: 16px; align-items: flex-start; }
  .step-num { flex-shrink: 0; margin: 0; }

  .product-block { grid-template-columns: 1fr; gap: 32px; }
  .product-block.flip { direction: ltr; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav { gap: 24px; flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-strip { gap: 28px; }
  .strip-div { display: none; }

  .portfolio-caption { flex-direction: column; align-items: flex-start; }

  .dual-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .dual-cta .btn { justify-content: center; }
}

/* =========================================================
   LOGIC CRM PAGE
   ========================================================= */

/* Intro 2-col */
.lcrm-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lcrm-intro-copy h2 { margin-bottom: 18px; }
.lcrm-intro-copy p  { color: var(--slate); opacity: 0.72; margin-bottom: 14px; line-height: 1.7; }
.lcrm-honest {
  background: var(--mist);
  border: 1px solid rgba(64,145,108,0.2);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.lcrm-honest p {
  font-size: 0.875rem;
  color: var(--sage);
  line-height: 1.65;
  margin: 0;
}
.lcrm-honest strong { color: var(--deep-pine); }

/* Feature grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.feature-card:hover {
  border-color: var(--growth-mid);
  box-shadow: 0 8px 28px rgba(26,60,52,0.09);
  transform: translateY(-2px);
}
.feature-icon {
  width: 38px; height: 38px;
  background: var(--mist);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1rem;
}
.feature-card h4 {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--slate);
  opacity: 0.65;
  line-height: 1.5;
  margin: 0;
}

/* Exclusions */
.exclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.exclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.excl-x {
  width: 28px; height: 28px;
  min-width: 28px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--warm-gold);
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 1px;
}
.exclusion-item h5 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 4px;
}
.exclusion-item p {
  font-size: 0.78rem;
  color: var(--slate);
  opacity: 0.6;
  line-height: 1.45;
  margin: 0;
}
.excl-note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--slate);
  opacity: 0.55;
}
.excl-note a { color: var(--growth-mid); text-decoration: underline; }

/* Pricing */
.pricing-wrap {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--warm-gold);
  border-radius: 20px;
  padding: 52px 48px;
  max-width: 460px;
  width: 100%;
  text-align: center;
}
.pricing-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  color: var(--warm-gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.3);
  margin-bottom: 22px;
}
.pricing-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 8px;
}
.pricing-sub {
  font-size: 0.83rem;
  color: var(--body-on-dark);
  margin-bottom: 36px;
  line-height: 1.55;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  padding: 0;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.80);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  line-height: 1.4;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓';
  color: var(--fresh-mint);
  font-weight: 700;
  font-size: 0.78rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.pricing-note {
  font-size: 0.77rem;
  color: var(--body-on-dark);
  margin-top: 16px;
  opacity: 0.6;
  line-height: 1.5;
}

/* Responsive — Logic CRM */
@media (max-width: 1024px) {
  .lcrm-intro { grid-template-columns: 1fr; gap: 36px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .exclusion-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 36px 24px; }
}

/* ─── HOMEPAGE CARD PRICE LINE ─── */
.sol-price {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--body-on-dark);
  margin: 10px 0 2px;
}
.sol-price strong { color: var(--warm-gold); font-weight: 600; }
.sol-price-note { opacity: 0.8; font-size: 0.72rem; }
.bg-off .sol-price, .bg-white .sol-price { color: var(--slate); opacity: 0.9; }
.bg-off .sol-price strong, .bg-white .sol-price strong { color: var(--sage); }
.sol-trial {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--fresh-mint);
  background: rgba(116,198,157,0.1);
  border: 1px dashed rgba(116,198,157,0.4);
  border-radius: 100px;
  padding: 5px 13px;
  margin: 8px 0 2px;
  letter-spacing: 0.01em;
}
.bg-off .sol-trial, .bg-white .sol-trial {
  color: var(--growth-mid);
  background: rgba(64,145,108,0.07);
  border-color: rgba(64,145,108,0.35);
}

/* ─── PRODUCT BLOCK PRICE PILLS ─── */
.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 18px;
}
.price-pill {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: rgba(64,145,108,0.08);
  border: 1px solid rgba(64,145,108,0.18);
}
.product-block-wrap:nth-child(even) .price-pill {
  background: rgba(116,198,157,0.08);
  border-color: rgba(116,198,157,0.2);
}
.price-pill-tier {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--growth-mid);
}
.product-block-wrap:nth-child(even) .price-pill-tier { color: var(--fresh-mint); }
.price-pill-amount {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--deep-pine);
  white-space: nowrap;
}
.price-pill-amount small { font-size: 0.7rem; font-weight: 400; opacity: 0.65; }
.product-block-wrap:nth-child(even) .price-pill-amount { color: var(--warm-gold); }
.price-pill-note {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--slate);
  opacity: 0.65;
  align-self: center;
}
.product-block-wrap:nth-child(even) .price-pill-note { color: var(--body-on-dark); opacity: 1; }

/* ─── PWA TWO PATHS COMPARISON ─── */
.pwa-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.pwa-path {
  border-radius: var(--radius);
  padding: 30px 34px;
}
.pwa-path-old {
  background: #fff;
  border: 1px dashed rgba(28,43,42,0.28);
}
.pwa-path-gl {
  background: var(--deep-pine);
  border: 1px solid var(--deep-pine);
}
.pwa-path-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.pwa-path-old .pwa-path-label { color: var(--slate); opacity: 0.55; }
.pwa-path-gl .pwa-path-label { color: var(--warm-gold); }
.pwa-path h5 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.pwa-path-old h5 { color: var(--slate); opacity: 0.75; }
.pwa-path-gl h5 { color: #fff; }
.pwa-path ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pwa-path li {
  font-size: 0.865rem;
  font-weight: 300;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
}
.pwa-path-old li { color: var(--slate); opacity: 0.7; }
.pwa-path-old li::before { content: "✕"; position: absolute; left: 0; color: rgba(28,43,42,0.35); font-size: 0.75rem; top: 3px; }
.pwa-path-gl li { color: var(--body-on-dark); }
.pwa-path-gl li::before { content: "✓"; position: absolute; left: 0; color: var(--fresh-mint); font-size: 0.8rem; top: 2px; }
.pwa-path-old li strong { font-weight: 600; color: var(--slate); }
.pwa-path-gl li strong { font-weight: 600; color: #fff; }
.pwa-path-price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(116,198,157,0.18);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--fresh-mint);
}
.pwa-path-price a { color: var(--warm-gold); font-weight: 600; }

/* ─── PRICING MODEL NOTE ─── */
.pricing-model-note {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.865rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--fresh-mint);
  opacity: 0.9;
}

/* ─── BOOK A CALL PAGE ─── */
.book-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 90px;
}
.book-embed-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(26,60,52,0.08);
  overflow: hidden;
  min-height: 620px;
}
.book-embed-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 620px;
  color: var(--slate);
  opacity: 0.45;
  font-size: 0.9rem;
  text-align: center;
  padding: 40px;
}
.book-expect {
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 30px 34px;
}
.book-expect-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
}
.book-expect-item + .book-expect-item { border-top: 1px solid var(--border-light); }
.book-expect-check {
  color: var(--growth-mid);
  font-weight: 700;
  flex-shrink: 0;
}
.book-expect-item h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--deep-pine);
  margin-bottom: 3px;
}
.book-expect-item p {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--slate);
  opacity: 0.75;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .pwa-paths { grid-template-columns: 1fr; }
  .product-price { gap: 8px; }
  .price-pill { padding: 10px 14px; }
}

/* ─── LOGIC CRM PRICE ─── */
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-amount-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--fresh-mint);
  margin-left: 4px;
}

/* ─── STACKED NAV LOGO (emblem + name below) ─── */
.nav-logo-stack {
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.nav-logo-stack .nav-logo-img { height: 40px; }
.nav-logo-name {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.footer-brand .nav-logo-stack .nav-logo-img { height: 52px; }

/* ─── TWO-ROW STACKED HEADER (logo centered, nav row below) ─── */
nav.nav-stacked {
  position: sticky;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  padding: 18px 32px 0;
  gap: 18px;
}
nav.nav-stacked .nav-logo-stack .nav-logo-img { height: 58px; }
nav.nav-stacked .nav-logo-name { font-size: 1.45rem; letter-spacing: 0.06em; }
nav.nav-stacked .nav-links {
  width: 100%;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 13px 0 15px;
}
nav.light-nav.nav-stacked:not(.scrolled) .nav-links {
  border-top-color: rgba(26,60,52,0.12);
}
nav.nav-stacked .nav-burger {
  position: absolute;
  top: 30px;
  right: 20px;
}

/* nav now sits in flow — trim the fixed-nav clearance in heroes */
.hero { min-height: calc(100vh - 132px); padding-top: 64px; }
.hero-sm { padding-top: 72px; min-height: 42vh; }

@media (max-width: 900px) {
  nav.nav-stacked { padding: 14px 20px 14px; gap: 0; }
  nav.nav-stacked .nav-logo-stack .nav-logo-img { height: 46px; }
  nav.nav-stacked .nav-logo-name { font-size: 1.25rem; }
  nav.nav-stacked .nav-links.open {
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 12px;
    padding: 8px 4px 12px;
  }
  nav.light-nav.nav-stacked:not(.scrolled) .nav-links.open {
    border-top-color: rgba(26,60,52,0.12);
  }
  nav.light-nav.nav-stacked:not(.scrolled) .nav-links.open a {
    color: var(--slate);
    border-bottom-color: rgba(26,60,52,0.1);
  }
}

/* ─── STACKED HEADER: always light (logo section light background) ─── */
nav.light-nav.nav-stacked,
nav.light-nav.nav-stacked.scrolled {
  background: rgba(247,250,248,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 24px rgba(26,60,52,0.06);
}
nav.light-nav.nav-stacked.scrolled .nav-logo { color: var(--deep-pine); }
nav.light-nav.nav-stacked.scrolled .nav-links a { color: var(--slate); opacity: 0.72; }
nav.light-nav.nav-stacked.scrolled .nav-links a:hover { color: var(--deep-pine); opacity: 1; }
nav.light-nav.nav-stacked.scrolled .nav-links { border-top-color: rgba(26,60,52,0.12); }
nav.light-nav.nav-stacked.scrolled .nav-burger span { background: var(--deep-pine); }
nav.light-nav.nav-stacked.scrolled .nav-cta-ghost {
  color: var(--slate) !important;
  border-color: rgba(26,60,52,0.28) !important;
}
nav.light-nav.nav-stacked.scrolled .nav-cta-ghost:hover {
  background: var(--mist) !important;
  border-color: var(--growth-mid) !important;
  color: var(--deep-pine) !important;
}

@media (max-width: 900px) {
  nav.light-nav.nav-stacked.scrolled .nav-links.open {
    background: transparent;
    border-top-color: rgba(26,60,52,0.12);
  }
  nav.light-nav.nav-stacked.scrolled .nav-links.open a {
    color: var(--slate);
    border-bottom-color: rgba(26,60,52,0.1);
  }
}

/* active page link on light stacked header */
nav.light-nav .nav-links a.nav-active,
nav.light-nav.nav-stacked.scrolled .nav-links a.nav-active {
  color: var(--deep-pine);
  opacity: 1;
  font-weight: 600;
}

/* ─── FAQ SECTION ─── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-head, 'Playfair Display', serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-pine);
  transition: color var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--sage); }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 8px; top: 50%;
  transform: translateY(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--growth-mid);
  transition: transform var(--t);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 44px 24px 0;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.72;
  color: var(--slate);
  opacity: 0.82;
}
.faq-item .faq-answer a { color: var(--sage); font-weight: 500; }
.bg-deep .faq-item, .bg-sage .faq-item { border-bottom-color: rgba(255,255,255,0.12); }
.bg-deep .faq-item summary, .bg-sage .faq-item summary { color: #fff; }
.bg-deep .faq-item summary:hover, .bg-sage .faq-item summary:hover { color: var(--fresh-mint); }
.bg-deep .faq-item .faq-answer, .bg-sage .faq-item .faq-answer { color: var(--body-on-dark); opacity: 1; }
.bg-deep .faq-item .faq-answer a, .bg-sage .faq-item .faq-answer a { color: var(--fresh-mint); }

/* ─── STACKED NAV DROPDOWN: always light (header is always light) ─── */
nav.nav-stacked .nav-dropdown {
  background: #fff;
  border-color: var(--border-light);
  box-shadow: 0 20px 48px rgba(26,60,52,0.12);
}
nav.nav-stacked .nav-dropdown::before {
  background: #fff;
  border-color: var(--border-light);
}
nav.nav-stacked .nav-dropdown li a {
  color: var(--slate);
  opacity: 0.82;
}
nav.nav-stacked .nav-dropdown li a:hover {
  color: var(--deep-pine);
  opacity: 1;
  background: var(--mist);
}
nav.nav-stacked .nav-dropdown li:not(:last-child) a {
  border-bottom-color: var(--border-light);
}

/* ─── FOOTER BRAND: emblem instead of GL monogram ─── */
.footer-brand .nav-logo { gap: 11px; }
.footer-logo-img { height: 40px; width: auto; display: block; }

/* ─── HEADING-LEVEL FIX: h3 mirrors of former h4/h5 component styles ─── */
.how-step h3 { font-size: 0.95rem; font-weight: 600; color: var(--deep-pine); margin-bottom: 10px; line-height: 1.35; }
.bg-sage .how-step h3 { color: #fff; }
.why-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--deep-pine); margin-bottom: 8px; line-height: 1.46; }
.bg-deep .why-card h3 { color: #fff; }
.why-strip-item h3 { font-size: 0.9rem; font-weight: 600; color: var(--deep-pine); margin-bottom: 8px; line-height: 1.44; }
.book-expect-item h3 { font-size: 0.92rem; font-weight: 600; color: var(--deep-pine); margin-bottom: 3px; }
.feature-card h3 { font-size: 0.925rem; font-weight: 600; color: var(--deep-pine); margin-bottom: 6px; }
.pwa-feat h3 { font-size: 0.87rem; font-weight: 600; color: #fff; margin-bottom: 4px; line-height: 1.42; }
.bg-off .pwa-feat h3, .bg-white .pwa-feat h3 { color: var(--deep-pine); }
.pwa-path h3 { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 16px; }
.pwa-path-old h3 { color: var(--slate); opacity: 0.75; }
.pwa-path-gl h3 { color: #fff; }
/* why-strip promoted to its own section: drop the old divider treatment */
.why-strip-standalone { margin-top: 44px; padding-top: 0; border-top: none; }


/* ─── BRAND WORDMARK — heavy oblique gradient (HUB style) ─── */
nav.nav-stacked .nav-logo-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  transform: skewX(-9deg);
  background: linear-gradient(115deg, #52B788 0%, #40916C 42%, #1A3C34 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-right: 3px;
}
/* safety net: if background-clip:text is unsupported, show solid brand green */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  nav.nav-stacked .nav-logo-name {
    color: var(--deep-pine);
    -webkit-text-fill-color: currentColor;
    background: none;
  }
}


/* ─── FEATURE CARDS — no icon, soft mint glow ─── */
.feature-card {
  padding: 26px 24px;
  border-color: rgba(116,198,157,0.30);
  box-shadow: 0 4px 18px rgba(116,198,157,0.20);
}
.feature-card:hover {
  border-color: var(--fresh-mint);
  box-shadow: 0 10px 30px rgba(116,198,157,0.34);
  transform: translateY(-2px);
}


/* ─── PRICE PILLS ON DARK SECTIONS (product pricing blocks) ─── */
.bg-deep .price-pill,
.bg-sage .price-pill {
  background: rgba(116,198,157,0.08);
  border-color: rgba(116,198,157,0.22);
}
.bg-deep .price-pill-tier,
.bg-sage .price-pill-tier { color: var(--fresh-mint); }
.bg-deep .price-pill-amount,
.bg-sage .price-pill-amount { color: var(--warm-gold); }
.bg-deep .price-pill-note,
.bg-sage .price-pill-note { color: var(--body-on-dark); opacity: 1; }


/* ─── FOOTER WORDMARK — heavy oblique gradient (light, for dark bg) ─── */
.footer-logo-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1;
  transform: skewX(-9deg);
  display: inline-block;
  background: linear-gradient(115deg, #D8F3DC 0%, #74C69D 48%, #52B788 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding-right: 3px;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .footer-logo-name {
    color: var(--fresh-mint);
    -webkit-text-fill-color: currentColor;
    background: none;
  }
}

/* ─── HOME PRODUCT TEASERS (compact cards; full detail lives on products.html) ─── */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.sol-teaser {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.sol-teaser:hover {
  border-color: rgba(64,145,108,0.3);
  box-shadow: 0 8px 32px rgba(26,60,52,0.08);
  transform: translateY(-2px);
}
.sol-teaser h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-pine);
}
.sol-teaser p {
  font-size: 0.865rem;
  line-height: 1.66;
  color: var(--slate);
  opacity: 0.72;
}
.teaser-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--slate);
}
.teaser-foot strong { color: var(--sage); font-weight: 600; }
.teaser-arrow {
  color: var(--growth-mid);
  font-weight: 600;
  transition: transform var(--t);
}
.sol-teaser:hover .teaser-arrow { transform: translateX(4px); }
.teaser-more { text-align: center; margin-top: 36px; }
@media (max-width: 760px) {
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ─── PRODUCTS COMPARISON TABLE ─── */
.compare-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 52px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: #fff;
}
.compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 0.865rem;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
}
.compare-table thead th {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-pine);
  background: rgba(64,145,108,0.05);
  white-space: nowrap;
}
.compare-table tbody th {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--growth-mid);
  white-space: nowrap;
}
.compare-table td {
  color: var(--slate);
  opacity: 0.85;
  line-height: 1.6;
  min-width: 150px;
}
.compare-table td strong { color: var(--sage); font-weight: 600; }
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: none; }
.compare-table a { color: var(--growth-mid); font-weight: 600; }
.btn-white {
  padding: 13px 28px;
  background: #fff;
  color: var(--deep-pine);
  font-size: 0.9rem;
}
.btn-white:hover {
  background: var(--cream, #F4FBF6);
  box-shadow: 0 8px 32px rgba(26,60,52,0.25);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════
   BLOG / INSIGHTS
   ═══════════════════════════════════════════ */
/* ── Article ── */
.post { max-width: 760px; margin: 0 auto; padding: 120px 24px 40px; }
.post-head { margin-bottom: 40px; }
.crumbs { font-size: 0.8rem; color: var(--slate); opacity: 1; margin-bottom: 20px; display: none !important; }
.crumbs a { color: var(--growth-mid); font-weight: 500; }
.crumbs span { margin: 0 6px; }
.crumb-cur { opacity: 0.7; }
.post-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--growth-mid);
  background: rgba(64,145,108,0.08); border: 1px solid rgba(64,145,108,0.18);
  border-radius: 100px; padding: 5px 13px; margin-bottom: 20px;
}
.post-head h1 {
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.12; color: var(--deep-pine);
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.post-meta { font-size: 0.85rem; color: var(--slate); opacity: 0.6; }

.post-body { font-size: 1.06rem; line-height: 1.78; color: #24322f; }
.post-body > *:first-child { margin-top: 0; }
.post-body h2 {
  font-size: 1.7rem; line-height: 1.25; color: var(--deep-pine);
  margin: 48px 0 16px; letter-spacing: -0.01em; scroll-margin-top: 100px;
}
.post-body h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 600;
  color: var(--sage); margin: 34px 0 12px; scroll-margin-top: 100px;
}
.post-body h4 { font-size: 1.02rem; font-weight: 700; color: var(--deep-pine); margin: 26px 0 10px; }
.post-body p { margin: 0 0 20px; }
.post-body a { color: var(--growth-mid); font-weight: 500; text-decoration: underline; text-decoration-color: rgba(64,145,108,0.35); text-underline-offset: 2px; }
.post-body a:hover { text-decoration-color: var(--growth-mid); }
.post-body ul, .post-body ol { margin: 0 0 22px; padding-left: 24px; }
.post-body li { margin-bottom: 10px; padding-left: 4px; }
.post-body ul li::marker { color: var(--fresh-mint); }
.post-body ol li::marker { color: var(--growth-mid); font-weight: 600; }
.post-body strong { color: var(--deep-pine); font-weight: 700; }
.post-body code { background: rgba(26,60,52,0.06); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.post-body cite { font-style: italic; color: var(--sage); }
.post-body hr { border: none; border-top: 1px solid var(--border-light); margin: 40px 0; }
.post-body blockquote {
  margin: 28px 0; padding: 18px 26px; border-left: 3px solid var(--fresh-mint);
  background: var(--mist); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.08rem; color: var(--deep-pine); font-style: italic;
}
.post-body blockquote.callout {
  font-style: normal; font-size: 0.92rem; background: rgba(201,168,76,0.09);
  border-left-color: var(--warm-gold); color: #4a4230;
}
.post-body blockquote cite, .post-body blockquote em { font-style: normal; }
.table-wrap { overflow-x: auto; margin: 26px 0; border: 1px solid var(--border-light); border-radius: var(--radius); }
.post-body table { width: 100%; min-width: 480px; border-collapse: collapse; font-size: 0.92rem; }
.post-body th, .post-body td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-light); vertical-align: top; }
.post-body thead th { background: rgba(64,145,108,0.06); color: var(--deep-pine); font-weight: 700; white-space: nowrap; }
.post-body tbody tr:last-child td { border-bottom: none; }
.post-body td strong { color: var(--sage); }

/* Related box */
.related { margin: 48px 0 0; padding: 28px 30px; background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius); }
.related h2 { font-size: 1.15rem; color: var(--deep-pine); margin: 0 0 16px; }
.related ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.related li { margin: 0; }
.related a { color: var(--growth-mid); font-weight: 600; text-decoration: none; }
.related a:hover { text-decoration: underline; }
.rr-pill { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gold); border: 1px solid rgba(201,168,76,0.4); border-radius: 100px; padding: 2px 8px; margin-left: 8px; vertical-align: middle; }

/* Post CTA */
.post-cta { max-width: 760px; margin: 56px auto 0; padding: 44px 40px; background: var(--deep-pine); border-radius: var(--radius); text-align: center; }
.post-cta h2 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; }
.post-cta p { color: rgba(255,255,255,0.9); font-size: 0.98rem; line-height: 1.7; max-width: 480px; margin: 0 auto 24px; }

/* ── Blog index ── */
.insight-wrap { padding-top: 72px; }
.insight-cluster { margin-bottom: 64px; }
.insight-cluster:last-child { margin-bottom: 0; }
.cluster-head { margin-bottom: 28px; }
.insight-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.insight-card {
  position: relative; display: flex; flex-direction: column; gap: 10px; padding: 30px 32px;
  background: #fff; border: 1px solid var(--border-light); border-radius: var(--radius);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.insight-card:hover { border-color: rgba(64,145,108,0.3); box-shadow: 0 8px 32px rgba(26,60,52,0.08); transform: translateY(-2px); }
.insight-card.pillar { border-color: rgba(201,168,76,0.35); background: linear-gradient(180deg,#fff,rgba(201,168,76,0.04)); grid-column: 1 / -1; }
.ic-cat { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--growth-mid); }
.insight-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: var(--deep-pine); line-height: 1.25; }
.insight-card.pillar h3 { font-size: 1.6rem; }
.insight-card p { font-size: 0.9rem; line-height: 1.6; color: var(--slate); opacity: 0.75; }
.ic-more { font-size: 0.82rem; font-weight: 600; color: var(--growth-mid); margin-top: 4px; transition: transform var(--t); }
.insight-card:hover .ic-more { transform: translateX(4px); }
.ic-pill { position: absolute; top: 22px; right: 24px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--warm-gold); border: 1px solid rgba(201,168,76,0.4); border-radius: 100px; padding: 3px 9px; }

@media (max-width: 760px) {
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card.pillar { grid-column: auto; }
  .post { padding-top: 100px; }
  .post-body { font-size: 1rem; }
}
