/* ============================================
   Sutton Security Services — Stylesheet
   Mobile-first, responsive, accessible
   ============================================ */

:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --surface-soft: #fbfbfa;
  --text: #0f1b33;
  --text-strong: #142650;
  --muted: #4d5e7a;
  --border: #d7dde6;
  --accent: #e31b23;
  --accent-dark: #b9161d;
  --footer: #eef1f5;
  --max: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 12px 32px rgba(15, 27, 51, 0.08);
  --shadow-soft: 0 8px 24px rgba(15, 27, 51, 0.05);
}

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

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

body {
  margin: 0;
  font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ============================================
   Header / Navigation
   ============================================ */

.topbar {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: saturate(180%) blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand img {
  height: 62px;
  width: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 18px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 21px;
  font-weight: 700;
  color: var(--text);
}
.phone-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  flex: 0 0 auto;
}

/* Mobile-only items - hidden by default on desktop */
.nav-mobile-phone,
.nav-mobile-cta {
  display: none;
}

/* Hamburger button — hidden on desktop */
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 99px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  display: block;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  background: url('assets/hero-home.png') center/cover no-repeat;
  min-height: 590px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.36);
}
.hero-inner {
  position: relative;
  width: min(620px, 100%);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(30, 46, 79, 0.12);
  padding: 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: fadeUp 700ms ease both;
}

.kicker {
  margin: 0 0 12px;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(35px, 4.4vw, 58px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--text-strong);
}
.hero h1::after,
.section-title::after,
.page-hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 99px;
}
.hero p,
.page-hero p {
  margin: 0 0 26px;
  font-size: 20px;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 11px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}
.button:focus-visible {
  outline: 3px solid rgba(227, 27, 35, 0.35);
  outline-offset: 2px;
}
.button-secondary {
  background: #fff;
  color: var(--text);
}
.button-secondary:hover {
  background: var(--surface-soft);
  transform: translateY(-1px);
}

/* ============================================
   Sections / Cards
   ============================================ */

.page-section { padding: 62px 0; }

.intro-grid,
.services-grid,
.about-grid,
.feature-grid {
  display: grid;
  gap: 28px;
}
.intro-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.feature-grid { grid-template-columns: repeat(3, 1fr); margin-top: 28px; }

.card,
.about-box {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  animation: fadeUp 650ms ease both;
}

.section-title { font-size: clamp(30px, 3vw, 42px); margin: 0 0 14px; font-weight: 700; }
.lead { font-size: 19px; color: var(--muted); }

.page-hero { padding: 64px 0 28px; }
.page-hero.simple { background: #fff; border-bottom: 1px solid var(--border); }

.about-grid { grid-template-columns: 1fr; max-width: 860px; }
.about-box h2 { margin: 0 0 14px; font-weight: 700; color: var(--text-strong); }

/* ============================================
   Contact page — method cards
   ============================================ */

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  animation: fadeUp 650ms ease both;
  text-decoration: none;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 27, 51, 0.10);
  border-color: rgba(227, 27, 35, 0.35);
  outline: none;
}

.contact-method-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(227, 27, 35, 0.08);
  color: var(--accent);
}
.contact-method-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}
.contact-method-icon-whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #1faf52;
}
.contact-method-icon-whatsapp svg {
  width: 36px;
  height: 36px;
}

.contact-method-title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
}

.contact-method-value {
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--text);
  word-break: break-word;
  font-weight: 500;
}

.contact-method-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 14px;
  border-top: 1px solid var(--border);
  width: 100%;
}

@media (max-width: 860px) {
  .contact-methods {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .contact-method {
    padding: 32px 24px;
  }
}

/* ============================================
   Services page
   ============================================ */

.services-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.94) 0%, rgba(255,255,255,0.88) 42%, rgba(255,255,255,0.25) 100%),
    url('assets/hero-home.png') center center / cover no-repeat;
  padding: 64px 0;
}
.services-hero-panel {
  width: min(760px, 100%);
}
.services-hero-panel h1 {
  margin: 0 0 20px;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}
.services-hero-panel > p {
  margin: 0 0 18px;
  max-width: 720px;
  font-size: 18px;
  line-height: 1.75;
  color: #39506f;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 14px 26px;
  margin: 30px 0 0;
  max-width: 760px;
}
.hero-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-strong);
}
.hero-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex: 0 0 22px;
  font-weight: 700;
}

.services-section { padding: 56px 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.service-row.reverse .service-copy { order: 2; }
.service-row.reverse .service-image { order: 1; }

.service-copy {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}
.service-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-strong);
}
.service-copy p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
}

.service-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #f4f6fa;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  padding: 20px;
}
.service-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
}

.services-cta { padding: 8px 0 24px; }
.services-cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.services-cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.6vw, 30px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-strong);
}
.services-cta-box p {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--footer);
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.15fr 0.55fr;
  gap: 30px;
  padding: 40px 0 30px;
}
.footer-title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 19px;
  color: var(--text-strong);
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list li {
  margin-bottom: 8px;
  color: var(--muted);
}
.footer-list a:hover { color: var(--accent); }
.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p { color: var(--muted); margin: 0 0 10px; }
.footer-company {
  margin-top: 14px;
  font-weight: 700;
  color: var(--text);
}

.social-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  transition: transform 180ms ease, background 180ms ease;
}
.social-link:hover {
  background: #1877f2;
  transform: translateY(-2px);
}
.social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footnote {
  border-top: 1px solid var(--border);
  padding: 16px 0 22px;
  color: var(--muted);
  font-size: 15px;
}

/* ============================================
   WhatsApp floating button
   ============================================ */

.wa-float {
  position: fixed;
  right: 18px;
  right: max(18px, env(safe-area-inset-right, 18px));
  bottom: 18px;
  bottom: max(18px, env(safe-area-inset-bottom, 18px));
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.32), 0 2px 6px rgba(0, 0, 0, 0.18);
  border: 3px solid #fff;
  transition: transform 180ms ease;
  visibility: visible !important;
  opacity: 1 !important;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  display: block;
}

/* ============================================
   Animations
   ============================================ */

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

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

/* ============================================
   RESPONSIVE — Tablet (≤ 980px)
   ============================================ */

@media (max-width: 980px) {
  .nav {
    min-height: 76px;
    gap: 12px;
  }
  .brand img { height: 50px; }

  /* Hide desktop nav items, show hamburger */
  .nav-right > .phone-link {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }

  /* Mobile menu panel */
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 76px);
    height: calc(100dvh - 76px);
    width: 100vw;
    max-width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px;
    border-top: 1px solid var(--border);
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 90;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: 0; }
  .nav-links a {
    display: block;
    padding: 20px 4px;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 0;
  }

  /* Show phone number INSIDE the mobile menu */
  .nav-mobile-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 4px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-strong);
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-mobile-phone .phone-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
  }

  /* CTA button at bottom of mobile menu */
  .nav-mobile-cta {
    display: flex;
    margin-top: 24px;
    padding: 0 4px;
    border-bottom: 0 !important;
  }
  .nav-links li.nav-mobile-cta a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: #fff !important;
    font-size: 18px;
    padding: 0 24px;
    min-height: 56px;
    border-bottom: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Layout collapses */
  .hero { min-height: 540px; }
  .hero-inner { padding: 28px; }
  .intro-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { gap: 22px; }

  /* Services page */
  .service-row,
  .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .service-row.reverse .service-copy,
  .service-row.reverse .service-image {
    order: initial;
  }
  .service-image {
    height: 340px;
  }
  .hero-checks {
    grid-template-columns: 1fr;
  }
  .services-hero {
    min-height: auto;
    padding: 56px 0;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.88) 48%, rgba(255,255,255,0.72) 100%),
      url('assets/hero-home.png') center center / cover no-repeat;
  }
}

/* ============================================
   RESPONSIVE — Mobile (≤ 640px)
   ============================================ */

@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 24px)); }

  .nav { gap: 10px; min-height: 70px; }
  .brand img { height: 44px; }

  .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    padding: 20px;
  }
  .nav-links a { font-size: 20px; padding: 18px 4px; }
  .nav-mobile-phone { font-size: 20px; padding: 18px 4px; }

  .hero {
    min-height: 520px;
    background-position: center;
  }
  .hero-inner {
    padding: 24px;
    border-radius: 22px;
  }
  .hero h1,
  .page-hero h1 { font-size: 32px; }
  .hero p,
  .page-hero p,
  .lead { font-size: 17px; }

  .services-hero-panel h1 { font-size: 36px; }
  .services-hero-panel > p { font-size: 16px; }

  .service-copy,
  .services-cta-box {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .service-copy h2 { font-size: 24px; }
  .service-copy p,
  .services-cta-box p { font-size: 16px; }
  .service-image {
    height: 300px;
    padding: 14px;
  }

  .page-section { padding: 44px 0; }
  .services-section { padding: 28px 0; }

  .wa-float {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }
  .wa-float svg {
    width: 32px;
    height: 32px;
  }

  .footer-brand img { height: 44px; }
}

/* ============================================
   Small phones (≤ 380px)
   ============================================ */

@media (max-width: 380px) {
  .brand img { height: 38px; }
  .hero h1 { font-size: 28px; }
  .services-hero-panel h1 { font-size: 32px; }
  .button,
  .button-secondary {
    width: 100%;
  }
  .actions { flex-direction: column; }
}

/* ============================================
   USP comparison / no-subscription page
   ============================================ */

.usp-hero {
  background: linear-gradient(135deg, #fff5f5 0%, #fbfbfa 100%);
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--border);
}
.usp-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}
.usp-hero .lead {
  margin: 0 0 28px;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
}

.usp-key-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}
.usp-key-point {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-soft);
}
.usp-key-point-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 14px;
}
.usp-key-point h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
}
.usp-key-point p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.comparison-table {
  margin: 30px 0 0;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.comparison-table thead {
  background: var(--text-strong);
  color: #fff;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  vertical-align: top;
}
.comparison-table th {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  font-weight: 700;
  color: var(--text-strong);
}
.comparison-table tbody tr:last-child td { border-bottom: 0; }
.comparison-table .yes { color: #1faf52; font-weight: 700; }
.comparison-table .no { color: #c62828; font-weight: 700; }
.comparison-table-wrap { overflow-x: auto; }

/* ============================================
   Location page
   ============================================ */

.location-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.4) 100%),
    url('assets/hero-home.png') center center / cover no-repeat;
  padding: 80px 0 56px;
}
.location-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-strong);
  max-width: 760px;
}
.location-hero .lead {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 24px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 28px 0 0;
}
.area-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}
.area-card h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-strong);
}
.area-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.area-postcode {
  display: inline-block;
  background: rgba(227, 27, 35, 0.08);
  color: var(--accent);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.content-section {
  padding: 56px 0;
}
.content-section + .content-section { padding-top: 0; }
.content-section h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-strong);
}
.content-section p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
  max-width: 800px;
}
.content-section ul {
  margin: 0 0 16px;
  padding-left: 24px;
  max-width: 800px;
}
.content-section ul li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 6px;
}

/* ============================================
   Blog index
   ============================================ */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin: 0;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  color: var(--text);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 27, 51, 0.10);
  border-color: rgba(227, 27, 35, 0.35);
}
.blog-card .blog-tag {
  display: inline-block;
  background: rgba(227, 27, 35, 0.08);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}
.blog-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-strong);
}
.blog-card p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  flex-grow: 1;
}
.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
}
.blog-card-cta::after {
  content: "→";
  transition: transform 180ms ease;
}
.blog-card:hover .blog-card-cta::after {
  transform: translateX(3px);
}

/* ============================================
   Blog post layout
   ============================================ */

.blog-post {
  padding: 56px 0;
}
.blog-post-header {
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}
.blog-post-header .blog-tag {
  display: inline-block;
  background: rgba(227, 27, 35, 0.08);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.blog-post-header h1 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.blog-post-header .blog-meta {
  color: var(--muted);
  font-size: 15px;
}
.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
}
.blog-post-body p,
.blog-post-body ul,
.blog-post-body ol {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin: 0 0 18px;
}
.blog-post-body p { color: #2b3a55; }
.blog-post-body h2 {
  margin: 36px 0 14px;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text-strong);
}
.blog-post-body h3 {
  margin: 28px 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-strong);
}
.blog-post-body ul,
.blog-post-body ol {
  padding-left: 26px;
}
.blog-post-body ul li,
.blog-post-body ol li {
  margin-bottom: 8px;
}
.blog-post-body strong { color: var(--text-strong); }
.blog-post-body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.blog-post-body a:hover { color: var(--accent-dark); }
.blog-post-body blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--accent);
  background: var(--surface-soft);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-strong);
  border-radius: 8px;
}

.blog-cta {
  margin: 50px auto 0;
  max-width: 760px;
  background: var(--text-strong);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.blog-cta h2 {
  margin: 0 0 12px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.blog-cta p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.blog-cta .button {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.blog-cta .button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.blog-cta .button-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  margin-left: 8px;
}
.blog-cta .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 860px) {
  .usp-key-points {
    grid-template-columns: 1fr;
  }
  .usp-hero,
  .location-hero {
    padding: 56px 0 36px;
  }
  .blog-post-body p,
  .blog-post-body ul,
  .blog-post-body ol { font-size: 17px; }
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
  .blog-cta {
    padding: 28px 22px;
  }
  .blog-cta .button-secondary {
    margin-left: 0;
    margin-top: 10px;
  }
}

/* Google rating badge — floats top-right on every page (below the header) */
.google-badge {
  position: fixed;
  top: 108px;
  right: 18px;
  right: max(18px, env(safe-area-inset-right, 18px));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid rgba(15, 27, 51, 0.10);
  border-radius: 99px;
  padding: 9px 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18), 0 2px 6px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.google-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.gb-g { display: inline-flex; }
.gb-g svg { width: 19px; height: 19px; display: block; }
.gb-stars { color: #fbbc05; font-size: 17px; letter-spacing: 1px; }
@media (max-width: 640px) {
  .google-badge { top: 70px; right: 12px; padding: 7px 11px; gap: 6px; }
  .gb-g svg { width: 16px; height: 16px; }
  .gb-stars { font-size: 15px; }
}

/* Hero "from £399" price line */
.hero-price { margin: 0 0 24px; font-size: 18px; color: var(--text-strong); }
.hero-price strong { color: var(--accent); font-size: 23px; font-weight: 700; }
