/* ============================================================
   SANDWICH DELIVERY COMPARISON GUIDE — MAIN STYLESHEET
   Colors: White + Dark Gray + Blue Accents
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:        #ffffff;
  --off-white:    #f8f9fb;
  --light-gray:   #eef0f4;
  --mid-gray:     #9aa0ad;
  --dark-gray:    #2d3142;
  --charcoal:     #1a1d2e;
  --blue:         #2563eb;
  --blue-dark:    #1e4fc7;
  --blue-light:   #dbeafe;
  --blue-mid:     #93c5fd;
  --accent:       #3b82f6;
  --text-primary: #2d3142;
  --text-secondary:#5a6070;
  --text-muted:   #9aa0ad;
  --border:       #e2e6ed;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --font-main:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-width:    1180px;
  --transition:   .22s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul, ol { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  color: var(--dark-gray);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: .95rem; }

p { color: var(--text-secondary); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── LAYOUT HELPERS ───────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 100px 0; }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--charcoal); }
.section--blue { background: var(--blue); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── NAVIGATION ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--dark-gray);
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.nav-logo span.accent { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: .92rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: var(--radius-sm) !important;
  padding: .5rem 1.1rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 210px;
  padding: .5rem;
  z-index: 999;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: .55rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3a5f 60%, #1a4a8a 100%);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,99,235,.25);
  border: 1px solid rgba(147,197,253,.3);
  color: var(--blue-mid);
  font-size: .82rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.hero h1 span { color: var(--blue-mid); }

.hero .lead {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.hero-stat strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat span {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--off-white);
  color: var(--blue-dark);
}

.btn-sm {
  padding: .5rem 1.1rem;
  font-size: .85rem;
}

.btn-lg {
  padding: .95rem 2.2rem;
  font-size: 1.05rem;
}

/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-mid);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.card h3 { margin-bottom: .6rem; }
.card p  { font-size: .93rem; }

.card-featured {
  border-color: var(--blue);
  border-width: 2px;
}

.card-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px;
  left: 1.5rem;
  background: var(--blue);
  color: white;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── COMPARISON TABLE ─────────────────────────────────────── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.comparison-table th {
  background: var(--dark-gray);
  color: var(--white);
  padding: 1.1rem 1.5rem;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.comparison-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.comparison-table th:last-child  { border-radius: 0 var(--radius-md) 0 0; }

.comparison-table th.highlight {
  background: var(--blue);
}

.comparison-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: .93rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.comparison-table tr:last-child td { border-bottom: none; }

.comparison-table tr:nth-child(even) td { background: var(--off-white); }
.comparison-table tr:hover td { background: var(--blue-light); }

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--dark-gray);
}

.comparison-table td.highlight {
  background: rgba(219,234,254,.35);
  font-weight: 600;
  color: var(--blue-dark);
}

.comparison-table tr:nth-child(even) td.highlight {
  background: rgba(219,234,254,.55);
}

.check  { color: #16a34a; font-size: 1.1rem; }
.cross  { color: #dc2626; font-size: 1.1rem; }
.neutral{ color: var(--mid-gray); font-size: 1.1rem; }

/* ── COMPARISON CARDS ─────────────────────────────────────── */
.compare-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}

.compare-card:hover { box-shadow: var(--shadow-lg); }

.compare-card-header {
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-bottom: 2px solid var(--border);
}

.compare-card-header.blue {
  background: var(--blue);
  border-color: var(--blue-dark);
}

.compare-card-header.blue h3,
.compare-card-header.blue p { color: white; }

.compare-card-header h3 { margin-bottom: .3rem; font-size: 1.2rem; }
.compare-card-header p  { font-size: .88rem; margin: 0; }

.compare-card-body { padding: 1.75rem 2rem; }

.compare-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .91rem;
}

.compare-item:last-child { border-bottom: none; }

.compare-item-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.icon-green { background: #dcfce7; color: #16a34a; }
.icon-blue  { background: var(--blue-light); color: var(--blue); }
.icon-gray  { background: var(--light-gray); color: var(--mid-gray); }

.compare-item strong { color: var(--dark-gray); }
.compare-item span   { color: var(--text-secondary); font-size: .86rem; }

/* ── VS DIVIDER ───────────────────────────────────────────── */
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 .5rem;
}

.vs-badge {
  width: 46px;
  height: 46px;
  background: var(--dark-gray);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}

/* ── SECTION HEADERS ──────────────────────────────────────── */
.section-header {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.section-header.left { margin: 0 0 3rem; }

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .65rem;
  background: var(--blue-light);
  padding: .25rem .75rem;
  border-radius: 100px;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1rem; }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb {
  background: var(--off-white);
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  flex-wrap: wrap;
}

.breadcrumb-list li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb-list a  { color: var(--blue); }
.breadcrumb-list .sep { color: var(--mid-gray); }
.breadcrumb-list .current { color: var(--text-secondary); }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1e3a5f 100%);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 { color: white; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 600px; margin: 0; }

/* ── TAGS / BADGES ────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: .2rem .7rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
}

.tag-blue  { background: var(--blue-light); color: var(--blue); }
.tag-gray  { background: var(--light-gray); color: var(--text-secondary); }
.tag-green { background: #dcfce7; color: #16a34a; }
.tag-dark  { background: var(--dark-gray); color: white; }

/* ── PROCESS STEPS ────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.step:last-child { border-bottom: none; }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-content h3 { margin-bottom: .4rem; }
.step-content p  { margin: 0; font-size: .93rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-gray);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: .93rem;
  margin: 0;
}

.faq-item.open .faq-answer { max-height: 400px; }
.faq-item.open .faq-icon   { background: var(--blue); color: white; transform: rotate(45deg); }

/* ── BLOG CARDS ───────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-mid);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--dark-gray), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: .85rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: .65rem;
  line-height: 1.35;
}

.blog-card h3 a { color: var(--dark-gray); }
.blog-card h3 a:hover { color: var(--blue); }

.blog-card p {
  font-size: .88rem;
  flex: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--blue);
  font-size: .88rem;
  font-weight: 600;
  margin-top: 1rem;
}

.read-more:hover { gap: .7rem; }

/* ── SIDEBAR ──────────────────────────────────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.sidebar { position: sticky; top: 88px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-widget h4 {
  margin-bottom: 1.1rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--border);
  font-size: .95rem;
}

.sidebar-links li {
  border-bottom: 1px solid var(--border);
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
  font-size: .88rem;
  color: var(--text-secondary);
}

.sidebar-links a:hover { color: var(--blue); }

/* ── CALLOUT BOX ──────────────────────────────────────────── */
.callout {
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.callout-blue {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
}

.callout-gray {
  background: var(--off-white);
  border-left: 4px solid var(--mid-gray);
}

.callout-icon { font-size: 1.4rem; flex-shrink: 0; }
.callout h4   { margin-bottom: .35rem; font-size: .95rem; }
.callout p    { font-size: .88rem; margin: 0; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.cta-banner h2, .cta-banner p { color: white; }
.cta-banner p { opacity: .85; margin-bottom: 2rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin: .85rem 0 1.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: white;
  text-decoration: none;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer h5 {
  color: white;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.1rem;
}

.footer-links li { margin-bottom: .5rem; }

.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: white; }

.footer-contact p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}

.footer-bottom-links a:hover { color: white; }

/* ── LEGAL PAGES ──────────────────────────────────────────── */
.legal-content h2 {
  font-size: 1.3rem;
  margin: 2rem 0 .75rem;
  color: var(--dark-gray);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.5rem 0 .5rem;
}

.legal-content p,
.legal-content li {
  font-size: .93rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li { margin-bottom: .4rem; }

/* ── FEATURE LIST ─────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: .75rem; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .75rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
}

.feature-item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.feature-item p { font-size: .9rem; margin: 0; }

/* ── HIGHLIGHT BOX ────────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--blue-light), #eff6ff);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}

.highlight-box .big-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .4rem;
}

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .93rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── SCROLLBAR ────────────────────────────────────────────── */
::-webkit-scrollbar       { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--mid-gray); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ── UTILITIES ────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.rounded { border-radius: var(--radius-md); }
.shadow  { box-shadow: var(--shadow-md); }
.bg-white { background: var(--white); }
.bg-gray  { background: var(--off-white); }
.w-full   { width: 100%; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4       { grid-template-columns: repeat(2,1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar      { position: static; }
}

@media (max-width: 768px) {
  .section      { padding: 56px 0; }
  .section--lg  { padding: 72px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4       { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero         { padding: 64px 0 56px; }
  .hero-stats   { gap: 1.5rem; }
  .cta-banner   { padding: 2.5rem 1.75rem; }
  .form-row     { grid-template-columns: 1fr; }
  .comparison-table { font-size: .82rem; }
  .comparison-table th,
  .comparison-table td { padding: .75rem 1rem; }

  .nav-links    { display: none; }
  .hamburger    { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    gap: .25rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-stat strong { font-size: 1.4rem; }
  .cta-banner   { padding: 2rem 1.25rem; }
}