/* ========================================================================
   Bonobo prototype — shared styles
   Brand: warm & human, blue accent (#0087CB)
   Production note: replace Inter with Priva (PrivaFourPro / PrivaTwoPro) in WordPress theme
   ======================================================================== */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px; line-height: 1.55; color: var(--ink); background: var(--bg);
  font-feature-settings: 'cv11', 'ss01', 'ss03'; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); }
p { margin: 0 0 1em; }

/* ---------- Tokens ----------
   Brand palette extracted from the actual Bonobo logo:
   - Blue   #0090D8 — primary
   - Teal   #00A8B4 — secondary (used in eyebrow accents, icon tiles)
   - Coral  #D86048 — warm accent (italic emphasis, special highlights)
*/
:root {
  --bg: #FAF7F2;
  --bg-elev: #FFFFFF;
  --bg-deep: #F2EDE3;
  --ink: #1A1A1A;
  --ink-2: #4A4A4A;
  --ink-3: #767676;
  --line: #EDE6D9;
  --line-strong: #DDD2BD;

  /* Primary blue */
  --brand: #0090D8;
  --brand-dark: #0078B5;
  --brand-darker: #005A8A;
  --brand-tint: #E5F4FB;
  --brand-soft: #F0F8FC;

  /* Teal — secondary */
  --teal: #00A8B4;
  --teal-dark: #008891;
  --teal-tint: #E5F6F8;

  /* Coral — warm accent */
  --coral: #D86048;
  --coral-dark: #B04A38;
  --coral-tint: #FAEEEA;

  --shadow-sm: 0 1px 2px rgba(20, 16, 8, 0.04), 0 2px 6px rgba(20, 16, 8, 0.04);
  --shadow-md: 0 2px 4px rgba(20, 16, 8, 0.05), 0 8px 24px rgba(20, 16, 8, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ---------- Language switching ---------- */
html[data-lang="tr"] .lang-en { display: none !important; }
html[data-lang="en"] .lang-tr { display: none !important; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) {
  .container, .container-narrow { padding: 0 48px; }
}
.section { padding: 72px 0; }
.section-tight { padding: 56px 0; }
.section-elevated { background: var(--bg-elev); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 768px) {
  .section { padding: 96px 0; }
  .section-tight { padding: 72px 0; }
}
/* When a section directly follows a hero or page-hero, tighten the gap (hero already has bottom padding) */
.hero + .section,
.hero + .section-tight,
.logo-strip + .section,
.page-hero + .section,
.page-hero + .section-tight { padding-top: 32px; }
@media (min-width: 768px) {
  .hero + .section,
  .hero + .section-tight,
  .logo-strip + .section,
  .page-hero + .section,
  .page-hero + .section-tight { padding-top: 48px; }
}

/* ---------- Typography ---------- */
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px; }
.h1 { font-size: clamp(36px, 6vw, 64px); letter-spacing: -0.025em; }
.h2 { font-size: clamp(28px, 4vw, 44px); letter-spacing: -0.022em; }
.h3 { font-size: clamp(22px, 2.5vw, 28px); }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--ink-2); line-height: 1.5; max-width: 60ch; }
.muted { color: var(--ink-3); }
.italic-warm { font-style: italic; color: var(--coral); }

/* ---------- Header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 24px; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 56px; width: auto; display: block; }
.site-footer .logo img { height: 44px; }
@media (max-width: 640px) { .logo img { height: 44px; } }
.nav-links { display: none; align-items: center; gap: 32px; list-style: none; padding: 0; margin: 0; }
.nav-links a { color: var(--ink-2); font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; gap: 4px; border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; background: var(--bg-elev); }
.lang-switch button, .lang-switch a { background: transparent; border: 0; padding: 4px 10px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-3); text-decoration: none; cursor: pointer; display: inline-block; }
.lang-switch button[aria-pressed="true"], .lang-switch a[aria-pressed="true"],
.lang-switch button[aria-current="true"], .lang-switch a[aria-current="true"] { background: var(--ink); color: white; }
.dropdown { position: relative; }
.dropdown > a::after { content: ' \25BE'; font-size: 0.8em; opacity: 0.6; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 8px; box-shadow: var(--shadow-md); display: none; }
/* Invisible hover-bridge: keeps the dropdown alive when the mouse moves from trigger to menu */
.dropdown-menu::before { content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 12px 14px; border-radius: var(--radius-sm);
  color: var(--ink); font-weight: 500; }
.dropdown-menu a:hover { background: var(--brand-soft); }
.dropdown-menu a small { display: block; color: var(--ink-3); font-weight: 400; font-size: 13px; margin-top: 2px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: var(--radius-sm);
  border: 1px solid transparent; transition: all 0.15s ease; white-space: nowrap; }
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); color: white; transform: translateY(-1px); }
.btn-secondary { background: var(--bg-elev); color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--bg-deep); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--brand); padding: 12px 0; }
.btn-ghost:hover { color: var(--brand-dark); transform: translateX(2px); }
.btn-large { padding: 16px 28px; font-size: 16px; }

/* ---------- Hero ---------- */
.hero { padding: 80px 0 100px; }
@media (min-width: 768px) { .hero { padding: 120px 0 140px; } }
.hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line); }
.hero-stat strong { display: block; font-size: 28px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; line-height: 1; }
.hero-stat span { font-size: 13px; color: var(--ink-3); margin-top: 6px; display: block; }

/* ---------- Hero visual ---------- */
.hero-visual { position: relative; aspect-ratio: 4 / 5; max-height: 580px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  background: var(--bg-deep); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: var(--radius-lg); }
.hero-visual::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(0, 144, 216, 0.08) 100%);
  border-radius: var(--radius-lg); pointer-events: none; }
.floating-card { position: absolute; background: var(--bg-elev); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.floating-card.top { top: 24px; left: -16px; }
.floating-card.bottom { bottom: 32px; right: -16px; }
.floating-card .icon { width: 40px; height: 40px; border-radius: 10px; background: var(--teal-tint);
  color: var(--teal); display: grid; place-items: center; font-size: 20px; font-weight: 700; }
.floating-card.bottom .icon { background: var(--coral-tint); color: var(--coral); }
.floating-card strong { display: block; font-size: 14px; line-height: 1.2; }
.floating-card span { font-size: 12px; color: var(--ink-3); }
@media (max-width: 1023px) { .floating-card { display: none; } }

/* ---------- Cashier-view card (richer floating card on homepage hero) ---------- */
.floating-card.cashier-view { display: block; padding: 16px 18px; min-width: 240px; max-width: 280px;
  border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(20, 16, 8, 0.18); }
.floating-card.cashier-view.top { top: 64px; left: -24px; right: auto; bottom: auto; }
.floating-card.cashier-view.bottom { bottom: 32px; right: -20px; top: auto; left: auto; }
.cashier-view-head { display: flex; align-items: center; gap: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.cashier-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--brand);
  color: white; display: grid; place-items: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.cashier-name { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cashier-name strong { font-size: 15px; font-weight: 600; color: var(--ink); display: block; }
.cashier-tier { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--coral); background: var(--coral-tint); padding: 2px 8px; border-radius: 999px;
  text-transform: uppercase; align-self: flex-start; }
.cashier-stats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.cashier-stats li { font-size: 12.5px; color: var(--ink-2); line-height: 1.35; padding-left: 16px;
  position: relative; }
.cashier-stats li::before { content: ''; position: absolute; left: 0; top: 7px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--brand); }
.cashier-stats li strong { display: inline; color: var(--ink); font-weight: 600; }

/* ---------- Logo strip (auto-scrolling marquee) ---------- */
.logo-strip { padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; }
.logo-strip-label { text-align: center; font-size: 13px; color: var(--ink-3); letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 600; margin-bottom: 28px; }
@media (min-width: 768px) { .logo-strip { padding: 64px 0; } }

.logo-marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
          mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.logo-marquee-track { display: flex; align-items: center;
  width: max-content; }
.logo-marquee-track img { height: 56px; max-width: 160px; width: auto; margin-right: 64px;
  object-fit: contain; flex-shrink: 0;
  filter: grayscale(1) contrast(0.92); opacity: 0.7;
  transition: filter 0.2s ease, opacity 0.2s ease; }
.logo-marquee-track img:hover { filter: grayscale(0) contrast(1); opacity: 1; }
/* Light-on-dark logos — invert so they read as dark on the cream page */
.logo-marquee-track img.logo-light {
  filter: grayscale(1) brightness(0.85) invert(1) contrast(0.95); opacity: 0.7; }
.logo-marquee-track img.logo-light:hover {
  filter: grayscale(1) brightness(0.85) invert(1) contrast(1); opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { flex-wrap: wrap; justify-content: center; }
}

/* ---------- Two-pillar section ---------- */
.pillars { display: grid; gap: 24px; }
@media (min-width: 768px) { .pillars { grid-template-columns: 1fr 1fr; gap: 32px; } }
.pillar { background: var(--bg-elev); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--line); position: relative; overflow: hidden; transition: all 0.2s ease; }
.pillar:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.pillar-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--brand-tint);
  display: grid; place-items: center; margin-bottom: 24px; color: var(--brand); }
.pillar.pillar-no-pos .pillar-icon { background: var(--coral-tint); color: var(--coral); }
.pillar.pillar-no-pos .pillar-meta { color: var(--coral); }
.pillar h3 { font-size: 26px; margin-bottom: 12px; }
.pillar .pillar-meta { font-size: 13px; color: var(--brand); font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 8px; display: block; }
.pillar p { color: var(--ink-2); }
.pillar ul { list-style: none; padding: 0; margin: 20px 0 28px; }
.pillar ul li { padding-left: 28px; position: relative; margin-bottom: 10px; color: var(--ink-2); font-size: 15px; }
.pillar ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 18px; height: 18px;
  background: var(--brand); -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain; }

/* ---------- Feature row ---------- */
.feature-row { display: grid; gap: 32px; }
@media (min-width: 768px) { .feature-row { grid-template-columns: repeat(3, 1fr); } }
.feature { padding: 0; }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--bg-deep);
  display: grid; place-items: center; margin-bottom: 18px; color: var(--brand); font-size: 22px; }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--ink-2); }

/* ---------- Quote / case study ---------- */
.quote-card { background: var(--ink); color: white; border-radius: var(--radius-lg); padding: 56px 48px;
  position: relative; overflow: hidden; }
.quote-card::before { content: '"'; position: absolute; top: -20px; left: 32px; font-size: 280px;
  font-family: Georgia, serif; line-height: 1; color: var(--coral); opacity: 0.55; }
.quote-card blockquote { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; font-weight: 500;
  margin: 0 0 28px; max-width: 720px; position: relative; }
.quote-card .attribution { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.quote-card .attribution strong { display: block; color: white; font-size: 16px; }
.quote-card .attribution .meta { color: rgba(255, 255, 255, 0.6); }
.quote-card .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--brand);
  display: grid; place-items: center; color: white; font-weight: 700; }
.case-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px;
  padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, 0.15); }
@media (min-width: 768px) { .case-stats { grid-template-columns: repeat(3, 1fr); } }
.case-stat strong { display: block; font-size: 32px; font-weight: 700; color: var(--teal);
  letter-spacing: -0.02em; line-height: 1; }
.case-stat span { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin-top: 6px; display: block; }

/* ---------- Pricing teaser ---------- */
.pricing-teaser { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 40px; display: flex; flex-wrap: wrap;
  gap: 24px; align-items: center; justify-content: space-between; }
.pricing-teaser-text { flex: 1; min-width: 280px; }
.pricing-teaser .eyebrow { color: var(--coral); margin-bottom: 8px; }
.pricing-teaser h3 { font-size: clamp(20px, 2vw, 24px); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--brand) 0%, var(--brand-darker) 100%);
  color: white; border-radius: var(--radius-lg); padding: 56px 48px; text-align: center; }
.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255, 255, 255, 0.85); max-width: 580px; margin: 0 auto 28px; font-size: 17px; }
.cta-banner .btn-primary { background: white; color: var(--brand); }
.cta-banner .btn-primary:hover { background: var(--bg); color: var(--brand-dark); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 40px; margin-bottom: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand p { color: var(--ink-3); font-size: 14px; max-width: 320px; margin-top: 16px; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--ink-2); font-size: 15px; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-3); }

/* ---------- Form ---------- */
.form-grid { display: grid; gap: 16px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-size: 14px; font-weight: 500; color: var(--ink-2);
  margin-bottom: 6px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); background: var(--bg-elev);
  font: inherit; font-size: 15px; color: var(--ink); transition: border-color 0.15s; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-meta { font-size: 13px; color: var(--ink-3); margin-top: 8px; }
.form-meta a { font-weight: 500; }

/* ---------- Misc ---------- */
.divider { width: 100%; height: 1px; background: var(--line); margin: 64px 0; }
.tag { display: inline-block; background: var(--brand-tint); color: var(--brand); padding: 4px 12px;
  border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { margin: 0 auto; }

/* ========================================================================
   Pricing page
   ======================================================================== */

/* ---------- Page hero ---------- */
.page-hero { padding: 80px 0 48px; text-align: center; }
.page-hero .h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 20px; }
.page-hero .lead { margin: 0 auto; }
@media (max-width: 640px) {
  .page-hero { padding: 48px 0 32px; }
}

/* ---------- Billing toggle ---------- */
.billing-bar { position: sticky; top: 88px; z-index: 30;
  background: rgba(250, 247, 242, 0.92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent; padding: 16px 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.billing-bar.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 3px rgba(20,16,8,0.04); }
.billing-toggle { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px;
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 999px;
  padding: 4px; margin: 0 auto; max-width: max-content; }
.billing-toggle button { background: transparent; border: 0; padding: 10px 18px;
  border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--ink-2);
  cursor: pointer; white-space: nowrap; transition: all 0.15s ease; }
.billing-toggle button:hover { color: var(--ink); }
.billing-toggle button[aria-pressed="true"] { background: var(--brand); color: white; font-weight: 600; }
.billing-toggle .save-badge { display: inline-block; margin-left: 6px; font-size: 11px;
  font-weight: 700; color: var(--coral); background: var(--coral-tint); padding: 2px 6px;
  border-radius: 4px; letter-spacing: 0.02em; }
.billing-toggle button[aria-pressed="true"] .save-badge { background: rgba(255,255,255,0.2); color: white; }

/* ---------- Plan section ---------- */
.plan-section { padding: 56px 0; }
.plan-section + .plan-section { padding-top: 0; }
@media (min-width: 768px) {
  .plan-section { padding: 72px 0; }
}
/* When the first plan-section follows the billing bar (which sits below page-hero), keep it tight */
.billing-bar + .plan-section { padding-top: 32px; }
/* Tinted plan section variant — picks up its own padding so .plan-section + collapse rule doesn't strip it */
.plan-section.plan-section-tinted { background: var(--bg-deep); padding-top: 72px; }
@media (min-width: 768px) {
  .plan-section.plan-section-tinted { padding-top: 96px; }
}
.plan-section-header { display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap;
  margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.plan-section-header h2 { font-size: clamp(24px, 3vw, 32px); }
.plan-section-header .eyebrow { margin-bottom: 0; }
.plan-section-header p { color: var(--ink-2); margin: 0; font-size: 16px; flex: 1 1 100%; }

/* ---------- Plan cards ---------- */
.plans { display: grid; gap: 24px; }
.plans.plans-2 { grid-template-columns: 1fr; }
@media (min-width: 880px) { .plans.plans-2 { grid-template-columns: 1fr 1fr; gap: 32px; } }
/* When a plan grid contains a single card, center it horizontally */
.plans.plans-single { grid-template-columns: minmax(0, 560px); justify-content: center; }

.plan-card { background: var(--bg-elev); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: all 0.2s ease; position: relative; }
.plan-card:hover { border-color: var(--brand); box-shadow: var(--shadow-md); }
.plan-card.plan-card-featured { border: 2px solid var(--brand); }
.plan-card.plan-card-lite { background: linear-gradient(180deg, var(--coral-tint) 0%, var(--bg-elev) 60%); }

.plan-card .plan-meta { font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.plan-card.plan-card-lite .plan-meta { color: var(--coral); }
.plan-card h3 { font-size: 28px; margin-bottom: 8px; }
.plan-card .plan-tagline { color: var(--ink-2); font-size: 15px; margin-bottom: 24px; min-height: 44px; }

.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price .currency { font-size: 22px; font-weight: 600; color: var(--ink); }
.plan-price .amount { font-size: 56px; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.plan-price .period { font-size: 14px; color: var(--ink-3); margin-left: 4px; }
.plan-setup { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; }
.plan-billing-note { font-size: 13px; color: var(--ink-3); margin-bottom: 24px; min-height: 18px; }

.plan-features { list-style: none; padding: 0; margin: 8px 0 28px; }
.plan-features li { padding-left: 28px; position: relative; margin-bottom: 10px;
  color: var(--ink-2); font-size: 14.5px; line-height: 1.45; }
.plan-features li::before { content: ''; position: absolute; left: 0; top: 6px; width: 18px; height: 18px;
  background: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M5 12l4 4 10-10' stroke='black' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / contain; }
.plan-card.plan-card-lite .plan-features li::before { background: var(--coral); }
.plan-features li.muted { color: var(--ink-3); }
.plan-features li.muted::before { background: var(--ink-3); opacity: 0.5; }
.plan-features li strong { color: var(--ink); font-weight: 600; }

.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; }

/* ---------- Connected Pro location selector ---------- */
.loc-selector { margin-bottom: 20px; }
.loc-selector-label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; display: block; }
.loc-selector-buttons { display: flex; flex-wrap: wrap; gap: 6px; }
.loc-selector-buttons button { background: var(--bg); border: 1px solid var(--line-strong);
  padding: 8px 12px; border-radius: 8px; font-size: 13px; color: var(--ink-2);
  cursor: pointer; transition: all 0.15s ease; font-weight: 500; }
.loc-selector-buttons button:hover { border-color: var(--brand); color: var(--brand); }
.loc-selector-buttons button[aria-pressed="true"] { background: var(--brand); border-color: var(--brand);
  color: white; }

.plan-card.plan-card-contact .plan-price { display: none; }
.plan-card.plan-card-contact .plan-contact { display: block; }
.plan-contact { display: none; font-size: 22px; font-weight: 600; color: var(--ink);
  margin-bottom: 4px; line-height: 1.2; }
.plan-contact small { display: block; font-size: 14px; font-weight: 400; color: var(--ink-3); margin-top: 4px; }

/* ---------- Add-ons table ---------- */
.addons-section { padding: 72px 0; background: var(--bg-elev);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 768px) {
  .addons-section { padding: 96px 0; }
}
.addons-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--line); }
.addons-table { width: 100%; border-collapse: collapse; min-width: 720px; background: var(--bg-elev); }
.addons-table th, .addons-table td { padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--line); vertical-align: top; }
.addons-table th { background: var(--bg-deep); font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.addons-table th.col-plan { text-align: center; min-width: 100px; }
.addons-table td.col-plan { text-align: center; font-weight: 500; }
.addons-table td.col-name strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; }
.addons-table td.col-name span { color: var(--ink-3); font-size: 13px; line-height: 1.45; display: block; }
.addons-table td.col-cost { color: var(--ink-2); font-size: 13.5px; white-space: nowrap; line-height: 1.5; }
.addons-table td.col-cost div + div { color: var(--ink-3); }
.addons-table tr:last-child td { border-bottom: 0; }
.addons-table .avail-yes { color: var(--brand); font-weight: 600; }
.addons-table .avail-free { color: var(--teal-dark); font-weight: 700; font-size: 12px;
  background: var(--teal-tint); padding: 4px 8px; border-radius: 999px; letter-spacing: 0.04em; }
.addons-table .avail-no { color: var(--ink-3); opacity: 0.5; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 4px; max-width: 820px; margin: 0 auto; }
.faq details { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 0; transition: border-color 0.15s ease; }
.faq details[open] { border-color: var(--brand); }
.faq summary { padding: 20px 24px; font-weight: 600; font-size: 16px; color: var(--ink);
  cursor: pointer; list-style: none; position: relative; padding-right: 56px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--ink-3);
  transition: transform 0.2s ease; }
.faq details[open] summary::after { content: '−'; color: var(--brand); }
.faq details > div { padding: 0 24px 20px; color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ---------- Pricing footnote ---------- */
.price-footnote { text-align: center; font-size: 13px; color: var(--ink-3);
  max-width: 720px; margin: 24px auto 0; }

/* ========================================================================
   Contact / Demo page
   ======================================================================== */
.contact-grid { display: grid; gap: 48px; align-items: start; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1.4fr 1fr; gap: 64px; } }

.contact-form { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 40px; }
.contact-form h2 { font-size: 28px; margin-bottom: 8px; }
.contact-form .form-intro { color: var(--ink-2); margin-bottom: 32px; font-size: 15px; }

.form-radio-group { display: flex; flex-wrap: wrap; gap: 8px; }
.form-radio { position: relative; }
.form-radio input { position: absolute; opacity: 0; pointer-events: none; }
.form-radio label { display: inline-block; padding: 10px 16px; border: 1px solid var(--line-strong);
  border-radius: 999px; font-size: 14px; color: var(--ink-2); cursor: pointer;
  transition: all 0.15s ease; background: var(--bg); }
.form-radio label:hover { border-color: var(--brand); color: var(--brand); }
.form-radio input:checked + label { background: var(--brand); border-color: var(--brand); color: white; }
.form-radio input:focus-visible + label { box-shadow: 0 0 0 3px var(--brand-soft); }

.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px;
  color: var(--ink-2); line-height: 1.5; margin-top: 4px; }
.form-checkbox input { margin-top: 3px; accent-color: var(--brand); flex-shrink: 0; }
.form-checkbox a { font-weight: 500; }

.form-status { padding: 16px 20px; border-radius: var(--radius-md);
  background: var(--brand-tint); color: var(--brand-darker); font-size: 15px;
  margin-bottom: 16px; display: none; }
.form-status.is-visible { display: block; }

.contact-aside { padding: 16px 0; }
.contact-aside h3 { font-size: 22px; margin-bottom: 12px; }
.contact-aside p { color: var(--ink-2); font-size: 15px; }
.contact-aside ul { list-style: none; padding: 0; margin: 24px 0; }
.contact-aside ul li { padding-left: 36px; position: relative; margin-bottom: 16px;
  color: var(--ink-2); font-size: 15px; line-height: 1.5; }
.contact-aside ul li::before { content: ''; position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px; border-radius: 50%; background: var(--brand-tint);
  display: grid; place-items: center; }
.contact-aside ul li strong { color: var(--ink); display: block; font-weight: 600; margin-bottom: 2px; }
.contact-aside ul li.step-1::before { content: '1'; color: var(--brand); font-weight: 700; font-size: 13px; }
.contact-aside ul li.step-2::before { content: '2'; color: var(--brand); font-weight: 700; font-size: 13px; }
.contact-aside ul li.step-3::before { content: '3'; color: var(--brand); font-weight: 700; font-size: 13px; }

.contact-aside-card { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 24px; margin-top: 24px; }
.contact-aside-card h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.contact-aside-card a { font-weight: 500; }
.contact-aside-card p { font-size: 14px; margin: 0; }
.contact-aside-card p + p { margin-top: 8px; }

/* ========================================================================
   About page
   ======================================================================== */
.about-story { display: grid; gap: 32px; }
@media (min-width: 880px) { .about-story { grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; } }
.about-story-side { position: sticky; top: 120px; }
.about-story-side h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.about-story-side .eyebrow { color: var(--coral); }
.about-story-body p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin-bottom: 18px; }
.about-story-body p:first-of-type::first-letter {
  font-size: 56px; font-weight: 700; float: left; line-height: 0.9;
  margin: 6px 8px 0 0; color: var(--coral); }

.about-stats { display: grid; gap: 24px; margin: 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .about-stats { grid-template-columns: repeat(4, 1fr); } }
.about-stat { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 28px 24px; }
.about-stat strong { display: block; font-size: clamp(36px, 4vw, 48px); font-weight: 700;
  color: var(--brand); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.about-stat span { color: var(--ink-3); font-size: 14px; line-height: 1.45; }

.principles { display: grid; gap: 32px; }
@media (min-width: 768px) { .principles { grid-template-columns: repeat(2, 1fr); } }
.principle h3 { font-size: 22px; margin-bottom: 8px; color: var(--ink); display: flex;
  align-items: baseline; gap: 12px; }
.principle h3 span { color: var(--coral); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; }
.principle p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }

/* ========================================================================
   Blog
   ======================================================================== */
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
  border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.blog-filters button { background: transparent; border: 1px solid var(--line-strong);
  padding: 8px 16px; border-radius: 999px; font-size: 13px; color: var(--ink-2);
  cursor: pointer; transition: all 0.15s ease; font-weight: 500; }
.blog-filters button:hover { border-color: var(--brand); color: var(--brand); }
.blog-filters button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: white; }

.blog-featured { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 56px;
  display: grid; gap: 0; }
@media (min-width: 880px) { .blog-featured { grid-template-columns: 1.1fr 1fr; } }
.blog-featured-img { background: var(--bg-deep); aspect-ratio: 16 / 10; min-height: 280px;
  display: grid; place-items: center; color: var(--ink-3); font-size: 13px;
  background-size: cover; background-position: center; }
.blog-featured-body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .eyebrow { color: var(--coral); margin-bottom: 12px; }
.blog-featured-body h2 { font-size: clamp(24px, 3vw, 32px); line-height: 1.2; margin-bottom: 12px; }
.blog-featured-body h2 a { color: var(--ink); }
.blog-featured-body h2 a:hover { color: var(--brand); }
.blog-featured-body p { color: var(--ink-2); margin-bottom: 20px; }
.blog-featured-body .post-meta { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
/* Single-column layout: cap image height and tighten body padding */
@media (max-width: 879px) {
  .blog-featured { margin-bottom: 40px; }
  .blog-featured-img { aspect-ratio: auto; height: 220px; min-height: unset; }
  .blog-featured-body { padding: 28px 32px; }
}
@media (max-width: 640px) {
  .blog-featured-body { padding: 24px 20px; }
  .blog-featured-body h2 { font-size: 20px; }
}

.blog-grid { display: grid; gap: 32px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden; transition: all 0.2s ease; }
.blog-card:hover { border-color: var(--brand); transform: translateY(-2px);
  box-shadow: var(--shadow-md); }
.blog-card-img { aspect-ratio: 16 / 10; background: var(--bg-deep); display: grid;
  place-items: center; color: var(--ink-3); font-size: 12px;
  background-size: cover; background-position: center; }
.blog-card-body { padding: 24px; }
.blog-card-body .post-meta { font-size: 12px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 8px; }
.blog-card-body .post-meta .post-cat { color: var(--brand); }
.blog-card-body h3 { font-size: 18px; line-height: 1.3; margin-bottom: 8px; }
.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--brand); }
.blog-card-body p { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin: 0; }

.blog-pagination { display: flex; justify-content: center; align-items: center;
  gap: 16px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }

.newsletter-card { background: var(--ink); color: white;
  border-radius: var(--radius-lg); padding: 40px; text-align: center; margin-top: 64px; }
.newsletter-card h3 { color: white; font-size: 24px; margin-bottom: 12px; }
.newsletter-card p { color: rgba(255,255,255,0.75); margin-bottom: 24px; max-width: 480px;
  margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 8px; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 12px 16px;
  border: 0; border-radius: var(--radius-sm); font: inherit; font-size: 15px; color: var(--ink); }
.newsletter-form button { background: var(--brand); color: white; border: 0;
  padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; cursor: pointer; }
.newsletter-form button:hover { background: var(--brand-dark); }

/* ========================================================================
   Single blog post page
   ======================================================================== */
.post-hero { padding: 64px 0 32px; }
.post-meta-row { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center;
  font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.post-meta-row .post-cat { color: var(--brand); font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; }
.post-hero .h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 16px; }
.post-hero .lead { color: var(--ink-2); }
.post-cover { margin: 32px 0; aspect-ratio: 16 / 8; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--bg-deep); }
.post-cover img, .post-cover svg { width: 100%; height: 100%; object-fit: cover; display: block; }

.post-body { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.65; color: var(--ink); }
.post-body h2 { font-size: 26px; font-weight: 600; margin: 36px 0 12px; letter-spacing: -0.015em; }
.post-body h3 { font-size: 20px; font-weight: 600; margin: 28px 0 8px; }
.post-body p { margin: 0 0 16px; }
.post-body ul, .post-body ol { padding-left: 22px; margin: 0 0 16px; }
.post-body ul li, .post-body ol li { margin-bottom: 6px; }
.post-body strong { color: var(--ink); font-weight: 600; }
.post-body blockquote { margin: 24px 0; padding: 16px 24px; border-left: 3px solid var(--coral);
  font-style: italic; color: var(--ink-2); background: var(--bg-elev); border-radius: 4px; }

/* ---------- Read next (related posts) ---------- */
.read-next { max-width: 720px; margin: 56px auto 0; padding-top: 32px; border-top: 1px solid var(--line); }
.read-next-label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 18px; }
.read-next-grid { display: grid; gap: 12px; }
@media (min-width: 768px) { .read-next-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.read-next-card { display: block; background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 18px 20px; color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease; }
.read-next-card:hover { border-color: var(--brand); transform: translateY(-2px); color: var(--ink); }
.read-next-card .read-next-cat { display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.read-next-card h4 { font-size: 15px; font-weight: 600; line-height: 1.35; margin: 0 0 6px; color: var(--ink); }
.read-next-card p { font-size: 13.5px; color: var(--ink-3); line-height: 1.45; margin: 0; }

.post-footer { max-width: 720px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center; font-size: 14px; color: var(--ink-3); }
.post-footer .post-share { display: flex; gap: 12px; }
.post-footer a { color: var(--brand); }

/* ========================================================================
   Product detail pages (Connected / Lite)
   ======================================================================== */

/* ---------- Audience cards row ---------- */
.audience-row { display: grid; gap: 24px; margin-top: 32px; }
@media (min-width: 768px) { .audience-row { grid-template-columns: repeat(3, 1fr); } }
.audience-card { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 24px; transition: border-color 0.15s ease; }
.audience-card:hover { border-color: var(--brand); }
.audience-card .audience-icon { width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-tint); color: var(--brand); display: grid;
  place-items: center; margin-bottom: 16px; }
.lite-page .audience-card .audience-icon { background: var(--coral-tint); color: var(--coral); }
.lite-page .audience-card:hover { border-color: var(--coral); }
.audience-card h3 { font-size: 18px; margin-bottom: 6px; }
.audience-card p { color: var(--ink-2); font-size: 14.5px; line-height: 1.5; margin: 0; }

/* ---------- How it works ---------- */
.steps { display: grid; gap: 32px; margin-top: 40px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; } }
@media (min-width: 768px) { .steps.steps-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps.steps-4 { grid-template-columns: repeat(4, 1fr); } }
.step { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px 28px; position: relative; }
.step-number { position: absolute; top: -16px; left: 28px; width: 32px; height: 32px;
  border-radius: 50%; background: var(--brand); color: white; display: grid;
  place-items: center; font-weight: 700; font-size: 14px; }
.lite-page .step-number { background: var(--coral); }
.step h3 { font-size: 18px; margin-bottom: 10px; }
.step p { color: var(--ink-2); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* ---------- Compare-to-other-product callout ---------- */
.crosslink-card { background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 36px; display: flex; flex-wrap: wrap;
  gap: 20px; align-items: center; justify-content: space-between; }
.crosslink-card .crosslink-text { flex: 1; min-width: 280px; }
.crosslink-card h3 { font-size: 20px; margin-bottom: 6px; }
.crosslink-card p { color: var(--ink-2); font-size: 14.5px; margin: 0; }

/* ---------- Visual hero panel ---------- */
.product-hero-visual { background: linear-gradient(135deg, var(--brand-tint) 0%, var(--teal-tint) 100%);
  border-radius: var(--radius-lg); aspect-ratio: 4 / 3; display: grid;
  place-items: center; color: var(--ink-3); font-size: 13px;
  border: 1px solid var(--line); }
.lite-page .product-hero-visual { background: linear-gradient(135deg, var(--coral-tint) 0%, var(--bg-deep) 100%); }
.product-hero-img { width: 100%; height: auto; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); display: block;
  filter: drop-shadow(0 12px 32px rgba(20, 16, 8, 0.08)); }

.product-hero-grid { display: grid; gap: 48px; align-items: center; }
@media (min-width: 880px) { .product-hero-grid { grid-template-columns: 1fr 1fr; } }
.product-hero-grid .h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 20px; }
.product-hero-grid .lead { margin-bottom: 32px; }
.product-hero-grid .hero-actions { margin-top: 0; }

/* ========================================================================
   Mobile navigation
   ======================================================================== */

/* ---------- Hamburger button ---------- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-hamburger { display: flex; }
}

/* Hide header CTA on very small screens — mobile nav has its own */
@media (max-width: 479px) {
  .nav-cta { display: none !important; }
}

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 16px 24px 32px;
  z-index: 49;
  overflow-y: auto;
  flex-direction: column;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav-links { list-style: none; padding: 0; margin: 0; }
.mobile-nav-links li { border-bottom: 1px solid var(--line); }
.mobile-nav-links a {
  display: block;
  padding: 16px 0 4px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}
.mobile-nav-links a:hover { color: var(--brand); }
.mobile-nav-links small {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 400;
  padding-bottom: 14px;
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

/* ========================================================================
   Responsive padding / layout adjustments for small screens
   ======================================================================== */
@media (max-width: 640px) {
  /* Allow long button text to wrap instead of overflowing */
  .btn { white-space: normal; text-align: center; }

  /* Quote card — reduce padding and shrink decorative quote char */
  .quote-card { padding: 32px 24px; }
  .quote-card::before { font-size: 140px; top: -10px; left: 16px; }

  /* CTA banner */
  .cta-banner { padding: 36px 24px; }

  /* Contact form card */
  .contact-form { padding: 28px 20px; }


  /* Plan cards */
  .pillar { padding: 28px 24px; }
  .plan-card { padding: 28px 20px; }

  /* Pricing teaser — full-width CTA on mobile */
  .pricing-teaser { padding: 24px; }
  .pricing-teaser .btn { width: 100%; }

  /* Crosslink card — full-width CTA on mobile */
  .crosslink-card { padding: 24px; }
  .crosslink-card .btn { width: 100%; }
}

/* ---------- About page — disable sticky sidebar on single-column layout ---------- */
@media (max-width: 879px) {
  .about-story-side { position: static; top: auto; }
}

