/* =========================================================
   WALSALL DIGITAL - HIGH-CONVERTING DESIGN SYSTEM & STYLES
   ========================================================= */

:root {
  --bg-dark: #090d16;
  --bg-card: rgba(18, 24, 38, 0.75);
  --bg-card-hover: rgba(28, 38, 58, 0.9);
  --bg-surface: #0f1626;
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-active: rgba(16, 185, 129, 0.5);
  
  --primary: #10b981; /* High-converting conversion green */
  --primary-hover: #059669;
  --primary-glow: rgba(16, 185, 129, 0.35);
  
  --accent: #06b6d4; /* Electric cyan for secondary accents */
  --accent-glow: rgba(6, 182, 212, 0.3);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', var(--font-main);
  
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 25px var(--primary-glow);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   TOP ANNOUNCEMENT BAR
   ========================================================= */
.top-announcement-bar {
  background: linear-gradient(90deg, #0b1329 0%, #11203b 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  padding: 8px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.local-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.live-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
}

.top-call-link {
  color: var(--primary);
  font-weight: 700;
  transition: color 0.2s;
}

.top-call-link:hover {
  color: #34d399;
}

/* =========================================================
   MAIN HEADER & NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 0;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px var(--primary-glow);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #fff;
}

.header-action-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.header-phone-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
}

.header-phone-btn .icon {
  font-size: 1.1rem;
}

.header-phone-btn .phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header-phone-btn .label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.header-phone-btn .number {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

/* =========================================================
   BUTTONS & UI COMPONENTS
   ========================================================= */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #059669 100%);
  color: #052e16;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
  color: #fff;
}

.btn-accent:hover {
  filter: brightness(1.15);
}

.btn-glow {
  animation: subtleGlow 3s infinite alternate;
}

@keyframes subtleGlow {
  0% { box-shadow: 0 0 10px var(--primary-glow); }
  100% { box-shadow: 0 0 25px rgba(16, 185, 129, 0.6); }
}

.btn-large {
  padding: 16px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-subtext {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
}

.btn-sub-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #064e3b;
  margin-top: 2px;
}

.btn-block {
  width: 100%;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* =========================================================
   HERO SECTION (TASK 1)
   ========================================================= */
.hero-section {
  position: relative;
  padding: 60px 0 0;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}

.hero-glow-blob {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.08) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  color: #ffffff;
}

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

.hero-subtitle strong {
  color: #fff;
}

.hero-usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.usp-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary);
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.8rem;
}

.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta-guarantee {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.hero-cta-guarantee strong {
  color: var(--text-muted);
}

/* HERO RIGHT AUDIT CARD */
.audit-preview-box {
  padding: 30px;
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.7);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(9, 13, 22, 0.95) 100%);
}

.card-header-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 12px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
}

.preview-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.preview-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.mini-geo-graphic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.geo-point {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.geo-point .marker {
  background: var(--primary);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.preview-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-cell {
  background: rgba(0, 0, 0, 0.3);
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* =========================================================
   SUB-HERO TRUST BAR (TASK 1)
   ========================================================= */
.subhero-trust-bar {
  background: rgba(15, 22, 38, 0.9);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 0;
}

.trust-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-summary {
  display: flex;
  flex-direction: column;
}

.rating-stars {
  color: #fbbf24;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.rating-text strong {
  color: #fff;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
}

.trust-badges-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-badge-item .badge-icon {
  font-size: 1.5rem;
}

.trust-badge-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-badge-item strong {
  font-size: 0.85rem;
  color: #fff;
}

.trust-badge-item span {
  font-size: 0.72rem;
  color: var(--text-dim);
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  margin-bottom: 45px;
}

.section-header.text-center {
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.02rem;
  color: var(--text-muted);
}

/* =========================================================
   INTERACTIVE CALCULATOR (TASK 2)
   ========================================================= */
.calculator-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
}

.calculator-card {
  padding: 40px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

.calc-progress-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.calc-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  transition: all 0.3s ease;
}

.calc-step-indicator .step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 700;
  transition: all 0.3s ease;
}

.calc-step-indicator.active {
  color: #fff;
}

.calc-step-indicator.active .step-circle {
  background: var(--primary);
  border-color: var(--primary);
  color: #000;
  box-shadow: 0 0 12px var(--primary-glow);
}

.calc-step-indicator.completed .step-circle {
  background: rgba(16, 185, 129, 0.2);
  border-color: var(--primary);
  color: var(--primary);
}

.progress-line {
  flex-grow: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 10px 24px;
}

.calc-step-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.calc-step-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.step-hint {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.services-selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}

.service-select-card {
  position: relative;
  cursor: pointer;
  user-select: none;
}

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

.service-select-card .card-ui {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

.service-select-card input:checked + .card-ui {
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.service-select-card .card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.service-select-card h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-select-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-grow: 1;
}

.pill-tag {
  font-size: 0.7rem;
  font-weight: 700;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  color: #cbd5e1;
}

.service-select-card input:checked + .card-ui .pill-tag {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e2e8f0;
}

.form-control {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

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

select.form-control {
  cursor: pointer;
}

.calc-nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

/* RETAINER HIGHLIGHT IN STEP 3 */
.retainer-highlight-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
}

.retainer-box-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.badge-recommended {
  background: var(--primary);
  color: #000;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.retainer-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}

.retainer-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.retainer-box-body h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.retainer-box-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.check-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

.retainer-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.retainer-toggle input {
  display: none;
}

.toggle-slider {
  width: 44px;
  height: 24px;
  background: #334155;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
}

.toggle-slider::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: 0.3s;
}

.retainer-toggle input:checked + .toggle-slider {
  background: var(--primary);
}

.retainer-toggle input:checked + .toggle-slider::after {
  transform: translateX(20px);
}

.toggle-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

/* STEP 4 RESULTS LAYOUT */
.results-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
}

.instant-estimate-summary {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-glass);
  padding: 28px;
  border-radius: var(--radius-md);
}

.estimate-badge {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.ballpark-price-display {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
}

.price-type {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.monthly-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px;
}

.estimate-timeline {
  font-size: 0.85rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.included-summary-box h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.summary-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  color: #e2e8f0;
}

.summary-bullets li::before {
  content: "• ";
  color: var(--primary);
  font-weight: bold;
}

.lead-capture-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 28px;
  border-radius: var(--radius-md);
}

.form-header h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.form-footer-assurance {
  font-size: 0.72rem;
  color: var(--text-dim);
  margin-top: 14px;
  text-align: center;
}

.calc-success-message {
  text-align: center;
  padding: 30px 10px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.calc-success-message h4 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.calc-success-message p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* =========================================================
   £149/MO PACKAGE BREAKDOWN (TASK 3)
   ========================================================= */
.package-section {
  padding: 90px 0;
  background: #090d16;
}

.featured-package-card {
  position: relative;
  padding: 44px;
  border: 2px solid var(--border-active);
  background: radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), rgba(15, 22, 38, 0.95) 70%);
}

.card-ribbon {
  position: absolute;
  top: 16px;
  right: 24px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-glass);
}

.package-name {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.package-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 550px;
}

.pkg-price-wrap {
  text-align: right;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  display: inline;
  vertical-align: top;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  display: inline;
  color: #fff;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-badge {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

.package-deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 36px;
}

.deliverable-column h4 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pkg-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pkg-feature-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pkg-feature-list li strong {
  color: #e2e8f0;
}

.package-roi-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
}

.roi-icon {
  font-size: 1.6rem;
}

.roi-text {
  font-size: 0.9rem;
  color: #e2e8f0;
}

.package-action-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================================================
   CASE STUDIES & BEFORE/AFTER SLIDER (TASK 3)
   ========================================================= */
.case-studies-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
}

.case-study-showcase {
  padding: 40px;
}

.case-study-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 16px;
}

.client-sector {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
}

.client-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin: 4px 0 10px;
}

.client-context {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 700px;
}

.client-badge span {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.case-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.metric-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.metric-card.highlight-metric {
  border-color: var(--primary);
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.metric-trend {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.metric-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.metric-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* BEFORE / AFTER SLIDER COMPONENT */
.before-after-wrapper {
  margin-bottom: 40px;
}

.slider-header-info {
  margin-bottom: 16px;
}

.slider-header-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.slider-header-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ba-slider-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  user-select: none;
  cursor: ew-resize;
}

.ba-image-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-after {
  background: #0f172a;
  z-index: 1;
}

.ba-before {
  background: #1e1b18;
  z-index: 2;
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--primary);
}

.ba-label {
  position: absolute;
  bottom: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 5;
}

.ba-label-after {
  right: 16px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary);
  border: 1px solid var(--primary);
}

.ba-label-before {
  left: 16px;
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid #ef4444;
}

.mockup-content {
  padding: 30px;
  height: 100%;
  width: 100%;
  min-width: 700px;
  display: flex;
  flex-direction: column;
}

.mockup-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 700;
}

.badge-status-green {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-status-red {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  padding: 4px 10px;
  border-radius: 4px;
}

.speed-score {
  color: var(--text-muted);
}

.mockup-hero-wireframe {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 24px;
  flex-grow: 1;
}

.wireframe-tag {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.wireframe-tag.old {
  color: #94a3b8;
}

.mockup-hero-wireframe h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.wireframe-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.wf-btn-primary {
  background: var(--primary);
  color: #000;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
}

.wf-phone {
  font-weight: 700;
  font-size: 0.85rem;
}

.wf-features {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.old-layout {
  filter: grayscale(0.6);
  opacity: 0.85;
}

.old-title {
  color: #cbd5e1;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.old-p {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 14px;
}

.wf-btn-old {
  display: inline-block;
  background: #475569;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.old-warning {
  font-size: 0.75rem;
  color: #f87171;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 40px;
  margin-left: -20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-handle-line {
  width: 3px;
  height: 100%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
}

.ba-handle-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 0 15px var(--primary-glow);
}

.slider-instruction {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.case-study-quote {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-stars {
  color: #fbbf24;
  margin-bottom: 8px;
}

.case-study-quote blockquote {
  font-style: italic;
  font-size: 0.98rem;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.quote-author {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.quote-author strong {
  color: #fff;
}

/* =========================================================
   LOCAL COVERAGE GRID
   ========================================================= */
.coverage-section {
  padding: 70px 0;
  border-top: 1px solid var(--border-glass);
}

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

.town-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.town-card h4 {
  font-size: 1.05rem;
  color: #fff;
}

.town-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-grow: 1;
}

.town-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(6, 182, 212, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
}

/* =========================================================
   FAQ & FINAL CTA
   ========================================================= */
.faq-cta-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.final-cta-banner {
  padding: 50px;
  border-color: rgba(16, 185, 129, 0.4);
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.12) 0%, rgba(15, 22, 38, 0.95) 80%);
}

.final-cta-banner h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.final-cta-banner p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 30px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #05080f;
  border-top: 1px solid var(--border-glass);
  padding: 60px 0 30px;
  font-size: 0.88rem;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h5 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 8px;
}

.company-reg {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* =========================================================
   STICKY MOBILE BAR
   ========================================================= */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 13, 22, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-glass);
  padding: 10px 16px;
  z-index: 999;
}

.mob-btn {
  flex: 1;
  text-align: center;
  padding: 12px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.88rem;
}

.mob-call {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 8px;
}

.mob-audit {
  background: var(--primary);
  color: #000;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
  }
  .main-nav {
    display: none;
  }
  .results-layout {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .header-phone-btn {
    display: none;
  }
  .package-header {
    flex-direction: column;
    gap: 16px;
  }
  .pkg-price-wrap {
    text-align: left;
  }
  .mobile-sticky-bar {
    display: flex;
  }
  body {
    padding-bottom: 60px;
  }
}
