/* ================================================================
   DEONDE — Design System v3.0
   Following Ressto's light, professional design language.
   Brand: Orange #F47342 | Font: Plus Jakarta Sans
   Light backgrounds throughout — no dark navy sections.
================================================================ */

/* ── 1. Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand */
  --brand:           #F47342;
  --brand-hover:     #E05E2C;
  --brand-dark:      #C04E20;
  --brand-light:     #FFF4EF;
  --brand-muted:     rgba(244,115,66,.1);
  --brand-glow:      rgba(244,115,66,.18);

  /* Palette */
  --clr-dark:   #0F172A;
  --clr-dark-2: #1E293B;
  --clr-body:   #334155;
  --clr-muted:  #64748B;
  --clr-border: #E2E8F0;
  --clr-light:  #F8FAFC;
  --clr-white:  #FFFFFF;

  /* Semantic aliases (used across components) */
  --white:           var(--clr-white);
  --navy:            var(--clr-dark);
  --navy-mid:        var(--clr-dark-2);
  --gray-50:         #F9FAFB;
  --gray-100:        #F3F4F6;
  --gray-200:        #E5E7EB;
  --gray-300:        #D1D5DB;
  --gray-400:        #9CA3AF;
  --gray-500:        #6B7280;
  --gray-600:        #4B5563;
  --gray-700:        #374151;
  --gray-800:        #1F2937;
  --gray-900:        #111827;
  --text-primary:    var(--clr-dark);
  --text-secondary:  var(--clr-body);
  --text-muted:      var(--clr-muted);
  --border:          var(--clr-border);
  --bg-soft:         var(--clr-light);

  /* Typography */
  --font:            'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-regular:      400;
  --fw-medium:       500;
  --fw-semibold:     600;
  --fw-bold:         700;
  --fw-extrabold:    800;

  /* Border radius */
  --r-xs:    6px;
  --r-sm:    8px;
  --r:       12px;
  --r-md:    12px;
  --r-lg:    20px;
  --r-xl:    28px;
  --r-2xl:   32px;
  --r-full:  100px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:100px;

  /* Shadows */
  --sh-xs:  0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --sh-sm:  0 4px 12px rgba(15,23,42,.08);
  --sh:     0 8px 24px rgba(15,23,42,.09);
  --sh-md:  0 8px 32px rgba(15,23,42,.10);
  --sh-lg:  0 16px 48px rgba(15,23,42,.14);
  --sh-xl:  0 24px 64px rgba(15,23,42,.16);
  --shadow-xs: var(--sh-xs);
  --shadow-sm: var(--sh-sm);
  --shadow-md: var(--sh-md);
  --shadow-lg: var(--sh-lg);

  /* Spacing */
  --s1:  0.25rem;  --s2:  0.5rem;   --s3:  0.75rem;
  --s4:  1rem;     --s5:  1.25rem;  --s6:  1.5rem;
  --s8:  2rem;     --s10: 2.5rem;   --s12: 3rem;
  --s16: 4rem;     --s20: 5rem;     --s24: 6rem;

  /* Transitions */
  --ease: cubic-bezier(0.4,0,0.2,1);
  --transition: 0.22s ease;
  --t150: 150ms var(--ease);
  --t300: 300ms var(--ease);

  /* Layout */
  --container:        1320px;
  --container-narrow:  780px;
  --section-py:        6rem;
  --section-gap:       96px;
  --header-h:          68px;
}

/* ── 2. Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--clr-body);
  background: var(--clr-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
mark { background: none; color: inherit; }

/* ── 3. Layout ────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s6);
}
.wrap--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-py); background: var(--clr-white); }
.section--gray  { background: var(--clr-light); }
.section--white { background: var(--clr-white); }
.section--alt   { background: var(--clr-light); }
.section--brand { background: var(--brand); color: var(--clr-white); }
.section--dark  { background: var(--clr-dark); color: var(--clr-white); }

/* ── 4. Section Header ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto var(--s16);
}
.section-header--left { text-align: left; margin-left: 0; }

/* ── 5. Typography ────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: .375rem 1rem;
  background: var(--brand-muted);
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: var(--s4);
}
.eyebrow--dark {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.eyebrow--navy { color: var(--clr-dark); background: rgba(15,23,42,.07); }

.heading {
  font-size: clamp(1.625rem, 3.5vw, 2.625rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--clr-dark);
  letter-spacing: -.025em;
}
.heading--hero  { font-size: clamp(2.5rem, 6vw, 4rem); }
.heading--white { color: var(--clr-white); }
.heading--center { text-align: center; }
.heading em { font-style: normal; color: var(--brand); }

.subtext {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--clr-muted);
  line-height: 1.75;
  margin-top: var(--s4);
}
.subtext--white  { color: rgba(255,255,255,.75); }
.subtext--center { text-align: center; }

/* ── 6. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: .875rem 1.75rem;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--r-full);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--brand);
  color: var(--clr-white);
  border-color: var(--brand);
}
.btn--primary:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--brand-glow);
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}
.btn--outline:hover {
  background: var(--brand);
  color: var(--clr-white);
}

/* Works on both light and dark (orange tint) */
.btn--outline-white {
  background: rgba(244,115,66,.08);
  color: var(--brand);
  border-color: rgba(244,115,66,.3);
}
.btn--outline-white:hover {
  background: var(--brand);
  color: var(--clr-white);
  border-color: var(--brand);
}

/* Override inside orange CTA banner — white style */
.cta-banner .btn--outline-white {
  background: rgba(255,255,255,.15);
  color: var(--clr-white);
  border-color: rgba(255,255,255,.4);
}
.cta-banner .btn--outline-white:hover {
  background: rgba(255,255,255,.28);
  border-color: rgba(255,255,255,.7);
}

.btn--ghost { background: transparent; color: var(--clr-body); border-color: var(--clr-border); }
.btn--ghost:hover { color: var(--brand); border-color: var(--brand); background: var(--brand-muted); }

.btn--lg { padding: 1.0625rem 2.125rem; font-size: 1rem; }
.btn--sm { padding: .5rem 1.125rem; font-size: .875rem; }

.btn-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s3);
}

/* ── 7. Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 900;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t150), box-shadow var(--t150);
}
.site-header.scrolled {
  border-color: var(--clr-border);
  box-shadow: var(--sh-sm);
}
.site-header .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}

/* Logo */
.header-logo { display: flex; align-items: center; flex-shrink: 0; }

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: var(--s2);
  height: 100%;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: var(--s2) var(--s3);
  font-size: .875rem;
  font-weight: 500;
  color: var(--clr-body);
  border-radius: var(--r-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--t150); flex-shrink: 0; }
.nav-link:hover, .nav-dropdown.open > .nav-link { color: var(--brand); background: var(--brand-muted); }
.nav-dropdown.open > .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown { position: relative; height: 100%; display: flex; align-items: center; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  padding: var(--s5);
  min-width: 560px;
  z-index: 1000;
  animation: dropIn 150ms var(--ease);
}
.dropdown-menu--sm { min-width: 220px; }
.nav-dropdown.open .dropdown-menu { display: block; }

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}
.dropdown-group-label {
  font-size: .6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-muted);
  padding: var(--s1) var(--s3) var(--s3);
  display: block;
}
.dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) var(--s3);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-body);
  transition: all var(--t150);
}
.dropdown-link svg { width: 15px; height: 15px; color: var(--clr-muted); flex-shrink: 0; transition: color var(--t150); }
.dropdown-link:hover { background: var(--brand-muted); color: var(--brand); }
.dropdown-link:hover svg { color: var(--brand); }
.dropdown-menu--sm .dropdown-link { display: block; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}

/* Desktop hover dropdowns */
@media (min-width: 1025px) {
  .nav-dropdown:hover > .dropdown-menu { display: block; }
  .nav-dropdown:hover > .nav-link { color: var(--brand); background: var(--brand-muted); }
  .nav-dropdown:hover > .nav-link svg { transform: rotate(180deg); }
}

/* Hamburger */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  color: var(--clr-body);
  transition: background var(--t150), color var(--t150);
}
.mobile-menu-btn:hover { background: var(--clr-light); color: var(--clr-dark); }

/* ── 8. Mega-menu (header) ────────────────────────────────── */
.nav-dropdown--mega { position: static; }
.nav-dropdown--mega > .dropdown-menu {
  position: fixed;
  top: calc(var(--header-h) + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 96vw);
  border-radius: var(--r-xl);
  border-top: 2px solid var(--brand);
  padding: 0;
  overflow: hidden;
}
.mega-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.75rem 2rem 0;
  display: grid;
  gap: 1.5rem;
}
.mega-inner--2col { grid-template-columns: repeat(2,1fr); }
.mega-inner--3col { grid-template-columns: repeat(3,1fr); }
.mega-col-head {
  font-size: .6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-muted);
  padding-bottom: .625rem;
  margin-bottom: .375rem;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  gap: .375rem;
}
.dl-text { display: flex; flex-direction: column; gap: .0625rem; }
.dl-name { font-size: .9375rem; font-weight: 600; color: var(--clr-dark); line-height: 1.3; transition: color var(--t150); white-space: nowrap; }
.dl-desc { font-size: .75rem; color: var(--clr-muted); line-height: 1.4; font-weight: 500; display: block; }
.dropdown-link:hover .dl-name { color: var(--brand); }

/* ── 9. Mobile Nav ────────────────────────────────────────── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 950; }
.mobile-nav.open { display: block; }
.mobile-nav-overlay {
  position: absolute; inset: 0;
  background: rgba(15,23,42,.45);
  backdrop-filter: blur(4px);
  animation: fadeIn 200ms var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.mobile-nav-drawer {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 90vw);
  background: var(--clr-white);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: slideIn 250ms var(--ease);
}
@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s5) var(--s6);
  border-bottom: 1px solid var(--clr-border);
  flex-shrink: 0;
}
.mobile-nav-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  color: var(--clr-muted);
  transition: background var(--t150), color var(--t150);
}
.mobile-nav-close:hover { background: var(--clr-light); color: var(--clr-dark); }
.mobile-nav-links {
  flex: 1;
  padding: var(--s4) var(--s3);
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}
.mobile-nav-link {
  display: block;
  padding: var(--s3) var(--s4);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--clr-body);
  border-radius: var(--r-md);
  transition: background var(--t150), color var(--t150);
}
.mobile-nav-link:hover { background: var(--brand-muted); color: var(--brand); }
.mobile-nav-divider { height: 1px; background: var(--clr-border); margin: var(--s3) var(--s4); }
.mobile-nav-btns {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding: var(--s5) var(--s6);
  border-top: 1px solid var(--clr-border);
  flex-shrink: 0;
}
.mobile-nav-btns .btn { justify-content: center; }

/* Mobile nav accordion groups */
.mobile-group__toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: var(--s3) var(--s4);
  font-size: .9375rem; font-weight: 600;
  color: var(--clr-body);
  border-radius: var(--r-md);
  background: none; border: none; cursor: pointer; font-family: var(--font);
  transition: color var(--t150);
}
.mobile-group__toggle:hover { color: var(--brand); }
.mobile-group__toggle svg { width: 16px; height: 16px; transition: transform var(--t150); }
.mobile-group.open .mobile-group__toggle svg { transform: rotate(180deg); }
.mobile-group__links {
  display: none;
  padding: 0 var(--s3) var(--s3) var(--s4);
  flex-direction: column; gap: .25rem;
}
.mobile-group.open .mobile-group__links { display: flex; }
.mobile-group__links a {
  display: block;
  padding: .4375rem var(--s3);
  font-size: .875rem; font-weight: 500;
  color: var(--clr-muted);
  border-radius: var(--r-sm);
  transition: color var(--t150), background var(--t150);
}
.mobile-group__links a:hover { color: var(--brand); background: var(--brand-muted); }
.mobile-nav__footer {
  border-top: 1px solid var(--clr-border);
  padding: var(--s5) var(--s6);
  display: flex; flex-direction: column; gap: var(--s3);
}

/* ── 10. Hero — Light Warm Gradient ──────────────────────── */
.hero {
  background: linear-gradient(180deg, #FFF4EF 0%, #FFFFFF 65%);
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(244,115,66,.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(244,115,66,.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding-inline: var(--s6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--brand-muted);
  border: 1px solid rgba(244,115,66,.2);
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: var(--s6);
  letter-spacing: .01em;
}

.hero-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.035em;
  color: var(--clr-dark);
  margin-bottom: var(--s5);
}
.hero-heading em {
  font-style: normal;
  color: var(--brand);
}

.hero-sub {
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  color: var(--clr-muted);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto var(--s8);
}

.hero-cta { justify-content: center; margin-bottom: var(--s5); }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s5);
  margin-bottom: var(--s8);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-muted);
}
.hero-trust-item::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero rating badges */
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-bottom: var(--s10);
}
.hero-rating-badge {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t150), border-color var(--t150);
}
.hero-rating-badge:hover { box-shadow: var(--sh-sm); border-color: rgba(244,115,66,.3); }
.hero-rating-badge img { height: 22px; width: auto; }
.hero-rating-badge-text { text-align: left; }
.hero-rating-badge-name { font-size: .75rem; font-weight: 700; color: var(--clr-muted); }
.hero-rating-badge-stars { font-size: .875rem; color: #f59e0b; letter-spacing: .05em; }

/* Business type selector */
.biz-selector {
  position: relative; z-index: 1;
  background: var(--clr-light);
  border-top: 1px solid var(--clr-border);
  padding: var(--s6);
  margin-top: var(--s4);
}
.biz-selector-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-muted);
  margin-bottom: var(--s5);
}
.biz-selector-grid {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: var(--s2);
  max-width: 1100px;
  margin-inline: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.biz-selector-grid::-webkit-scrollbar { display: none; }
.biz-card {
  display: flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s2) var(--s4);
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 700;
  color: var(--clr-body);
  transition: all var(--t150);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.biz-card:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--brand-glow);
}
.biz-card-icon { width: 18px; height: 18px; flex-shrink: 0; }
.biz-card-icon svg { width: 100%; height: 100%; }

/* ── 11. Stats Bar ────────────────────────────────────────── */
.stats {
  background: var(--clr-white);
  padding-block: var(--s10);
  border-bottom: 1px solid var(--clr-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: var(--s6) var(--s8);
  border-right: 1px solid var(--clr-border);
  border-bottom: none;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--clr-dark);
}
.stat-number span { color: var(--brand); }
.stat-label { font-size: .875rem; font-weight: 600; color: var(--clr-muted); margin-top: var(--s1); }

/* ── 12. Clients Strip ────────────────────────────────────── */
.clients {
  background: var(--clr-white);
  padding-block: var(--s12);
  border-bottom: 1px solid var(--clr-border);
}
.clients-label {
  text-align: center;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--clr-muted);
  margin-bottom: var(--s8);
}
.clients-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s6) var(--s10);
}
.clients-grid img {
  height: 56px; width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .5;
  transition: filter var(--t300), opacity var(--t300);
}
.clients-grid img:hover { filter: grayscale(0%); opacity: 1; }

/* ── 13. Solutions Grid ───────────────────────────────────── */
.solutions { background: var(--clr-light); }
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: var(--s6);
}
.sol-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t300);
  display: flex;
  flex-direction: column;
}
.sol-card:hover { border-color: rgba(244,115,66,.3); box-shadow: var(--sh-lg); transform: translateY(-4px); }
.sol-card-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--clr-light); }
.sol-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t300); }
.sol-card:hover .sol-card-img { transform: scale(1.04); }
.sol-card-body { padding: var(--s6); flex: 1; display: flex; flex-direction: column; }
.sol-card-title { font-size: 1.125rem; font-weight: 800; color: var(--clr-dark); margin-bottom: var(--s3); }
.sol-card-desc { font-size: .9375rem; color: var(--clr-muted); line-height: 1.6; margin-bottom: var(--s5); }
.sol-card-features { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s5); flex: 1; }
.sol-card-feature {
  display: flex; align-items: flex-start; gap: var(--s2);
  font-size: .9375rem; font-weight: 600; color: var(--clr-body);
}
.sol-card-feature::before {
  content: ''; width: 6px; height: 6px;
  background: var(--brand); border-radius: 50%;
  flex-shrink: 0; margin-top: .4rem;
}
.sol-card-link {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: .875rem; font-weight: 700; color: var(--brand);
  transition: gap var(--t150);
}
.sol-card-link::after { content: '→'; transition: transform var(--t150); }
.sol-card:hover .sol-card-link::after { transform: translateX(3px); }

/* ── 14. Feature Tabs ─────────────────────────────────────── */
.feature-tabs { background: var(--clr-white); }
.tabs-nav {
  display: flex; gap: var(--s2); flex-wrap: wrap; justify-content: center;
  background: var(--clr-light); border-radius: var(--r-xl);
  padding: var(--s2); margin-bottom: var(--s12);
  border: 1px solid var(--clr-border);
}
.tab-btn {
  flex: 1; min-width: max-content;
  padding: var(--s3) var(--s5);
  font-size: .875rem; font-weight: 700; color: var(--clr-muted);
  border-radius: var(--r-lg);
  transition: all var(--t150); background: transparent; white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover { color: var(--clr-dark); background: var(--clr-white); box-shadow: var(--sh-xs); }
.tab-btn.active { color: var(--brand); }
.tab-panel { display: none; align-items: center; gap: var(--s12); }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; }
.tab-text { display: flex; flex-direction: column; gap: var(--s5); }
.tab-title { font-size: clamp(1.375rem,3vw,1.875rem); font-weight: 800; color: var(--clr-dark); line-height: 1.2; letter-spacing: -.02em; }
.tab-desc { font-size: 1rem; color: var(--clr-muted); line-height: 1.7; }
.chips { display: flex; flex-wrap: wrap; gap: var(--s2); }
.chip {
  display: inline-flex; padding: var(--s2) var(--s3);
  background: var(--brand-muted); color: var(--brand-dark);
  font-size: .8125rem; font-weight: 700; border-radius: var(--r-full); letter-spacing: .01em;
}
.tab-img-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-xl); border: 1px solid var(--clr-border); }
.tab-img-wrap img { width: 100%; display: block; }

/* ── 15. Feature Cards ────────────────────────────────────── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s5);
}
.feat-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  transition: all var(--t300);
}
.feat-card:hover {
  border-color: rgba(244,115,66,.3);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.feat-card-icon {
  width: 52px; height: 52px;
  background: var(--brand-muted);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s5); color: var(--brand);
}
.feat-card-icon svg { width: 22px; height: 22px; }
.feat-card-title { font-size: 1.0625rem; font-weight: 800; color: var(--clr-dark); margin-bottom: var(--s2); }
.feat-card-desc { font-size: .9375rem; color: var(--clr-muted); line-height: 1.65; }

/* ── 16. Why Deonde ───────────────────────────────────────── */
.why { background: var(--clr-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s5);
}
.why-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  padding: var(--s6);
  transition: all var(--t300);
}
.why-card:hover {
  border-color: rgba(244,115,66,.3);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 52px; height: 52px;
  background: var(--brand-muted); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s5); color: var(--brand);
}
.why-card-icon svg { width: 22px; height: 22px; }
.why-card-title { font-size: 1.0625rem; font-weight: 800; color: var(--clr-dark); margin-bottom: var(--s2); }
.why-card-desc { font-size: .9375rem; color: var(--clr-muted); line-height: 1.65; }

/* ── 17. Steps ────────────────────────────────────────────── */
.steps { background: var(--clr-white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s8);
  position: relative;
  padding-top: var(--s4);
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-border) 0px, var(--clr-border) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.step-item { text-align: center; position: relative; z-index: 1; }
.step-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: var(--clr-white);
  border: 2px solid var(--clr-border);
  border-radius: var(--r-full);
  margin: 0 auto var(--s5);
  position: relative; color: var(--brand);
  box-shadow: var(--sh-sm);
  transition: all var(--t300);
}
.step-item:hover .step-icon-wrap {
  border-color: var(--brand);
  background: var(--brand-muted);
  box-shadow: 0 0 0 8px rgba(244,115,66,.08);
}
.step-num {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px;
  background: var(--brand); color: var(--clr-white);
  font-size: .6875rem; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--clr-white);
}
.step-title { font-size: 1.0625rem; font-weight: 800; color: var(--clr-dark); margin-bottom: var(--s3); }
.step-desc { font-size: .9375rem; color: var(--clr-muted); line-height: 1.65; }
.steps-cta { justify-content: center; margin-top: var(--s10); }

/* ── 18. FAQ ──────────────────────────────────────────────── */
.faq { background: var(--clr-white); }
.faq-list { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--clr-border); }
.faq-item:first-child { border-top: 1px solid var(--clr-border); }
.faq-question, .faq-btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  width: 100%; padding: var(--s5) 0;
  font-size: 1rem; font-weight: 700; color: var(--clr-dark);
  text-align: left; background: none; border: none; cursor: pointer;
  transition: color var(--t150); font-family: var(--font);
}
.faq-question:hover, .faq-btn:hover { color: var(--brand); }
.faq-question-icon {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--clr-border); border-radius: 50%;
  flex-shrink: 0; font-size: 1.125rem; font-weight: 400;
  color: var(--clr-muted); transition: all var(--t150); line-height: 1;
}
.faq-item.open .faq-question, .faq-item.open .faq-btn { color: var(--brand); }
.faq-item.open .faq-question-icon { background: var(--brand); color: var(--clr-white); transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height var(--t300); }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: var(--s5); font-size: .9375rem; color: var(--clr-muted); line-height: 1.7; }

/* ── 19. CTA Banner — Orange Gradient ────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #F47342 0%, #FF8C5E 60%, #FFAB82 100%);
  position: relative;
  overflow: hidden;
  padding-block: var(--s20);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,255,255,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-heading {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900; color: var(--clr-white);
  line-height: 1.15; letter-spacing: -.03em; margin-bottom: var(--s4);
}
.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  margin-bottom: var(--s8); line-height: 1.65;
}
.cta-btns { justify-content: center; margin-bottom: var(--s6); }
.cta-banner .btn--primary {
  background: var(--clr-white);
  color: var(--brand);
  border-color: var(--clr-white);
}
.cta-banner .btn--primary:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.cta-trust {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--s4);
}
.cta-trust-item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: .8125rem; font-weight: 600;
  color: rgba(255,255,255,.85);
}
.cta-trust-item::before { content: '✓'; color: var(--clr-white); font-weight: 900; margin-right: .125rem; }

/* ── 20. Footer — Light ──────────────────────────────────── */
.site-footer {
  background: var(--clr-light);
  color: var(--clr-body);
  border-top: 1px solid var(--clr-border);
  padding-top: var(--s16);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--s8);
  padding-bottom: var(--s12);
  border-bottom: 1px solid var(--clr-border);
}
.footer-brand-desc {
  font-size: .9375rem; line-height: 1.65; color: var(--clr-muted);
  margin: var(--s4) 0;
}
.footer-badges { display: flex; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s5); }
.footer-badge {
  display: flex; align-items: center; gap: var(--s2);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--s2) var(--s3);
  transition: border-color var(--t150), box-shadow var(--t150);
  text-decoration: none;
}
.footer-badge:hover { border-color: rgba(244,115,66,.3); box-shadow: var(--sh-xs); }
.footer-badge-platform {
  font-size: .6875rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; padding: .15rem .45rem;
  border-radius: var(--r-sm); color: var(--clr-white);
}
.footer-badge-platform--g2       { background: #FF492C; }
.footer-badge-platform--capterra { background: #044D80; }
.footer-badge-score { font-size: .8125rem; font-weight: 700; color: var(--clr-body); white-space: nowrap; }
.footer-social { display: flex; gap: var(--s3); margin-top: var(--s2); }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  color: var(--clr-muted);
  transition: all var(--t300);
}
.footer-social-link:hover { background: var(--brand); color: var(--clr-white); border-color: var(--brand); }
.footer-social-link svg { width: 15px; height: 15px; }
.footer-col-title {
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--clr-dark); margin-bottom: var(--s4);
}
.footer-link {
  display: block; font-size: .875rem; font-weight: 500;
  color: var(--clr-muted); padding: var(--s1) 0;
  transition: color var(--t150);
}
.footer-link:hover { color: var(--brand); }
.footer-seo {
  padding-block: var(--s5);
  border-bottom: 1px solid var(--clr-border);
  display: flex; align-items: flex-start; gap: var(--s4); flex-wrap: wrap;
}
.footer-seo-label {
  font-size: .6875rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; color: var(--clr-muted); white-space: nowrap; padding-top: .1rem;
}
.footer-seo-links { display: flex; flex-wrap: wrap; gap: .375rem .875rem; }
.footer-seo-link { font-size: .8125rem; color: var(--clr-muted); transition: color var(--t150); }
.footer-seo-link:hover { color: var(--brand); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--s4);
  padding-block: var(--s5);
  font-size: .8125rem; color: var(--clr-muted);
}
.footer-bottom-links { display: flex; gap: var(--s5); }
.footer-bottom-links a { color: var(--clr-muted); transition: color var(--t150); }
.footer-bottom-links a:hover { color: var(--brand); }

/* ── 21. Utilities ────────────────────────────────────────── */
.text-brand  { color: var(--brand); }
.text-muted  { color: var(--clr-muted); }
.text-center { text-align: center; }
.mt-4  { margin-top: var(--s4); }
.mt-8  { margin-top: var(--s8); }
.mt-12 { margin-top: var(--s12); }

/* ── 22. Testimonials / Stories — Light ─────────────────── */
.testimonials {
  background: var(--clr-light);
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(244,115,66,.06) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials .section-header { position: relative; z-index: 1; }
.testimonials-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s5);
}
.testi-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: var(--s4);
  transition: all var(--t300);
  box-shadow: var(--sh-xs);
}
.testi-card:hover {
  border-color: rgba(244,115,66,.3);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 16px; height: 16px; fill: #F59E0B; }
.testi-quote { font-size: 1.0625rem; line-height: 1.75; color: var(--clr-body); flex: 1; font-style: italic; }
.testi-divider { height: 1px; background: var(--clr-border); }
.testi-author { display: flex; align-items: center; gap: var(--s3); }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #ff8c5e 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: .8125rem; font-weight: 800; color: var(--clr-white); flex-shrink: 0;
}
.testi-name { font-size: .9375rem; font-weight: 800; color: var(--clr-dark); line-height: 1.3; }
.testi-company { font-size: .8125rem; color: var(--clr-muted); font-weight: 500; }

/* ── 23. Page Hero — Inner pages, Light ─────────────────── */
.page-hero {
  background: linear-gradient(180deg, #FFF4EF 0%, #FFFFFF 65%);
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 25% 50%, rgba(244,115,66,.07) 0%, transparent 50%),
    radial-gradient(circle at 75% 20%, rgba(244,115,66,.04) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 1040px;
  margin: 0 auto; padding-inline: var(--s6);
}
.page-hero-heading {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -.035em; color: var(--clr-dark);
  margin-bottom: var(--s5);
}
.page-hero-heading em {
  font-style: normal; color: var(--brand);
}
.page-hero-sub {
  font-size: clamp(.9375rem, 2.2vw, 1.125rem);
  color: var(--clr-muted); line-height: 1.7;
  max-width: 680px; margin: 0 auto var(--s8);
}
.page-hero-cta {
  display: flex; gap: var(--s3);
  justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--s6);
}

/* ── 24. Breadcrumb (bc-nav) ──────────────────────────────── */
.bc-nav {
  display: flex;
  justify-content: center;
  margin-bottom: var(--s5);
}
.bc-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem .375rem;
  list-style: none;
  padding: 0; margin: 0;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--clr-muted);
}
.bc-list li { display: flex; align-items: center; gap: .375rem; }
.bc-list li:not(:last-child)::after { content: '/'; color: var(--clr-border); font-weight: 400; }
.bc-list a { color: var(--brand); text-decoration: none; transition: color var(--t150); }
.bc-list a:hover { color: var(--brand-hover); }
.bc-list li[aria-current="page"] { color: var(--clr-dark); font-weight: 600; }

/* Standalone breadcrumb bar (outside hero) */
.breadcrumb-bar {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  padding: .75rem 0;
}
.breadcrumb-bar .bc-nav { justify-content: flex-start; margin-bottom: 0; }

/* Policy-page breadcrumb (light context) */
.policy-hero-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: .375rem;
  font-size: .8125rem; color: var(--clr-muted); margin-bottom: var(--s5);
}
.policy-hero-breadcrumb a { color: var(--brand); text-decoration: none; transition: color var(--t150); }
.policy-hero-breadcrumb a:hover { color: var(--brand-hover); }
.policy-hero-breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── 25. Policy Hero ──────────────────────────────────────── */
.policy-hero {
  background: linear-gradient(180deg, #FFF4EF 0%, #FFFFFF 70%);
  padding: calc(var(--header-h) + 4rem) var(--s4) 3rem;
  text-align: center;
}
.policy-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800; color: var(--clr-dark);
  line-height: 1.2; margin-bottom: .625rem;
}
.policy-hero-date { font-size: .875rem; color: var(--clr-muted); }
.policy-doc {
  max-width: 780px; margin: 0 auto;
  padding: var(--s16) var(--s6) var(--s24);
}
.policy-doc h2 {
  font-size: 1.125rem; font-weight: 700; color: var(--clr-dark);
  margin: var(--s10) 0 var(--s3);
  padding-top: var(--s4); border-top: 1px solid var(--clr-border);
}
.policy-doc h2:first-of-type { border-top: none; padding-top: 0; }
.policy-doc h3 { font-size: 1rem; font-weight: 700; color: var(--clr-dark-2); margin: var(--s6) 0 var(--s2); }
.policy-doc h4 { font-size: .9375rem; font-weight: 700; color: var(--clr-dark-2); margin: var(--s4) 0 var(--s2); }
.policy-doc p  { font-size: 1rem; color: var(--clr-muted); line-height: 1.85; margin-bottom: var(--s4); }
.policy-doc ul, .policy-doc ol { padding-left: 1.625rem; margin: var(--s3) 0 var(--s6); }
.policy-doc li { font-size: 1rem; color: var(--clr-muted); line-height: 1.8; margin-bottom: .5rem; }
.policy-doc strong { color: var(--clr-dark); font-weight: 700; }
.policy-doc a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
.policy-doc a:hover { color: var(--brand-hover); }

/* ── 26. Pricing Cards ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-top: 3.5rem; align-items: start;
}

/* .pcard — Ressto-style pricing card class (used on pricing page) */
.pcard {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow var(--t300), border-color var(--t300), transform var(--t300);
  box-shadow: var(--sh-xs);
}
.pcard:hover { box-shadow: var(--sh-lg); border-color: rgba(244,115,66,.25); transform: translateY(-4px); }
.pcard--featured {
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: 0 8px 32px rgba(244,115,66,.2);
  transform: translateY(-8px);
}
.pcard--featured:hover { box-shadow: 0 20px 52px rgba(244,115,66,.3); transform: translateY(-12px); }
.pcard__cta { display: block; text-align: center; margin-bottom: 1.5rem; width: 100%; justify-content: center; }

/* .plan-card — alternative pricing card class */
.plan-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: box-shadow var(--t300), border-color var(--t300), transform var(--t300);
}
.plan-card:hover { box-shadow: var(--sh-lg); border-color: rgba(244,115,66,.25); transform: translateY(-4px); }
.plan-card--featured {
  border-color: var(--brand); border-width: 2px;
  box-shadow: 0 8px 32px rgba(244,115,66,.18);
  transform: translateY(-10px);
}
.plan-card--featured:hover { box-shadow: 0 20px 52px rgba(244,115,66,.28); transform: translateY(-14px); }

.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--clr-white);
  font-size: .75rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; padding: .3rem 1rem;
  border-radius: var(--r-full); white-space: nowrap;
  box-shadow: 0 4px 14px rgba(244,115,66,.42);
}
.plan-header { margin-bottom: 1.25rem; }
.plan-name { font-size: 1.25rem; font-weight: 900; color: var(--clr-dark); margin-bottom: .5rem; letter-spacing: -.01em; }
.plan-card--featured .plan-name, .pcard--featured .plan-name { color: var(--brand); }
.plan-desc { font-size: .875rem; color: var(--clr-muted); line-height: 1.55; }
.plan-price { display: flex; align-items: baseline; gap: .35rem; margin-bottom: .5rem; }
.plan-amount { font-size: 2.625rem; font-weight: 900; color: var(--clr-dark); letter-spacing: -.03em; line-height: 1; }
.plan-amount--custom { font-size: 2rem; }
.plan-period { font-size: .875rem; color: var(--clr-muted); font-weight: 500; }
.plan-orders {
  font-size: .8125rem; color: var(--clr-muted);
  margin-bottom: 1.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--clr-border); line-height: 1.45;
}
.plan-cta { display: block; text-align: center; margin-bottom: 1.5rem; width: 100%; justify-content: center; }
.plan-everything { font-size: .8125rem; color: var(--clr-muted); margin-bottom: .75rem; font-weight: 500; }
.plan-everything strong { color: var(--clr-body); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.plan-features li {
  display: flex; align-items: flex-start; gap: .625rem;
  font-size: .875rem; color: var(--clr-body); line-height: 1.45;
}
.plan-features li::before {
  content: '';
  width: 16px; height: 16px; min-width: 16px;
  border-radius: 50%;
  background-color: #dcfce7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
  margin-top: .14rem; flex-shrink: 0;
}
.pricing-note { text-align: center; margin-top: 2rem; font-size: .875rem; color: var(--clr-muted); }

/* ── 27. Enterprise Cards ─────────────────────────────────── */
.ent-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3.5rem; }
.ent-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow var(--t300), border-color var(--t300), transform var(--t300);
}
.ent-card:hover { box-shadow: var(--sh-md); border-color: rgba(244,115,66,.3); transform: translateY(-3px); }
.ent-card-icon {
  width: 52px; height: 52px;
  background: var(--brand-muted); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--brand);
}
.ent-card-icon svg { width: 24px; height: 24px; }
.ent-card-title { font-size: 1rem; font-weight: 800; color: var(--clr-dark); margin-bottom: .5rem; }
.ent-card-desc  { font-size: .875rem; color: var(--clr-muted); line-height: 1.6; }

/* ── 28. Feature Comparison Table ────────────────────────── */
.compare-wrap, .ctable-wrap, .cmp-table-wrap {
  overflow-x: auto;
  margin-top: 3.5rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
}
.compare-table, .cmp-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--font); font-size: .9375rem;
}
.compare-table thead tr, .cmp-table thead tr { border-bottom: 2px solid var(--clr-border); }
.compare-table th, .compare-table td,
.cmp-table th, .cmp-table td { padding: .875rem 1.25rem; text-align: center; }
.compare-table th:first-child, .compare-table td:first-child,
.cmp-table th:first-child, .cmp-table td:first-child { text-align: left; }
.compare-table th, .cmp-table th {
  font-weight: 700; font-size: .875rem; color: var(--clr-dark);
  background: var(--clr-light); vertical-align: bottom; white-space: nowrap;
}
.compare-table th:first-child, .cmp-table th:first-child {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; color: var(--clr-muted);
}
.compare-table th.col-featured, .cmp-table th.col-featured { background: var(--brand-muted); color: var(--brand); }
.compare-table td, .cmp-table td { color: var(--clr-body); }
.compare-table td.col-featured, .cmp-table td.col-featured { background: rgba(255,244,239,.45); }
.compare-table tbody tr, .cmp-table tbody tr { border-bottom: 1px solid var(--clr-border); }
.compare-table tbody tr:last-child, .cmp-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover td, .cmp-table tbody tr:hover td { background: var(--clr-light); }
.compare-table .val-num, .cmp-table .val-num { font-weight: 700; color: var(--clr-dark); }
.compare-table .val-na, .cmp-table .val-na  { color: var(--clr-border); font-size: 1.25rem; font-weight: 300; }
.compare-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; background: #dcfce7; border-radius: 50%;
}
.compare-check svg { width: 12px; height: 12px; color: #16a34a; }

/* ── 29. Trial / Demo Page ───────────────────────────────── */
.trial-split {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 4rem; align-items: start;
  max-width: 1120px; margin-inline: auto;
}
.trial-stats {
  display: flex; gap: 2.5rem; margin-bottom: 2.25rem;
  padding-bottom: 2rem; border-bottom: 1px solid var(--clr-border); flex-wrap: wrap;
}
.trial-stat-num { font-size: 1.875rem; font-weight: 900; color: var(--clr-dark); letter-spacing: -.025em; line-height: 1; }
.trial-stat-num em { font-style: normal; color: var(--brand); }
.trial-stat-label { font-size: .8125rem; color: var(--clr-muted); margin-top: .3rem; font-weight: 500; }
.trial-logos {
  display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem; align-items: center;
  margin-bottom: 2.25rem; padding-bottom: 2rem; border-bottom: 1px solid var(--clr-border);
}
.trial-logos img { height: 26px; width: auto; opacity: .5; filter: grayscale(100%); transition: opacity var(--t300), filter var(--t300); }
.trial-logos img:hover { opacity: .9; filter: none; }
.trial-benefits { display: flex; flex-direction: column; gap: 1.25rem; }
.trial-benefit { display: flex; gap: 1rem; align-items: flex-start; }
.trial-benefit-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--brand-muted); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; color: var(--brand);
}
.trial-benefit-icon svg { width: 20px; height: 20px; }
.trial-benefit-title { font-size: .9375rem; font-weight: 800; color: var(--clr-dark); margin-bottom: .25rem; }
.trial-benefit-desc  { font-size: .875rem; color: var(--clr-muted); line-height: 1.55; }
.trial-form-card {
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-2xl);
  padding: 2.5rem; box-shadow: var(--sh-xl);
  position: sticky; top: calc(var(--header-h) + 1.75rem);
}
.trial-form-card-title { font-size: 1.5rem; font-weight: 900; color: var(--clr-dark); margin-bottom: .5rem; letter-spacing: -.02em; line-height: 1.25; }
.trial-form-card-sub   { font-size: .9375rem; color: var(--clr-muted); line-height: 1.6; margin-bottom: 1.75rem; }
.trial-form-divider    { height: 1px; background: var(--clr-border); margin: 1.5rem 0; }
.trial-form-privacy    { display: flex; align-items: center; gap: .5rem; font-size: .8125rem; color: var(--clr-muted); margin-top: 1.25rem; }
.trial-form-privacy svg { width: 13px; height: 13px; flex-shrink: 0; }
.trial-info-heading { font-size: 1.625rem; font-weight: 900; color: var(--clr-dark); letter-spacing: -.02em; line-height: 1.2; margin-bottom: .75rem; }
.trial-info-sub     { font-size: .9375rem; color: var(--clr-muted); line-height: 1.65; margin-bottom: 2rem; }
/* HubSpot form overrides */
.trial-form-card .hs-form fieldset { max-width: 100% !important; }
.trial-form-card .hs-form .hs-form-field { margin-bottom: 1rem; }
.trial-form-card .hs-form label { font-size: .875rem !important; font-weight: 600 !important; color: var(--clr-body) !important; font-family: var(--font) !important; margin-bottom: .375rem !important; display: block !important; }
.trial-form-card .hs-form input[type="text"],
.trial-form-card .hs-form input[type="email"],
.trial-form-card .hs-form input[type="tel"],
.trial-form-card .hs-form select,
.trial-form-card .hs-form textarea {
  width: 100% !important; padding: .625rem .875rem !important;
  border: 1.5px solid var(--clr-border) !important;
  border-radius: var(--r-md) !important; font-size: .9375rem !important;
  font-family: var(--font) !important; color: var(--clr-dark) !important;
  background: var(--clr-white) !important;
  transition: border-color var(--t150), box-shadow var(--t150) !important;
  outline: none !important; box-sizing: border-box !important;
}
.trial-form-card .hs-form input:focus,
.trial-form-card .hs-form select:focus,
.trial-form-card .hs-form textarea:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 3px rgba(244,115,66,.12) !important;
}
.trial-form-card .hs-form input[type="submit"],
.trial-form-card .hs-form .hs-button {
  background: var(--brand) !important; color: var(--clr-white) !important;
  border: none !important; border-radius: var(--r-full) !important;
  font-size: 1rem !important; font-weight: 700 !important;
  font-family: var(--font) !important; padding: .875rem 2rem !important;
  width: 100% !important; cursor: pointer !important;
  transition: background var(--t150), transform var(--t150) !important; margin-top: .5rem !important;
}
.trial-form-card .hs-form input[type="submit"]:hover,
.trial-form-card .hs-form .hs-button:hover { background: var(--brand-hover) !important; transform: translateY(-1px) !important; }
.trial-form-card .hs-error-msgs { list-style: none !important; margin: .25rem 0 0 !important; padding: 0 !important; }
.trial-form-card .hs-error-msgs li label { font-size: .8125rem !important; color: #dc2626 !important; font-weight: 500 !important; }

/* ── 30. Solution / Restaurant Page Components ────────────── */
.channel-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-top: 3.5rem; }
.channel-card {
  background: var(--clr-white); border: 1.5px solid var(--clr-border);
  border-radius: var(--r-xl); padding: 1.5rem 1.25rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: .75rem;
  transition: box-shadow var(--t300), border-color var(--t300), transform var(--t300);
}
.channel-card:hover { box-shadow: var(--sh-md); border-color: rgba(244,115,66,.35); transform: translateY(-3px); }
.channel-card-icon { width: 52px; height: 52px; border-radius: var(--r-lg); background: var(--brand-muted); display: flex; align-items: center; justify-content: center; color: var(--brand); }
.channel-card-icon svg { width: 24px; height: 24px; }
.channel-card-name { font-size: .9375rem; font-weight: 700; color: var(--clr-dark); }
.channel-card-desc { font-size: .8125rem; color: var(--clr-muted); line-height: 1.5; }

/* Commission savings section — now warm light style */
.savings-section {
  background: linear-gradient(135deg, #FFF4EF 0%, #FFF9F6 100%);
  border: 1px solid rgba(244,115,66,.12);
  padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.savings-section::before {
  content: ''; position: absolute;
  top: -20%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(244,115,66,.08) 0%, transparent 65%);
  pointer-events: none;
}
.savings-section .wrap { position: relative; z-index: 1; }
.savings-section .section-header .eyebrow { color: var(--brand); }
.savings-section .section-header .heading { color: var(--clr-dark); }
.savings-section .section-header .subtext  { color: var(--clr-muted); }
.savings-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3.5rem; }
.savings-col { border-radius: var(--r-xl); padding: 2rem 2rem 1.75rem; }
.savings-col--bad  { background: var(--clr-white); border: 1.5px solid var(--clr-border); }
.savings-col--good { background: var(--brand-muted); border: 1.5px solid rgba(244,115,66,.25); }
.savings-col-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .6875rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .75rem; border-radius: var(--r-full); margin-bottom: 1.25rem;
}
.savings-col--bad  .savings-col-badge { background: rgba(248,113,113,.1); color: #dc2626; }
.savings-col--good .savings-col-badge { background: rgba(244,115,66,.15); color: var(--brand-dark); }
.savings-col-title { font-size: 1.25rem; font-weight: 900; color: var(--clr-dark); margin-bottom: 1.5rem; line-height: 1.3; }
.savings-rows { display: flex; flex-direction: column; }
.savings-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 0; border-bottom: 1px solid var(--clr-border);
  font-size: .9375rem; gap: 1rem;
}
.savings-row:last-child { border-bottom: none; }
.savings-row-label { color: var(--clr-muted); flex: 1; }
.savings-row-val { font-weight: 700; white-space: nowrap; font-size: .9375rem; }
.savings-row-val--bad     { color: #dc2626; }
.savings-row-val--good    { color: #16a34a; }
.savings-row-val--neutral { color: var(--clr-dark); }
.savings-total { margin-top: 1.25rem; padding: 1rem 1.25rem; border-radius: var(--r-md); text-align: center; font-size: .9375rem; font-weight: 700; line-height: 1.4; }
.savings-col--bad  .savings-total { background: rgba(248,113,113,.08); color: #b91c1c; }
.savings-col--good .savings-total { background: rgba(244,115,66,.12); color: var(--brand-dark); }

/* Feature highlight two-col */
.feat-highlight { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;}
.feat-highlight--reverse { direction: rtl; }
.feat-highlight--reverse > * { direction: ltr; }
.feat-highlight-eyebrow { font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--brand); margin-bottom: .75rem; }
.feat-highlight-heading { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 900; color: var(--clr-dark); letter-spacing: -.02em; line-height: 1.2; margin-bottom: 1rem; }
.feat-highlight-desc { font-size: .9375rem; color: var(--clr-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.feat-highlight-list { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.75rem; }
.feat-highlight-list li { display: flex; align-items: flex-start; gap: .625rem; font-size: .9375rem; color: var(--clr-body); }
.feat-highlight-list li::before {
  content: ''; width: 16px; height: 16px; min-width: 16px; border-radius: 50%;
  background-color: #dcfce7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
  margin-top: .14rem; flex-shrink: 0;
}
.feat-highlight-img-wrap {
  border-radius: var(--r-2xl); overflow: hidden; box-shadow: var(--sh-xl);
  background: var(--clr-light); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
/* .feat-highlight-img-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; } */
.feat-highlight-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Restaurant types */
.rest-types { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 3rem; }
.rest-type-pill {
  display: flex; align-items: center; gap: .625rem;
  padding: .75rem 1.5rem;
  background: var(--clr-white); border: 1.5px solid var(--clr-border);
  border-radius: var(--r-full); font-size: .9375rem; font-weight: 700; color: var(--clr-body);
  transition: all var(--t300);
}
.rest-type-pill:hover { border-color: var(--brand); color: var(--brand); box-shadow: 0 4px 14px rgba(244,115,66,.15); transform: translateY(-2px); }
.rest-type-pill svg { width: 18px; height: 18px; }

/* Versus / Comparison page */
.versus-stats { display: flex; gap: var(--s6); flex-wrap: wrap; }
.versus-stat { min-width: 120px; text-align: center; }

/* ── 31. Hub Nav cards ────────────────────────────────────── */
.hub-nav-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.hub-nav-card {
  display: flex; flex-direction: column; padding: 2rem;
  border: 1.5px solid var(--clr-border); border-radius: var(--r-xl);
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .25s, border-color .2s;
  background: var(--clr-white);
}
.hub-nav-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.hub-nav-icon { width: 48px; height: 48px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; flex-shrink: 0; }
.hub-nav-title { font-size: 1.125rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .5rem; line-height: 1.3; }
.hub-nav-desc  { font-size: .875rem; color: var(--clr-muted); line-height: 1.65; margin-bottom: 1.125rem; flex: 1; }
.hub-nav-tags  { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 1.25rem; }
.hub-nav-tag   { font-size: .75rem; font-weight: 600; border-radius: 9999px; padding: .25rem .7rem; }
.hub-nav-cta   { font-size: .875rem; font-weight: 700; display: inline-flex; align-items: center; gap: .375rem; margin-top: auto; }
.hub-nav-card--food    { background: linear-gradient(135deg,#fff7f3 0%,#ffeade 100%); border-color: #ffd0b0; }
.hub-nav-card--food:hover { box-shadow: 0 12px 36px rgba(244,115,66,.22); }
.hub-nav-card--food .hub-nav-icon { background: rgba(244,115,66,.14); }
.hub-nav-card--food .hub-nav-tag  { background: rgba(244,115,66,.12); border: 1px solid rgba(244,115,66,.28); color: #b84d1a; }
.hub-nav-card--food .hub-nav-cta  { color: var(--brand); }
.hub-nav-card--grocery { background: linear-gradient(135deg,#f0faf4 0%,#d4f2e4 100%); border-color: #99d9b8; }
.hub-nav-card--grocery:hover { box-shadow: 0 12px 36px rgba(22,163,74,.18); }
.hub-nav-card--grocery .hub-nav-icon { background: rgba(22,163,74,.14); }
.hub-nav-card--grocery .hub-nav-tag  { background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.28); color: #166534; }
.hub-nav-card--grocery .hub-nav-cta  { color: #16a34a; }
.hub-nav-card--milk { background: linear-gradient(135deg,#eff6ff 0%,#dbeafe 100%); border-color: #93c5fd; }
.hub-nav-card--milk:hover { box-shadow: 0 12px 36px rgba(37,99,235,.15); }
.hub-nav-card--milk .hub-nav-icon { background: rgba(37,99,235,.12); }
.hub-nav-card--milk .hub-nav-tag  { background: rgba(37,99,235,.09); border: 1px solid rgba(37,99,235,.25); color: #1d4ed8; }
.hub-nav-card--milk .hub-nav-cta  { color: #2563eb; }

/* ── 32. Misc page components ─────────────────────────────── */
.bc { background: var(--clr-light); border-bottom: 1px solid var(--clr-border); }

/* Blog section */
.blogsec { background: var(--clr-light); }

/* Responsive — all sections */
@media (max-width: 1024px) {
  :root { --section-py: 5rem; }
  .solutions-grid    { grid-template-columns: 1fr 1fr; gap: var(--s5); }
  .included-grid     { grid-template-columns: repeat(2,1fr); }
  .why-grid          { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top        { grid-template-columns: 1fr 1fr; gap: var(--s8) var(--s6); }
  .hub-nav-grid      { grid-template-columns: 1fr 1fr; }
  .channel-grid      { grid-template-columns: repeat(2,1fr); }
  .savings-cols      { grid-template-columns: 1fr; }
  .feat-highlight    { grid-template-columns: 1fr; gap: 2.5rem; }
  .feat-highlight--reverse { direction: ltr; }
}

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

@media (max-width: 1060px) {
  .trial-split { grid-template-columns: 1fr; max-width: 640px; }
  .trial-form-card { position: static; }
}

@media (max-width: 768px) {
  :root { --section-py: 3rem; --header-h: 60px; }

  /* Header */
  .header-nav { display: none; }
  .header-actions .btn:not(.mobile-menu-btn) { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-actions { gap: var(--s2); }

  /* Hero */
  .hero { padding-top: calc(var(--header-h) + 3rem); padding-bottom: 3rem; }
  .hero-content { padding-inline: var(--s5); }
  .hero-heading { font-size: clamp(1.875rem, 7.5vw, 2.75rem); letter-spacing: -.02em; line-height: 1.15; }
  .hero-sub { font-size: .9375rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: var(--s2); }

  /* Page Hero */
  .page-hero { padding: calc(var(--header-h) + 3rem) 0 3rem; }
  .page-hero-content { padding-inline: var(--s5); }
  .page-hero-heading { font-size: clamp(1.75rem, 7vw, 2.5rem); letter-spacing: -.02em; line-height: 1.18; }
  .page-hero-sub { font-size: .9375rem; }
  .page-hero-cta { flex-direction: column; align-items: center; gap: var(--s3); }
  .page-hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--clr-border); }

  /* Solutions */
  .solutions-grid { grid-template-columns: 1fr; }

  /* Tabs */
  .tab-panel.active { grid-template-columns: 1fr; gap: var(--s8); }

  /* Grids */
  .included-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: var(--s8); }
  .steps-grid::before { display: none; }
  .hub-nav-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-seo { flex-direction: column; gap: var(--s3); }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Section headers */
  .heading { font-size: clamp(1.5rem, 5.5vw, 2rem); }
  .subtext { font-size: .9375rem; }

  /* Breadcrumb */
  .bc-list { font-size: .75rem; }

  /* Misc */
  .feat-card { padding: var(--s5); }
  .cmp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .btn-group { flex-wrap: wrap; }
  .footer-social { justify-content: flex-start; gap: var(--s4); }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: var(--s3); }
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .ent-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--header-h) + 2.5rem) 0 2.5rem; }
  .policy-doc { padding: var(--s10) var(--s4) var(--s16); }
  .trial-stats { gap: 1.5rem; }
  .trial-form-card { padding: 1.75rem; }
  .channel-grid { grid-template-columns: repeat(2,1fr); }
  .rest-types .rest-type-pill { font-size: .875rem; padding: .625rem 1.125rem; }
  .savings-cols { flex-direction: column; }
}

@media (max-width: 480px) {
  .wrap { padding-inline: var(--s4); }
  .hero-badges { gap: var(--s2); }
  .hero-rating-badge { padding: var(--s2) var(--s3); }
  .biz-selector-grid { gap: var(--s2); }
  .biz-card { padding: var(--s2) var(--s4); font-size: .8125rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 2rem; }
  .tabs-nav { flex-direction: column; }
  .tab-btn { text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .btn--lg { width: 100%; max-width: 320px; justify-content: center; }
  .versus-stats { flex-wrap: wrap; gap: var(--s4); }
  .versus-stat { min-width: 120px; }
}
