:root {
  --navy: #061b45;
  --blue: #0077ff;
  --sky: #19b5ff;
  --silver: #d7dde8;
  --soft: #f4f8ff;
  --text: #0b1b35;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, #eef7ff 45%, #ffffff 100%);
  overflow-x: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 119, 255, 0.12);
}

.nav-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 10px;
  align-items: center;
}

nav a {
  position: relative;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 18px;
  overflow: hidden;
  transition: color 0.25s ease, transform 0.25s ease;
}

nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 2px;
  background: conic-gradient(from var(--angle), transparent, var(--silver), #ffffff, var(--silver), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  animation: spin 2.5s linear infinite;
}

nav a::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

nav a:hover,
nav a.active {
  color: white;
  transform: translateY(-2px);
}

nav a:hover::before,
nav a:hover::after,
nav a.active::before,
nav a.active::after {
  opacity: 1;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin {
  to {
    --angle: 360deg;
  }
}

section {
  padding: 90px 24px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary,
.btn {
  color: white;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky));
  box-shadow: 0 18px 35px rgba(0, 119, 255, 0.25);
}

.btn-secondary {
  color: var(--navy);
  border: 1px solid rgba(0, 119, 255, 0.25);
  background: white;
  box-shadow: none;
}

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

/* HOMEPAGE */

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 255, 0.22), transparent 65%);
  top: -240px;
  right: -220px;
}

.hero-grid {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
  color: var(--navy);
  margin-bottom: 24px;
}

h1 span {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  -webkit-background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 620px;
  color: #38506f;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-card {
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(228,244,255,0.95));
  box-shadow: 0 30px 80px rgba(6, 27, 69, 0.14);
  border: 1px solid rgba(0, 119, 255, 0.13);
}

.energy-image {
  min-height: 480px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(6, 27, 69, 0.18), rgba(0, 119, 255, 0.45)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: end;
  overflow: hidden;
}

.image-caption {
  width: 100%;
  padding: 28px;
  color: white;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 69, 0.82));
}

.image-caption strong {
  display: block;
  font-size: 26px;
  margin-bottom: 8px;
}

.section-title {
  text-align: center;
  margin-bottom: 46px;
}

.section-title small {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
  margin-top: 10px;
}

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

.card {
  background: white;
  border: 1px solid rgba(0, 119, 255, 0.13);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(6, 27, 69, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(6, 27, 69, 0.14);
}

.card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.img-solar {
  background-image: linear-gradient(rgba(0,90,180,.1), rgba(0,90,180,.15)), url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=900&q=80");
}

.img-wind {
  background-image: linear-gradient(rgba(0,90,180,.1), rgba(0,90,180,.15)), url("https://images.unsplash.com/photo-1466611653911-95081537e5b7?auto=format&fit=crop&w=900&q=80");
}

.img-green {
  background-image: linear-gradient(rgba(0,90,180,.1), rgba(0,90,180,.15)), url("https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=900&q=80");
}

.card-body {
  padding: 28px;
}

.card-body h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 12px;
}

.card-body p {
  color: #4b6380;
  line-height: 1.7;
}

.services-button-wrap {
  text-align: center;
  margin-top: 40px;
}

.about-band {
  background: linear-gradient(135deg, var(--navy), #063d8d, var(--blue));
  color: white;
  border-radius: 36px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 28px 80px rgba(0, 119, 255, 0.22);
}

.about-band h2 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 18px;
}

.about-band p {
  line-height: 1.8;
  color: rgba(255,255,255,0.86);
}

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

.stat {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

.stat strong {
  display: block;
  font-size: 34px;
  color: white;
}

.contact-box {
  max-width: 850px;
  margin: auto;
  background: white;
  border-radius: 34px;
  border: 1px solid rgba(0, 119, 255, 0.13);
  box-shadow: 0 24px 70px rgba(6, 27, 69, 0.1);
  padding: 36px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 119, 255, 0.22);
  font-size: 16px;
  outline: none;
  font-family: inherit;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 119, 255, 0.1);
}

textarea {
  grid-column: 1 / -1;
  min-height: 140px;
  resize: vertical;
}

form button {
  grid-column: 1 / -1;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* SERVICES PAGE */

.services-hero {
  position: relative;
  padding: 120px 24px 90px;
  color: white;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(6, 27, 69, 0.9), rgba(0, 119, 255, 0.72)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.services-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 65%);
  right: -220px;
  bottom: -260px;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: auto;
}

.services-hero small {
  color: #bfe7ff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.services-hero h1 {
  margin: 18px auto 22px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  color: white;
}

.services-hero p {
  max-width: 780px;
  margin: auto;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.service-showcase {
  display: grid;
  gap: 34px;
}

.service-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: white;
  border: 1px solid rgba(0, 119, 255, 0.14);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 22px 65px rgba(6, 27, 69, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(6, 27, 69, 0.15);
}

.service-panel.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.service-panel.reverse .service-image {
  order: 2;
}

.service-image {
  min-height: 430px;
  background-size: cover;
  background-position: center;
}

.power-img {
  background-image:
    linear-gradient(rgba(0,90,180,.05), rgba(0,90,180,.18)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1000&q=80");
}

.gas-img {
  background-image:
    linear-gradient(rgba(0,90,180,.08), rgba(0,90,180,.18)),
    url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1000&q=80");
}

.water-img {
  background-image:
    linear-gradient(rgba(0,90,180,.08), rgba(0,90,180,.18)),
    url("https://images.unsplash.com/photo-1538300342682-cf57afb97285?auto=format&fit=crop&w=1000&q=80");
}

.merchant-img {
  background-image:
    linear-gradient(rgba(0,90,180,.08), rgba(0,90,180,.18)),
    url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=1000&q=80");
}

.waste-img {
  background-image:
    linear-gradient(rgba(0,90,180,.08), rgba(0,90,180,.18)),
    url("https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?auto=format&fit=crop&w=1000&q=80");
}

.service-content {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-content h2 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 20px;
}

.service-content p {
  color: #4b6380;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 17px;
}

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

.feature {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff, #edf6ff);
  border: 1px solid rgba(0, 119, 255, 0.12);
  color: var(--navy);
  font-weight: 800;
}

.trust-section {
  padding-top: 30px;
}

.trust-strip {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, var(--navy), #063d8d, var(--blue));
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  box-shadow: 0 28px 80px rgba(0, 119, 255, 0.22);
}

.trust-item {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
  text-align: center;
  line-height: 1.4;
}

.network-title {
  text-align: center;
  margin-bottom: 40px;
}

.network-title small {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.network-title h2 {
  font-size: clamp(34px, 4vw, 52px);
  color: var(--navy);
  margin-top: 10px;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.network-card {
  background: white;
  border-radius: 28px;
  padding: 32px 22px;
  border: 1px solid rgba(0, 119, 255, 0.13);
  box-shadow: 0 18px 45px rgba(6, 27, 69, 0.08);
  text-align: center;
}

.network-card strong {
  display: block;
  color: var(--navy);
  font-size: 44px;
  margin-bottom: 8px;
}

.network-card span {
  color: #4b6380;
  font-weight: 700;
}

.cta {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #eef7ff);
}

.cta h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 54px);
  margin-bottom: 16px;
}

.cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: #4b6380;
  line-height: 1.8;
  font-size: 18px;
}

/* FOOTER */

footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 34px 24px;
}

/* MOBILE */

@media (max-width: 900px) {
  .nav-wrap,
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-grid,
  .about-band {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  form {
    grid-template-columns: 1fr;
  }

  .service-panel,
  .service-panel.reverse {
    grid-template-columns: 1fr;
  }

  .service-panel.reverse .service-image {
    order: 0;
  }

  .feature-grid,
  .trust-strip,
  .network-grid {
    grid-template-columns: 1fr;
  }

  .service-content {
    padding: 34px;
  }
}	
/* UPDATED LANDING PAGE */



.hero-simple {
  min-height: 720px;
}

.hero-simple::before {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: -300px;
}

.hero-simple-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hero-left {
  flex: 1.7;
  text-align: left;
}

.hero-left p {
  margin: 0;
  max-width: 700px;
}

.hero-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.hero-right .btn {
  width: 260px;
  text-align: center;
}

.step-bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 38px 0 34px;
  max-width: 840px;
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left p {
    margin: auto;
  }

  .hero-right {
    width: 100%;
    align-items: center;
  }

  .hero-right .btn {
    width: 100%;
    max-width: 320px;
  }
}



.step-bubbles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 38px auto 34px;
  max-width: 840px;
}

.step-bubble {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 26px 70px rgba(0, 119, 255, 0.28);
  border: 8px solid rgba(255,255,255,0.85);
}

.step-bubble span {
  font-size: 18px;
  font-weight: 900;
  opacity: 0.78;
  margin-bottom: 8px;
}

.step-bubble strong {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.btn-large {
  font-size: 20px;
  padding: 18px 42px;
}

.card .btn {
  margin-top: 22px;
}

/* UPDATED SERVICES PAGE */

.compact-hero {
  padding: 95px 24px 75px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mini-service-card {
  background: white;
  border-radius: 30px;
  padding: 32px;
  border: 1px solid rgba(0, 119, 255, 0.13);
  box-shadow: 0 20px 55px rgba(6, 27, 69, 0.09);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mini-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 30px;
  background: linear-gradient(135deg, #f7fbff, #edf6ff);
  margin-bottom: 18px;
}


.mini-card-image {
  height: 190px;
  margin: -32px -32px 24px;
  border-radius: 30px 30px 0 0;
  background-size: cover;
  background-position: center;
}

.small-card-image {
  height: 130px;
  margin: -26px -26px 20px;
  border-radius: 26px 26px 0 0;
  background-size: cover;
  background-position: center;
}

.image-small-card {
  overflow: hidden;
}

.mini-service-card h2 {
  color: var(--navy);
  font-size: 34px;
  margin-bottom: 12px;
}

.mini-service-card p {
  color: #4b6380;
  line-height: 1.7;
  margin-bottom: 20px;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.mini-tags span {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  padding: 8px 10px;
  border-radius: 999px;
  background: #f4f8ff;
  border: 1px solid rgba(0, 119, 255, 0.12);
}

.mini-service-card .btn {
  margin-top: auto;
}

.small-services-section {
  padding-top: 30px;
}

.small-service-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.small-service-card {
  background: white;
  border-radius: 26px;
  border: 1px solid rgba(0, 119, 255, 0.13);
  padding: 26px;
  box-shadow: 0 16px 42px rgba(6, 27, 69, 0.08);
}

.small-service-card h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 10px;
}

.small-service-card p {
  color: #4b6380;
  line-height: 1.65;
}

/* SERVICE DETAIL PAGES */

.service-detail-hero {
  padding: 105px 24px;
  background: linear-gradient(135deg, #ffffff, #eef7ff);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.service-detail-grid small {
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-detail-grid h1 {
  margin-top: 18px;
}

.service-detail-grid p {
  color: #4b6380;
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.detail-panel {
  min-height: 360px;
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky));
  color: white;
  display: grid;
  align-content: center;
  gap: 12px;
  box-shadow: 0 30px 80px rgba(0, 119, 255, 0.25);
}

.detail-panel strong,
.detail-panel span,
.detail-panel em {
  display: block;
  font-style: normal;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 900;
  line-height: 0.98;
}

.form-section {
  padding-top: 55px;
}

.service-contact-box {
  max-width: 980px;
}

.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 10px;
}

.postcode-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.form-note {
  color: #5d718b;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 8px;
}

select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0, 119, 255, 0.22);
  font-size: 16px;
  outline: none;
  font-family: inherit;
  color: var(--text);
  background: white;
}

select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 119, 255, 0.1);
}

.service-info-block {
  background: linear-gradient(180deg, #ffffff, #eef7ff);
}

.left-title {
  text-align: left;
}

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

.info-grid article {
  background: white;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(0, 119, 255, 0.13);
  box-shadow: 0 18px 45px rgba(6, 27, 69, 0.08);
}

.info-grid h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 12px;
}

.info-grid p {
  color: #4b6380;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .step-bubbles,
  .service-card-grid,
  .small-service-row,
  .service-detail-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .step-bubble {
    max-width: 260px;
    width: 100%;
    margin: auto;
  }

  .postcode-row {
    grid-template-columns: 1fr;
  }
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 27, 69, 0.75);
  z-index: 9999;
  padding: 24px;
}

.modal-overlay:target {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: #fff;
  width: 100%;
  max-width: 560px;
  border-radius: 24px;
  padding: 32px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  text-decoration: none;
  font-size: 30px;
  color: #061b45;
}

.modal-form {
  display: grid;
  gap: 14px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #d6dbe6;
  border-radius: 12px;
  font: inherit;
}

.modal-form label {
  font-weight: 700;
  color: #061b45;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 27, 69, 0.75);
  z-index: 9999;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* PSN CONVERSION UPGRADES */
.quick-quote-section { padding-top: 30px; }
.quick-quote-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 30px;
  align-items: center;
  background: white;
  border-radius: 34px;
  padding: 38px;
  border: 1px solid rgba(0, 119, 255, 0.13);
  box-shadow: 0 24px 70px rgba(6, 27, 69, 0.1);
}
.quick-quote-card small,
.split-section small { color: var(--blue); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.quick-quote-card h2,
.split-section h2,
.proof-card h2 { color: var(--navy); font-size: clamp(30px, 4vw, 48px); margin: 10px 0 14px; }
.quick-quote-card p,
.split-section p,
.proof-card p { color: #4b6380; line-height: 1.75; }
.quick-quote-form { grid-template-columns: repeat(2, 1fr); }
.quick-quote-form button { grid-column: auto; }
.benefit-grid,
.process-grid,
.supplier-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.benefit-grid div,
.process-grid div,
.supplier-logo-grid span {
  background: white;
  border: 1px solid rgba(0, 119, 255, 0.13);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 42px rgba(6, 27, 69, 0.08);
  color: var(--navy);
  font-weight: 900;
}
.supplier-logo-grid span { text-align: center; font-size: 20px; background: linear-gradient(135deg, #fff, #f4f8ff); }
.split-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.check-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.check-list p { background: white; padding: 18px; border-radius: 18px; border: 1px solid rgba(0,119,255,.13); font-weight: 800; color: var(--navy); }
.process-grid div { text-align: center; }
.process-grid strong { display: grid; place-items: center; width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky)); font-size: 24px; }
.process-grid span { display: block; color: #38506f; line-height: 1.4; }
.proof-card { background: linear-gradient(135deg, var(--navy), #063d8d, var(--blue)); color: white; border-radius: 34px; padding: 52px; text-align: center; box-shadow: 0 28px 80px rgba(0,119,255,.22); }
.proof-card h2, .proof-card p { color: white; }
.info-icon { display: inline-grid; place-items: center; margin-right: 10px; width: 38px; height: 38px; border-radius: 14px; background: #f4f8ff; font-size: 20px; vertical-align: middle; }
.site-footer { text-align: left; padding: 0; }
.footer-grid { max-width: 1200px; margin: auto; display: grid; grid-template-columns: 1.4fr .7fr 1fr .8fr; gap: 28px; padding: 52px 24px 34px; }
.site-footer h3, .site-footer h4 { color: white; margin-bottom: 14px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.75); line-height: 1.7; text-decoration: none; display: block; margin-bottom: 7px; }
.site-footer a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px 24px; color: rgba(255,255,255,.65); }
.sticky-actions { position: fixed; right: 18px; bottom: 18px; z-index: 1000; display: flex; gap: 10px; }
.sticky-actions a { text-decoration: none; font-weight: 900; border-radius: 999px; padding: 14px 18px; box-shadow: 0 15px 35px rgba(6,27,69,.18); }
.sticky-quote { color: white; background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky)); }
.sticky-call { color: var(--navy); background: white; border: 1px solid rgba(0,119,255,.18); display: none; }

@media (max-width: 900px) {
  .quick-quote-card,
  .split-section,
  .footer-grid { grid-template-columns: 1fr; }
  .quick-quote-form,
  .benefit-grid,
  .process-grid,
  .supplier-logo-grid,
  .check-list { grid-template-columns: 1fr; }
  .sticky-quote { display: none; }
  .sticky-call { display: inline-flex; }
  .sticky-actions { left: 18px; right: 18px; justify-content: center; }
}

/* PSN update: SVG image benefit cards and rolling supplier logo bar */
.benefit-image-grid {
  align-items: stretch;
}

.benefit-card {
  background: white;
  border: 1px solid rgba(0, 119, 255, 0.13);
  border-radius: 28px;
  padding: 18px 18px 22px;
  box-shadow: 0 16px 42px rgba(6, 27, 69, 0.08);
  color: var(--navy);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(6, 27, 69, 0.12);
}

.benefit-card h3 {
  margin: 16px 4px 0;
  font-size: 18px;
  line-height: 1.25;
  color: var(--navy);
}

.benefit-icon-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  background: #eef7ff;
}

.supplier-section {
  overflow: hidden;
}

.supplier-marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 119, 255, 0.06), rgba(6, 27, 69, 0.04));
  border: 1px solid rgba(0, 119, 255, 0.11);
}

.supplier-marquee::before,
.supplier-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.supplier-marquee::before {
  left: 0;
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0));
}

.supplier-marquee::after {
  right: 0;
  background: linear-gradient(270deg, white, rgba(255, 255, 255, 0));
}

.supplier-marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: psnSupplierScroll 32s linear infinite;
}

.supplier-marquee:hover .supplier-marquee-track {
  animation-play-state: paused;
}

.supplier-logo-card {
  width: 170px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 22px rgba(6, 27, 69, 0.08));
}

@keyframes psnSupplierScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .benefit-card h3 { font-size: 17px; }
  .benefit-icon-img { height: 130px; }
  .supplier-logo-card { width: 145px; height: 64px; }
  .supplier-marquee::before,
  .supplier-marquee::after { width: 56px; }
}


/* PSN FINAL UPDATES: centred hero buttons, photo cards, no small labels */
.hero-simple {
  min-height: 720px;
  text-align: left;
}

.hero-simple-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hero-left {
  flex: 1.7;
  text-align: left;
}

.hero-left p {
  margin: 0;
  max-width: 700px;
}

.hero-right {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.hero-right .btn {
  width: 300px;
  text-align: center;
}

.step-bubbles {
  margin-left: 0;
  margin-right: 0;
}

.benefit-icon-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  background: #eef7ff;
}

.supplier-logo-card {
  width: 170px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
  border-radius: 16px;
  background: white;
  padding: 10px 18px;
  filter: drop-shadow(0 14px 22px rgba(6, 27, 69, 0.08));
}

.section-title h2,
.network-title h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 34px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-left p {
    margin: auto;
  }

  .step-bubbles {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right {
    width: 100%;
    align-items: center;
  }

  .hero-right .btn {
    width: 100%;
    max-width: 320px;
  }

  .benefit-icon-img {
    height: 150px;
  }
}


/* LEGAL PAGES */
.legal-hero {
  padding: 95px 24px 55px;
  background: linear-gradient(135deg, #ffffff, #eef7ff);
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 14px;
}

.legal-hero p {
  color: #4b6380;
  font-weight: 800;
}

.legal-section {
  padding-top: 35px;
}

.legal-card {
  background: white;
  border-radius: 34px;
  padding: 48px;
  border: 1px solid rgba(0, 119, 255, 0.13);
  box-shadow: 0 24px 70px rgba(6, 27, 69, 0.1);
}

.legal-card h2,
.legal-card h3 {
  color: var(--navy);
}

.legal-card h2 {
  font-size: 38px;
  margin-bottom: 18px;
}

.legal-card h3 {
  font-size: 24px;
  margin: 30px 0 12px;
}

.legal-card p,
.legal-card li {
  color: #4b6380;
  line-height: 1.8;
  margin-bottom: 13px;
}

.legal-card ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 900px) {
  .legal-card {
    padding: 30px;
  }
}
