*, *::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-img {
  display: block; height: 40px; width: auto; max-width: 220px;
}
.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; }
.nav-menu a.nav-home-link { padding: 6px 10px; }
.nav-menu a.nav-home-link svg { width: 20px; height: 20px; display: block; }
.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); }
.btn-nav-phone {
  display: inline-flex; align-items: center; gap: 10px; padding: 6px 20px 6px 6px; border-radius: 999px;
  background: var(--teal); color: white; font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1.5px solid var(--teal); cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s, box-shadow .15s;
  box-shadow: 0 2px 8px rgba(14,165,233,0.25);
  white-space: nowrap;
}
.btn-nav-phone:hover { background: var(--teal-light); border-color: var(--teal-light); transform: translateY(-1px); }
.btn-nav-phone .btn-nav-phone-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: white; flex-shrink: 0;
}
.btn-nav-phone .btn-nav-phone-icon svg { width: 15px; height: 15px; }
.btn-nav-login {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px; border-radius: 999px;
  background: white; color: var(--navy); font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  text-decoration: none; border: 1.5px solid rgba(10,37,64,0.12); cursor: pointer;
  transition: background .15s, border-color .15s, transform .1s;
  white-space: nowrap;
}
.btn-nav-login:hover { background: var(--bg-light); border-color: rgba(10,37,64,0.25); transform: translateY(-1px); }
.btn-nav-login svg { width: 16px; height: 16px; color: var(--teal); }
.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; }
.mobile-cta .btn-nav-phone, .mobile-cta .btn-nav-login { justify-content: center; padding: 10px 18px; }

/* ─── 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: .55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(10,37,64,0.78) 30%, rgba(10,37,64,0.35) 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: 40px 0; }
.section.section-tight { padding: 64px 0 16px; }
.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: 1000px; }
.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: .55; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,37,64,0.72) 30%, rgba(10,37,64,0.4) 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; align-items: stretch; }
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.content-grid-3.spaced-bottom { margin-bottom: 48px; }
.content-grid-3.spaced-top { margin-top: 32px; }
.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; }
.content-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.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 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: flex-start; gap: 10px; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--muted-light); flex-shrink: 0; margin-top: 2px; }
.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-address { display: flex; flex-direction: column; gap: 2px; }
.footer-address-name { font-weight: 700; 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; }

/* ─── PRICING ─────────────────────────────────────────── */
.pricing-group { margin-top: 40px; }
.pricing-group:first-of-type { margin-top: 0; }
.pricing-group-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
  color: var(--navy); margin-bottom: 20px; text-align: center;
  position: relative; padding-bottom: 12px;
}
.pricing-group-title::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 56px; height: 3px; border-radius: 2px;
  background: var(--pricing-accent, var(--teal));
}
.pricing-group-note {
  text-align: center; color: var(--muted); font-size: 0.95rem;
  max-width: 1000px; margin: -8px auto 20px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: white; border: 1px solid var(--card-border); border-radius: 14px;
  padding: 0; display: flex; flex-direction: column; overflow: hidden;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.price-card:hover {
  border-color: var(--pricing-accent, var(--card-hover-border));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10,37,64,0.08);
}
.price-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; padding: 18px 20px;
  background: var(--pricing-accent, var(--teal));
  color: white;
}
.price-card-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: white; margin: 0;
}
.price-card-badge {
  font-size: .7rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.18); color: white;
  border: 1px solid rgba(255,255,255,0.35);
  white-space: nowrap; letter-spacing: .02em; text-transform: uppercase;
}
.price-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-table {
  width: 100%; border-collapse: collapse; margin: 0;
}
.price-table thead th {
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
  text-align: left; padding: 12px 16px;
  background: var(--pricing-accent-faint, var(--teal-faint));
  border-bottom: 1px solid var(--card-border);
}
.price-table thead th.price-col { text-align: right; }
.price-table tbody tr { transition: background .15s; }
.price-table tbody tr:nth-child(even) { background: rgba(10,37,64,0.025); }
.price-table tbody tr:hover { background: var(--pricing-accent-faint, var(--teal-faint)); }
.price-table tbody td {
  padding: 12px 16px; border-bottom: 1px solid var(--card-border);
  vertical-align: middle;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td.price-speed {
  font-size: .95rem; font-weight: 600; color: var(--navy);
}
.price-table td.price-amount {
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  color: var(--pricing-accent, var(--teal)); text-align: right; white-space: nowrap;
}

/* Accent variants per pricing group */
.pricing-accent-teal {
  --pricing-accent: var(--teal);
  --pricing-accent-faint: var(--teal-faint);
}
.pricing-accent-indigo {
  --pricing-accent: #6366f1;
  --pricing-accent-faint: rgba(99,102,241,0.10);
}
.pricing-accent-navy {
  --pricing-accent: var(--navy);
  --pricing-accent-faint: rgba(10,37,64,0.08);
}

/* Per-SLA accent variants (override the group accent on individual cards) */
.price-card-sla-best-effort {
  --pricing-accent: #d97a2c;
  --pricing-accent-faint: rgba(217,122,44,0.10);
}
.price-card-sla-next-business {
  --pricing-accent: #2f6fb5;
  --pricing-accent-faint: rgba(47,111,181,0.10);
}
.price-card-sla-24x7 {
  --pricing-accent: #3a8a5b;
  --pricing-accent-faint: rgba(58,138,91,0.10);
}

.pricing-footnote {
  text-align: center; font-size: .8rem; color: var(--muted);
  margin-top: 28px; font-style: italic;
}

.pricing-options {
  max-width: 760px; margin: 32px auto 0; padding: 20px 24px;
  background: var(--card-bg, #fff);
  border: 1px solid var(--card-border);
  border-radius: 12px;
}
.pricing-options-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--navy); margin: 0 0 10px;
}
.pricing-options-list {
  margin: 0; padding-left: 20px; color: var(--navy);
  font-size: .95rem; line-height: 1.6;
}
.pricing-options-list li { margin: 4px 0; }

.pricing-options-tables {
  display: grid; gap: 20px; margin-top: 14px;
}
.pricing-options-table-head {
  display: flex; align-items: baseline; gap: 10px;
  flex-wrap: wrap; margin: 4px 0 8px;
}
.pricing-options-table-title {
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  color: var(--navy); margin: 0;
}
.pricing-options-table-sub {
  font-size: .82rem; color: var(--muted);
}
.price-table.option-table td:not(.price-amount) {
  color: var(--navy);
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@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; }
  .footer-desc { max-width: none; }
  .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; }
}

/* ─── POSTCODECHECKER ──────────────────────────────────── */
.postcode-row { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin-top: 10px; }
@media (max-width: 480px) {
  .postcode-row { grid-template-columns: 1fr; }
}
.checker-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) {
  .checker-layout { grid-template-columns: 1fr; }
}
.checker-summary {
  margin-top: 24px; padding: 16px 18px; border-radius: 12px;
  background: var(--icon-bg); border: 1px solid var(--card-border);
}
.checker-summary-label { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.checker-summary-value { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--navy); margin-top: 4px; }
.checker-section-title { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--navy); margin: 32px 0 14px; }
.checker-results { display: flex; flex-direction: column; gap: 14px; }
.checker-result {
  background: white; border: 1px solid var(--card-border); border-radius: 16px;
  padding: 20px 22px; box-shadow: 0 2px 12px rgba(10,37,64,0.04);
}
.checker-result-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 8px; }
.checker-result-street { font-weight: 700; font-size: 1rem; color: var(--navy); }
.checker-result-city { font-size: .85rem; color: var(--muted); margin-top: 2px; }
.checker-result-note { margin: 0 0 8px; font-size: .9rem; color: var(--muted); }
.checker-badge {
  display: inline-flex; align-items: center; padding: 5px 10px; border-radius: 999px;
  font-size: .72rem; font-weight: 700; white-space: nowrap;
}
.checker-badge.is-on  { background: rgba(22,163,74,0.14); color: #15803d; }
.checker-badge.is-off { background: rgba(220,38,38,0.12); color: #b91c1c; }
.checker-result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 18px; margin: 0; }
.checker-result-grid div { display: flex; flex-direction: column; }
.checker-result-grid dt { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.checker-result-grid dd { margin: 2px 0 0; font-size: .9rem; color: var(--navy); font-weight: 600; }
@media (max-width: 480px) {
  .checker-result-grid { grid-template-columns: 1fr; }
}
.checker-error {
  margin-top: 24px; padding: 16px 18px; border-radius: 12px;
  background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.25); color: #991b1b;
}
.checker-error ul { margin: 0; padding-left: 18px; }
.checker-error a:not(.btn-nav-phone), .checker-link { color: var(--teal); font-weight: 600; text-decoration: none; }
.checker-error a:not(.btn-nav-phone):hover, .checker-link:hover { text-decoration: underline; }
.checker-error .btn-nav-phone, .checker-error .btn-nav-phone .btn-nav-phone-icon { color: white; }
.checker-empty {
  margin-top: 24px; padding: 18px 20px; border-radius: 12px;
  background: var(--icon-bg); border: 1px solid var(--card-border); color: var(--muted);
}

/* ─── POSTCODECHECKER — extended provider/product blocks ─────────── */
.checker-badge.is-warn { background: rgba(234,179,8,0.18); color: #92400e; }
.checker-mini-badge {
  display: inline-block; margin-left: 8px; padding: 2px 8px;
  border-radius: 999px; font-size: .65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .03em;
  background: rgba(10,37,64,0.08); color: var(--navy); vertical-align: middle;
}
.checker-mini-badge.is-on   { background: rgba(14,165,233,0.14); color: var(--teal); }
.checker-mini-badge.is-warn { background: rgba(234,179,8,0.18); color: #92400e; }
.checker-mini-badge.is-off  { background: rgba(10,37,64,0.08); color: var(--navy); }

.checker-suboptions { margin-top: 10px; padding-top: 10px; border-top: 1px dashed var(--card-border); }
.checker-suboptions-title {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  color: var(--navy); margin: 0 0 10px;
}
.checker-suboption-group { margin-bottom: 14px; }
.checker-suboption-group:last-child { margin-bottom: 0; }
.checker-suboption-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 8px; margin-bottom: 6px;
}
.checker-suboption-provider { font-weight: 700; color: var(--navy); font-size: .9rem; }
.checker-suboption-base { font-size: .8rem; color: var(--muted); }
.checker-suboption-base strong { color: var(--navy); font-weight: 700; }

.checker-suboption-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.checker-suboption {
  padding: 10px 12px; border-radius: 10px;
  background: var(--icon-bg); border: 1px solid var(--card-border);
}
.checker-suboption-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.checker-suboption-meta {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
  margin-top: 4px; font-size: .8rem; color: var(--muted);
}
.checker-suboption-meta span { white-space: nowrap; }

.checker-catalog {
  margin-top: 10px; padding: 10px 12px; border-radius: 10px;
  background: white; border: 1px solid var(--card-border);
}
.checker-catalog > summary {
  cursor: pointer; font-weight: 700; color: var(--navy); font-size: .85rem;
  list-style: none; outline: none;
}
.checker-catalog > summary::-webkit-details-marker { display: none; }
.checker-catalog > summary::before {
  content: '▸'; display: inline-block; margin-right: 6px;
  color: var(--teal); transition: transform .15s ease;
}
.checker-catalog[open] > summary::before { transform: rotate(90deg); }
.checker-catalog-list { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.checker-catalog-item {
  padding: 10px 12px; border-radius: 8px;
  background: var(--icon-bg); border: 1px solid var(--card-border);
}
.checker-catalog-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline;
  gap: 6px;
}
.checker-catalog-name  { font-weight: 700; color: var(--navy); font-size: .9rem; }
.checker-catalog-price { font-weight: 700; color: var(--teal); font-size: .9rem; }
.checker-catalog-period { color: var(--muted); font-weight: 600; font-size: .72rem; margin-left: 2px; }
.checker-catalog-meta {
  display: flex; flex-wrap: wrap; gap: 4px 14px;
  margin-top: 4px; font-size: .78rem; color: var(--muted);
}
.checker-catalog-desc { margin: 6px 0 0; font-size: .78rem; color: var(--muted); line-height: 1.45; }

.checker-supplier-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.checker-supplier {
  padding: 8px 12px; border-radius: 10px;
  background: var(--icon-bg); border: 1px solid var(--card-border);
}
.checker-supplier-name { font-weight: 700; color: var(--navy); font-size: .85rem; }
.checker-supplier-products { list-style: disc; margin: 4px 0 0 18px; padding: 0; color: var(--muted); font-size: .8rem; }
.checker-supplier-products li { margin: 2px 0; }

.checker-provider-result .checker-result-street { font-size: 1.05rem; }

/* ─── IN-TEXT LINKS ─────────────────────────────────── */
/* Style links that appear inside body copy / paragraphs so they
   don't fall back to the default browser blue + heavy underline. */
.content-p a,
.content-list a,
.section-sub a,
.checker-empty a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--teal-border);
  transition: color .15s ease, border-color .15s ease, background-color .15s ease;
}
.content-p a:hover,
.content-list a:hover,
.section-sub a:hover,
.checker-empty a:hover {
  color: var(--navy);
  border-bottom-color: var(--navy);
}
.content-p a:focus-visible,
.content-list a:focus-visible,
.section-sub a:focus-visible,
.checker-empty a:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ------------------------------------------------------------------
   Postcodechecker loading overlay
   Shown while navigating to /postcodechecker after a form submission so
   the visitor sees we are working on it instead of a blank page.
   ------------------------------------------------------------------ */
.postcode-loading-overlay {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 37, 64, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: postcodeOverlayIn 160ms ease-out;
}
.postcode-loading-overlay[hidden] { display: none; }
.postcode-loading-card {
  display: flex; align-items: center; gap: 18px;
  background: #fff;
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.25);
  max-width: 92vw;
}
.postcode-loading-spinner {
  flex: 0 0 auto;
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid rgba(10, 37, 64, 0.15);
  border-top-color: var(--teal);
  animation: postcodeSpin 800ms linear infinite;
}
.postcode-loading-text { display: flex; flex-direction: column; gap: 2px; }
.postcode-loading-text strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; color: var(--navy);
}
.postcode-loading-text span { font-size: .85rem; color: var(--muted); }
body.is-postcode-loading { overflow: hidden; }
@keyframes postcodeSpin { to { transform: rotate(360deg); } }
@keyframes postcodeOverlayIn { from { opacity: 0; } to { opacity: 1; } }

/* ------------------------------------------------------------------
   Postcodechecker map card (right column on the results page)
   ------------------------------------------------------------------ */
.checker-map-card {
  margin-top: 24px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(10, 37, 64, 0.05);
}
.checker-map-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; color: var(--navy); margin: 0 0 6px;
}
.checker-map-intro { margin: 0 0 12px; font-size: .85rem; color: var(--muted); }
.checker-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 220px;
  border-radius: 10px;
  overflow: hidden;
  background: #eef2f7;
  border: 1px solid var(--card-border);
}
.checker-map .leaflet-container { width: 100%; height: 100%; border-radius: 10px; }
.checker-map-fallback {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  font-size: .85rem; color: var(--muted);
  text-align: center; padding: 16px;
}
.checker-map-fallback.is-error { color: #b91c1c; }
.checker-map-spinner {
  width: 28px; height: 28px; border-radius: 50%;
  border: 3px solid rgba(10, 37, 64, 0.15);
  border-top-color: var(--teal);
  animation: postcodeSpin 800ms linear infinite;
}
.checker-map-attrib {
  margin: 8px 0 0; font-size: .7rem; color: var(--muted);
}
.checker-map-attrib a { color: var(--teal); text-decoration: none; }
.checker-map-attrib a:hover { text-decoration: underline; }
