:root{
  --bg:#ffffff;
  --text:#0d1f18;
  --muted:#5e6b66;
  --green:#4c8a16;
  --green-2:#2f6f1d;
  --dark:#06261f;
  --dark-2:#0b332a;
  --card:#ffffff;
  --shadow:0 18px 40px rgba(0,0,0,.12);
  --radius:22px;
  --container:1180px;
}

*{box-sizing:border-box}
html,body{height:100%;overflow-x:hidden}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  scrollbar-color: rgba(76,138,22,.75) rgba(6,38,31,.10);
  scrollbar-width: auto;
}
body::-webkit-scrollbar{
  width:16px;
  height:16px;
}
body::-webkit-scrollbar-track{
  background:rgba(6,38,31,.08);
}
body::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg, rgba(76,138,22,.95), rgba(47,111,29,.95));
  border-radius:999px;
  border:3px solid rgba(255,255,255,.70);
}
body::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg, rgba(76,138,22,1), rgba(47,111,29,1));
}

body.page--home::-webkit-scrollbar,
body.page--about::-webkit-scrollbar{
  width:32px;
  height:32px;
}
body.page--home::-webkit-scrollbar-thumb{
  border:6px solid rgba(255,255,255,.72);
  min-height:140px;
}
body.page--about::-webkit-scrollbar-thumb{
  border:6px solid rgba(255,255,255,.72);
}

a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:min(var(--container),calc(100% - 36px));margin-inline:auto}

.site-header{
  position:fixed;
  top:0;
  left:0;
  right:var(--sbw, 0px);
  z-index:1000;
  pointer-events:none;
}

.site-header .topbar__inner,
.site-header .navbar__inner,
.site-header a,
.site-header button{
  pointer-events:auto;
}

.topbar{
  background:linear-gradient(90deg,#0b3a30,#063127);
  color:#e9fff4;
  font-size:12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:transform .25s ease,height .25s ease,opacity .25s ease;
}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:3px 0}
.topbar__left{display:flex;align-items:center;gap:12px;min-width:0}
.topbar__item{display:flex;align-items:center;gap:8px;white-space:nowrap}
.topbar__item--address{min-width:0;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.topbar__sep{width:1px;height:14px;background:rgba(255,255,255,.22)}
.topbar__right{display:flex;align-items:center;gap:10px}
.topbar__follow{opacity:.9}
.topbar__social{
  width:26px;height:26px;border-radius:999px;
  display:grid;place-items:center;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  transition:transform .18s ease,background .18s ease;
}
.topbar__social:hover{transform:translateY(-1px);background:rgba(255,255,255,.14)}

.navbar{
  background:#fff;
  box-shadow:0 10px 28px rgba(0,0,0,.10);
}
.navbar__inner{
  display:flex;
  align-items:center;
  gap:12px;
  padding:2px 0;
  transition:padding .25s ease;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:2px 10px 2px 0;
  position:relative;
  min-width:170px;
  transition:padding .25s ease;
}
.brand__logo{width:130px;max-width:130px;transition:width .25s ease}
.brand__tagline{
  position:absolute;
  left:0;
  bottom:-6px;
  transform:translateY(100%);
  font-size:13px;
  color:var(--green);
  font-weight:600;
  letter-spacing:.2px;
}

.nav{
  display:flex;
  align-items:stretch;
  gap:8px;
  margin-left:auto;
  padding:3px 6px;
  border-radius:22px;
  position:relative;
}
.nav::before{
  content:"";
  position:absolute;
  inset:-10px -10px -10px -10px;
  border-radius:34px;
  background:
    radial-gradient(120px 70px at 0% 50%, rgba(76,138,22,.18), rgba(76,138,22,0) 70%),
    radial-gradient(140px 90px at 100% 50%, rgba(76,138,22,.14), rgba(76,138,22,0) 70%);
  z-index:-1;
}
.nav__link{
  width:72px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:4px 6px;
  border-radius:16px;
  color:#2a3a34;
  transition:background .18s ease,transform .18s ease,color .18s ease,padding .25s ease,width .25s ease;
}
.nav__icon{
  width:28px;height:28px;border-radius:11px;
  display:grid;place-items:center;
  color:var(--green);
  background:rgba(76,138,22,.08);
  border:1px solid rgba(76,138,22,.16);
  transition:width .25s ease,height .25s ease,border-radius .25s ease;
}
.nav__text{font-size:11px;font-weight:800}
.nav__link:hover{background:rgba(76,138,22,.08);transform:translateY(-1px)}
.nav__link.is-active{background:rgba(76,138,22,.12);color:#0b2a22}
.nav__link.is-active .nav__icon{background:rgba(76,138,22,.14)}

.cta{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  box-shadow:0 12px 24px rgba(76,138,22,.25);
  border:1px solid rgba(255,255,255,.12);
  margin-left:6px;
  min-width:150px;
  justify-content:center;
  transition:padding .25s ease,min-width .25s ease;
  position:relative;
  overflow:hidden;
}

.is-attn{
  animation:attnPulse 3.8s ease-in-out infinite,attnWiggle 6.2s ease-in-out infinite;
  transform-origin:center;
}
.is-attn::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,0) 70%);
  opacity:0;
  animation:attnShine 3.4s ease-in-out infinite;
  pointer-events:none;
}

@media (prefers-reduced-motion: reduce){
  .is-attn{animation:none}
  .is-attn::after{animation:none}
  .hero__sunshine{animation:none}
}
.cta__circle{
  width:28px;height:28px;border-radius:999px;
  background:rgba(255,255,255,.16);
  display:grid;place-items:center;
  border:1px solid rgba(255,255,255,.22);
}
.cta__text{font-weight:800;letter-spacing:.2px}
.cta:hover{filter:brightness(1.03)}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
}
.nav-toggle__bar{display:block;height:2px;margin:5px 10px;background:#1b2f28;border-radius:2px}

.header-spacer{height:var(--header-h, 100px)}
body.is-compact .topbar{transform:translateY(-100%);opacity:0;height:0;overflow:hidden}
body.is-compact .navbar__inner{padding:1px 0}
body.is-compact .brand{padding:1px 10px 1px 0}
body.is-compact .brand__logo{width:118px;max-width:118px}
body.is-compact .nav__link{width:66px;padding:3px 6px;gap:2px}
body.is-compact .nav__icon{width:24px;height:24px;border-radius:10px}
body.is-compact .cta{padding:7px 9px;min-width:142px}
body.is-compact .cta__circle{width:26px;height:26px}

.section{padding:64px 0}
.section--tight{padding:44px 0}
.title{font-size:34px;line-height:1.15;margin:0 0 14px}
.subtitle{color:var(--muted);margin:0 0 18px;line-height:1.6}

@keyframes bgZoom {
  0%{transform:scale(1.06)}
  100%{transform:scale(1.16)}
}
@keyframes bgZoomOut {
  0%{transform:scale(1.14)}
  100%{transform:scale(1.04)}
}
@keyframes sunGlint {
  0%{transform:translateX(-70%) translateY(12%) rotate(-18deg);opacity:0}
  12%{opacity:.65}
  28%{opacity:0}
  100%{transform:translateX(170%) translateY(-22%) rotate(-18deg);opacity:0}
}
@keyframes attnPulse {
  0%,75%,100%{transform:translateZ(0) scale(1)}
  80%{transform:translateZ(0) scale(1.03)}
  84%{transform:translateZ(0) scale(1)}
  88%{transform:translateZ(0) scale(1.03)}
  92%{transform:translateZ(0) scale(1)}
}
@keyframes attnWiggle {
  0%,88%,100%{transform:translateZ(0) rotate(0deg)}
  90%{transform:translateZ(0) rotate(-2deg)}
  92%{transform:translateZ(0) rotate(2deg)}
  94%{transform:translateZ(0) rotate(-2deg)}
  96%{transform:translateZ(0) rotate(1deg)}
  98%{transform:translateZ(0) rotate(0deg)}
}
@keyframes attnShine {
  0%{transform:translateX(-130%) skewX(-18deg);opacity:0}
  12%{opacity:.75}
  24%{opacity:0}
  100%{transform:translateX(180%) skewX(-18deg);opacity:0}
}
@keyframes imgZoom {
  0%{transform:scale(1.02)}
  100%{transform:scale(1.10)}
}

.hero{
  position:relative;
  padding:74px 0 70px;
  color:#eafff4;
  overflow:hidden;
}
.hero--home{
  padding:92px 0 86px;
  min-height:560px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background-image:var(--hero-img-a, var(--bg-image, url("../../images/services/SOLAR PV.webp")));
  background-position:var(--hero-bg-pos, center);
  background-size:var(--hero-bg-size, cover);
  background-repeat:no-repeat;
  transform-origin:center;
  animation:bgZoomOut 18s ease-in-out infinite alternate;
  will-change:transform;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background-image:var(--hero-img-b, var(--hero-img-a, var(--bg-image, url("../../images/services/SOLAR PV.webp"))));
  background-position:var(--hero-bg-pos, center);
  background-size:var(--hero-bg-size, cover);
  background-repeat:no-repeat;
  transform-origin:center;
  animation:bgZoomOut 18s ease-in-out infinite alternate;
  will-change:transform;
  opacity:var(--hero-b-opacity, 0);
  transition:opacity .7s ease;
}
.hero__overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(90deg, rgba(6,38,31,.88), rgba(6,38,31,.55));
  pointer-events:none;
}
.hero__sunshine{
  position:absolute;
  inset:-40% -70%;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.18) 22%, rgba(255,255,255,.38) 50%, rgba(255,255,255,.14) 72%, rgba(255,255,255,0) 100%);
  mix-blend-mode:screen;
  filter:blur(1px);
  opacity:0;
  animation:sunGlint 8.5s ease-in-out infinite;
}
.hero .container{position:relative;z-index:2}
.hero__grid{display:grid;grid-template-columns:1.12fr .88fr;gap:28px;align-items:center}
.hero__headline{font-size:48px;line-height:1.08;margin:0 0 14px;font-weight:900}
.hero__sub{font-size:18px;line-height:1.55;margin:0 0 18px;color:rgba(255,255,255,.92)}
.hero__bullets{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.hero__bullets li{display:flex;gap:10px;align-items:flex-start;color:rgba(255,255,255,.92)}
.hero__bullets i{color:#a8ff6a;margin-top:3px}

.postcode-card{
  background:rgba(255,255,255,.96);
  color:#0c231b;
  border-radius:24px;
  box-shadow:var(--shadow);
  padding:18px;
  border:1px solid rgba(255,255,255,.55);
}
.postcode-card__title{font-weight:900;font-size:16px;margin:0 0 10px}
.postcode-card__row{display:flex;gap:10px}
.postcode-card .input,
.postcode-card .btn{height:52px}
.input{
  flex:1;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  padding:0 14px;
  font-size:14px;
  outline:none;
}
.input:focus{border-color:rgba(76,138,22,.55);box-shadow:0 0 0 4px rgba(76,138,22,.14)}
.btn{
  height:48px;
  border-radius:14px;
  border:0;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  font-weight:900;
  padding:0 16px;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.btn:hover{filter:brightness(1.03)}
.postcode-card__trust{
  display:flex;align-items:center;justify-content:space-between;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,.08);
  font-size:13px;
  color:#30433c;
}
.trust-link{display:flex;align-items:center;gap:8px}
.stars{color:#16a34a;letter-spacing:1px}

.hero-icons{
  position:relative;
  margin-top:-34px;
  z-index:2;
}
.hero-icons__wrap{
  background:#fff;
  border-radius:24px;
  box-shadow:0 18px 36px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.06);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  overflow:hidden;
}
.hero-icons__item{
  padding:18px 18px;
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:flex-start;
  border-right:1px solid rgba(0,0,0,.06);
}
.hero-icons__item:last-child{border-right:0}
.hero-icons__icon{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:rgba(76,138,22,.12);
  border:1px solid rgba(76,138,22,.22);
  flex:0 0 auto;
}
.hero-icons__icon i{
  font-size:28px;
  color:var(--green);
}
.hero-icons__icon img{
  width:32px;
  height:32px;
  filter:invert(24%) sepia(80%) saturate(450%) hue-rotate(64deg) brightness(94%) contrast(92%);
}
.hero-icons__text{display:flex;flex-direction:column;line-height:1.15;min-width:0}
.hero-icons__text strong{font-size:17px;font-weight:950;color:#0b2a22}
.hero-icons__text span{font-size:13.5px;color:#334a41;font-weight:900}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:center;
}
.split--top{align-items:flex-start}

.map-card{
  margin-top:16px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 16px 30px rgba(0,0,0,.10);
  background:#fff;
}
.map-card iframe{
  width:100%;
  height:280px;
  border:0;
  display:block;
}

.form-errors{
  background:rgba(239, 68, 68, .08);
  border:1px solid rgba(239, 68, 68, .22);
  color:#7f1d1d;
  border-radius:16px;
  padding:12px 12px;
  margin:0 0 12px;
  font-weight:800;
  line-height:1.45;
}
.trust-line{
  text-align:center;
  color:var(--green);
  font-weight:900;
  margin-bottom:22px;
}
.media-card{
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.06);
  position:relative;
  min-height:340px;
  aspect-ratio:16/10;
}
.media-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.media-card img{transform-origin:center;animation:imgZoom 14s ease-in-out infinite alternate;will-change:transform}
.page--upvc .media-card{
  aspect-ratio:auto;
  min-height:0;
}
.page--upvc .media-card img{
  position:relative;
  inset:auto;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
  background:#fff;
  animation:none;
  transform:none;
  will-change:auto;
}
.media-card--contain{
  aspect-ratio:auto;
  min-height:0;
  background:#fff;
}
.media-card--contain img{
  position:relative;
  inset:auto;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
  background:#fff;
  animation:none;
  transform:none;
  will-change:auto;
}
.media-card__dots{
  position:absolute;
  inset:auto 18px 16px 18px;
  display:flex;
  gap:8px;
  justify-content:center;
}
.dot{
  width:9px;height:9px;border-radius:999px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(0,0,0,.14);
}
.dot.is-on{background:#a8ff6a;border-color:rgba(0,0,0,.12)}

.bullets{
  margin:16px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.bullets li{display:flex;gap:10px;align-items:flex-start;color:#20312b}
.bullets i{color:var(--green);margin-top:3px}

.center{display:grid;place-items:center;text-align:center}
.btn-outline{
  display:inline-flex;
  gap:10px;
  align-items:center;
  border:1px solid rgba(76,138,22,.35);
  padding:12px 16px;
  border-radius:16px;
  font-weight:900;
  color:var(--green);
  background:#fff;
  position:relative;
  overflow:hidden;
}
.btn-outline:hover{background:rgba(76,138,22,.08)}

.carousel{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  background:transparent;
  box-shadow:none;
  border:0;
  --gap:26px;
  --per-view:1;
}
.carousel::before,
.carousel::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:46px;
  pointer-events:none;
  z-index:2;
}
.carousel::before{
  left:0;
  background:linear-gradient(90deg, var(--bg), rgba(255,255,255,0));
}
.carousel::after{
  right:0;
  background:linear-gradient(270deg, var(--bg), rgba(255,255,255,0));
}
.carousel__track{
  display:flex;
  gap:var(--gap);
  overflow-x:auto;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:10px 26px 44px;
  scroll-padding-inline:26px;
  scrollbar-width:none;
}
.carousel__track::-webkit-scrollbar{display:none}
.testimonial{
  flex:0 0 calc((100% - (var(--per-view) - 1) * var(--gap)) / var(--per-view));
  min-width:0;
  padding:22px 18px 20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.05);
  border-radius:22px;
  box-shadow:0 22px 52px rgba(0,0,0,.14);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:248px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.testimonial.is-active{
  transform:translateY(-4px) scale(1.01);
  box-shadow:0 22px 44px rgba(0,0,0,.14);
}
.testimonial__stars{color:#16a34a;letter-spacing:2px;font-size:14px;margin-bottom:8px}
.testimonial__title{
  font-weight:900;
  margin:0 0 6px;
  min-height:2.6em;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.testimonial__text{
  margin:0 0 10px;
  color:#2c3f38;
  line-height:1.6;
  min-height:4.8em;
  max-height:4.8em;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}
.testimonial__name{font-weight:800;color:#0b2a22}
.carousel__nav{
  position:absolute;inset:auto 12px 12px 12px;
  display:flex;justify-content:space-between;align-items:center;
  z-index:3;
}
.carousel__btn{
  width:42px;height:42px;border-radius:16px;border:1px solid rgba(0,0,0,.10);
  background:#fff;display:grid;place-items:center;
  cursor:pointer;
}
.carousel__btn:hover{background:rgba(76,138,22,.08)}

@media (min-width: 760px){
  .carousel{--per-view:2}
}
@media (min-width: 980px){
  .carousel{--per-view:3}
}
@media (min-width: 1200px){
  .carousel{--per-view:4}
}

@media (max-width: 980px){
  .offer{grid-template-columns:1fr}
  .offer__title{font-size:38px}
}
@media (max-width: 760px){
  .offer__left{padding:18px}
  .offer__badge{font-size:28px}
  .offer__price{font-size:70px}
  .offer__rule{
    flex-direction:column;
    align-items:stretch;
    background:#f8fff6;
  }
  .offer__rule::before{display:none}
  .offer__rule-item{flex:1 1 auto}
  .offer__rule-plus{margin-inline:auto}
  .offer__rule-plus::after{display:none}
  .offer__rule-text{text-transform:none}
}

.highlight{
  background:linear-gradient(135deg, rgba(76,138,22,.12), rgba(6,38,31,.08));
  border:1px solid rgba(76,138,22,.18);
  border-radius:28px;
  padding:34px 24px;
  box-shadow:0 18px 34px rgba(0,0,0,.08);
}
.highlight h3{margin:0 0 10px;font-size:26px;line-height:1.15}
.highlight p{margin:0 0 16px;color:#2a3a34}

.expert{
  display:flex;
  align-items:center;
  gap:16px;
}
.expert__avatar{flex:0 0 auto}
.avatar{
  width:120px;
  height:120px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:950;
  letter-spacing:.6px;
  color:#0b2a22;
  background:linear-gradient(135deg, rgba(168,255,106,.35), rgba(255,255,255,.98));
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}
.qr{
  width:100%;
  display:grid;
  place-items:center;
  padding:12px;
  border-radius:18px;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.06);
}
.qr img{
  width:240px;
  height:240px;
  max-width:100%;
  border-radius:12px;
  background:#fff;
}

.awards{
  display:flex;
  gap:14px;
  overflow:hidden;
  border-radius:22px;
  padding:16px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 18px 34px rgba(0,0,0,.08);
}
.award{
  width:160px;
  min-width:160px;
  border-radius:18px;
  padding:14px;
  border:1px solid rgba(0,0,0,.06);
  display:grid;
  place-items:center;
  background:#fbfffd;
}
.award img{width:100%;height:auto;object-fit:contain}

.page-hero{
  position:relative;
  color:#eafff4;
  min-height:240px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:0;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--bg-image, url("../../images/Why Choose Greenfut.jpeg")) center/cover no-repeat;
  transform-origin:center;
  animation:bgZoom 18s ease-in-out infinite alternate;
  will-change:transform;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(6,38,31,.85), rgba(6,38,31,.40));
}
.page-hero .container{position:relative;z-index:1;width:100%;padding:46px 0}
.page-hero h1{margin:0;font-size:40px;font-weight:900;width:100%}

@media (prefers-reduced-motion: reduce){
  .hero::before,.page-hero::before,.media-card img{animation:none;transform:none}
}

.numbers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.number-card{
  border-radius:24px;
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  box-shadow:0 16px 30px rgba(0,0,0,.08);
  padding:18px 16px;
  display:flex;
  align-items:center;
  gap:12px;
}
.number-card__icon{
  width:50px;height:50px;border-radius:18px;
  background:rgba(76,138,22,.10);
  border:1px solid rgba(76,138,22,.18);
  display:grid;place-items:center;
  color:var(--green);
  font-size:20px;
}
.number-card__value{font-size:28px;font-weight:950;line-height:1}
.number-card__label{color:var(--muted);font-weight:750;margin-top:4px}

.calc{
  padding:60px 0;
}
.calc__wrap{display:grid;place-items:center}
.funnel{
  width:min(720px,100%);
  background:#fff;
  border-radius:26px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.06);
  padding:18px;
}
.funnel__top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.funnel__title{font-weight:950;margin:0;font-size:18px}
.progress{
  height:10px;
  background:rgba(0,0,0,.06);
  border-radius:999px;
  overflow:hidden;
  flex:1;
}
.progress__bar{height:100%;width:0;background:linear-gradient(90deg,var(--green),var(--green-2))}
.funnel__body{margin-top:16px}
.q{display:none}
.q.is-on{display:block}
.q__label{font-weight:900;margin:0 0 10px}
.options{display:grid;gap:10px}
.opt{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  padding:14px 14px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  font-weight:850;
}
.opt:hover{background:rgba(76,138,22,.08)}
.opt small{color:var(--muted);font-weight:700}
.two{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.field{display:grid;gap:8px}
.label{font-weight:850;color:#263a33}
.results{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:14px;
}
.result{
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  background:#fbfffd;
  padding:14px;
}
.result__k{color:var(--muted);font-weight:800}
.result__k i{color:var(--green);margin-right:8px}
.result__v{font-size:22px;font-weight:950;margin-top:6px}
.compare{
  margin-top:14px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.06);
  background:#fff;
  padding:14px;
}
.compare__row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.compare__box{
  border-radius:16px;
  border:1px solid rgba(76,138,22,.18);
  background:rgba(76,138,22,.06);
  padding:12px;
}
.compare__box h4{margin:0 0 6px;font-size:14px}
.compare__box div{font-weight:950;font-size:18px}

.offer{
  width:min(1180px,100%);
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(280px, 380px) 1fr;
  gap:26px;
  align-items:stretch;
}
.offer-link{
  display:block;
  text-decoration:none;
  color:inherit;
}
.offer-link .offer{cursor:pointer}
.offer__left{
  min-width:0;
  border-radius:28px;
  padding:22px 22px;
  background:linear-gradient(135deg,#1f7a00,#0e4f00);
  color:#fff;
  box-shadow:0 22px 52px rgba(0,0,0,.14);
  border:1px solid rgba(255,255,255,.10);
}
.offer__badge{
  font-weight:950;
  letter-spacing:.6px;
  font-size:clamp(26px, 3.2vw, 34px);
  line-height:1;
}
.offer__price{
  font-weight:950;
  font-size:clamp(62px, 7.2vw, 92px);
  line-height:1;
  margin-top:8px;
  letter-spacing:-1.2px;
}
.offer__from{
  font-size:.26em;
  font-weight:900;
  letter-spacing:.2px;
  display:inline-block;
  margin-right:8px;
  opacity:.95;
  transform:translateY(-.28em);
}
.offer__list{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.offer__list li{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  font-size:18px;
}
.offer__list i{
  width:22px;height:22px;
  border-radius:999px;
  background:#ffffff;
  color:#0e4f00;
  display:grid;
  place-items:center;
  font-size:12px;
}
.offer__right{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
}
.offer__title{
  margin:0;
  color:var(--green);
  font-weight:950;
  font-size:clamp(30px, 4.2vw, 46px);
  line-height:1.05;
}
.offer__rule{
  border-radius:16px;
  border:2px solid rgba(76,138,22,.55);
  background:#f8fff6;
  padding:12px 14px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  box-shadow:0 18px 34px rgba(0,0,0,.08);
  position:relative;
}
.offer__rule-item{
  display:flex;
  gap:12px;
  align-items:center;
  flex:1 1 280px;
  min-width:0;
}
.offer__rule-item:first-of-type{
  padding:8px 10px;
  border-radius:14px;
  background:rgba(76,138,22,.07);
  border:1px solid rgba(76,138,22,.20);
}
.offer__rule-ico{
  width:54px;height:54px;
  border-radius:18px;
  border:2px solid rgba(76,138,22,.55);
  background:rgba(76,138,22,.10);
  display:grid;
  place-items:center;
  color:var(--green);
  font-size:22px;
  flex:0 0 auto;
}
.offer__rule-text{
  color:#0b2a22;
  font-weight:900;
  font-size:13px;
  line-height:1.25;
  text-transform:uppercase;
  word-break:break-word;
}
.offer__rule-item:first-of-type .offer__rule-text{
  font-size:14.5px;
  line-height:1.32;
}
.offer__rule-item:first-of-type .offer__rule-text strong{
  font-size:1.22em;
}
.offer__rule-kicker{
  display:block;
  font-size:11px;
  letter-spacing:.6px;
  font-weight:950;
  color:#0b2a22;
  margin-bottom:4px;
}
.offer__rule-item:first-of-type .offer__rule-kicker{
  font-size:12px;
  color:var(--green-2);
}
.offer__rule-text strong{color:var(--green)}
.offer__rule-plus{
  width:46px;height:46px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:950;
  font-size:30px;
  flex:0 0 auto;
  position:relative;
  z-index:3;
}
.offer__rule-plus::after{
  display:none;
}

.split .offer{grid-template-columns:1fr}
.split .offer__rule{flex-direction:column;align-items:stretch;background:#f8fff6}
.split .offer__rule::before{display:none}
.split .offer__rule-item{flex:1 1 auto}
.split .offer__rule-plus::after{display:none}

.page--ashp-apply .q.is-on{animation:stepIn .22s ease both}
.page--ashp-apply .opt.is-selected{
  border-color:rgba(76,138,22,.55);
  background:rgba(76,138,22,.10);
  box-shadow:0 14px 26px rgba(76,138,22,.14);
}
.page--ashp-apply .result-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
  margin-top:14px;
}
.page--ashp-apply .result-fineprint{
  display:block;
  margin-top:12px;
  font-size:12px;
  line-height:1.45;
  color:rgba(44,63,56,.88);
  font-weight:750;
}
.page--ashp-apply .modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:1400;
}
.page--ashp-apply .modal.is-open{display:flex}
.page--ashp-apply .modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.52);
}
.page--ashp-apply .modal__card{
  position:relative;
  width:min(560px,100%);
  background:#fff;
  border-radius:24px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 30px 70px rgba(0,0,0,.22);
  padding:18px;
}
.page--ashp-apply .modal__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.page--ashp-apply .modal__title{font-weight:950}
.page--ashp-apply .modal__close{
  width:42px;height:42px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  cursor:pointer;
  display:grid;
  place-items:center;
}
.page--ashp-apply .modal__close:hover{background:rgba(76,138,22,.08)}
.page--ashp-apply .modal__text{
  margin:12px 0 0;
  color:#2c3f38;
  line-height:1.6;
  font-weight:800;
}
.page--ashp-apply .modal__actions{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
}

@keyframes stepIn{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:none}
}

.footer{margin-top:70px}
.prefooter{
  padding:26px 0 10px;
}
.prefooter__card{
  width:min(980px,100%);
  margin:0 auto;
  background:linear-gradient(135deg,#05231d,#0a3a2f);
  color:#eafff4;
  border-radius:26px;
  padding:16px 16px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:14px;
  align-items:center;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  border:1px solid rgba(0,0,0,.10);
}
.prefooter__icon{
  width:54px;height:54px;border-radius:20px;
  background:rgba(168,255,106,.14);
  border:1px solid rgba(168,255,106,.20);
  display:grid;place-items:center;
  color:#d8ffbd;
  font-size:22px;
}
.prefooter__title{font-weight:950;font-size:16px}
.prefooter__sub{color:rgba(255,255,255,.84);font-size:13px;margin-top:4px}
.prefooter__form{display:flex;align-items:center;gap:10px}
.prefooter__input{
  width:320px;
  max-width:44vw;
  height:50px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(0,0,0,.18);
  color:#fff;
  padding:0 14px;
  outline:none;
}
.prefooter__input::placeholder{color:rgba(255,255,255,.74)}
.prefooter__btn{
  width:52px;height:50px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  cursor:pointer;
}
.footer__main{
  position:relative;
  background:linear-gradient(135deg,#05231d,#0a3a2f);
  color:#eafff4;
  border-radius:48px 48px 0 0;
  overflow:hidden;
}
.footer__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 420px at 22% 18%, rgba(76,138,22,.28), rgba(76,138,22,0) 60%),
    radial-gradient(520px 420px at 78% 24%, rgba(76,138,22,.18), rgba(76,138,22,0) 60%);
  opacity:.80;
  pointer-events:none;
}
.footer__container{
  position:relative;
  padding:48px 0 46px;
  display:grid;
  grid-template-columns:1.05fr 1.95fr;
  gap:28px;
}
.footer__brand{max-width:420px}
.footer__logo{width:250px;margin-bottom:12px}
.footer__about{margin:0 0 10px;line-height:1.6;color:rgba(255,255,255,.86)}
.footer__trust{margin:0 0 14px;font-weight:900;color:#d8ffbd}
.footer__points{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.footer__points li{display:flex;gap:10px;align-items:center;color:rgba(255,255,255,.88)}
.footer__points i{color:#a8ff6a}
.footer__accred{
  grid-column:1/-1;
  margin-top:14px;
}
.footer .awards{
  padding:10px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.footer .award{
  width:150px;
  min-width:150px;
  padding:12px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.06);
}

.footer__cols{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  align-items:start;
  padding-top:10px;
}
.footer__col{padding-left:18px;border-left:1px solid rgba(255,255,255,.12)}
.footer__title{
  margin:0 0 12px;
  font-weight:950;
  color:#d8ffbd;
  position:relative;
}
.footer__title::after{
  content:"";
  display:block;
  width:28px;height:3px;
  background:rgba(168,255,106,.85);
  border-radius:999px;
  margin-top:10px;
}
.footer__links{margin:0;padding:0;list-style:none;display:grid;gap:10px}
.footer__links a{color:rgba(255,255,255,.86);font-weight:800}
.footer__links a:hover{color:#fff}
.footer__contact{margin:0;padding:0;list-style:none;display:grid;gap:12px}
.footer__contact li{display:flex;gap:10px;align-items:flex-start;color:rgba(255,255,255,.86)}
.footer__contact i{color:#a8ff6a;margin-top:3px}
.footer__contact a{color:rgba(255,255,255,.86);font-weight:850}

.footer__bottom{
  background:#f3f0ee;
  color:#21312a;
}
.footer__bottom-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 0;
}
.footer__copy{font-weight:800}
.footer__socials{display:flex;align-items:center;gap:10px}
.footer__follow{font-weight:900;color:var(--green);margin-right:6px}
.footer__social{
  width:36px;height:36px;border-radius:999px;
  display:grid;place-items:center;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
}
.footer__social:hover{background:rgba(76,138,22,.10)}

.backtop{
  position:fixed;
  right:18px;
  bottom:18px;
  width:50px;
  height:50px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.10);
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  display:grid;
  place-items:center;
  cursor:pointer;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:opacity .2s ease,transform .2s ease,filter .2s ease;
  z-index:1100;
}
.backtop.is-on{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.backtop:hover{filter:brightness(1.04)}

.cookie{
  position:fixed;
  left:18px;
  right:18px;
  bottom:18px;
  width:min(980px, calc(100% - 36px));
  margin-inline:auto;
  background:#fff;
  border:1px solid rgba(0,0,0,.10);
  border-radius:22px;
  box-shadow:0 22px 52px rgba(0,0,0,.18);
  padding:14px 14px;
  z-index:1200;
  display:none;
}
.cookie.is-on{display:block}
.cookie__grid{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
}
.cookie__title{font-weight:950;color:#0b2a22;margin:0 0 2px}
.cookie__text{margin:0;color:#2c3f38;line-height:1.5;font-weight:800;font-size:13px}
.cookie__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.cookie__actions .btn,
.cookie__actions .btn-outline{
  height:44px;
  border-radius:16px;
}
@media (max-width: 760px){
  .cookie__grid{grid-template-columns:1fr}
  .cookie__actions{justify-content:flex-start}
}

@media (max-width: 980px){
  .navbar__inner{gap:12px}
  .brand{min-width:auto}
  .brand__tagline{display:none}
  .nav__link{width:84px}
  .cta{display:none}
  .hero__grid{grid-template-columns:1fr;gap:18px}
  .hero__headline{font-size:38px}
  .hero--home{min-height:680px;padding:82px 0 76px}
  .hero-icons__wrap{grid-template-columns:1fr 1fr;gap:0}
  .hero-icons__item{border-right:1px solid rgba(0,0,0,.06)}
  .hero-icons__item:nth-child(2){border-right:0}
  .hero-icons__item:nth-child(1),.hero-icons__item:nth-child(2){border-bottom:1px solid rgba(0,0,0,.06)}
  .numbers{grid-template-columns:1fr 1fr}
  .offer{grid-template-columns:1fr}
  .offer__rule{flex-direction:column;align-items:stretch}
  .offer__rule-plus::after{display:none}
  .split{grid-template-columns:1fr;gap:18px}
  .prefooter__card{grid-template-columns:auto 1fr;gap:12px}
  .prefooter__form{grid-column:1/-1}
  .prefooter__input{max-width:100%;width:100%}
  .footer__container{grid-template-columns:1fr;gap:22px}
  .footer__cols{grid-template-columns:1fr 1fr;gap:16px}
  .footer__col{border-left:0;padding-left:0}
}

@media (max-width: 760px){
  .topbar__item--address{display:none}
  .topbar__inner{flex-wrap:wrap}
  .topbar__left{flex-wrap:wrap;gap:10px}
  .topbar__sep{display:none}
  .nav-toggle{display:block;margin-left:auto}
  .nav{display:none;position:absolute;left:18px;right:18px;top:100%;margin:10px auto 0;background:#fff;border-radius:22px;box-shadow:0 18px 40px rgba(0,0,0,.16);padding:10px;gap:8px}
  .nav.is-open{display:grid;grid-template-columns:1fr 1fr}
  .nav::before{display:none}
  .nav__link{width:auto;flex-direction:row;justify-content:flex-start}
  .nav__icon{width:38px;height:38px;border-radius:14px}
  .two{grid-template-columns:1fr}
  .hero--home{min-height:0;padding:74px 0 70px}
  .numbers{grid-template-columns:1fr}
  .offer{gap:18px}
  .postcode-card{max-width:560px;margin-inline:auto}
  .postcode-card__row{flex-direction:column}
  .postcode-card__row .btn{width:100%}
  body.page--home .postcode-card .input{
    height:52px;
    border-radius:14px;
    border:1px solid rgba(0,0,0,.14);
    background:#fff;
    padding:0 14px;
    font-size:14px;
  }
  .expert{flex-direction:column;align-items:flex-start}
  .avatar{width:104px;height:104px}
  .page-hero::before{background-size:contain;background-position:center;background-repeat:no-repeat}
  .media-card{aspect-ratio:auto;min-height:0}
  .media-card img{
    position:relative;
    inset:auto;
    width:100%;
    height:auto;
    object-fit:contain;
    object-position:center;
    background:#fff;
    animation:none;
    transform:none;
  }
  .footer__bottom-inner{flex-direction:column;align-items:flex-start}
}


/* Blog Styles */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; margin-top: 30px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; color: inherit; border: 1px solid rgba(0,0,0,0.04); }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.blog-card__img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__content { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card__meta { font-size: 13px; color: var(--muted); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.blog-card__title { font-size: 20px; line-height: 1.4; color: var(--dark-2); margin: 0 0 12px; font-weight: 700; }
.blog-card__excerpt { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0 0 20px; flex-grow: 1; }
.blog-card__readmore { font-size: 15px; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 6px; margin-top: auto; }
.blog-hero { position: relative; padding: 120px 0 60px; min-height: 400px; display: flex; align-items: center; }
.blog-hero__bg { position: absolute; inset: 0; z-index: -1; }
.blog-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.blog-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6,38,31,0.9), rgba(6,38,31,0.7)); }
.blog-hero__container { position: relative; z-index: 1; }
.blog-hero__content { max-width: 800px; color: #fff; }
.blog-hero__title { font-size: clamp(32px, 5vw, 48px); line-height: 1.2; margin: 15px 0 0; }
.blog-hero__meta { display: flex; gap: 20px; font-size: 15px; opacity: 0.9; margin-top: 20px; }
.blog-hero__back { display: inline-flex; align-items: center; gap: 8px; color: #fff; text-decoration: none; font-size: 14px; font-weight: 600; background: rgba(255,255,255,0.15); padding: 6px 14px; border-radius: 999px; transition: background 0.2s; margin-bottom: 20px; }
.blog-hero__back:hover { background: rgba(255,255,255,0.25); }
.blog-post-container { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
@media (max-width: 991px) { .blog-post-container { grid-template-columns: 1fr; } }
.blog-post-body { font-size: 17px; line-height: 1.8; color: #333; }
.blog-post-body h2, .blog-post-body h3 { color: var(--dark-2); margin: 40px 0 15px; line-height: 1.3; }
.blog-post-body p { margin-bottom: 20px; }
.blog-post-body ul { margin-bottom: 24px; padding-left: 20px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-share { margin-top: 50px; padding-top: 30px; border-top: 1px solid #eee; display: flex; align-items: center; gap: 15px; font-weight: 600; color: var(--dark-2); }
.blog-post-share a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #f0f4f2; color: var(--green); transition: all 0.2s; }
.blog-post-share a:hover { background: var(--green); color: #fff; }
.blog-sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 30px; }
.blog-sidebar-widget { background: #f9fdfa; border: 1px solid #eef5f1; border-radius: 16px; padding: 25px; }
.blog-sidebar-title { margin: 0 0 15px; font-size: 18px; color: var(--dark-2); }
.blog-sidebar-recent { list-style: none; padding: 0; margin: 0; }
.blog-sidebar-recent li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.blog-sidebar-recent li:last-child { border-bottom: none; padding-bottom: 0; }
.blog-sidebar-recent a { display: block; font-weight: 600; color: var(--dark-2); line-height: 1.4; margin-bottom: 5px; transition: color 0.2s; }
.blog-sidebar-recent a:hover { color: var(--green); }
.blog-sidebar-recent span { font-size: 13px; color: var(--muted); }
