:root {
  --navy: #061a33;
  --navy-2: #0a2548;
  --navy-3: #0f315e;
  --ink: #10203b;
  --gold: #f6b229;
  --gold-2: #ffd466;
  --success: #19a974;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: rgba(6, 26, 51, 0.14);
  --shadow: 0 24px 80px rgba(6, 26, 51, 0.16);
  --soft-shadow: 0 14px 42px rgba(6, 26, 51, 0.1);
  --glow: 0 22px 70px rgba(246, 178, 41, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(246, 178, 41, 0.09), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(15, 49, 94, 0.1), transparent 32%);
  content: "";
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding: 7px clamp(18px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(6, 26, 51, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: clamp(196px, 15.5vw, 235px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 850;
  color: var(--navy);
}

.main-nav a,
.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.main-nav a:hover,
.nav-dropdown:hover summary,
.main-nav a.active {
  color: var(--navy);
  background: rgba(246, 178, 41, 0.17);
}

.main-nav a.active {
  background: var(--navy);
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  margin-left: 7px;
  color: var(--gold);
  content: "+";
  font-weight: 900;
}

.dropdown-menu {
  position: absolute;
  top: 44px;
  left: 50%;
  display: none;
  min-width: 210px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown[open] .dropdown-menu {
  display: grid;
}

.dropdown-menu a {
  justify-content: flex-start;
  min-height: 38px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button,
.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.header-button.enquire,
.button.primary {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(246, 178, 41, 0.28);
}

.button:hover,
.header-button:hover,
.feature-card:hover,
.review-card:hover,
.price-card:hover {
  transform: translateY(-2px);
}

.button,
.header-button,
.feature-card,
.review-card,
.price-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-button {
  min-height: 44px;
  padding: 0 15px;
  font-size: 0.86rem;
}

@media (max-width: 1360px) and (min-width: 1181px) {
  .site-header {
    gap: 14px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .brand img {
    width: 205px;
  }

  .main-nav {
    gap: 3px;
    font-size: 0.78rem;
  }

  .main-nav a,
  .nav-dropdown summary {
    padding: 0 7px;
  }

  .header-actions {
    gap: 7px;
  }

  .header-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.8rem;
  }
}

.header-button.portal,
.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(6, 26, 51, 0.2);
}

.hero .button.secondary,
.page-hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.dark {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 7px;
  background: var(--navy);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(24px, 3.6vw, 48px);
  align-items: center;
  min-height: calc(100vh - 92px);
  padding: clamp(30px, 4.4vw, 58px) clamp(18px, 5vw, 72px) clamp(26px, 4vw, 46px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(6, 26, 51, 0.99), rgba(10, 37, 72, 0.97)),
    radial-gradient(circle at 82% 18%, rgba(246, 178, 41, 0.22), transparent 34%);
  background-size: 64px 64px, 64px 64px, auto, auto;
  overflow: hidden;
}

.hero::after,
.page-hero::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 320px;
  height: 320px;
  border: 44px solid rgba(246, 178, 41, 0.16);
  border-radius: 50%;
  content: "";
}

.hero::before,
.page-hero::before {
  position: absolute;
  top: 80px;
  right: 8%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(246, 178, 41, 0.22);
  border-radius: 22px;
  content: "";
  transform: rotate(12deg);
}

.hero-copy,
.hero-card,
.page-hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.35rem, 5.15vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.9vw, 3.25rem);
  line-height: 1.04;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.22rem;
}

.hero-text,
.page-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 251, 0.98)),
    linear-gradient(135deg, rgba(246, 178, 41, 0.12), transparent);
  border: 1px solid rgba(246, 178, 41, 0.65);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.mini-stat {
  min-height: 96px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}

.mini-stat strong {
  display: block;
  color: var(--gold);
  font-size: 1.55rem;
  line-height: 1;
}

.mini-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 850;
}

.hero-card-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  background:
    linear-gradient(135deg, var(--navy), var(--navy-3));
  border: 1px solid var(--line);
  border-radius: 12px;
}

.hero-card-top img {
  width: min(250px, 100%);
  padding: 10px;
  background: var(--white);
  border-radius: 10px;
}

.hero-card-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.trust-badge,
.feature-card,
.review-card,
.result-card,
.price-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.trust-badge {
  min-height: 98px;
  padding: 16px;
  border-top: 5px solid var(--gold);
}

.trust-badge strong {
  display: block;
  color: var(--navy);
  font-size: 1.55rem;
  line-height: 1;
}

.trust-badge span {
  display: block;
  margin-top: 8px;
  color: rgba(16, 32, 59, 0.72);
  font-weight: 800;
}

.hero-proof {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 12px;
}

.hero-proof strong {
  color: var(--gold);
  font-size: 2.2rem;
  line-height: 1;
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.36);
}

.trust-strip div {
  padding: 20px clamp(18px, 4vw, 40px);
  color: var(--white);
  background: var(--navy);
  font-weight: 800;
}

.trust-strip span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.section,
.page-hero,
.split-cta {
  padding: clamp(58px, 7vw, 92px) clamp(18px, 5vw, 72px);
}

.section {
  position: relative;
}

.section-divider {
  height: 12px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy-3));
}

.section.white {
  background: var(--white);
}

.section.navy {
  color: var(--white);
  background: var(--navy);
}

.section.navy h2,
.section.navy h3 {
  color: var(--white);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lead {
  max-width: 760px;
  font-size: 1.08rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

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

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

.feature-card,
.review-card,
.result-card,
.price-card,
.contact-card {
  padding: 24px;
}

.feature-card,
.review-card,
.price-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before,
.review-card::before,
.price-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  content: "";
}

.feature-card {
  display: grid;
  gap: 14px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--navy);
  background: rgba(246, 178, 41, 0.16);
  border: 1px solid rgba(246, 178, 41, 0.42);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-card a,
.text-link {
  color: var(--navy);
  font-weight: 900;
  border-bottom: 3px solid var(--gold);
}

.page-hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 26, 51, 0.98), rgba(10, 37, 72, 0.96)),
    radial-gradient(circle at 84% 18%, rgba(246, 178, 41, 0.18), transparent 34%);
  overflow: hidden;
}

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

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--gold);
}

.programme-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.dark-panel,
.process-card {
  padding: clamp(24px, 4vw, 34px);
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.dark-panel h2,
.dark-panel h3,
.process-card h3 {
  color: var(--white);
}

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

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

.check-list li::before,
.process-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "+";
  font-weight: 900;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.comparison-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.stats-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.stat-tile {
  padding: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border: 1px solid rgba(246, 178, 41, 0.28);
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.stat-tile strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-tile span {
  display: block;
  margin-top: 10px;
  font-weight: 850;
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 150px 170px;
  gap: 12px;
  align-items: center;
}

.comparison-head {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-row {
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
}

.comparison-row strong {
  color: var(--gold);
  font-size: 1.8rem;
}

.comparison-row span {
  font-weight: 850;
}

.source-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.result-card {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.14);
}

.result-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.result-card span {
  display: block;
  margin-top: 10px;
  font-weight: 800;
}

.pricing-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.pricing-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.pricing-table th,
.pricing-table td {
  padding: 22px 18px;
  border: 1px solid var(--line);
  text-align: center;
}

.pricing-table thead th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.pricing-table tbody th {
  color: var(--navy);
  text-align: left;
}

.pricing-table span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
}

.pricing-table strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  line-height: 1;
}

.included {
  margin-top: 22px;
  padding: 22px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.price-card {
  display: grid;
  gap: 12px;
  padding-top: 30px;
}

.price-card.popular {
  border: 2px solid var(--gold);
  box-shadow: var(--shadow);
}

.price-label {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card strong {
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1;
}

.included span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews-hero-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  align-items: center;
  max-width: 820px;
  margin: 0 auto 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.reviews-score {
  display: grid;
  place-items: center;
  min-height: 130px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(246, 178, 41, 0.2), rgba(246, 178, 41, 0.06));
  border-radius: 12px;
  text-align: center;
}

.reviews-score strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
}

.stars {
  color: var(--gold);
  font-size: 1.18rem;
  letter-spacing: 0;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.review-meta span {
  padding: 6px 10px;
  color: var(--navy);
  background: rgba(246, 178, 41, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.review-card p {
  margin: 16px 0;
}

.review-card cite {
  color: var(--navy);
  font-style: normal;
  font-weight: 900;
}

.split-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.split-cta h2,
.split-cta p {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  gap: 34px;
}

.map-card {
  min-height: 250px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 26, 51, 0.96), rgba(10, 37, 72, 0.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 18px);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
}

.map-card strong {
  display: block;
  color: var(--gold);
  font-size: 1.3rem;
}

.whatsapp-button {
  color: var(--white);
  background: var(--success);
  border-color: var(--success);
}

.contact-stack {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 18px;
}

.contact-card {
  display: grid;
  gap: 4px;
  color: var(--white);
  background: var(--navy);
  border-left: 6px solid var(--gold);
  font-weight: 850;
}

.contact-card span {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.enquiry-form h3,
.enquiry-form .full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(6, 26, 51, 0.22);
  border-radius: 7px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(16, 32, 59, 0.72);
  font-size: 0.9rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.8fr);
  gap: 24px;
  align-items: start;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #041326;
}

.site-footer img {
  width: 170px;
  padding: 8px;
  background: var(--white);
  border-radius: 7px;
}

.site-footer div {
  display: grid;
  gap: 8px;
}

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

.footer-links,
.footer-col {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: var(--gold);
  font-weight: 900;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.72);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 14px;
  color: var(--white);
  background: var(--success);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(25, 169, 116, 0.3);
  font-size: 0.82rem;
  font-weight: 900;
}

.js-enabled [data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enabled [data-animate].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .main-nav.is-open,
  .header-actions.is-open {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .main-nav a,
  .nav-dropdown summary {
    justify-content: center;
    min-height: 46px;
  }

  .nav-dropdown {
    display: grid;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 4px;
    border: 0;
    box-shadow: none;
    transform: none;
  }

  .header-actions {
    justify-content: center;
  }

  .hero,
  .programme-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .results-grid,
  .grid-4,
  .price-grid,
  .stats-showcase,
  .hero-mini-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 78px;
  }

  .brand img {
    width: 172px;
  }

  .hero {
    min-height: auto;
  }

  .badge-grid,
  .trust-strip,
  .comparison-head,
  .comparison-row,
  .stats-showcase,
  .hero-mini-stats,
  .reviews-hero-card,
  .grid-2,
  .grid-3,
  .grid-4,
  .price-grid,
  .reviews-grid,
  .results-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .hero-card-top {
    grid-template-columns: 1fr;
  }

  .comparison-head {
    display: none;
  }

  .split-cta,
  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button,
  .header-button,
  .hero-actions,
  .action-row {
    width: 100%;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Premium refinement layer */
:root {
  --radius: 16px;
}

.section,
.page-hero,
.split-cta {
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: clamp(64px, 7vw, 96px);
}

h2 {
  font-size: clamp(2.15rem, 4.25vw, 3.6rem);
}

.nav-dropdown.active summary {
  background: var(--navy);
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--gold);
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-logo {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 14px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  text-align: center;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.image-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(6, 26, 51, 0.9), rgba(15, 49, 94, 0.78)),
    radial-gradient(circle at 72% 24%, rgba(246, 178, 41, 0.34), transparent 24%),
    linear-gradient(45deg, rgba(255,255,255,0.08) 25%, transparent 25% 50%, rgba(255,255,255,0.08) 50% 75%, transparent 75%);
  background-size: auto, auto, 34px 34px;
  box-shadow: var(--shadow);
}

.image-panel::before {
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  content: "";
}

.image-panel-content {
  position: absolute;
  inset: auto 26px 26px 26px;
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--white);
  background: rgba(6, 26, 51, 0.72);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.image-panel-content strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-step,
.faq-item {
  position: relative;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.process-icon {
  position: absolute;
  right: 20px;
  top: 22px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--gold);
  background: rgba(6, 26, 51, 0.08);
  border: 1px solid rgba(246, 178, 41, 0.42);
  border-radius: 12px;
  font-weight: 900;
}

.process-step h3 {
  margin-top: 10px;
}

.process-step p {
  margin-bottom: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.comparison-chart {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.comparison-panel {
  overflow: hidden;
}

.comparison-head,
.comparison-row {
  grid-template-columns: minmax(240px, 1.35fr) minmax(120px, 0.75fr) minmax(150px, 0.8fr);
  align-items: center;
}

.comparison-head span {
  font-size: 0.88rem;
  letter-spacing: 0;
}

.comparison-row {
  min-height: 66px;
}

.comparison-row strong {
  justify-self: start;
  min-width: 76px;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1;
  text-align: center;
}

.comparison-row span {
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
}

.chart-row {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) 1fr;
  gap: 14px;
  align-items: center;
}

.chart-bars {
  display: grid;
  gap: 8px;
}

.bar {
  position: relative;
  min-height: 34px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
}

.bar span {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  align-items: center;
  padding-left: 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.bar.national span {
  background: rgba(255,255,255,0.74);
}

.review-card::after {
  position: absolute;
  right: 20px;
  top: 12px;
  color: rgba(246, 178, 41, 0.32);
  content: "\201C";
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
}

.review-profile {
  display: flex;
  gap: 12px;
  align-items: center;
}

.profile-circle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.google-mark {
  color: #4285f4;
  font-weight: 900;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  margin-top: 18px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.hours-card {
  margin-top: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.legal-links {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1180px) {
  .split-layout {
    grid-template-columns: 1fr;
  }

  .process-timeline,
  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-nav,
  .header-actions {
    display: flex;
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    border-top: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease, padding 0.22s ease;
  }

  .main-nav.is-open {
    max-height: 720px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-actions.is-open {
    max-height: 140px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 760px) {
  .process-timeline,
  .trust-logos,
  .faq-grid,
  .chart-row {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.06;
  }

  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 148px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 calc(50% - 10px);
    width: auto;
    min-width: 138px;
  }

  .hero-mini-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 18px;
  }

  .mini-stat {
    min-height: 82px;
    padding: 13px;
  }

  .hero-card {
    display: none;
  }

  .image-panel {
    min-height: 320px;
  }

  .section,
  .page-hero,
  .split-cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    padding: 16px;
  }

  .comparison-row > span:first-child {
    grid-column: 1 / -1;
    font-weight: 900;
  }

  .comparison-row strong {
    justify-self: stretch;
    min-width: 0;
  }

  .comparison-row strong::before {
    display: block;
    margin-bottom: 4px;
    color: rgba(6, 26, 51, 0.7);
    content: "APEX";
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .comparison-row > span:last-child {
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 7px 12px;
    background: rgba(6, 26, 51, 0.06);
    border-radius: 999px;
    font-weight: 900;
  }

  .comparison-row > span:last-child::before {
    display: block;
    margin-bottom: 4px;
    color: rgba(6, 26, 51, 0.62);
    content: "National";
    font-size: 0.68rem;
    text-transform: uppercase;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-width: 44px;
    min-height: 44px;
    padding: 0 11px;
    font-size: 0.74rem;
  }
}

/* Final polish pass */
.eyebrow,
.comparison-head span {
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  letter-spacing: 0.06em;
  font-weight: 950;
}

.comparison-panel {
  gap: 10px;
  padding: clamp(18px, 2.4vw, 26px);
}

.comparison-head,
.comparison-row {
  grid-template-columns: minmax(220px, 1.5fr) minmax(100px, 0.55fr) minmax(120px, 0.65fr);
  gap: 10px;
}

.comparison-row {
  min-height: 54px;
  padding: 10px 12px;
}

.comparison-row strong {
  min-width: 64px;
  padding: 6px 10px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.comparison-row span {
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.floating-whatsapp {
  right: 14px;
  bottom: 14px;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  font-size: 0.76rem;
}

.floating-whatsapp.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.no-floating-whatsapp .floating-whatsapp {
  display: none;
}

.navy .feature-card,
.navy .review-card,
.navy .price-card,
.navy .process-step {
  color: var(--ink);
}

.navy .feature-card h3,
.navy .review-card h3,
.navy .price-card h3,
.navy .process-step h3 {
  color: var(--navy);
}

.navy .feature-card p,
.navy .review-card p,
.navy .price-card p,
.navy .process-step p,
.navy .feature-card cite,
.navy .review-card cite {
  color: var(--ink);
}

@media (max-width: 760px) {
  .eyebrow,
  .comparison-head span {
    font-size: 0.92rem;
    letter-spacing: 0.05em;
  }

  .comparison-row {
    min-height: 0;
    padding: 12px;
  }

  .comparison-row strong,
  .comparison-row > span:last-child {
    padding: 6px 9px;
  }

  .floating-whatsapp {
    right: 10px;
    bottom: 10px;
    min-width: 40px;
    min-height: 40px;
    padding: 0 9px;
    font-size: 0.7rem;
  }
}
