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

:root {
  --navy: #0a2540;
  --navy-dark: #071829;
  --navy-mid: #0d3454;
  --teal: #0ea5e9;
  --teal-light: #38bdf8;
  --teal-faint: rgba(14,165,233,0.12);
  --teal-border: rgba(14,165,233,0.3);
  --muted: #5a6a82;
  --muted-light: #94adc4;
  --muted-faint: #c8d8e8;
  --bg-light: #f4f6f9;
  --bg-card: #f8fafd;
  --card-border: rgba(10,37,64,0.08);
  --card-hover-border: rgba(14,165,233,0.25);
  --green: #22c55e;
  --green-light: #86efac;
  --icon-bg: #e8f0fb;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: white; color: var(--navy); line-height: 1.6; }

/* Real multi-page layout: every page sits below the fixed nav. */
.page-wrapper { padding-top: 64px; }

/* ─── NAV ──────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10,37,64,0.08);
  transition: box-shadow .2s;
}
#nav.is-scrolled { box-shadow: 0 2px 20px rgba(10,37,64,0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  color: var(--navy); text-decoration: none; display: flex; align-items: center; gap: 8px;
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.nav-logo-icon svg { width: 18px; height: 18px; color: white; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-menu li { position: relative; }
.nav-menu a, .nav-menu button {
  font-family: var(--font-body); font-size: .875rem; font-weight: 500;
  color: var(--muted); text-decoration: none; padding: 6px 12px; border-radius: 8px;
  background: none; border: none; cursor: pointer; display: flex; align-items: center; gap: 4px;
  transition: color .15s, background .15s;
}
.nav-menu a:hover, .nav-menu button:hover { color: var(--navy); background: rgba(10,37,64,0.05); }
.nav-menu a.active { color: var(--navy); font-weight: 600; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background: white;
  border: 1px solid rgba(10,37,64,0.1); border-radius: 12px; box-shadow: 0 8px 32px rgba(10,37,64,0.12);
  min-width: 220px; padding: 6px; margin-top: 6px; z-index: 200; }
/* Invisible bridge so the menu stays open while moving the cursor from
   the top-level button down into the submenu items. */
.dropdown::before { content: ''; position: absolute; left: 0; right: 0; top: -8px; height: 8px; }
.nav-menu li:hover .dropdown,
.nav-menu li:focus-within .dropdown { display: block; }
.dropdown a { padding: 10px 14px; border-radius: 8px; display: block; color: var(--navy); font-weight: 500; }
.dropdown a:hover { background: var(--bg-light); }
.dropdown a.active { background: var(--bg-light); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-call {
  display: flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 10px;
  background: var(--navy); color: white; font-family: var(--font-body); font-weight: 600; font-size: .875rem;
  text-decoration: none; border: 1.5px solid var(--navy); cursor: pointer; transition: background .15s, transform .1s, border-color .15s;
}
.btn-call:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); }
.btn-ghost {
  display: flex; align-items: center; gap: 7px; padding: 9px 18px; border-radius: 10px;
  border: 1.5px solid rgba(10,37,64,0.18); color: var(--navy); font-family: var(--font-body); font-weight: 600; font-size: .875rem;
  text-decoration: none; cursor: pointer; transition: background .15s, border-color .15s;
}
.btn-ghost:hover { background: var(--bg-light); border-color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: .2s; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; z-index: 99;
  background: white; overflow-y: auto; padding: 20px 24px 40px;
  border-top: 1px solid rgba(10,37,64,0.06);
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block; padding: 12px 0; font-size: 1rem; font-weight: 600; color: var(--navy);
  text-decoration: none; border-bottom: 1px solid rgba(10,37,64,0.06);
}
.mobile-nav-section { font-size: .8rem; font-weight: 700; color: var(--teal); letter-spacing: .06em; margin: 16px 0 6px; }
.mobile-nav-sub { display: block; padding: 9px 12px; font-size: .9rem; font-weight: 500; color: var(--muted); text-decoration: none; border-radius: 8px; }
.mobile-nav-sub:hover { background: var(--bg-light); }
.mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-cta .btn-call { justify-content: center; padding: 14px; }

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; background: var(--navy); min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/hero-ict-support.jpg');
  background-size: cover; background-position: center right; opacity: .18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, #0a2540 55%, rgba(10,37,64,0.55) 100%);
}
.hero-inner {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.35);
  color: #7dd3fc; font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.hero h1 {
  font-family: var(--font-display); font-weight: 800; line-height: 1.12; color: white;
  font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 20px;
}
.hero h1 .accent { color: var(--teal-light); }
.hero-sub { color: var(--muted-light); font-size: 1.1rem; line-height: 1.7; max-width: 460px; margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 12px;
  background: var(--teal); color: white; font-weight: 700; font-size: .95rem;
  text-decoration: none; border: none; cursor: pointer; transition: opacity .15s, transform .1s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.25); color: white; font-weight: 600; font-size: .95rem;
  text-decoration: none; transition: background .15s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.hero-social-proof { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.avatars { display: flex; }
.avatars img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid var(--navy); margin-left: -8px; }
.avatars img:first-child { margin-left: 0; }
.social-proof-text { font-size: .875rem; color: var(--muted-light); }
.social-proof-text strong { color: white; }

/* ─── HERO STATUS CARD ──────────────────────────────── */
.hero-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(16px); border-radius: 20px; padding: 24px;
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hero-card-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-card-icon svg { width: 20px; height: 20px; color: white; }
.hero-card-title { color: white; font-weight: 700; font-size: .9rem; }
.hero-card-sub { color: #7dd3fc; font-size: .78rem; }
.status-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--green); margin-left: auto; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.4; } }
.status-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.status-row:last-of-type { border-bottom: none; }
.status-label { display: flex; align-items: center; gap: 10px; color: var(--muted-faint); font-size: .875rem; }
.status-label svg { width: 16px; height: 16px; color: #7dd3fc; }
.status-badge {
  font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  background: rgba(34,197,94,0.15); color: var(--green-light);
}
.hero-card-note {
  margin-top: 16px; padding: 12px 14px; border-radius: 10px;
  background: rgba(14,165,233,0.12); color: #7dd3fc; font-size: .8rem; font-weight: 600;
}

/* ─── TRUST BAR ─────────────────────────────────────── */
.trust-bar { background: white; border-bottom: 1px solid rgba(10,37,64,0.07); }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 32px 24px; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--icon-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-icon svg { width: 20px; height: 20px; color: var(--navy); }
.trust-title { font-weight: 700; font-size: .875rem; color: var(--navy); }
.trust-desc { font-size: .78rem; color: var(--muted); margin-top: 2px; }

/* ─── SECTION SHARED ─────────────────────────────────── */
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--navy); }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .07em; color: var(--teal); margin-bottom: 12px; }
.section-label.light { color: #38bdf8; }
.section-title {
  font-family: var(--font-display); font-weight: 800; line-height: 1.18;
  font-size: clamp(1.75rem, 3.5vw, 2.6rem); color: var(--navy);
}
.section-title.white { color: white; }
.section-sub { margin-top: 14px; font-size: 1.05rem; color: var(--muted); line-height: 1.7; max-width: 600px; }
.section-sub.light { color: var(--muted-light); }
.section-header { margin-bottom: 56px; }

/* ─── POSTCODE SECTION ──────────────────────────────── */
.postcode-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 12px; }
.feature-icon { width: 36px; height: 36px; border-radius: 8px; background: var(--icon-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 16px; height: 16px; color: var(--navy); }
.feature-item strong { font-weight: 700; font-size: .9rem; color: var(--navy); display: block; }
.feature-item span { font-size: .82rem; color: var(--muted); }
.checks { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.checks-spaced { margin-top: 24px; }
.check { display: flex; align-items: center; gap: 6px; font-size: .8rem; color: var(--muted); }
.check svg { width: 16px; height: 16px; color: var(--teal); }

.postcode-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border: 1px solid rgba(14,165,233,0.2); border-radius: 20px; padding: 32px;
}
.postcode-card.is-narrow { max-width: 500px; margin: 0 auto; }
.postcode-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: white; margin-bottom: 8px; }
.postcode-card p { font-size: .875rem; color: var(--muted-light); margin-bottom: 24px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: white; margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 13px 16px; border-radius: 10px; font-size: .95rem;
  background: rgba(255,255,255,0.96); border: 1px solid var(--teal-border);
  color: var(--navy); outline: none; font-family: var(--font-body);
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,233,0.15); }
.btn-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 10px; background: var(--teal); color: white;
  font-weight: 700; font-size: .95rem; border: none; cursor: pointer; margin-top: 14px;
  transition: opacity .15s, transform .1s;
}
.btn-submit:hover { opacity: .9; transform: translateY(-1px); }
.providers-grid { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.providers-label { font-size: .78rem; font-weight: 600; color: var(--muted-light); margin-bottom: 10px; }
.providers { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.provider-tag { padding: 8px 10px; border-radius: 8px; background: rgba(14,165,233,0.15); color: #7dd3fc; font-size: .78rem; font-weight: 600; text-align: center; }

/* ─── SERVICES ──────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: white; border: 1px solid var(--card-border); border-radius: 18px;
  padding: 22px; text-decoration: none; color: inherit; display: block;
  transition: box-shadow .2s, border-color .2s, transform .15s;
  cursor: pointer;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(10,37,64,0.1); border-color: var(--card-hover-border); transform: translateY(-2px); }
.service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.service-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--icon-bg); display: flex; align-items: center; justify-content: center; }
.service-icon svg { width: 22px; height: 22px; color: var(--navy); }
.service-tag { font-size: .72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--icon-bg); color: var(--navy); }
.service-card h3 { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.service-card .more { margin-top: 14px; font-size: .82rem; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 4px; opacity: 0; transition: opacity .15s; }
.service-card:hover .more { opacity: 1; }

/* ─── WHY SECTION ───────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.why-item { display: flex; align-items: flex-start; gap: 12px; }
.why-item svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.why-item strong { display: block; font-weight: 700; font-size: .9rem; color: white; }
.why-item span { font-size: .83rem; color: var(--muted-light); }
.why-images { position: relative; }
.why-img { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.why-img img { width: 100%; height: 260px; object-fit: cover; display: block; }
.why-img + .why-img { margin-top: 12px; }
.why-img + .why-img img { height: 190px; }
.why-badge {
  position: absolute; bottom: -16px; left: -20px;
  background: white; border-radius: 16px; padding: 16px 22px; box-shadow: 0 12px 40px rgba(10,37,64,0.18);
}
.why-badge-sub { font-size: .75rem; font-weight: 600; color: var(--muted); margin-bottom: 2px; }
.why-badge-val { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--navy); line-height: 1; }
.why-badge-caption { font-size: .75rem; font-weight: 600; color: var(--teal); margin-top: 2px; }

/* ─── PROCESS ───────────────────────────────────────── */
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.process-card { background: white; border: 1px solid var(--card-border); border-radius: 18px; padding: 28px; position: relative; }
.process-number { font-family: var(--font-display); font-weight: 800; font-size: 3.5rem; color: var(--icon-bg); line-height: 1; margin-bottom: 16px; }
.process-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.process-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ─── CTA BLOCK ─────────────────────────────────────── */
.section-cta-light { background: var(--bg-light); }
.cta-block { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-block h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,4vw,3.2rem); color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.cta-block p { font-size: 1.1rem; color: var(--muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-dark { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 12px; background: var(--navy); color: white; font-weight: 700; font-size: .95rem; text-decoration: none; border: none; cursor: pointer; transition: background .15s, transform .1s; }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: 12px; border: 2px solid var(--navy); color: var(--navy); font-weight: 700; font-size: .95rem; text-decoration: none; transition: background .15s; }
.btn-outline-dark:hover { background: var(--bg-light); }

/* ─── PAGE HERO ─────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden; background: var(--navy); min-height: 50vh;
  display: flex; align-items: center;
}
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .18; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, #0a2540 55%, rgba(10,37,64,0.6) 100%); }
.page-hero-inner { position: relative; max-width: 1200px; margin: 0 auto; padding: 80px 24px; width: 100%; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px;
  background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.35);
  color: #7dd3fc; font-size: .73rem; font-weight: 700; letter-spacing: .05em; margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800; color: white; line-height: 1.15;
  font-size: clamp(1.8rem, 4vw, 3rem); max-width: 800px; margin-bottom: 18px;
}
.page-hero p { color: var(--muted-light); font-size: 1.05rem; max-width: 580px; line-height: 1.7; }

/* ─── CONTENT SECTIONS ──────────────────────────────── */
.content-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.content-grid-2.tight { gap: 14px; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.content-grid-3.spaced-bottom { margin-bottom: 48px; }
.content-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.content-grid-4.spaced-top { margin-top: 56px; }
.mini-card { background: var(--bg-card); border: 1px solid var(--card-border); border-radius: 14px; padding: 20px; }
.mini-card-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--icon-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.mini-card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.mini-card h3 { font-weight: 700; font-size: .9rem; color: var(--navy); margin-bottom: 6px; }
.mini-card p { font-size: .82rem; color: var(--muted); line-height: 1.55; }
.mini-card .stat-value { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; color: var(--teal); margin-bottom: 6px; }
.content-h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem,3vw,2.2rem); color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.content-p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.check-list { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: var(--muted); }
.check-list li svg { width: 18px; height: 18px; color: var(--teal); flex-shrink: 0; margin-top: 1px; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-radius: 10px; background: var(--bg-card); border: 1px solid var(--card-border); margin-bottom: 8px; }
.price-row .label { font-size: .875rem; font-weight: 600; color: var(--navy); }
.price-row .price { font-size: .875rem; font-weight: 700; color: var(--teal); }
.fine-print { margin-top: 24px; font-size: .85rem; color: var(--muted); }
.image-block { width: 100%; border-radius: 16px; overflow: hidden; }
.image-block img { width: 100%; display: block; object-fit: cover; }
.image-block.tall img { height: 320px; }
.image-block.short img { height: 300px; }

/* ─── CONTACT FORM ──────────────────────────────────── */
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--icon-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; color: var(--navy); }
.contact-info-title { font-weight: 700; font-size: .9rem; color: var(--navy); }
.contact-info-val { font-size: .875rem; color: var(--muted); }
.contact-info-link { color: var(--teal); font-size: .9rem; font-weight: 600; text-decoration: none; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .btn-primary,
.contact-form .btn-call { width: 100%; justify-content: center; padding: 14px; }
.form-input-dark {
  width: 100%; padding: 13px 16px; border-radius: 10px; font-size: .925rem;
  background: white; border: 1.5px solid rgba(10,37,64,0.15); color: var(--navy);
  outline: none; font-family: var(--font-body);
}
.form-input-dark:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
textarea.form-input-dark { min-height: 130px; resize: vertical; }
.form-label-dark { font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; display: block; }
.contact-hours { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.hours-tag { padding: 8px 14px; border-radius: 8px; font-size: .78rem; font-weight: 600; }
.hours-tag.blue { background: rgba(14,165,233,0.12); color: var(--teal); }
.hours-tag.green { background: rgba(34,197,94,0.12); color: #16a34a; }
.forgot-link { font-size: .85rem; color: var(--teal); text-align: center; display: block; margin-top: 8px; text-decoration: none; }

/* ─── LOGIN ─────────────────────────────────────────── */
.login-wrapper { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.login-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ─── FOOTER ────────────────────────────────────────── */
.footer { background: var(--navy-dark); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 64px 24px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: white; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-desc { font-size: .875rem; color: var(--muted-light); max-width: 320px; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--muted-light); }
.footer-contact-item a, .footer-contact-item span { font-size: .875rem; color: var(--muted-light); text-decoration: none; transition: color .15s; }
.footer-contact-item a:hover { color: white; }
.footer-hours { display: flex; gap: 8px; margin-top: 16px; }
.footer-hours-tag { padding: 6px 12px; border-radius: 6px; font-size: .75rem; font-weight: 600; }
.footer-hours-tag.blue { background: rgba(14,165,233,0.12); color: #7dd3fc; }
.footer-hours-tag.green { background: rgba(34,197,94,0.12); color: var(--green-light); }
.footer-col-title { font-size: .875rem; font-weight: 700; color: white; margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: var(--muted-light); text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: white; }
.footer-bottom { margin-top: 48px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-copy { font-size: .78rem; color: #3a4a5c; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .78rem; color: #3a4a5c; text-decoration: none; transition: color .15s; }
.footer-legal a:hover { color: var(--muted-light); }

/* ─── SVG ICONS ─────────────────────────────────────── */
.icon { display: inline-block; }

/* ─── ERROR PAGES ───────────────────────────────────── */
.error-block { padding: 120px 24px; text-align: center; max-width: 720px; margin: 0 auto; }
.error-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem,10vw,7rem); color: var(--teal); line-height: 1; }
.error-block h1 { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: clamp(1.6rem,3vw,2.2rem); margin: 12px 0 10px; }
.error-block p { color: var(--muted); margin-bottom: 28px; font-size: 1.05rem; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .postcode-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .content-grid-2 { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: 1fr; }
  .content-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .why-badge { display: none; }
  .login-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .content-grid-4 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
}
