:root {
  color-scheme: light;
  --ink: #101828;
  --muted: #52606d;
  --line: #d9e2ec;
  --paper: #ffffff;
  --soft: #f5f8fb;
  --teal: #0e7c86;
  --teal-dark: #07545c;
  --coral: #e35d4f;
  --gold: #f2b84b;
  --green: #2f9e6d;
  --navy: #14213d;
  --shadow: 0 18px 45px rgba(20, 33, 61, 0.12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--coral);
}

:focus-visible {
  outline: 3px solid rgba(242, 184, 75, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.topbar a {
  color: #fff;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand img {
  width: 176px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: #eef8f9;
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 124, 134, 0.26);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.btn-warning {
  background: #fff7e6;
  border-color: #f6d28c;
  color: #7a4c00;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(14, 124, 134, 0.13), rgba(242, 184, 75, 0.16) 48%, rgba(227, 93, 79, 0.12)),
    #f7fbfc;
  border-bottom: 1px solid var(--line);
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 44px;
  align-items: center;
  min-height: 640px;
  padding: 72px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.35rem, 7vw, 4.85rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 20px;
  max-width: 720px;
  color: #324251;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.trust-item {
  min-height: 102px;
  padding: 16px;
  border: 1px solid rgba(14, 124, 134, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 22px 32px rgba(20, 33, 61, 0.18));
}

.notice {
  border-left: 5px solid var(--gold);
  background: #fff9ec;
  padding: 18px 20px;
  border-radius: var(--radius);
  color: #493600;
}

.notice strong {
  color: #2f2300;
}

.section {
  padding: 78px 0;
}

.section-alt {
  background: var(--soft);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 650px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(20, 33, 61, 0.04);
}

.card h3 {
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #e8f7f8;
  color: var(--teal-dark);
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #eef8f9;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.plans {
  align-items: stretch;
}

.plan {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.plan.featured {
  border-color: rgba(14, 124, 134, 0.55);
  box-shadow: var(--shadow);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 14px 0 4px;
}

.price .currency {
  font-size: 1.25rem;
  font-weight: 800;
}

.price .amount {
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 900;
  color: var(--ink);
}

.price .pence {
  font-weight: 900;
  color: var(--ink);
}

.plan ul,
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.plan li,
.check-list li {
  position: relative;
  padding-left: 26px;
  margin: 10px 0;
}

.plan li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px #dff5ea;
}

.plan .btn {
  margin-top: auto;
}

.warning-panel {
  background: #fff;
  border-top: 4px solid var(--coral);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.warning-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.warning-panel .check-list li::before {
  background: var(--coral);
  box-shadow: inset 0 0 0 4px #ffe4df;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 64px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.metric span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 0.92rem;
}

.page-hero {
  background:
    linear-gradient(115deg, rgba(14, 124, 134, 0.13), rgba(242, 184, 75, 0.14)),
    #f7fbfc;
  border-bottom: 1px solid var(--line);
  padding: 70px 0 52px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 4.1rem);
}

.content {
  max-width: 900px;
}

.content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.content h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.content p,
.content li {
  color: #394b59;
}

.content p + p {
  margin-top: 14px;
}

.content ul,
.content ol {
  margin: 14px 0 0;
  padding-left: 24px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: #eef8f9;
  color: var(--teal-dark);
}

tr:last-child td {
  border-bottom: 0;
}

.contact-card a {
  overflow-wrap: anywhere;
}

.site-footer {
  background: #0d172a;
  color: #d7dee8;
  padding: 54px 0 24px;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
  color: #fff;
  font-size: 1.06rem;
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  color: #aeb9c8;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn {
    justify-content: flex-start;
    width: 100%;
  }

  .hero .container,
  .split {
    grid-template-columns: 1fr;
  }

  .hero .container {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-visual {
    max-width: 620px;
  }

  .grid-3,
  .grid-4,
  .footer-grid,
  .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    display: block;
  }

  .section-head p {
    margin-top: 12px;
  }
}

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

  .brand img {
    width: 148px;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-strip,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .card,
  .warning-panel {
    padding: 20px;
  }

  .step {
    padding-left: 54px;
  }
}

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