﻿:root {
  --navy: #17346f;
  --navy-2: #0f4ea8;
  --cyan: #14a8d4;
  --teal: #0b7d91;
  --sky: #eaf4ff;
  --ice: #f4f8ff;
  --text: #243760;
  --muted: #5d6f8f;
  --white: #ffffff;
  --line: rgba(33, 67, 145, 0.12);
  --shadow: 0 20px 48px rgba(22, 50, 113, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 144, 255, 0.10), transparent 22%),
    radial-gradient(circle at 100% 12%, rgba(20, 168, 212, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #eef4ff 45%, #ffffff 100%);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(23, 52, 111, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 240px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 700;
  color: var(--navy);
}

.nav-links a:hover,
.footer-links a:hover,
.social-links a:hover,
.legal-links a:hover {
  color: var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #1b5fcc, #173f92);
  box-shadow: 0 14px 34px rgba(27, 95, 204, 0.28);
}

.btn-sportia {
  color: var(--white);
  background: linear-gradient(135deg, #2f7eff, #174ca8);
  box-shadow: 0 14px 32px rgba(31, 98, 214, 0.22);
}

.btn-mercia {
  color: var(--white);
  background: linear-gradient(135deg, #0f9ec8, #0b6979);
  box-shadow: 0 14px 32px rgba(11, 121, 145, 0.22);
}

.section {
  padding: 58px 0;
}

.hero {
  padding-bottom: 18px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
  gap: 28px;
  align-items: center;
}

.hero-intro {
  display: grid;
  gap: 20px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(56, 144, 255, 0.08);
  border: 1px solid rgba(56, 144, 255, 0.10);
  color: #2d6dd6;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--navy);
  max-width: 12ch;
}

.hero-copy {
  display: grid;
  gap: 14px;
  color: #31497b;
  font-size: 1.12rem;
}

.hero-panel {
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(234, 246, 255, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.plans-section {
  padding-top: 8px;
}

.plan-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.centered-plans {
  max-width: 980px;
  margin: 0 auto;
  justify-content: center;
}

.offer-card,
.comparison-table-wrap,
.footer-card,
.cta-band-inner {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.offer-card {
  padding: 30px;
  border-radius: var(--radius-xl);
  display: grid;
  align-content: start;
}

.offer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 96px;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.95), rgba(244, 248, 255, 0.95));
  box-shadow: inset 0 -8px 18px rgba(20, 52, 111, 0.04);
}

.offer-logo-wrap img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.offer-card h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--navy);
  text-align: center;
}

.mercia-card h2 {
  color: #0d6672;
}

.offer-lead {
  margin-top: 14px;
  font-size: 1.05rem;
  color: #354970;
  text-align: center;
}

.offer-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.offer-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.offer-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(27, 95, 204, 0.08);
  color: #1b5fcc;
  font-size: 1.1rem;
  font-weight: 900;
}

.mercia-card .offer-icon {
  background: rgba(11, 121, 145, 0.08);
  color: #0b7d91;
}

.price-box {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f3f7ff 100%);
  border: 1px solid rgba(23, 52, 111, 0.08);
}

.price-box span {
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #4d6289;
}

.price-box strong {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #174ca8;
}

.mercia-card .price-box strong {
  color: #0b7d91;
}

.price-box em {
  font-style: normal;
  color: #4d6289;
  font-size: 1.05rem;
}

.offer-card .btn {
  width: min(100%, 340px);
  margin: 18px auto 0;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-head.compact h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
}

.comparison-table-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.96);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(23, 52, 111, 0.08);
  text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table thead th {
  background: linear-gradient(180deg, #edf4ff 0%, #e0ecff 100%);
  color: var(--navy);
  font-size: 1.05rem;
}

.comparison-table thead th img {
  height: 34px;
  width: auto;
  margin: 0 auto 8px;
  object-fit: contain;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table tbody td {
  color: #314970;
  font-weight: 600;
}

.check {
  color: #0f8f71;
  font-size: 1.6rem;
  font-weight: 900;
}

.dash {
  color: #8393b4;
  font-size: 1.4rem;
  font-weight: 900;
}

.cta-band {
  padding-top: 18px;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #173f92 0%, #1b65c5 100%);
  color: var(--white);
}

.cta-band-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.cta-band-inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
}

.cta-inline {
  background: linear-gradient(180deg, #ffffff 0%, #eef4ff 100%);
  color: var(--navy);
  box-shadow: none;
}

footer {
  padding: 30px 0 36px;
}

.footer-card {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #06183f 0%, #0a245c 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(4, 17, 46, 0.28);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
}

.footer-brand-mark img {
  width: 220px;
  height: auto;
}

.footer-right {
  display: grid;
  gap: 18px;
  align-content: start;
}

.footer-econobytes {
  display: inline-flex;
}

.footer-econobytes img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.footer-brand p,
.footer-links a,
.footer-links p,
.social-links a,
.legal-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-nav {
  margin-top: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links h3 {
  font-size: 1rem;
  color: var(--white);
}

.social-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a,
.legal-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
  font-weight: 700;
}

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

@media (max-width: 1120px) {
  .plan-columns,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  .hero-layout,
  .hero-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .plan-columns,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    min-height: 82px;
  }

  .brand img {
    width: 190px;
  }

  .offer-card,
  .footer-card,
  .cta-band-inner {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  .comparison-table-wrap {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 720px;
  }
}


