/* ── OCCARA SHARED STYLESHEET v2.0 — Accessible Colour Edition ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.80;
  color: #1A2533;
  background: #F4F6F8;
}

/* ── COLOUR TOKENS ──
   Page bg:   #F4F6F8  — very pale blue-grey, warm and restful
   Surface:   #FFFFFF  — pure white cards on the pale ground
   Surface 2: #EEF1F5  — slightly deeper tint for alternating sections
   Border:    #D8DDE6  — visible but quiet
   Text:      #1F2937  — near-black, excellent contrast
   Mid:       #4B5563  — secondary text, AA compliant on white
   Light:     #6B7280  — hints and captions
*/
:root {
  --page:    #F4F6F8;
  --surface: #FFFFFF;
  --surf2:   #EEF1F5;
  --border:  #D8DDE6;
  --text:    #1A2533;
  --mid:     #495668;
  --light:   #64748B;
  --navy:    #1A3A5C;
  --navy-d:  #112438;
  --navy-l:  #D6E4F0;
  --teal:    #1A6B72;
  --teal-d:  #145a60;
  --teal-l:  #D6EEF0;
  --amber:   #B8760A;
  --amber-l: #FDF3E0;
  --coral:   #A8372A;
  --coral-l: #FDECEA;
  --green:   #1D7A4A;
  --green-l: #E2F5EB;
  --plum:    #5B4A8A;
  --plum-l:  #EAE6F7;
  --gold:    #C8A000;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.18;
  color: var(--navy);
}
p { margin-bottom: 0; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 600; }

/* ── LAYOUT ── */
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
section { padding: 64px 0; }

.eyebrow {
  display: block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 14px;
}
.section-lead {
  font-size: 1.02rem;
  color: var(--mid);
  max-width: 640px;
  line-height: 1.8;
  font-weight: 300;
}

hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,160,0,.4), transparent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 3px;
  padding: 12px 24px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .2s;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.13); text-decoration: none; }
.btn-primary       { background: var(--teal);  color: #fff; }
.btn-primary:hover { background: var(--teal-d); }
.btn-navy          { background: var(--navy);  color: #fff; }
.btn-navy:hover    { background: var(--navy-d); }
.btn-outline       { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-gold          { background: var(--gold); color: #fff; }
.btn-gold:hover    { background: #a88800; }
.btn-white         { background: #fff; color: var(--teal); font-weight: 700; }
.btn-white:hover   { background: #f0f0f0; }
.btn svg           { width: 15px; height: 15px; flex-shrink: 0; }
.full-width        { width: 100%; justify-content: center; }

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.18);
}
.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.nav-logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; border-bottom: 2px solid var(--gold); }
.nav-cta-link {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 7px 16px !important;
  border-radius: 2px;
  border-bottom: none !important;
}
.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 1px;
  transition: .3s;
}
.nav-mobile {
  display: none;
  background: var(--navy-d);
  border-top: 1px solid rgba(255,255,255,.1);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 13px 20px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-mobile a:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-mobile .mob-cta {
  margin: 12px 20px 16px;
  display: block;
  text-align: center;
  background: var(--teal);
  color: #fff;
  padding: 12px;
  border-radius: 3px;
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,107,114,.22) 0%, transparent 68%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,160,0,.14);
  border: 1px solid rgba(200,160,0,.36);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 18px;
  max-width: 780px;
}
.hero h1 em { font-style: italic; color: rgba(255,255,255,.72); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.68);
  font-weight: 300;
  max-width: 580px;
  line-height: 1.82;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}
.stat-label {
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 60px 0 52px;
}
.page-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

/* ── SAFE BANNER ── */
.safe-banner {
  background: var(--green);
  color: #fff;
  font-size: .86rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 14px 0;
  text-align: center;
}
.safe-banner .wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.safe-banner span { opacity: .55; }

/* ── SECTION BACKGROUNDS ──
   Alternate between --page and --surface so sections have rhythm
   without stark white-on-white flatness
*/
.bg-page    { background: var(--page); }
.bg-surface { background: var(--surface); }
.bg-surf2   { background: var(--surf2); }
.bg-navy    { background: var(--navy); }
.bg-teal    { background: var(--teal); }

/* ── OT EXPLAINED ── */
.ot-section { background: var(--surface); border-top: 3px solid var(--teal); }
.ot-callout {
  background: var(--teal-l);
  border-left: 5px solid var(--teal);
  padding: 24px 30px;
  margin: 28px 0 24px;
  border-radius: 0 4px 4px 0;
}
.ot-callout p { font-size: .97rem; line-height: 1.8; color: var(--text); margin-bottom: 10px; }
.ot-callout p:last-child { margin-bottom: 0; }
.ot-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--teal);
  line-height: 1.65;
  padding: 18px 24px;
  border-left: 3px solid var(--teal);
  background: rgba(26,107,114,.05);
  margin: 22px 0;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin: 22px 0;
}
.compare-col { padding: 24px 28px; }
.compare-col:first-child { border-right: 1px solid var(--border); }
.compare-col.navy-col { background: var(--navy-l); }
.compare-col.teal-col { background: var(--teal-l); }
.compare-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.navy-col .compare-label { color: var(--navy); }
.teal-col .compare-label { color: var(--teal); }
.compare-col ul { list-style: none; }
.compare-col ul li {
  font-size: .92rem;
  padding: 5px 0 5px 18px;
  position: relative;
  line-height: 1.55;
  color: var(--text);
}
.compare-col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 6px;
  border-radius: 50%;
}
.navy-col ul li::before { background: var(--navy); }
.teal-col ul li::before { background: var(--teal); }
.not-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px 26px;
  margin: 16px 0;
}
.not-box-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.not-box ul { list-style: none; }
.not-box ul li {
  font-size: .92rem;
  padding: 4px 0 4px 20px;
  position: relative;
  color: var(--text);
  line-height: 1.55;
}
.not-box ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-size: .82rem;
  font-weight: 700;
}
.hcpc-note {
  background: var(--green-l);
  border-left: 4px solid var(--green);
  padding: 16px 22px;
  font-size: .9rem;
  color: #145535;
  font-weight: 500;
  line-height: 1.65;
  margin-top: 20px;
  border-radius: 0 3px 3px 0;
}

/* ── CARDS — surfaces on page background ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  transition: box-shadow .2s, transform .15s;
}
.card:hover { box-shadow: 0 8px 32px rgba(26,58,92,.1); transform: translateY(-2px); }
.card-stripe { height: 4px; }
.card-body { padding: 26px 28px; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 24px;
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(26,58,92,.1); }
.service-layout { display: grid; grid-template-columns: 1fr 320px; }
.service-body { padding: 32px 36px; }
.service-aside {
  border-left: 1px solid var(--border);
  background: var(--surf2);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.service-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.42rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.22;
}
.service-strap {
  font-size: .97rem;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-desc {
  font-size: .94rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.includes-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.includes-list { list-style: none; }
.includes-list li {
  font-size: .9rem;
  padding: 4px 0 4px 22px;
  position: relative;
  line-height: 1.5;
  color: var(--text);
}
.includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal);
}
.aside-meta {
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.65;
}
.aside-meta strong {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 5px;
}

/* ── PRICING TABLE ── */
.price-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0;
}
.price-table-header {
  background: var(--navy);
  color: #fff;
  padding: 16px 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.price-table-header-label { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.price-table-header-title { font-size: .9rem; font-weight: 600; }
.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.price-row:last-child { border-bottom: none; }
.price-row.header { background: var(--surf2); font-weight: 600; }
.price-cell {
  padding: 14px 18px;
  font-size: .9rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.price-cell:last-child { border-right: none; }
.price-cell.label { font-weight: 600; color: var(--text); font-size: .82rem; letter-spacing: .02em; }
.price-cell.highlight { background: var(--teal-l); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: var(--navy); line-height: 1; }
.price-note { font-size: .78rem; color: var(--mid); line-height: 1.5; margin-top: 3px; }
.price-why {
  background: var(--surf2);
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  font-size: .84rem;
  color: var(--mid);
  line-height: 1.7;
}
.price-why strong { color: var(--text); }

/* ── OVERVIEW CARDS ── */
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; }

/* ── CQC ── */
.cqc-section { background: var(--navy); }
.cqc-section .eyebrow { color: var(--gold); }
.cqc-section .section-title { color: #fff; }
.cqc-section .section-lead { color: rgba(255,255,255,.62); }
.cqc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 40px; }
.cqc-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 20px 22px;
}
.cqc-qs {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cqc-card p { font-size: .9rem; color: rgba(255,255,255,.67); line-height: 1.65; }

/* ── WHY / SAFE GRID ── */
.safe-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.safe-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px 22px;
}
.safe-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.safe-title { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.safe-card p { font-size: .87rem; color: var(--mid); line-height: 1.68; }

/* ── STEPS ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 40px;
}
.step {
  padding: 28px 22px;
  background: var(--surface);
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy-l);
  line-height: 1;
  margin-bottom: 12px;
}
.step-title { font-size: .93rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.step p { font-size: .86rem; color: var(--mid); line-height: 1.65; }

/* ── CONTACT SECTION ── */
.contact-section { background: var(--teal); }
.contact-section .eyebrow { color: rgba(255,255,255,.62); }
.contact-section .section-title { color: #fff; }
.contact-section .section-lead { color: rgba(255,255,255,.72); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.contact-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  padding: 28px 30px;
}
.contact-card-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 8px;
}
.contact-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: 8px; }
.contact-card p { font-size: .9rem; color: rgba(255,255,255,.68); line-height: 1.68; margin-bottom: 18px; }

/* ── ABOUT ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 32px; }
.value-card {
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  padding: 22px;
  text-align: center;
}
.value-card .v-icon { font-size: 1.4rem; margin-bottom: 8px; }
.value-card .v-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.value-card p { font-size: .83rem; color: rgba(255,255,255,.62); margin-top: 6px; line-height: 1.55; }
.bg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.bg-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bg-item::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ── PRO BOUNDARIES FOOTER ── */
.pro-boundary {
  background: var(--navy-d);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.pro-boundary p {
  font-size: .8rem;
  color: rgba(255,255,255,.44);
  line-height: 1.75;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
.pro-boundary strong { color: rgba(255,255,255,.64); }

/* ── SITE FOOTER ── */
.site-footer { background: var(--navy-d); padding: 32px 0 0; }
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255,255,255,.68);
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-links { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.45); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,.78); }
.footer-bottom { padding: 16px 0; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); line-height: 1.7; text-align: center; }

/* ── CONTACT FORM ── */
label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: .92rem;
  font-family: 'DM Sans', sans-serif;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  background: var(--surface);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
  -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,107,114,.12);
}
textarea { resize: vertical; min-height: 120px; }
.form-row { margin-bottom: 18px; }
.form-row-half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-hint { font-size: .79rem; color: var(--light); margin-top: 5px; }

/* ── UTILITY ── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  section { padding: 52px 0; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .service-layout { grid-template-columns: 1fr; }
  .service-aside { border-left: none; border-top: 1px solid var(--border); }
  .overview-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .cqc-grid { grid-template-columns: 1fr; }
  .safe-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-bottom: 1px solid var(--border); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .bg-grid { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
  .price-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .price-cell:last-child { border-bottom: none; }
  .form-row-half { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .safe-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
