﻿:root {
  --navy: #1e315f;
  --navy-2: #1b56be;
  --cyan: #1aa1c6;
  --teal: #0c8e93;
  --orange: #ff8b2a;
  --orange-2: #ff6f1d;
  --sky: #edf4ff;
  --ice: #f7f9ff;
  --text: #243760;
  --muted: #647596;
  --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: 228px;
  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, #10a4c6, #0b7d91);
  box-shadow: 0 14px 32px rgba(11, 121, 145, 0.22);
}

.btn-accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 14px 32px rgba(255, 111, 29, 0.28);
}

.section {
  padding: 58px 0;
}

.hero {
  padding-bottom: 18px;
}

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

.hero-copy-block {
  display: grid;
  gap: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #3f84f7, #1c57bc);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(34, 95, 192, 0.18);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--navy);
  max-width: 12ch;
}

.hero-summary {
  max-width: 640px;
  color: #4c5f83;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.hero-summary-secondary {
  margin-top: -6px;
}

.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: 1020px;
  margin: 0 auto;
  justify-content: center;
}

.offer-card,
.footer-card,
.highlight-band {
  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;
  gap: 24px;
}

.offer-top {
  display: grid;
  gap: 18px;
}

.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 {
  font-size: clamp(1.95rem, 3vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--navy);
  text-align: center;
}

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

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

.offer-content {
  display: block;
}

.offer-label {
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

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

.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(255, 139, 42, 0.12);
  color: #ff7a1d;
  font-size: 1rem;
  font-weight: 900;
}

.price-box {
  display: grid;
  justify-items: center;
  gap: 4px;
  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: 0 auto;
}

.comparison {
  padding-top: 18px;
}

.highlight-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
  border-radius: 26px;
  background: linear-gradient(135deg, #163f98 0%, #1d63cb 100%);
  color: var(--white);
}

.highlight-band h2 {
  font-size: clamp(2rem, 4vw, 2.95rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

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

.cta-inline {
  min-width: 180px;
}

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,
  .highlight-band,
  .hero-layout {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .brand img {
    width: 190px;
  }

  .offer-card,
  .footer-card,
  .highlight-band,
  .hero-panel {
    padding: 22px;
  }

  .btn {
    width: 100%;
  }

  h1 {
    max-width: 11ch;
  }
}
