/*
Theme Name: ProVigilant
Theme URI: https://provigilant.co.uk
Author: ProVigilant
Author URI: https://provigilant.co.uk
Description: A custom WordPress theme for ProVigilant — experts in preventative health screening. Matches the original Wix site design with mint, teal, and orange palette.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: provigilant
Tags: health, medical, business, clean, modern, custom-colors, custom-menu, featured-images
*/

/* ============================================
   PROVIGILANT — Matches the Wix Original
   Palette: mint cream, teal, deep navy, orange
   ============================================ */

:root {
  --color-mint: #d8ece6;            /* light mint header & section bg */
  --color-mint-light: #e6f1ed;      /* lighter mint */
  --color-mint-pale: #f2f8f5;       /* very pale */
  --color-teal: #1a6b5e;            /* teal/dark green brand */
  --color-teal-dark: #134d44;       /* hover */
  --color-navy: #0a3a4a;            /* deep navy headings */
  --color-navy-deep: #08303e;       /* darker */
  --color-orange: #e89a2a;          /* book button orange */
  --color-orange-dark: #d4881a;     /* hover */
  --color-cream-bg: #ecf3f0;        /* package card bg */
  --color-white: #ffffff;
  --color-text: #1c3d4a;
  --color-text-light: #4a6873;

  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans-heading: 'Open Sans', sans-serif;

  --container-max: 1340px;
  --container-px: 32px;

  --radius-pill: 100px;
  --radius-sm: 4px;

  --shadow-soft: 0 4px 16px rgba(10,58,74,.06);
  --shadow-card: 0 8px 24px rgba(10,58,74,.08);

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-orange); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans-heading);
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--color-navy);
  margin: 0 0 .5em;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); text-transform: uppercase; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); text-transform: uppercase; letter-spacing: .03em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { margin: 0 0 1em; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  border-radius: var(--radius-pill);
}
.btn-orange {
  background: var(--color-orange);
  color: var(--color-white);
  border-color: var(--color-orange);
  border-radius: var(--radius-pill);
}
.btn-orange:hover {
  background: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  color: var(--color-white);
}
.btn-outline-orange {
  background: transparent;
  color: var(--color-orange);
  border-color: var(--color-orange);
  border-radius: var(--radius-pill);
}
.btn-outline-orange:hover {
  background: var(--color-orange);
  color: var(--color-white);
}
.btn-navy {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
  border-radius: 0;
}
.btn-navy:hover {
  background: var(--color-navy-deep);
  color: var(--color-white);
}
.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
  border-radius: 0;
}
.btn-teal:hover {
  background: var(--color-teal-dark);
  color: var(--color-white);
}
.btn-white {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
  border-radius: 0;
}
.btn-white:hover {
  background: transparent;
  color: var(--color-white);
}
.btn-arrow::after {
  content: '›';
  font-size: 1.3em;
  line-height: 1;
  margin-left: 4px;
}

/* ============================================
   TOP BAR (mint)
   ============================================ */
.top-bar {
  background: var(--color-mint);
  color: var(--color-navy);
  font-size: 14px;
  padding: 14px 0;
}
.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.top-bar a { color: var(--color-navy); }
.top-bar a:hover { color: var(--color-teal); }
.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   HEADER (white with logo + nav)
   ============================================ */
.site-header {
  background: var(--color-white);
  padding: 24px 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-soft);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 16px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo-icon {
  width: 48px;
  height: 48px;
  background: var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}
.site-logo-icon svg { width: 28px; height: 28px; }
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo-name {
  font-family: var(--font-sans-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.site-logo-name .pro { color: var(--color-navy); }
.site-logo-name .vigilant { color: var(--color-teal); }
.site-logo-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--color-orange);
  margin-top: 4px;
}

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

.main-nav {
  border-top: 1px solid var(--color-mint-light);
  padding: 16px 0;
}
.main-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 12px;
  flex-wrap: wrap;
}
.main-nav a {
  display: block;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-navy);
  position: relative;
}
.main-nav a:hover,
.main-nav .current-menu-item > a {
  color: var(--color-orange);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  transition: var(--transition);
}

/* ============================================
   HERO (light background with image right)
   ============================================ */
.hero {
  position: relative;
  background: var(--color-white);
  padding: 80px 0;
  overflow: hidden;
  min-height: 600px;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 480px;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 0;
}
.hero-subtitle {
  color: var(--color-teal);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  line-height: 1.3;
}
.hero-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 16px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-image {
  position: relative;
  height: 560px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-image-icon {
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-teal);
  opacity: .25;
  position: relative;
  z-index: 1;
}
.hero-image-icon svg { width: 100%; height: 100%; }

/* ============================================
   SECTIONS
   ============================================ */
section { padding: 96px 0; }
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 56px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin: 0 auto;
}

/* ============================================
   WHY US (white bg, mint icon cards)
   ============================================ */
.why-us {
  background: var(--color-white);
}
.why-us h2 {
  text-align: center;
  margin-bottom: 56px;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--color-mint);
  padding: 36px 20px;
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  background: var(--color-mint-light);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.3;
}

/* ============================================
   PACKAGES (navy/teal background with mint cards)
   ============================================ */
.packages {
  background: var(--color-navy);
  color: var(--color-white);
}
.packages h2,
.packages .section-header h2 {
  color: var(--color-white);
}
.packages .section-header p { color: rgba(255,255,255,.85); }
.packages-intro {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: left;
}
.packages-intro h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 24px;
}
.packages-intro p {
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.8;
}
.packages-intro .btn { margin-top: 16px; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.package-card {
  background: var(--color-cream-bg);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
}
.package-card-tag {
  display: inline-block;
  padding: 8px 20px;
  font-family: var(--font-sans-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: .02em;
  margin-bottom: 24px;
  align-self: flex-start;
}
.package-card.essential .package-card-tag { background: var(--color-teal); }
.package-card.enhanced .package-card-tag { background: var(--color-navy); }
.package-card.comprehensive .package-card-tag { background: var(--color-orange); }

.package-card h3 {
  color: var(--color-navy);
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  margin-bottom: 32px;
  font-style: normal;
}
.package-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--color-navy);
}
.package-icons svg { width: 40px; height: 40px; }

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  color: var(--color-navy);
}
.package-features > strong,
.package-features .feature-heading {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--color-navy);
}
.package-features > strong:first-child,
.package-features .feature-heading:first-child {
  margin-top: 0;
}
.package-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  line-height: 1.6;
  font-size: 15px;
}
.package-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-navy);
  font-size: 18px;
  line-height: 1;
}
.package-card .same-day {
  font-weight: 400;
  color: var(--color-navy);
  margin-top: 16px;
  margin-bottom: 8px;
}
.package-card .btn {
  align-self: flex-start;
  border-radius: 0;
  margin-top: auto;
}

/* ============================================
   WHAT WE DO (mint background split)
   ============================================ */
.what-we-do {
  background: var(--color-mint);
}
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-content h2 {
  margin-bottom: 32px;
  color: var(--color-navy);
}
.split-content h3 {
  color: var(--color-navy);
  font-family: var(--font-sans-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
}
.split-content h3:first-child { margin-top: 0; }
.split-content p {
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.split-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--color-mint-light), var(--color-mint-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.split-image svg { width: 50%; height: 50%; color: var(--color-teal); opacity: .3; }

/* ============================================
   STEPS (5 steps to proactive health — white bg)
   ============================================ */
.steps { background: var(--color-white); }
.steps h2 { text-align: center; margin-bottom: 64px; }

.steps-diagram {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.steps-diagram::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 1px;
  border-top: 2px dashed var(--color-orange);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  background: var(--color-mint);
  color: var(--color-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  border: 4px solid var(--color-white);
  transition: var(--transition);
  position: relative;
}
.step-card:nth-child(even) .step-number {
  background: var(--color-orange);
  color: var(--color-white);
}
.step-card:hover .step-number {
  transform: scale(1.08);
}
.step-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 8px;
  color: var(--color-navy);
  font-weight: 600;
}

/* ============================================
   WHY CHOOSE A BODY SCAN (mint bg with images)
   ============================================ */
.scans { background: var(--color-mint); }
.scans h2 { text-align: center; margin-bottom: 8px; }
.scans-subtitle {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.scans-find {
  text-align: center;
  margin-bottom: 48px;
  font-size: 1rem;
  color: var(--color-text);
}
.scans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.scan-card {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d8e3e0, #c5d6d1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  transition: var(--transition);
}
.scan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.scan-label {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  color: var(--color-navy);
  padding: 10px 28px;
  font-size: 1.125rem;
  font-weight: 400;
  align-self: center;
  font-family: var(--font-display);
  letter-spacing: .02em;
}
.scan-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.scan-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(216,236,230,.4) 0%, rgba(216,236,230,.7) 100%);
}
.scan-icon svg { width: 60%; height: 60%; color: rgba(10,58,74,.15); }
.scan-learn {
  position: relative;
  z-index: 2;
  color: var(--color-navy);
  font-weight: 600;
  align-self: flex-end;
}
.scan-learn::after { content: ' ›'; }

/* ============================================
   ADDITIONAL SERVICES (white bg, dark cards)
   ============================================ */
.services { background: var(--color-white); }
.services h2 { text-align: center; margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: linear-gradient(180deg, rgba(10,58,74,.85), rgba(10,58,74,.65)), var(--color-teal);
  color: var(--color-white);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card h4 {
  font-family: var(--font-display);
  color: var(--color-white);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: none;
}
.service-card p {
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.service-learn {
  color: var(--color-white);
  font-weight: 600;
  margin-top: auto;
}
.service-learn::after { content: ' ›'; }

/* ============================================
   HAVE A QUESTION (mint bg with orange CTA)
   ============================================ */
.cta-banner {
  background: var(--color-mint);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--color-navy); margin-bottom: 32px; }

/* ============================================
   SUPPORT BANNER (white bg with image)
   ============================================ */
.support { background: var(--color-white); padding: 96px 0; }
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.support-content {
  /* Text content on left */
}
.support h2 {
  color: var(--color-navy);
  margin-bottom: 16px;
}
.support h3 {
  font-family: var(--font-sans-heading);
  color: var(--color-navy);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 32px;
}
.support p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 20px;
}
.support-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--color-mint-light), var(--color-mint-pale));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.support-image svg { width: 50%; height: 50%; color: var(--color-teal); opacity: .3; }

/* ============================================
   FAQ (mint bg with simple list)
   ============================================ */
.faq { background: var(--color-mint); }
.faq h2 { text-align: center; margin-bottom: 16px; font-family: var(--font-display); font-weight: 500; text-transform: none; font-size: 2.5rem; }
.faq-tabs {
  text-align: center;
  margin-bottom: 32px;
}
.faq-tab {
  display: inline-block;
  padding: 8px 0;
  color: var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  font-weight: 400;
  font-size: 1rem;
}
.faq-list { max-width: 1100px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(10,58,74,.2);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--color-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--color-teal); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}
.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-navy);
  border-bottom: 2px solid var(--color-navy);
  transform: translate(-50%, -75%) rotate(45deg);
  transition: var(--transition);
}
.faq-item.active .faq-icon::before {
  transform: translate(-50%, -25%) rotate(-135deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 24px;
  color: var(--color-text);
  line-height: 1.8;
  font-size: 1rem;
}

/* ============================================
   WHERE TO FIND US (white bg with contact strip)
   ============================================ */
.contact-strip { background: var(--color-white); padding: 80px 0 96px; }
.contact-strip h2 { text-align: center; margin-bottom: 56px; font-family: var(--font-sans-heading); font-weight: 700; }
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-strip-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--color-orange);
  color: var(--color-navy);
}
.contact-strip-item:last-child { border-right: none; }
.contact-strip-item a {
  color: var(--color-navy);
  font-size: 1.0625rem;
}
.contact-strip-item a:hover { color: var(--color-teal); }
.contact-strip-item p { margin: 0; font-size: 1.0625rem; line-height: 1.5; }

/* ============================================
   STEP INSIDE (mint bg with map + form)
   ============================================ */
.step-inside { background: var(--color-mint); }
.step-inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.step-inside h2 {
  font-family: var(--font-sans-heading);
  color: var(--color-navy);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}
.step-inside p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 32px;
}
.step-inside-details {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.step-inside-details span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
}
.step-inside-map {
  aspect-ratio: 16/12;
  background: #e8e8e8;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.step-inside-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: #d4d4d4;
}
.step-inside-map::after {
  content: '📍 ProVigilant\A 75 Harley St, London';
  white-space: pre;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  padding: 16px 24px;
  font-size: 14px;
  color: var(--color-navy);
  box-shadow: var(--shadow-card);
  border-radius: 4px;
}

/* ============================================
   FORMS
   ============================================ */
.contact-form {
  margin-top: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--color-navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10,58,74,.2);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  transition: var(--transition);
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; margin-top: 8px; }

/* ============================================
   FOOTER (teal)
   ============================================ */
.site-footer {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-sans-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.3);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a {
  color: var(--color-white);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-col a:hover {
  color: var(--color-orange);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 24px;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.95);
  line-height: 1.8;
}
.footer-bottom strong { color: var(--color-orange); font-weight: 700; }

/* ============================================
   INNER PAGES
   ============================================ */
.page-header {
  background: var(--color-mint);
  padding: 100px 0 80px;
  text-align: center;
}
.page-header h1 {
  color: var(--color-navy);
  margin-bottom: 16px;
}
.page-header p {
  color: var(--color-text);
  font-size: 1.0625rem;
  max-width: 700px;
  margin: 0 auto;
}
.page-content { padding: 80px 0; }
.page-content .container { max-width: 900px; }
.page-content p { font-size: 1.0625rem; line-height: 1.9; color: var(--color-text); }
.page-content h2 { margin-top: 48px; color: var(--color-navy); }
.page-content h2:first-child { margin-top: 0; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  background: var(--color-mint-pale);
  padding: 36px 24px;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.team-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-white);
}
.team-card h4 { margin-bottom: 4px; font-size: 1.25rem; color: var(--color-navy); }
.team-role {
  color: var(--color-orange);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
  font-weight: 600;
}
.team-card p { font-size: 14px; color: var(--color-text); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container,
  .split,
  .scans-grid,
  .step-inside-grid,
  .support-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-diagram { grid-template-columns: repeat(3, 1fr); }
  .steps-diagram::before { display: none; }
  .contact-strip-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip-item { border-right: none; padding: 16px; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .top-bar .container { gap: 16px; font-size: 13px; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .menu-toggle { display: flex; }
  .header-cta .btn-orange,
  .header-cta .btn-outline-orange { padding: 10px 20px; font-size: 13px; }
  .hero { padding: 48px 0; }
  .hero-cta .btn { width: 100%; }
  .why-us-grid { grid-template-columns: 1fr; }
  .steps-diagram { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-col h4 { text-align: center; }
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-item { padding: 16px 0; border-bottom: 1px solid var(--color-orange); border-right: none; }
  .contact-strip-item:last-child { border-bottom: none; }
}
