/*
Theme Name: GrubSpotr Marketing
Theme URI: https://grubspotr.com
Author: GrubSpotr
Author URI: https://grubspotr.com
Description: Custom marketing theme for GrubSpotr — restaurant growth platform
Version: 1.0.1
License: Private
Text Domain: grubspotr
Tags: restaurant, pos, digital-signage, marketing
*/

/* =============================================
   CSS VARIABLES & RESET
   ============================================= */
:root {
  /* Brand colors */
  --primary: #B71C1C;
  --primary-dark: #8B0000;
  --primary-light: #C62828;
  --primary-soft: rgba(183, 28, 28, 0.08);

  /* Accent colors */
  --green: #43A047;
  --green-soft: rgba(67, 160, 71, 0.1);
  --orange: #FF7043;
  --orange-soft: rgba(255, 112, 67, 0.1);
  --cyan: #00BCD4;
  --cyan-soft: rgba(0, 188, 212, 0.1);

  /* Backgrounds */
  --bg: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-card: #ffffff;
  --bg-card-dark: #222222;
  --bg-subtle: #FAFAFA;
  --bg-cream: #f5f1ed;

  /* Borders */
  --border: #E5E5E5;
  --border-dark: #333333;
  --border-light: #e5e7eb;

  /* Text */
  --text-primary: #0D0D0D;
  --text-secondary: #555555;
  --text-muted: #767676;    /* WCAG AA 4.54:1 on white */
  --text-light: #767676;    /* same — safe for small text */
  --text-dark: #0f172a;

  /* Fonts */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-primary: 0 8px 40px rgba(183, 28, 28, 0.2);

  /* Layout */
  --max-width: 1440px;
  --section-padding: 6rem 1.5rem;
}

/* Box model reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 1.0625rem;
  font-weight: 600;
}

h6 {
  font-size: 0.9375rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Eyebrow label — small uppercase above headings */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Subtitle — larger muted paragraph below headings */
.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 38rem;
}

.text-balance {
  text-wrap: balance;
}

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

.container-narrow {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

.section-dark {
  background: var(--bg-dark);
  color: #ffffff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5,
.section-dark h6 {
  color: #ffffff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section-cream {
  background: var(--bg-cream);
}

.section-accent {
  background: var(--bg-subtle);
}

.section-padding {
  padding: 4rem 0;
}

.bg-gray {
  background: var(--bg-subtle);
}

/* Grid system */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 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: 2rem;
}

/* Flex utilities */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 50px rgba(160, 21, 14, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  border-color: var(--text-secondary);
}

.btn-white {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  min-height: 44px;
}

.btn svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.card-hover:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card-dark {
  background: var(--bg-card-dark);
  border-color: var(--border-dark);
  color: #ffffff;
}

.card-dark h3,
.card-dark h4 {
  color: #ffffff;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.card-featured {
  border: 2px solid var(--primary);
}

/* Card content helpers */
.card h3, .card h4,
.card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.card p,
.card__text {
  font-size: 0.938rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card__icon {
  margin-bottom: 1rem;
}

/* Icon pill — small colored background square holding an icon */
.icon-pill {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-pill svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Red — POS, payments, primary actions */
.icon-pill-red {
  background: rgba(183, 28, 28, 0.1);
  color: #B71C1C;
}
/* Green — revenue, ordering, savings */
.icon-pill-green {
  background: rgba(67, 160, 71, 0.1);
  color: #2E7D32;
}
/* Teal — technology, screens, data */
.icon-pill-cyan {
  background: rgba(0, 131, 143, 0.1);
  color: #00838F;
}
/* Coral — community, marketing, loyalty */
.icon-pill-orange {
  background: rgba(230, 74, 25, 0.1);
  color: #BF360C;
}

/* =============================================
   BADGES
   ============================================= */
.badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-primary {
  background: var(--primary);
  color: #ffffff;
}

.badge-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.badge-green {
  background: var(--green);
  color: #ffffff;
}

.badge-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 2.25rem;
  width: auto;
}

.site-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--primary); }
@media (max-width: 1024px) { .header-phone { display: none; } }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  min-height: 44px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.nav-link:hover svg,
.nav-item.open .nav-link svg {
  transform: rotate(180deg);
}

/* Mega menu dropdown */
.mega-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  min-width: 480px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  animation: megaMenuFade 0.2s ease;
}

.nav-item.open .mega-menu {
  display: grid;
}

.mega-menu.single-col {
  grid-template-columns: 1fr;
  min-width: 260px;
}

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

/* Mega menu item — icon + label + description */
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease;
  text-decoration: none;
  color: inherit;
}

.mega-menu-item:hover {
  background: var(--bg-subtle);
}

.mega-menu-item .icon-pill {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.mega-menu-item-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.mega-menu-item-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Dropdown category heading */
.dropdown-category-title {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 0 0.75rem;
  margin-bottom: 0.5rem;
}

/* Simple dropdown link */
.dropdown-link {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.dropdown-link:hover {
  background: var(--bg-subtle);
  color: var(--text-primary);
}

.dropdown-link-featured {
  display: block;
  padding: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.dropdown-link-featured:hover {
  background: var(--bg-subtle);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger toggle */
.mobile-toggle {
  display: none;
  padding: 0.5rem;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 5rem;
  background: #ffffff;
  z-index: 99;
  overflow-y: auto;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  animation: mobileSlideDown 0.3s ease;
}

.mobile-menu.open {
  display: flex;
}

@keyframes mobileSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  text-align: left;
  cursor: pointer;
  min-height: 44px;
}

.mobile-nav-link svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.2s ease;
}

.mobile-nav-link.open svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  padding: 0.5rem 0 0.5rem 1rem;
  display: none;
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-submenu a:hover {
  color: var(--primary);
}

.mobile-actions {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  padding: 8rem 1.5rem 6rem;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-community {
  text-align: center;
  width: 100%;
  font-size: 1.0625rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.hero-trust::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

.hero-visual {
  position: relative;
}

.hero-image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* Hero glow effects */
.hero-glow-1 {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 16rem;
  height: 16rem;
  background: rgba(160, 21, 14, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 16rem;
  height: 16rem;
  background: rgba(247, 146, 86, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

/* Hero chips */
.hero-chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-chip {
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1.5px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.hero-chip:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, rgba(160, 21, 14, 0.04), #ffffff);
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  transition: gap 0.2s ease;
}

.back-link:hover {
  gap: 0.75rem;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.page-hero-desc {
  font-size: 1.25rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* =============================================
   FEATURE SECTIONS — ALTERNATING LAYOUT
   ============================================= */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.feature-row:nth-child(even) .feature-row-content,
.feature-row--reverse .feature-row-content {
  order: -1;
}

.feature-row-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-row-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-row-content h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.feature-row-content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Feature list with checkmarks */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234caf50'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* =============================================
   SERVICES OVERVIEW
   ============================================= */
.services-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.service-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 0.75rem;
}

/* =============================================
   PLATFORM FEATURE CARDS
   ============================================= */
.platform-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.feature-card {
  padding: 2rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   BUNDLES / PRICING SECTION
   ============================================= */
.bundles-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #FAFAFA, var(--bg-cream));
}

.bundle-card {
  background: #ffffff;
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.bundle-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.bundle-card.featured {
  border-color: var(--primary);
}

.bundle-badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.bundle-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.bundle-price-box {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.bundle-price {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.bundle-price-note {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.bundle-includes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.bundle-include-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.bundles-custom {
  text-align: center;
  margin-top: 3rem;
}

.bundles-custom p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* =============================================
   VALUE PROPS / WHY GRUBSPOTR
   ============================================= */
.value-props-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.value-prop-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-md);
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.5rem;
}

.value-prop-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.value-prop-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 22rem;
  margin: 0 auto;
}

/* =============================================
   PRICING TEASER
   ============================================= */
.pricing-teaser {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--bg-cream), #fdf0eb);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-box {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.pricing-box.featured {
  border-color: var(--primary);
  border-width: 2px;
}

.pricing-box-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pricing-box-note {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.pricing-box-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: var(--section-padding);
  background: #ffffff;
}

.testimonial-card {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--primary);
}

.testimonial-quote {
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 2rem;
}

.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }

.testimonial-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.testimonial-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 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='%23fff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-2h-2v2h2zm0-4h2v2h-2v-2zm-2 0v2h-2v-2h2zm0 0h-2v-2h2v2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-trust {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cta-trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

/* CTA section — dark red background needs white button */
.section-dark .btn-primary,
.cta-section .btn-primary {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.section-dark .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #f5f5f5;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
/* CTA subtitle text — must be visible on dark red */
.section-dark .section-subtitle,
.section-dark p,
.cta-section p,
.cta-section .section-subtitle {
  color: rgba(255,255,255,0.85);
}
/* Also fix any outline buttons on dark sections */
.section-dark .btn-outline,
.cta-section .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.section-dark .btn-outline:hover,
.cta-section .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}

/* =============================================
   HOW IT WORKS / STEPS
   ============================================= */
.how-it-works-section {
  padding: var(--section-padding);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(160, 21, 14, 0.15), rgba(160, 21, 14, 0.4), rgba(160, 21, 14, 0.15));
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--primary-soft);
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.step-icon {
  color: var(--primary);
  margin: 0 auto 1rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.step-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =============================================
   FAQ ACCORDION — PREMIUM
   ============================================= */
.faq-section-inner {
  max-width: 52rem;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: var(--primary);
  border-left: 3px solid var(--primary);
  box-shadow: 0 4px 16px rgba(183,28,28,0.08);
}
.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  list-style: none;
  user-select: none;
  transition: background 0.15s ease;
  line-height: 1.4;
  font-family: var(--font-heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover {
  background: var(--primary-soft);
}
.faq-item[open] summary {
  color: var(--primary);
  border-bottom: 1px solid var(--border-light);
}
.faq-item summary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
  border-radius: var(--radius-lg);
}
.faq-answer {
  padding: 1.25rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.9375rem;
  animation: faqOpen 0.2s ease-out;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-answer { animation: none; }
  .faq-item summary::after { transition: none; }
}
@media (max-width: 768px) {
  .faq-item summary { padding: 1rem 1.25rem; font-size: 0.9375rem; }
  .faq-answer { padding: 1rem 1.25rem 1.25rem; }
}

/* =============================================
   FORMS / GET STARTED
   ============================================= */
.get-started-page {
  padding: var(--section-padding);
}

.get-started-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.get-started-sidebar {
  position: sticky;
  top: 7rem;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.sidebar-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sidebar-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.sidebar-benefit-icon {
  color: var(--green);
  flex-shrink: 0;
}

/* Form card */
.contact-form-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
  min-height: 44px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(160, 21, 14, 0.1);
}

.form-input:focus-visible,
.form-select:focus-visible,
.form-textarea:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 0;
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

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

.form-error {
  font-size: 0.8125rem;
  color: var(--primary);
  margin-top: 0.375rem;
}

/* Service checkboxes */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.service-checkbox {
  position: relative;
}

.service-checkbox input {
  position: absolute;
  opacity: 0;
}

.service-checkbox-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.8125rem;
  min-height: 44px;
}

.service-checkbox input:checked + .service-checkbox-label {
  border-color: var(--primary);
  background: var(--primary-soft);
}

.service-checkbox-emoji {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.service-checkbox-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.8125rem;
}

.service-checkbox-desc {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* Consent */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-consent input {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--primary);
  flex-shrink: 0;
  min-width: 20px;
  min-height: 20px;
  cursor: pointer;
}

.form-consent-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Success message */
.form-success {
  text-align: center;
  padding: 3rem;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.form-success-desc {
  color: var(--text-secondary);
}

/* Form alert (error banner inside form) */
.form-alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.form-alert--error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
}

/* Form group error state (driven by JS) */
.form-group--error .form-input,
.form-group--error .form-select,
.form-group--error .form-textarea {
  border-color: var(--primary);
}

.form-group--error .form-error {
  display: block;
}

/* Form status (legacy fallback) */
.form-status {
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-status--success {
  color: var(--green);
}

.form-status--error {
  color: #DC2626;
}

/* =============================================
   CONTACT INFO CARDS ROW
   ============================================= */
.contact-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.contact-info-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-info-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================
   TRUST SIGNALS STRIP
   ============================================= */
.trust-strip {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 2.5rem 1.5rem;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #ffffff;
}

.trust-icon {
  color: var(--green);
  flex-shrink: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #ffffff;
  color: var(--text-primary);
  border-top: 1px solid #E5E5E5;
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 20rem;
}

.footer-logo img {
  height: 2rem;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: none;
}
.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-contact-info {
  margin: 0.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-contact-info a {
  color: var(--text-secondary);
  font-weight: 500;
}
.footer-contact-info a:hover {
  color: var(--primary);
}

.footer-heading {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  line-height: 1;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid #E5E5E5;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* Powered by SpotrOS */
.footer-powered {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: left;
  margin-top: 0.75rem;
}

.footer-powered a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-powered a:hover {
  color: var(--primary-dark);
}

/* =============================================
   PRIVACY / TERMS / LEGAL PAGES
   ============================================= */
.legal-page {
  padding: 6rem 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.legal-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

/* =============================================
   BUNDLE DETAIL PAGES
   ============================================= */
.bundle-hero {
  padding: 8rem 1.5rem 4rem;
  background: linear-gradient(135deg, rgba(160, 21, 14, 0.04), #ffffff);
}

.bundle-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.bundle-hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.bundle-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.bundle-include-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
}

.bundle-include-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.bundle-include-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.bundle-include-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.bundle-include-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =============================================
   RESOURCES PAGE
   ============================================= */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.resource-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.resource-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-subtle);
}

.resource-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card-body {
  padding: 1.75rem;
}

.resource-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.resource-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.resource-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.resource-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* =============================================
   EXPLORE BUNDLES HUB
   ============================================= */
.explore-bundles {
  padding: var(--section-padding);
  background: var(--bg-subtle);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.explore-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.explore-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.explore-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.explore-card-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* =============================================
   DIGITAL SIGNAGE DETAIL PAGES
   ============================================= */
.signage-apps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.signage-app-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.signage-app-card:hover {
  border-color: var(--primary);
}

.signage-app-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.signage-app-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* =============================================
   HIGHLIGHT / COLOR UTILITY CLASSES
   ============================================= */
.highlight-red { color: var(--primary); }
.highlight-green { color: var(--green); }
.highlight-orange { color: var(--orange); }
.highlight-blue { color: var(--cyan); }

/* =============================================
   FAQ CATEGORY STYLES (FAQs page)
   ============================================= */
.faq-category {
  margin-bottom: 3rem;
}
.faq-category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-soft);
}

/* =============================================
   FAQs PAGE — button-based accordion compat
   ============================================= */
.faq-list {
  max-width: 52rem;
  margin: 0 auto;
}
.faq-list .faq-item {
  background: white;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 0.625rem;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-list .faq-item.open {
  border-color: var(--primary);
  border-left: 3px solid var(--primary);
  box-shadow: 0 4px 16px rgba(183,28,28,0.08);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  line-height: 1.4;
  transition: background 0.15s ease;
}
.faq-question:hover {
  background: var(--primary-soft);
}
.faq-question:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: -3px;
  border-radius: var(--radius-lg);
}
.faq-list .faq-item.open .faq-question {
  color: var(--primary);
  border-bottom: 1px solid var(--border-light);
}
.faq-toggle {
  transition: transform 0.2s ease;
}
.faq-list .faq-item.open .faq-toggle {
  transform: rotate(180deg);
}
.faq-answer-inner {
  padding: 1.25rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.9375rem;
}

/* =============================================
   FEATURE ROW ICON — larger, more prominent
   ============================================= */
.feature-row-image .icon-pill {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius-lg);
}
.feature-row-image .icon-pill svg {
  width: 2.5rem;
  height: 2.5rem;
}

/* =============================================
   NAVY SECTION — dark POS/tech section
   ============================================= */
.section-navy {
  background: #0F1C2E;
  color: #ffffff;
}
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: #ffffff;
}
.section-navy p {
  color: rgba(255,255,255,0.8);
}
.section-navy .section-label {
  color: var(--cyan);
}
.section-navy .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}
.section-navy .card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.section-navy .card h3,
.section-navy .card__title {
  color: #ffffff;
}
.section-navy .card p,
.section-navy .card__text {
  color: rgba(255,255,255,0.7);
}
.section-navy .card-subtitle {
  color: rgba(255,255,255,0.7);
}
.section-navy .card-bullets li {
  color: rgba(255,255,255,0.7);
}
.section-navy .section-explore-link a {
  color: var(--cyan);
}
.section-navy .icon-pill-red { background: rgba(183,28,28,0.3); color: #ff8a80; }
.section-navy .icon-pill-green { background: rgba(67,160,71,0.3); color: #a5d6a7; }
.section-navy .icon-pill-cyan { background: rgba(0,188,212,0.3); color: #80deea; }
.section-navy .icon-pill-orange { background: rgba(255,112,67,0.3); color: #ffab91; }

/* =============================================
   PRICING CARD — featured emphasis
   ============================================= */
.pricing-card--featured,
.card-featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 40px rgba(183,28,28,0.15);
  transform: translateY(-4px);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* =============================================
   ADA / WCAG 2.1 — ACCESSIBILITY
   ============================================= */

/* Skip navigation link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 99999;
  padding: 0.875rem 1.5rem;
  background: var(--primary-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible — keyboard users only */
a:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
  border-radius: 3px;
}

.btn:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--primary-dark);
}

.btn-outline:focus-visible,
.btn-outline-white:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
}

.nav-link:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 4px;
  border-radius: 8px;
}

input[type="checkbox"]:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
}

/* Minimum touch targets — WCAG 2.5.5 (44x44px) */
input[type="checkbox"] {
  min-width: 20px;
  min-height: 20px;
  cursor: pointer;
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --primary: #8b0000;
  }

  .btn-primary {
    background: #8b0000;
    border: 2px solid #000000;
  }

  .nav-link,
  a {
    text-decoration: underline;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =============================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    display: none;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row:nth-child(even) .feature-row-content {
    order: 0;
  }

  .get-started-inner {
    grid-template-columns: 1fr;
  }

  .get-started-sidebar {
    position: static;
  }

  .bundle-includes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signage-apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 1.5rem;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .bundle-includes-grid {
    grid-template-columns: 1fr;
  }

  .platform-features {
    grid-template-columns: 1fr;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .signage-apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .header-inner {
    padding: 0 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .card {
    padding: 1.75rem;
  }

  .contact-form-card {
    padding: 2rem;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .signage-apps-grid {
    grid-template-columns: 1fr;
  }

  .hero-chips {
    flex-direction: column;
  }

  .hero-chip {
    width: 100%;
    text-align: center;
  }

  .hero h1,
  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   SINGLE POST / BLOG
   ============================================= */
.single-post-page {
  padding: 6rem 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

.single-post-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.single-post-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.single-post-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}

.single-post-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}

.single-post-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.single-post-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.single-post-content ol li {
  list-style: decimal;
}

.single-post-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.single-post-content a:hover {
  color: var(--primary-dark);
}

.single-post-content img {
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.single-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.single-post-content blockquote p {
  color: var(--text-primary);
  font-weight: 500;
  font-style: italic;
}

/* =============================================
   LOCAL SEO LANDING PAGES
   ============================================= */

/* Hero */
.local-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 5rem 0 4.5rem;
  text-align: center;
}

.local-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 780px;
  margin-inline: auto;
}

.local-hero-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.local-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section headings */
.local-section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.local-section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

/* Benefits grid */
.local-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.local-benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
}

.local-benefit-icon {
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.local-benefit-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.local-benefit-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  margin: 0;
}

/* Services grid */
.local-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.local-service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.local-service-card:hover,
.local-service-card:focus-visible {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  outline: none;
}

.local-service-card:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

.local-service-icon {
  font-size: 2rem;
  line-height: 1;
}

.local-service-card h3 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin: 0;
}

.local-service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

.local-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
}

/* Industries chips */
.local-industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.local-industry-chip {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.925rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Local CTA */
.local-cta {
  background: var(--primary);
  color: #ffffff;
  text-align: center;
}

.local-cta-inner {
  max-width: 620px;
  margin-inline: auto;
}

.local-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.local-cta p {
  opacity: 0.92;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.local-cta .btn-primary {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.local-cta .btn-primary:hover,
.local-cta .btn-primary:focus-visible {
  background: rgba(255, 255, 255, 0.9);
}

/* Local responsive */
@media (max-width: 640px) {
  .local-hero {
    padding: 3.5rem 0 3rem;
  }

  .local-benefits-grid,
  .local-services-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   BUNDLES HUB
   ============================================= */
.hub-bundle-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hub-bundle-card:hover,
.hub-bundle-card:focus-visible {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  outline: none;
}

.hub-bundle-card:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

.hub-bundle-emoji {
  font-size: 2.75rem;
  line-height: 1;
}

.hub-bundle-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 0;
}

.hub-bundle-desc {
  color: var(--text-muted);
  font-size: 0.925rem;
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.hub-bundle-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hub-bundle-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.hub-bundle-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.hub-bundle-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
}

/* =============================================
   LOCATIONS HUB
   ============================================= */
.lochub-state-group {
  margin-bottom: 3rem;
}

.lochub-state-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-light);
}

.lochub-state-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 0;
}

.lochub-state-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--bg-subtle);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.lochub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}

.lochub-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
}

.lochub-card:hover,
.lochub-card:focus-visible {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(160, 21, 14, 0.25);
  outline: none;
}

.lochub-card:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 2px;
}

.lochub-card-name {
  flex: 1;
}

.lochub-card-arrow {
  opacity: 0.5;
  flex-shrink: 0;
}

.lochub-card:hover .lochub-card-arrow,
.lochub-card:focus-visible .lochub-card-arrow {
  opacity: 1;
}

@media (max-width: 640px) {
  .lochub-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

/* =============================================
   COMMUNITY SECTION
   ============================================= */
.community-section {
  background: var(--bg-subtle);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.community-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.community-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(160, 21, 14, 0.1);
  transform: translateY(-2px);
}

.community-card-flag {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.community-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.community-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}

.community-card-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}

.community-card--spanish {
  border-color: var(--primary-soft);
  background: linear-gradient(135deg, rgba(160, 21, 14, 0.03) 0%, #ffffff 100%);
}

@media (max-width: 900px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .community-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CULTURAL LANDING PAGES
   ============================================= */
.cultural-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 5rem 0 4.5rem;
  text-align: center;
}

.cultural-hero-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cultural-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 780px;
  margin-inline: auto;
}

.cultural-hero-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* =============================================
   KEYWORD LANDING PAGES
   ============================================= */
.keyword-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 5rem 0 4.5rem;
  text-align: center;
}

.keyword-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 780px;
  margin-inline: auto;
}

.keyword-hero-desc {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* =============================================
   SPANISH PAGE SUPPORT
   ============================================= */
.lang-es .eyebrow {
  letter-spacing: 0.15em;
}

/* =============================================
   HOMEPAGE COMPONENTS (v2 — Lovable mockup)
   ============================================= */

/* Section label — uppercase eyebrow above section titles */
.section-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.75rem;
}

/* --- Hero light variant (no section-dark) --- */
.hero:not(.section-dark) {
  background: var(--surface-white, #ffffff);
  color: var(--text-heading, #1a1a1a);
}
.hero:not(.section-dark) .hero-label {
  color: var(--clr-primary);
}
.hero:not(.section-dark) .hero-desc {
  color: var(--text-muted, #666);
}

/* Text utilities */
.text-primary { color: var(--clr-primary); }
.text-highlight { color: var(--clr-primary); font-weight: 700; }

/* Hero secondary description */
.hero-sub-desc {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-muted, #666);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

/* Hero pricing link */
.hero-pricing-link {
  display: inline-block;
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}
.hero-pricing-link:hover { text-decoration: underline; }

/* Hero trust badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body, #333);
  background: var(--surface-white, #fff);
  white-space: nowrap;
}
.hero-badge svg { color: var(--clr-primary); flex-shrink: 0; }

/* --- Action cards (What to do next) --- */
.action-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: var(--radius-lg, 12px);
  background: var(--surface-white, #fff);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.action-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.action-card__icon { margin-bottom: 1rem; }
.action-card__title {
  font-family: var(--ff-heading, 'Poppins', sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-heading, #1a1a1a);
}
.action-card__text {
  color: var(--text-muted, #666);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  flex: 1;
}
.action-card .btn { margin-top: auto; }

/* --- Card enhancements (shared across sections) --- */
.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.card-header .icon-pill { flex-shrink: 0; }
.card-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading, #1a1a1a);
}

.card-subtitle {
  color: var(--text-muted, #666);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0 0 0.5rem;
}

.card-for-you {
  color: var(--clr-primary);
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.card-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.card-bullets li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body, #333);
}
.card-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-primary);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: auto;
}
.card-link:hover { text-decoration: underline; }

/* Path card: flex column for bottom link alignment */
.path-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

/* --- Horizontal pricing cards --- */
.pricing-h-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: var(--radius-lg, 12px);
  background: var(--surface-white, #fff);
}
.pricing-h-card .icon-pill { flex-shrink: 0; }
.pricing-h-card h3 {
  margin: 0 0 0.125rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading, #1a1a1a);
}
.pricing-h-card p {
  margin: 0;
  color: var(--text-muted, #666);
  font-size: 0.875rem;
}

/* Section bottom note */
.section-note {
  text-align: center;
  color: var(--text-muted, #666);
  font-size: 0.9375rem;
  margin-top: 2rem;
}

/* Section explore link (centered) */
.section-explore-link {
  text-align: center;
  margin-top: 2rem;
}
.section-explore-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}
.section-explore-link a:hover { text-decoration: underline; }

/* --- Outcome items (icon + text, no card border) --- */
.outcome-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
}
.outcome-item .icon-pill { flex-shrink: 0; margin-top: 0.125rem; }
.outcome-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading, #1a1a1a);
}
.outcome-line {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted, #666);
  line-height: 1.6;
}
.outcome-item .card-link { margin-top: 0.75rem; }

/* --- Featured testimonial (dark card) --- */
.testimonial-featured {
  background: var(--clr-dark, #1a1a1a);
  color: #ffffff;
  border-radius: var(--radius-lg, 12px);
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}
.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.testimonial-stars svg { color: var(--clr-primary); }
.testimonial-featured blockquote {
  margin: 0;
}
.testimonial-featured blockquote p {
  font-size: 1.375rem;
  line-height: 1.6;
  font-weight: 500;
  margin: 0 auto 1.5rem;
  max-width: 800px;
  color: #fff;
}
.testimonial-featured .text-highlight {
  color: var(--clr-primary);
  font-weight: 700;
}
.testimonial-featured cite {
  display: block;
  font-style: normal;
}
.testimonial-featured cite strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #fff;
}
.testimonial-featured cite span {
  font-size: 0.875rem;
  color: #999;
}

/* --- Small testimonial cards --- */
.testimonial-small {
  padding: 1.5rem;
  border: 1px solid var(--border, #e2e2e2);
  border-radius: var(--radius-lg, 12px);
  background: var(--surface-white, #fff);
}
.testimonial-small p {
  font-size: 0.9375rem;
  color: var(--text-body, #333);
  margin: 0 0 1.25rem;
  line-height: 1.6;
}
.testimonial-small cite {
  display: block;
  font-style: normal;
}
.testimonial-small cite strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-heading, #1a1a1a);
}
.testimonial-small cite span {
  font-size: 0.8125rem;
  color: var(--text-muted, #666);
}

/* --- Responsive adjustments for homepage --- */
@media (max-width: 767px) {
  .hero-badges { gap: 0.5rem; }
  .hero-badge { font-size: 0.8125rem; padding: 0.375rem 0.75rem; }
  .hero-sub-desc { font-size: 0.9375rem; }
  .testimonial-featured { padding: 2rem 1.25rem; }
  .testimonial-featured blockquote p { font-size: 1.125rem; }
  .outcome-item { flex-direction: column; }
  .pricing-h-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* =============================================
   CONVERSION MACHINE — GLOBAL OVERRIDES
   ============================================= */

/* --- Typography scale (requested spec) --- */
.hero-title,
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
}
.pricing-hero-h1 {
  font-size: clamp(32px, 4vw, 48px);
}
.section-title {
  font-size: clamp(24px, 3vw, 36px);
}
.section {
  padding: 64px 1.5rem;
}
.hero {
  padding-top: 72px;
  padding-bottom: 72px;
}

/* --- Hero pain text --- */
.hero-pain-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 1.5rem;
  text-align: center;
  font-weight: 500;
}

/* --- Ghost button (secondary CTA) --- */
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  padding: 12px 30px;
  font-weight: 600;
}
.btn-ghost:hover {
  background: var(--primary-soft);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
}
/* Ghost on dark backgrounds */
.section-dark .btn-ghost,
.cta-section .btn-ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
}
.section-dark .btn-ghost:hover,
.cta-section .btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
}

/* --- Social proof bar --- */
.social-proof-bar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  text-align: center;
}
.social-proof-text {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.social-proof-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-proof-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.social-proof-divider {
  color: var(--border);
  font-size: 1.25rem;
}

/* --- Footer — force white background --- */
.site-footer {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}
.site-footer a {
  color: #1a1a1a !important;
}
.site-footer a:hover {
  color: #B71C1C !important;
}
.site-footer .footer-logo-img {
  filter: none !important;
}
.footer-bottom {
  border-top: 1px solid #e5e5e5 !important;
  color: #666666 !important;
}

/* --- CTA section subtext white --- */
.cta-section p,
.cta-section .section-subtitle {
  color: #ffffff !important;
  opacity: 1 !important;
}

/* --- FAQ accordion — remove red border on active, use left-border accent --- */
.faq-list .faq-item.open {
  border-color: var(--border-light);
  border-left: 3px solid var(--primary);
}

/* --- Hero trust link styling --- */
.hero-trust a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}
.hero-trust a:hover {
  color: var(--primary-dark);
}

/* --- Social proof responsive --- */
@media (max-width: 767px) {
  .social-proof-logos {
    gap: 10px;
  }
  .social-proof-name {
    font-size: 0.875rem;
  }
  .social-proof-divider {
    font-size: 1rem;
  }
  .hero-pain-text {
    font-size: 0.9375rem;
    padding: 0 1rem;
  }
}


/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .site-header,
  .site-footer,
  .skip-link,
  .mobile-menu,
  .mobile-toggle,
  .cta-section,
  .hero-actions,
  .cta-actions {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
    background: #ffffff;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }

  .section {
    padding: 2rem 0;
  }

  .card,
  .bundle-card,
  .feature-card {
    border: 1px solid #cccccc;
    box-shadow: none;
    break-inside: avoid;
  }
}


/* Hide reCAPTCHA badge globally */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}
/* Show reCAPTCHA badge on contact page only */
body.page-template-template-contact .grecaptcha-badge {
  visibility: visible !important;
  opacity: 1 !important;
}

/* ========================================
   GRUB-HERO — Enterprise Edition
   ======================================== */

/* ---------- Section wrapper ---------- */
.grub-hero {
  display: grid;
  grid-template-columns: 46fr 54fr;
  min-height: auto;
  background: #ffffff;
  overflow: hidden;
}

/* ---------- LEFT column ---------- */
.grub-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 72px 3.5rem 72px 5vw;
  gap: 1.25rem;
}

.grub-hero__eyebrow {
  font-family: var(--ff-heading, 'Poppins', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-teal, #00BCD4);
  margin: 0;
}

.grub-hero__headline {
  font-family: var(--ff-heading, 'Poppins', sans-serif);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--clr-dark, #1a1a1a);
  margin: 0;
}

.grub-hero__headline-em {
  font-style: normal;
  color: var(--clr-red, #B71C1C);
}

.grub-hero__desc {
  font-family: var(--ff-body, 'Open Sans', sans-serif);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.65;
  color: #555;
  max-width: 520px;
  margin: 0;
}

.grub-hero__pain {
  font-family: var(--ff-body, 'Open Sans', sans-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: #888;
  margin: 0;
}

/* CTA row */
.grub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.grub-hero__btn-primary,
.grub-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-heading, 'Poppins', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
}

.grub-hero__btn-primary {
  background: var(--clr-red, #B71C1C);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(183, 28, 28, 0.35);
}

.grub-hero__btn-primary:hover,
.grub-hero__btn-primary:focus-visible {
  background: #d32f2f;
  box-shadow: 0 6px 20px rgba(183, 28, 28, 0.45);
}

.grub-hero__btn-secondary {
  background: transparent;
  color: var(--clr-dark, #1a1a1a);
  border: 2px solid #ddd;
}

.grub-hero__btn-secondary:hover,
.grub-hero__btn-secondary:focus-visible {
  border-color: var(--clr-red, #B71C1C);
  color: var(--clr-red, #B71C1C);
}

/* Trust row */
.grub-hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--ff-body, 'Open Sans', sans-serif);
  font-size: 0.82rem;
  color: #888;
}

.grub-hero__trust-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-green, #43A047);
  animation: gh-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes gh-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .grub-hero__trust-pulse {
    animation: none;
  }
}

/* Stats row */
.grub-hero__stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.grub-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.grub-hero__stat strong {
  font-family: var(--ff-heading, 'Poppins', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-green, #43A047);
  line-height: 1.2;
}

.grub-hero__stat span {
  font-family: var(--ff-body, 'Open Sans', sans-serif);
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.grub-hero__stat-rule {
  width: 1px;
  height: 32px;
  background: #e0e0e0;
  flex-shrink: 0;
}

/* ---------- RIGHT column ---------- */
.grub-hero__right {
  display: flex;
  flex-direction: column;
  background: #F8F7F5;
  padding: 40px 3rem;
  justify-content: center;
}

/* Showcase card */
.grub-hero__card {
  background: #fff;
  border-radius: 18px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image stage */
.grub-hero__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #eee;
}

.grub-hero__panel {
  display: none;
  position: absolute;
  inset: 0;
}

.grub-hero__panel--active {
  display: block;
}

.grub-hero__reel {
  position: relative;
  width: 100%;
  height: 100%;
}

.grub-hero__frame {
  display: none;
  position: absolute;
  inset: 0;
  margin: 0;
}

.grub-hero__frame--active {
  display: block;
}

.grub-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption + dots bar */
.grub-hero__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #f0f0f0;
}

.grub-hero__caption {
  font-family: var(--ff-body, 'Open Sans', sans-serif);
  font-size: 0.82rem;
  color: #666;
}

/* Pips / dot nav */
.grub-hero__pips {
  display: flex;
  gap: 6px;
  align-items: center;
}

.grub-hero__pip {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.grub-hero__pip::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
}

.grub-hero__pip--active::after {
  background: var(--clr-red, #B71C1C);
  border-color: var(--clr-red, #B71C1C);
}

/* Tab bar */
.grub-hero__tabs {
  display: flex;
  gap: 0;
  border-top: 1px solid #f0f0f0;
}

.grub-hero__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  font-family: var(--ff-heading, 'Poppins', sans-serif);
  font-weight: 600;
  font-size: 0.82rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-bottom: 3px solid transparent;
}

.grub-hero__tab svg {
  flex-shrink: 0;
}

.grub-hero__tab:hover {
  color: #555;
  background: rgba(0, 0, 0, 0.02);
}

.grub-hero__tab--active {
  color: var(--clr-red, #B71C1C);
  border-bottom-color: var(--clr-red, #B71C1C);
  background: rgba(183, 28, 28, 0.03);
}

.grub-hero__tab-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}

.grub-hero__tab-wrap strong {
  font-size: 0.82rem;
  font-weight: 700;
}

.grub-hero__tab-wrap small {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.7;
}

/* Footnote */
.grub-hero__footnote {
  font-family: var(--ff-body, 'Open Sans', sans-serif);
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
  margin: 0.75rem 0 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .grub-hero {
    grid-template-columns: 1fr 1fr;
    max-height: none;
  }
  .grub-hero__left {
    padding: 3rem 2.5rem;
  }
  .grub-hero__right {
    padding: 2rem;
  }
}

@media (max-width: 900px) {
  .grub-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .grub-hero__left {
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    align-items: center;
  }
  .grub-hero__actions {
    justify-content: center;
  }
  .grub-hero__trust {
    justify-content: center;
  }
  .grub-hero__stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .grub-hero__right {
    padding: 0 1.5rem 2.5rem;
  }
  .grub-hero__tab-wrap small {
    display: none;
  }
}

@media (max-width: 600px) {
  .grub-hero__headline {
    font-size: 1.75rem;
  }
  .grub-hero__desc {
    font-size: 0.95rem;
  }
  .grub-hero__btn-primary,
  .grub-hero__btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .grub-hero__tab {
    font-size: 0.75rem;
    padding: 0.6rem 0.5rem;
  }
  .grub-hero__tab svg {
    display: none;
  }
  .grub-hero__stats {
    gap: 0.75rem;
  }
  .grub-hero__stat strong {
    font-size: 1.1rem;
  }
}

/* ---------- Hide Old Hero Styles ---------- */
.hero-split,
.hero-v2 {
  display: none !important;
}
