/* ==========================================================================
   HEATPUMPREVIEWS.CO.UK — MASTER ENTERPRISE DESIGN SYSTEM
   Theme: The Sage / British CleanTech Engineering Authority
   WCAG AAA Compliant • 60fps Micro-Interactions • Fluid Grid
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  /* Brand Theme Tokens */
  --brand-navy: #091322;
  --brand-navy-card: #0f1c30;
  --brand-forest: #064e3b;
  --brand-forest-hover: #04392b;
  --brand-forest-light: #ecfdf5;
  --brand-forest-border: #a7f3d0;
  
  --brand-emerald: #059669;
  --brand-emerald-hover: #047857;
  --brand-emerald-light: #d1fae5;
  --brand-emerald-glow: rgba(5, 150, 105, 0.18);
  
  --brand-amber: #d97706;
  --brand-amber-light: #fffbeb;
  --brand-amber-border: #fde68a;
  
  --brand-cyan: #0284c7;
  --brand-cyan-light: #e0f2fe;

  /* Neutrals & Surfaces */
  --surface-base: #f8fafc;
  --surface-card: #ffffff;
  --surface-alt: #f1f5f9;
  --surface-hover: #f8fafc;
  --surface-inset: #eef2f6;

  /* Typography Colors */
  --text-main: #091322;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-inverse: #ffffff;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-focus: #059669;

  /* Functional */
  --color-success: #15803d;
  --color-success-bg: #dcfce7;
  --color-danger: #b91c1c;
  --color-danger-bg: #fee2e2;

  /* Fonts & Sizing */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container-max: 1240px;
  --container-narrow: 1140px;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-card: 0 4px 6px -1px rgba(9, 19, 34, 0.05), 0 2px 4px -2px rgba(9, 19, 34, 0.04);
  --shadow-card-hover: 0 12px 24px -4px rgba(9, 19, 34, 0.08), 0 4px 8px -2px rgba(9, 19, 34, 0.04);
  --shadow-modal: 0 25px 50px -12px rgba(9, 19, 34, 0.25);
  
  --transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Hygiene */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  background-color: var(--surface-base);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.container-narrow {
  max-width: var(--container-narrow);
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.15rem; letter-spacing: -0.03em; }
h2 { font-size: 1.8rem; letter-spacing: -0.025em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.85rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.45rem; }
}

p {
  margin-bottom: 1.15rem;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

strong {
  color: var(--text-main);
  font-weight: 700;
}

a {
  color: var(--brand-emerald);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--brand-emerald-hover);
  text-decoration: underline;
}

/* Top Announcement / Regulatory Banner */
.top-banner {
  background: linear-gradient(90deg, #064e3b 0%, #065f46 50%, #047857 100%);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-banner strong {
  color: #fef08a;
  font-weight: 800;
}

.top-banner a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  margin-left: 4px;
  transition: var(--transition);
}

.top-banner a:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #fef08a;
  text-decoration: none;
}

/* Master Header & Navigation */
.site-header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-subtle);
  width: 100%;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-navy);
  text-decoration: none;
  letter-spacing: -0.03em;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #ea580c 0%, #065f46 60%, var(--brand-emerald) 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(6, 78, 59, 0.25);
  flex-shrink: 0;
  padding: 6px;
}

.brand-icon-box svg {
  width: 100%;
  height: 100%;
}

.nav-menu-desktop {
  display: none;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-menu-desktop li {
  margin: 0;
  padding: 0;
  display: inline-flex;
}

.nav-menu-desktop a {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 4px;
  position: relative;
  transition: var(--transition);
}

.nav-menu-desktop a:hover {
  color: var(--brand-emerald);
  text-decoration: none;
}

.nav-menu-desktop a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--brand-emerald);
  border-radius: var(--radius-full);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  font-family: inherit;
  transition: var(--transition);
}

.nav-dropdown-toggle:hover {
  background-color: var(--surface-base);
  color: var(--brand-emerald);
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
  color: var(--brand-emerald);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  background: #ffffff;
  min-width: 380px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(9, 19, 34, 0.16);
  padding: 14px 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1100;
  margin-top: 12px;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  border-left: 3px solid transparent;
  background-color: transparent;
  transition: all 0.18s ease;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus {
  background-color: #f0fdf4;
  border-left-color: var(--brand-emerald);
  text-decoration: none;
  transform: translateX(4px);
}

.nav-dropdown-item-title {
  font-weight: 800;
  font-size: 0.94rem;
  color: #091322;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.01em;
}

.nav-dropdown-item:hover .nav-dropdown-item-title {
  color: #064e3b;
}

.nav-dropdown-item-desc {
  font-size: 0.82rem;
  color: #475569;
  margin-top: 3px;
  line-height: 1.4;
  padding-left: 25px;
}

.nav-dropdown-item:hover .nav-dropdown-item-desc {
  color: #047857;
  font-weight: 500;
}

.nav-actions-desktop {
  display: none;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface-alt);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-main);
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1080px) {
  .nav-menu-desktop { display: flex; }
  .nav-actions-desktop { display: flex; }
  .mobile-nav-toggle { display: none; }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  border-top: 1px solid var(--border-subtle);
}

.mobile-nav-drawer.is-open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  padding: 0;
}

.mobile-nav-list a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  text-decoration: none;
}

.mobile-nav-list a:hover {
  color: var(--brand-emerald);
}

/* Buttons Design System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1.3;
  text-align: center;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid var(--brand-emerald-light);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-forest) 0%, #065f46 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-forest-hover) 0%, #044e39 100%);
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--brand-emerald) 0%, #047857 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--brand-emerald-hover) 0%, #065f46 100%);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

.btn-secondary {
  background: #ffffff;
  border: 1.5px solid var(--border-medium);
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background: var(--surface-alt);
  border-color: var(--text-muted);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--brand-forest);
  color: var(--brand-forest);
}

.btn-outline:hover {
  background: var(--brand-forest-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-md {
  padding: 11px 20px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-block {
  width: 100%;
}

/* Feature & Value Proposition Icon Badges */
.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-forest-light);
  border: 1px solid var(--brand-forest-border);
  color: var(--brand-forest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
}

.feature-icon-box.icon-amber {
  background: var(--brand-amber-light);
  border-color: var(--brand-amber-border);
  color: var(--brand-amber);
}

.feature-icon-box.icon-emerald {
  background: var(--brand-emerald-light);
  border-color: #86efac;
  color: #15803d;
}

/* Form Legal Consent & Privacy Notice */
.form-consent-text {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
}

.form-consent-text a {
  color: var(--brand-forest);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent-text a:hover {
  color: var(--brand-emerald);
}

/* Badges & Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  max-width: 100%;
  word-break: break-word;
}

.badge-primary {
  background-color: var(--brand-forest-light);
  color: var(--brand-forest);
  border: 1px solid var(--brand-forest-border);
}

.badge-amber {
  background-color: var(--brand-amber-light);
  color: #92400e;
  border: 1px solid var(--brand-amber-border);
}

.badge-cyan {
  background-color: var(--brand-cyan-light);
  color: #0369a1;
  border: 1px solid #bae6fd;
}

.badge-success {
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border: 1px solid #bbf7d0;
}

.badge-danger {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

/* Consumer Warning / Ineligible Banner */
.grant-ineligible-box {
  background: #fef2f2;
  border: 2px solid #ef4444;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 28px 0;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.08);
}

.ineligible-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #991b1b;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.ineligible-header svg {
  color: #ef4444;
  flex-shrink: 0;
}

.grant-ineligible-box p {
  color: #7f1d1d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Hero Section Standard */
.hero {
  padding: 48px 0 56px;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, var(--surface-base) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  width: 100%;
}

/* Elevated 2-Column Homepage Hero */
.homepage-hero {
  padding: 44px 0 56px;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, var(--surface-base) 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  width: 100%;
}

.homepage-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

@media (min-width: 960px) {
  .homepage-hero-grid {
    grid-template-columns: 1.18fr 0.82fr;
    gap: 48px;
  }
}

.homepage-hero-left {
  text-align: left;
}

.homepage-hero-left .hero-title {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.18;
}

@media (min-width: 768px) {
  .homepage-hero-left .hero-title {
    font-size: 2.75rem;
  }
}

.homepage-hero-left .hero-subtitle {
  text-align: left;
  max-width: 600px;
  margin-bottom: 24px;
}

/* Pixel-Perfect Hero Trust Grid */
.hero-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

@media (min-width: 580px) {
  .hero-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px 18px;
  }
}

.hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.90rem;
  color: #334155;
  line-height: 1.35;
}

.hero-trust-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ecfdf5;
  border: 1.5px solid #a7f3d0;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-trust-icon svg {
  width: 13px;
  height: 13px;
}

.hero-quick-card {
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 45px -10px rgba(9, 19, 34, 0.14), 0 0 0 1px rgba(9, 19, 34, 0.04);
  overflow: hidden;
}

.hero-quick-card-header {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  padding: 22px 24px 20px;
  color: #ffffff;
}

.hero-quick-card-body {
  padding: 24px;
  background: #ffffff;
}

/* Pixel-Perfect Segmented Fuel Radio Selector */
.fuel-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.fuel-pill-label {
  position: relative;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 10px 6px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.15s ease;
  user-select: none;
}

.fuel-pill-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.fuel-pill-label:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.fuel-pill-label:has(input[type="radio"]:checked),
.fuel-pill-label.is-active {
  background: #064e3b;
  border-color: #064e3b;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(6, 78, 59, 0.25);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  margin-top: 14px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 28px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.trust-badges-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px dashed var(--border-medium);
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  font-size: 0.86rem;
  color: var(--text-main);
  box-shadow: var(--shadow-subtle);
}

.trust-pill svg {
  color: var(--brand-emerald);
}

/* ==========================================================================
   ELEVATED 2-COLUMN LOCATION HERO COMPONENT
   High-Trust • Authority Visuals • Clean Snapshot
   ========================================================================== */
.location-hero {
  padding: 48px 0 52px;
  background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f1f5f9 100%);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  width: 100%;
}

.location-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 960px) {
  .location-hero-grid {
    grid-template-columns: 1.25fr 0.95fr;
  }
}

.location-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.location-hero-left .hero-title {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 14px;
  font-size: 2.15rem;
}

@media (min-width: 768px) {
  .location-hero-left .hero-title {
    font-size: 2.65rem;
  }
}

.location-hero-left .hero-subtitle {
  text-align: left;
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: var(--text-muted);
  line-height: 1.65;
}

.location-trust-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 26px;
  width: 100%;
}

@media (min-width: 580px) {
  .location-trust-checks {
    grid-template-columns: 1fr 1fr;
  }
}

.location-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.location-check-item svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
}

.location-snapshot-card {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card-hover);
  position: relative;
}

.location-snapshot-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 12px;
}

.location-snapshot-header h3 {
  font-size: 1.05rem;
  margin: 0;
  color: var(--brand-forest);
}

.location-snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.snapshot-stat-cell {
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
}

.snapshot-stat-cell .stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  display: block;
  margin-bottom: 3px;
}

.snapshot-stat-cell .stat-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--brand-forest);
}

.snapshot-housing-box {
  background: var(--brand-forest-light);
  border: 1px solid var(--brand-forest-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 0.86rem;
  color: var(--brand-forest);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Partner Directory Feature Badges */
.partner-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

@media (min-width: 640px) {
  .partner-features-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.partner-feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--transition);
}

.partner-feature-pill:hover {
  background: #ffffff;
  border-color: var(--brand-forest-border);
}

.partner-feature-pill svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
}

/* ==========================================================================
   INTERACTIVE BILL UPLOAD & SAVINGS ANALYZER
   ========================================================================== */
.bill-analyzer-wrapper {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin: 36px 0;
  box-shadow: var(--shadow-card);
}

@media (max-width: 640px) {
  .bill-analyzer-wrapper {
    padding: 20px 16px;
  }
}

.bill-dropzone {
  border: 2px dashed var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  background: var(--surface-base);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 20px;
}

.bill-dropzone:hover {
  border-color: var(--brand-emerald);
  background: var(--brand-forest-light);
}

.bill-dropzone svg {
  color: var(--brand-emerald);
  margin-bottom: 10px;
}

.bill-comparison-results {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  color: #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
}

.bill-comparison-results strong {
  color: #ffffff;
}

.bill-comparison-results span {
  color: #e2e8f0;
}

.bill-results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .bill-results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bill-stat-cell {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 12px 10px;
  text-align: center;
}

.bill-stat-cell .stat-label {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a7f3d0;
  display: block;
  margin-bottom: 4px;
}

.bill-stat-cell .stat-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
}

.bill-cumulative-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  font-size: 0.92rem;
  color: #e2e8f0;
}

.bill-cumulative-strip strong {
  color: #ffffff;
}

/* ==========================================================================
   PREMIUM EDITORIAL VERDICT CARD
   ========================================================================== */
.verdict-card-premium {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-card-hover);
  position: relative;
  overflow: hidden;
}

.verdict-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fef08a;
  text-transform: uppercase;
}

.verdict-badge svg {
  color: #fef08a;
  flex-shrink: 0;
}

.verdict-title {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.verdict-body p {
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.verdict-body strong {
  color: #fef08a;
  font-weight: 800;
}

/* Section Rhythm */
.section {
  padding: 60px 0;
  width: 100%;
  box-sizing: border-box;
}

.section-alt {
  background-color: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-header p {
  font-size: 1.08rem;
}

/* Review Page Structured Metrics Dashboard */
.review-metrics-dashboard {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  padding: 24px 0;
  width: 100%;
}

.review-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .review-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .review-metrics-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.review-metric-card {
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  transition: var(--transition);
}

.review-metric-card:hover {
  background: #ffffff;
  border-color: var(--brand-forest-border);
  box-shadow: var(--shadow-subtle);
}

.review-metric-card .metric-cell-label {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 6px;
}

.review-metric-card .metric-cell-val {
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--brand-forest);
  line-height: 1.2;
}

.review-metric-card .metric-cell-sub {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--brand-emerald);
  margin-top: 4px;
}

/* ==========================================================================
   PREMIUM QUOTE & GRANT ENGINE COMPONENT
   ========================================================================== */
.quote-card-premium {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 30px -5px rgba(9, 19, 34, 0.08), 0 4px 6px -2px rgba(9, 19, 34, 0.04);
  overflow: hidden;
  margin: 40px 0;
  transition: var(--transition);
  box-sizing: border-box;
}

.quote-card-premium:hover {
  border-color: var(--brand-forest-border);
  box-shadow: 0 16px 36px -4px rgba(6, 78, 59, 0.12);
}

.quote-card-header {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  color: #ffffff;
  padding: 28px 24px 22px;
  text-align: center;
  position: relative;
}

.quote-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fef08a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
  display: inline-block;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.quote-card-title {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.25;
  text-wrap: balance;
}

.quote-card-subtitle {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto 16px;
  text-wrap: balance;
  text-wrap: pretty;
}

.quote-trust-strip {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.quote-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
}

.quote-trust-item svg {
  color: #4ade80;
  flex-shrink: 0;
}

.quote-card-body {
  padding: 28px;
  background-color: #ffffff;
}

@media (max-width: 640px) {
  .quote-card-header { padding: 22px 16px; }
  .quote-card-body { padding: 20px 14px; }
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-input-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-main);
}

.form-control-premium {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.96rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: var(--surface-base);
  color: var(--text-main);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-control-premium:focus {
  outline: none;
  background-color: #ffffff;
  border-color: var(--brand-emerald);
  box-shadow: 0 0 0 4px var(--brand-emerald-glow);
}

.form-control-premium::placeholder {
  color: #94a3b8;
  font-size: 0.9rem;
}

.btn-quote-action {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 15px 24px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
  margin-top: 6px;
  margin-bottom: 14px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-quote-action:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.45);
  transform: translateY(-1px);
}

.quote-card-footer-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.45;
}

.quote-card-footer-notice svg {
  color: var(--brand-emerald);
  flex-shrink: 0;
}

/* Responsive Card Grid System with Anti-Blowout */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background-color: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.card:hover {
  border-color: var(--brand-forest-border);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 8px;
  flex-wrap: wrap;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
  word-break: break-word;
}

.card-title a {
  color: var(--text-main);
  text-decoration: none;
}

.card-title a:hover {
  color: var(--brand-emerald);
}

.card-tagline {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}

.card-metrics-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background-color: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 18px;
}

.metric-cell {
  text-align: center;
}

.metric-cell-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 2px;
}

.metric-cell-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-forest);
}

.card-bottom {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

/* Rating Stars Widget */
.rating-stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.9rem;
  color: #eab308;
}

.rating-score-num {
  font-weight: 800;
  color: var(--text-main);
  margin-left: 3px;
}

/* Specification Tables */
.table-specs-wrapper {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  width: 100%;
}

.table-specs {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
  background-color: #ffffff;
}

.table-specs th,
.table-specs td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.table-specs th {
  background-color: var(--surface-alt);
  color: var(--text-main);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.table-specs tr:hover td {
  background-color: #f8fafc;
}

/* Interactive Utility Modules (Calculator / Quiz / Radiator) */
.tool-container {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-hover);
  padding: 30px;
  max-width: 820px;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .tool-container {
    padding: 18px 14px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-help {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.96rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--text-main);
  transition: var(--transition);
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 4px var(--brand-emerald-glow);
}

.form-range {
  width: 100%;
  height: 9px;
  border-radius: 5px;
  background: var(--border-medium);
  outline: none;
  cursor: pointer;
  accent-color: var(--brand-emerald);
}

.range-output {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  font-weight: 700;
  margin-top: 6px;
  color: var(--text-muted);
}

/* FinTech Result Box in Calculator */
.calc-results-card {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  margin: 26px 0;
  box-shadow: 0 10px 25px rgba(6, 78, 59, 0.25);
  position: relative;
  overflow: hidden;
}

.calc-results-card h3 {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 12px;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

@media (min-width: 640px) {
  .calc-grid { grid-template-columns: repeat(3, 1fr); }
}

.calc-stat-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  color: #a7f3d0;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.calc-stat-value {
  font-size: 1.55rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.calc-results-card p {
  color: #e2e8f0;
}

.calc-results-card strong {
  color: #ffffff;
}

.calc-results-card #out-compliance-text strong,
.calc-results-card #calc-carbon-saving {
  color: #fef08a;
  font-weight: 800;
}

.calc-stat-grant {
  color: #fef08a;
}

.calc-stat-net {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  display: inline-block;
}

/* Pros & Cons Grid */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (min-width: 768px) {
  .pros-cons-grid { grid-template-columns: repeat(2, 1fr); }
}

.pros-card {
  background-color: var(--color-success-bg);
  border: 1.5px solid #86efac;
  border-radius: var(--radius-lg);
  padding: 20px;
}

.cons-card {
  background-color: var(--color-danger-bg);
  border: 1.5px solid #fca5a5;
  border-radius: var(--radius-lg);
  padding: 20px;
}

.pros-card h4 { color: var(--color-success); margin-bottom: 12px; font-size: 1.1rem; }
.cons-card h4 { color: var(--color-danger); margin-bottom: 12px; font-size: 1.1rem; }

.pros-card ul, .cons-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros-card li, .cons-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pros-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-success);
  font-weight: 900;
  font-size: 1.05rem;
}

.cons-card li::before {
  content: "✕";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-danger);
  font-weight: 900;
  font-size: 1.05rem;
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-subtle);
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.faq-answer {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: 500;
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--brand-emerald);
}

.breadcrumbs span.separator {
  color: var(--border-medium);
}

/* Nearby Catchment Links */
.nearby-cluster {
  background-color: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 26px;
  margin-top: 48px;
  box-shadow: var(--shadow-subtle);
}

.nearby-cluster h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}

@media (min-width: 640px) {
  .nearby-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 14px;
  }
}

.nearby-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #ffffff;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-main);
  text-decoration: none;
  transition: all 0.18s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  gap: 10px;
  min-width: 0;
}

.nearby-link:hover {
  background-color: #f0fdf4;
  border-color: var(--brand-emerald);
  color: var(--brand-forest);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(6, 78, 59, 0.08);
  text-decoration: none;
}

.nearby-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 2px;
  flex: 1;
}

.nearby-city {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nearby-link:hover .nearby-city {
  color: var(--brand-forest);
}

.nearby-county {
  font-size: 0.76rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nearby-distance-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  white-space: nowrap;
}

.nearby-arrow {
  color: #94a3b8;
  flex-shrink: 0;
  transition: transform 0.18s ease, color 0.18s ease;
}

.nearby-link:hover .nearby-arrow {
  color: var(--brand-emerald);
  transform: translateX(3px);
}

/* Master Footer */
.site-footer {
  background-color: var(--brand-navy);
  color: #94a3b8;
  padding: 64px 0 30px;
  margin-top: auto;
  border-top: 1px solid #1e293b;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 44px;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr; }
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.98rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

.footer-col a:hover {
  color: #34d399;
}

.footer-col a strong,
.site-footer strong,
.legal-notice strong {
  color: #ffffff;
  font-weight: 700;
}

.footer-col a:hover strong {
  color: #34d399;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  font-size: 0.84rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.legal-notice {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 780px;
}

.ico-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  color: #e2e8f0;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   MOBILE STICKY CONVERSION BAR (HIGH-CTR LEAD CAPTURE)
   ========================================================================== */
.sticky-mobile-bar {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(9, 19, 34, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1.5px solid rgba(5, 150, 105, 0.4);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .sticky-mobile-text {
    flex: 1;
    min-width: 0;
  }

  .sticky-mobile-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #34d399;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sticky-mobile-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  .sticky-mobile-btn {
    background: linear-gradient(135deg, var(--brand-emerald) 0%, var(--brand-forest) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.84rem;
    padding: 9px 15px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
  }

  /* Add bottom clearance on mobile to prevent content clipping */
  body {
    padding-bottom: 74px;
  }
}

/* ==========================================================================
   EDITORS' CHOICE & TOOL CALLOUT STYLES
   ========================================================================== */
.editors-choice-box {
  background: var(--surface-card);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.editors-choice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 14px;
}

.editors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.editor-card {
  background: var(--surface-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tool-callout-card {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0;
  box-shadow: var(--shadow-card);
}

.tool-callout-card a {
  background: #ffffff;
  color: var(--brand-forest);
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.tool-callout-card a:hover {
  background: #ecfdf5;
  transform: translateY(-1px);
}

/* ==========================================================================
   NAVRE.ai — Next-Action & Value Routing Protocol (RFC-001) Styles
   ========================================================================== */

.navre-wall-wrapper {
  margin: 32px 0 24px;
}

.navre-wall-header {
  text-align: center;
  margin-bottom: 28px;
}

.navre-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(5, 150, 105, 0.12);
  border: 1px solid rgba(5, 150, 105, 0.3);
  color: #065f46;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.navre-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  animation: navrePulse 2s infinite;
}

@keyframes navrePulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(5, 150, 105, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

.navre-wall-title {
  font-size: 1.85rem;
  color: var(--brand-forest);
  margin: 0 0 10px;
  line-height: 1.25;
}

.navre-wall-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero Action Card */
.navre-card-hero {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  margin-bottom: 24px;
  box-shadow: 0 14px 35px rgba(9, 19, 34, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.navre-card-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
  pointer-events: none;
}

.navre-badge-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.navre-badge {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.navre-badge-hero {
  background: #065f46;
  color: #a7f3d0;
  border: 1px solid #047857;
}

.navre-pill-stat {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fef08a;
  background: rgba(0, 0, 0, 0.25);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.navre-card-hero-title {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.3;
}

.navre-card-hero-desc {
  color: #d1fae5;
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0 0 20px;
  max-width: 680px;
}

.navre-hero-action-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.navre-trust-label {
  font-size: 0.82rem;
  color: #fef08a;
  font-weight: 700;
}

/* Secondary Grid */
.navre-grid-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.navre-card-secondary {
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navre-card-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.navre-badge-secondary {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.navre-pill-stat-light {
  font-size: 0.78rem;
  font-weight: 700;
  color: #047857;
  background: #f0fdf4;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.navre-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 8px 0 8px;
  line-height: 1.35;
}

.navre-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.58;
  margin: 0 0 16px;
}

.navre-card-footer {
  margin-top: auto;
  padding-top: 12px;
}

/* Protocol Footer */
.navre-protocol-footer {
  text-align: center;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border-subtle);
}

.navre-protocol-meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 600;
}

@media (max-width: 640px) {
  .navre-card-hero {
    padding: 24px 20px;
  }
  .navre-card-hero-title {
    font-size: 1.25rem;
  }
  .navre-hero-action-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .navre-hero-action-bar a {
    text-align: center;
  }
  .navre-wall-title {
    font-size: 1.55rem;
  }
}

/* ==========================================================================
   Ranked & Ready (RR) Lead Generation & Conversion Rate Optimization (CRO)
   ========================================================================== */

#quote-form-section {
  scroll-margin-top: 90px;
}

/* Persistent Floating Sticky Mobile Conversion Bar */
.mobile-sticky-grant-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(9, 19, 34, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--brand-emerald);
  padding: 10px 16px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
  transform: translateY(115%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-sticky-grant-bar.is-visible {
  transform: translateY(0);
}

.mobile-sticky-grant-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mobile-sticky-grant-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a7f3d0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-sticky-grant-title {
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-sticky-grant-btn {
  background: var(--brand-emerald);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(5, 150, 105, 0.45);
  transition: var(--transition);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mobile-sticky-grant-btn:hover {
  background: #047857;
  color: #ffffff;
}

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

/* Mid-Article High-Impact Grant Trigger Card */
.mid-article-grant-callout {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  color: #ffffff;
  margin: 36px 0;
  box-shadow: 0 10px 30px rgba(9, 19, 34, 0.16);
  position: relative;
  overflow: hidden;
}

.mid-article-grant-callout::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.22) 0%, rgba(16, 185, 129, 0) 70%);
  pointer-events: none;
}

.mid-article-grant-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.mid-article-grant-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.3;
}

.mid-article-grant-desc {
  color: #d1fae5;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 640px;
}

.mid-article-grant-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fef08a;
}

.mid-article-grant-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.mid-article-grant-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.mid-article-grant-actions .btn-accent {
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

/* ==========================================================================
   HERO POSTCODE MICRO-COMMITMENT COMPONENT
   Above-The-Fold Frictionless Entry Point
   ========================================================================== */
.hero-postcode-box {
  margin-top: 22px;
  margin-bottom: 8px;
  background: #ffffff;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
  max-width: 640px;
}

.hero-postcode-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--brand-forest);
}

.hero-postcode-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 580px) {
  .hero-postcode-form {
    flex-direction: row;
  }
}

.hero-postcode-input-wrap {
  position: relative;
  flex: 1;
}

.hero-postcode-input-wrap svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.hero-postcode-input {
  width: 100%;
  height: 48px;
  padding: 0 14px 0 42px;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  background: #f8fafc;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.hero-postcode-input::placeholder {
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
  color: #94a3b8;
}

.hero-postcode-input:focus {
  outline: none;
  border-color: var(--brand-emerald);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.hero-postcode-btn {
  height: 48px;
  padding: 0 22px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hero-postcode-btn:hover {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45);
}

.hero-postcode-btn:active {
  transform: translateY(0);
}

.hero-postcode-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.hero-postcode-trust span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Postcode applied highlight on form */
@keyframes highlightGreenPulse {
  0% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.6); border-color: #059669; }
  50% { box-shadow: 0 0 0 8px rgba(5, 150, 105, 0.25); border-color: #059669; }
  100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0); }
}

.field-highlight {
  animation: highlightGreenPulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-color: #059669 !important;
}

/* ==========================================================================
   DESKTOP PERSISTENT FLOATING CONVERSION PILL
   Active only on viewport >= 1024px
   ========================================================================== */
.desktop-floating-cta {
  display: none;
}

@media (min-width: 1024px) {
  .desktop-floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #091322;
    border: 1.5px solid #059669;
    border-radius: var(--radius-lg);
    padding: 12px 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .desktop-floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .desktop-cta-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .desktop-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 800;
    color: #6ee7b7;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .desktop-cta-title {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
  }

  .desktop-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #059669;
    color: #ffffff;
    font-size: 0.86rem;
    font-weight: 800;
    padding: 9px 18px;
    border-radius: var(--radius-md);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
    transition: var(--transition);
  }

  .desktop-cta-btn:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.5);
  }

  .desktop-cta-close {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: color 0.15s ease;
  }

  .desktop-cta-close:hover {
    color: #cbd5e1;
  }
}

/* ==========================================================================
   CALCULATOR LEAD GATE & ACOUSTIC CERTIFICATE CALLOUT
   ========================================================================== */
.calc-lead-gate-box {
  background: linear-gradient(135deg, #091322 0%, #064e3b 100%);
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  color: #ffffff;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 640px) {
  .calc-lead-gate-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.calc-lead-gate-content h4 {
  color: #ffffff;
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
}

.calc-lead-gate-content p {
  color: #d1fae5;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 540px;
}

/* ==========================================================================
   DIRECT TARIFF AFFILIATE ACTION CARD
   ========================================================================== */
.tariff-switch-card {
  background: #ffffff;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-top: 24px;
  margin-bottom: 32px;
}

.tariff-switch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.tariff-switch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition);
}

.tariff-switch-btn:hover {
  background: #1e40af;
  color: #ffffff;
}


