:root {
  --gs-blue: #0240ac;
  --gs-green: #51b37f;
  --gs-dark: #1f2933;
  --gs-text: #4e5772;
  --gs-gray: #f5f7fa;
}

body.home {
  margin: 0;
  overflow-x: hidden;
  color: var(--gs-text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  background: #fff;
}

body.home *,
body.home *::before,
body.home *::after {
  box-sizing: border-box;
}

body.home a {
  color: inherit;
  text-decoration: none;
}

body.home img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

body.home .flex {
  display: flex;
}

body.home .grid {
  display: grid;
}

body.home .justify--between {
  justify-content: space-between;
}

body.home .align--center {
  align-items: center;
}

body.home .text-center {
  text-align: center;
}

body.home .bg-gray {
  background: var(--gs-gray);
}

body.home .h1,
body.home h1,
body.home h2,
body.home h3 {
  color: var(--gs-dark);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
}

body.home .h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.17;
}

#header.header-2 {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: auto;
  min-height: 85px;
  color: #fff;
  background: var(--gs-blue);
  box-shadow: 0 2px 18px rgba(5, 24, 72, 0.12);
  transition:
    min-height 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

#header.header-2 .menu {
  display: flex;
  align-items: center;
  min-height: 85px;
  gap: 18px;
  transition:
    min-height 0.28s ease,
    gap 0.28s ease,
    padding 0.28s ease;
}

#header.header-2 .logo-2 {
  flex: 0 0 auto;
  transition: flex-basis 0.28s ease;
}

#header.header-2 .logo-2 img {
  transition:
    width 0.28s ease,
    opacity 0.28s ease;
}

#header.header-2 .cus-tp-rating {
  white-space: nowrap;
  line-height: 1.2;
  transition:
    opacity 0.24s ease,
    transform 0.28s ease;
}

#header.header-2 .cus-tp-rating strong,
#header.header-2 .cus-tp-rating small {
  display: flex;
  align-items: center;
  gap: 6px;
}

#header.header-2 .cus-tp-rating strong {
  font-size: 14px;
}

#header.header-2 .cus-tp-rating small {
  font-size: 11px;
  opacity: 0.88;
}

#header.header-2 .cus-tp-rating img {
  max-height: 16px;
  width: auto;
}

#header.header-2 .menu-items {
  flex: 1;
  min-width: 0;
  transition:
    opacity 0.2s ease,
    transform 0.28s ease;
}

#header.header-2 .menu__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  list-style: none;
}

#header.header-2 .menu__nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

#header.header-2 .search-icon img {
  width: 21px;
}

#header.header-2 .postcode-area {
  display: none;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.24s ease,
    transform 0.28s ease;
}

#header.header-2 .menu__phone {
  justify-content: flex-end;
  transition:
    opacity 0.24s ease,
    transform 0.28s ease;
}

#header.header-2 .phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  transition: gap 0.28s ease;
}

#header.header-2 .phone-wrap > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

#header.header-2 .menu__phone__number {
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  transition:
    font-size 0.28s ease,
    line-height 0.28s ease;
}

#header.header-2 .menu__phone__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  transition:
    font-size 0.28s ease,
    line-height 0.28s ease,
    padding 0.28s ease;
}

#header.header-2 .button-menu-mobile,
#header.header-2 .btn-sidebar-menu {
  display: none;
}

.offcanvas-area {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: block;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition:
    opacity 0.28s ease,
    background 0.28s ease;
}

body.sidebar-open {
  overflow: hidden;
}

body.home .offcanvas-area.active {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.32);
  opacity: 1;
}

body.home .offcanvas-area .offcanvas-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: min(400px, 100vw);
  height: 100%;
  padding: 72px 38px;
  background: var(--gs-blue);
  box-shadow: -16px 0 32px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

body.home .offcanvas-area.active .offcanvas-inner {
  transform: translateX(0);
}

body.home .offcanvas-area .offcanvas-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.home .offcanvas-area .offcanvas-nav a {
  display: inline-block;
  color: #fff;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

body.home .offcanvas-area .offcanvas-nav a:hover {
  color: #cfe0ff;
}

body.home .offcanvas-area .offc-close-btn {
  position: absolute;
  top: 30px;
  right: 26px;
  z-index: 2;
  display: block;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

body.home .offcanvas-area .offc-close-btn::before,
body.home .offcanvas-area .offc-close-btn::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  width: 36px;
  height: 4px;
  border-radius: 4px;
  background: #fff;
}

body.home .offcanvas-area .offc-close-btn::before {
  transform: rotate(45deg);
}

body.home .offcanvas-area .offc-close-btn::after {
  transform: rotate(-45deg);
}

#header.header-2.header-scrolled .container {
  width: min(1510px, calc(100% - 48px));
}

#header.header-2.header-scrolled .menu {
  min-height: 106px;
  gap: 28px;
}

#header.header-2.header-scrolled .logo-2 img {
  width: 185px;
}

#header.header-2.header-scrolled .menu-items,
#header.header-2.header-scrolled .search-icon {
  display: none;
}

#header.header-2.header-scrolled .cus-tp-rating-area {
  display: block;
  margin-right: auto;
}

#header.header-2.header-scrolled .cus-tp-rating {
  /* display: grid;
  grid-template-columns: auto auto;
  column-gap: 10px; */
  align-items: center;
}

ul.customer-form__results {
  margin: 0;
  padding: 0;
}

#header.header-2.header-scrolled .cus-tp-rating strong {
  grid-row: 1 / 3;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

#header.header-2.header-scrolled .cus-tp-rating strong img {
  width: 92px;
  max-height: none;
}

#header.header-2.header-scrolled .cus-tp-rating small {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

#header.header-2.header-scrolled .cus-tp-rating small img {
  width: 112px;
  max-height: none;
}

#header.header-2.header-scrolled .postcode-area {
  display: block;
  flex: 0 1 455px;
  opacity: 1;
  transform: translateY(0);
}

#header.header-2.header-scrolled .postcode-area .search-base {
  display: flex;
  width: 100%;
  height: 74px;
  padding: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
  transition:
    width 0.28s ease,
    height 0.28s ease,
    opacity 0.24s ease;
}

#header.header-2.header-scrolled .postcode-area .search-base__input {
  height: 74px;
  min-width: 0;
  padding: 0 26px;
  color: #4e5772;
  font-size: 20px;
  transition:
    height 0.28s ease,
    font-size 0.28s ease,
    padding 0.28s ease;
}

#header.header-2.header-scrolled .postcode-area .search-base__button {
  width: 224px;
  height: 68px;
  margin: 3px 4px 3px 0;
  border-radius: 5px;
  background: var(--gs-green);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  transition:
    width 0.28s ease,
    height 0.28s ease,
    margin 0.28s ease,
    font-size 0.28s ease,
    background-color 0.2s ease;
}

#header.header-2.header-scrolled .menu__phone {
  display: flex;
  flex: 0 0 auto;
}

#header.header-2.header-scrolled .phone-wrap {
  align-items: flex-start;
}

#header.header-2.header-scrolled .phone-wrap > div {
  gap: 10px;
}

#header.header-2.header-scrolled .phone-wrap svg {
  width: 26px;
  height: 26px;
}

#header.header-2.header-scrolled .menu__phone__number {
  font-size: 28px;
  line-height: 1;
}

#header.header-2.header-scrolled .menu__phone__text {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

#header.header-2.header-scrolled .menu__phone__text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1f34;
}

#header.header-2.header-scrolled .button-menu-mobile {
  display: block;
  position: relative;
  width: 52px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition:
    width 0.28s ease,
    height 0.28s ease,
    transform 0.28s ease;
}

#header.header-2.header-scrolled .button-menu-mobile::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 46px;
  height: 3px;
  background: #fff;
  box-shadow:
    0 17px 0 #fff,
    0 34px 0 #fff;
  transition:
    width 0.28s ease,
    top 0.28s ease,
    box-shadow 0.28s ease;
}

body.home .site-head {
  position: relative;
  z-index: 1;
  min-height: 455px;
  padding: 166px 15px 144px;
  color: #fff;
  background: var(--gs-blue);
  overflow: visible;
}

body.home .site-head .title {
  margin: 0;
  color: #fff;
  white-space: normal;
}

body.home .site-head .sub-title {
  margin-top: 16px;
  color: #fff;
  font-size: 18px;
}

body.home .search-head {
  position: absolute;
  left: 50%;
  bottom: -45px;
  width: 770px;
  max-width: calc(100% - 32px);
  transform: translateX(-50%);
}

body.home .search-base {
  position: relative;
  display: flex;
  width: 100%;
  height: 90px;
  padding: 10px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

body.home .search-base__input {
  flex: 1;
  min-width: 0;
  height: 70px;
  border: 0;
  border-radius: 5px 0 0 5px;
  padding: 0 30px;
  color: var(--gs-dark);
  font-size: 16px;
  outline: 0;
}

body.home .search-base__button {
  width: 180px;
  height: 70px;
  border: 0;
  border-radius: 5px;
  background: var(--gs-green);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
}

body.home .search-base__button[disabled] {
  opacity: 1;
  cursor: help;
}

body.home .tooltip,
body.home .form__error-message {
  display: none;
}

body.home .point-header {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 110px;
  height: 96px;
  opacity: 0.45;
  background-image: radial-gradient(#59a5f4 2px, transparent 2px);
  background-size: 16px 16px;
  transform: translateX(-326%);
}

body.home .index-section {
  padding: 86px 0;
}

body.home .section-excellent {
  padding-top: 95px;
  padding-bottom: 36px;
}

body.home .section-excellent__header {
  margin-bottom: 22px;
  color: var(--gs-text);
  font-size: 16px;
  font-weight: 400;
}

.trustpilot-card {
  width: min(480px, 100%);
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 30px rgba(227, 232, 240, 0.9);
  text-align: center;
}

.trustpilot-card strong {
  display: block;
  color: #111;
  font-size: 28px;
  line-height: 1.2;
}

.trustpilot-card span {
  display: block;
  color: #00b67a;
  letter-spacing: 3px;
  margin: 8px 0;
}

.trustpilot-card p {
  margin: 0;
}

.trust-pilot {
  background: #fff;
}

.trust-pilot .container {
  width: min(1480px, calc(100% - 48px));
}

.tp-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  margin-top: 52px;
}

.tp-slider-window {
  overflow: hidden;
}

.tp-review-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 120px) / 5);
  gap: 30px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.tp-review-card {
  min-height: 200px;
  padding: 18px 18px 16px;
  border-bottom: 1px solid #dcdfe5;
  border-radius: 2px;
  background: #f8f9fb;
  color: #191919;
}

.tp-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.tp-stars {
  display: inline-flex;
  gap: 2px;
  color: #fff;
  letter-spacing: 0;
  font-size: 17px;
  line-height: 1;
}

.tp-stars::before,
.tp-stars::after {
  content: none;
}

.tp-stars {
  background: linear-gradient(90deg, #00b67a 0 100%);
  padding: 3px 4px;
}

.tp-stars-four {
  background: #73cf11;
}

.tp-stars-four i {
  color: #d8dbe2;
  font-style: normal;
}

.tp-verified {
  position: relative;
  color: #5f6368;
  font-size: 14px;
  text-decoration: underline;
  white-space: nowrap;
}

.tp-verified::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 5px;
  border-radius: 50%;
  background: #5f6368;
  vertical-align: -4px;
}

.tp-verified::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.tp-review-card h3 {
  margin: 0 0 14px;
  color: #191919;
  font-size: 18px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-review-card p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 34px;
  overflow: hidden;
  color: #191919;
  font-size: 16px;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.tp-review-meta {
  color: #6b6f76;
  font-size: 15px;
  line-height: 1.2;
}

.tp-review-meta strong {
  font-weight: 800;
}

.tp-slider-arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #111;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.tp-slider-arrow::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 11px;
  width: 9px;
  height: 9px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
}

.tp-slider-prev::before {
  transform: rotate(-135deg);
}

.tp-slider-next::before {
  left: 8px;
  transform: rotate(45deg);
}

.tp-slider-arrow:disabled {
  border-color: #d1d4d9;
  cursor: default;
}

.tp-slider-arrow:disabled::before {
  border-color: #d1d4d9;
}

.tp-slider-summary {
  margin-top: 16px;
  color: #191919;
  text-align: center;
  font-size: 16px;
  line-height: 1.35;
}

.tp-slider-summary a {
  color: #191919;
  text-decoration: underline;
}

.tp-brand {
  color: #191919;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.tp-brand span {
  color: #00b67a;
  font-size: 25px;
  vertical-align: -3px;
}

.homepage-slider-reviews {
  padding: 86px 0 72px;
  overflow: hidden;
  background: #fff;
}

.customer-review-window {
  position: relative;
  width: min(1800px, calc(100% - 100px));
  margin: 0 auto;
  overflow: hidden;
}

.customer-review-window::before,
.customer-review-window::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 92px;
  pointer-events: none;
}

.customer-review-window::before {
  left: 0;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.88) 28%,
    rgba(255, 255, 255, 0) 100%
  );
}

.customer-review-window::after {
  right: 0;
  background: linear-gradient(
    270deg,
    #fff 0%,
    rgba(255, 255, 255, 0.88) 28%,
    rgba(255, 255, 255, 0) 100%
  );
}

.slider-reviews {
  display: flex !important;
  gap: 16px;
  width: 100% !important;
  padding: 0 !important;
  animation: none !important;
  transition: transform 0.4s ease;
  will-change: transform;
}

.slider-reviews__item {
  flex: 0 0 calc((100% - 48px) / 4) !important;
  overflow: hidden;
  border-radius: 12px;
}

.slider-reviews__item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: none;
}

.customer-review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.customer-review-arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--gs-green);
  cursor: pointer;
}

.customer-review-arrow::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 11px;
  width: 9px;
  height: 9px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.customer-review-prev::before {
  transform: rotate(45deg);
}

.customer-review-next::before {
  left: 8px;
  transform: rotate(225deg);
}

.customer-review-arrow:disabled {
  opacity: 0.55;
  cursor: default;
}

.customer-review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customer-review-dots span {
  display: block;
  width: 38px;
  height: 12px;
  border-radius: 999px;
  background: #bfc6d1;
  transition: background 0.25s ease;
}

.customer-review-dots span.active {
  background: var(--gs-green);
}

body.home .row-home-a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
}

body.home .row-home-a.flip-content {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
}

body.home .row-home-a h2,
body.home .section-connect__title,
body.home .help-support__text h2 {
  margin: 0 0 24px;
}

body.home .text p {
  margin: 0 0 18px;
}

body.home .btn,
body.home .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 5px;
  background: var(--gs-green);
  color: #fff;
  font-weight: 800;
  transition: background 0.2s ease;
}

body.home .btn:hover {
  background: var(--gs-blue);
  color: #fff;
}

body.home .main .btn--primary {
  background: #0240ac;
}

body.home .main .btn--primary:hover {
  background: #04307b;
}

body.home .energy-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 0.74fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  width: 100%;
  max-width: 690px;
  margin-left: auto;
}

body.home .energy-collage__item {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 12px;
}

body.home .energy-collage__item--large {
  grid-column: 1 / 3;
  grid-row: 1;
  aspect-ratio: 1.68 / 1;
}

body.home .energy-collage__item--tall {
  grid-column: 3;
  grid-row: 1;
  aspect-ratio: 0.8 / 1;
}

body.home .energy-collage__item--small {
  grid-column: 1;
  grid-row: 2;
  aspect-ratio: 0.8 / 1;
}

body.home .energy-collage__item--wide {
  grid-column: 2 / 4;
  grid-row: 2;
  aspect-ratio: 1.72 / 1;
}

body.home .search-base .btn--base,
body.home .postcode-area .btn--base,
body.home .newletter .btn--base {
  background: var(--gs-green);
}

body.home .search-base .btn--base:hover,
body.home .postcode-area .btn--base:hover,
body.home .newletter .btn--base:hover {
  background: var(--gs-green);
}

body.home .section-checkout__header {
  margin-bottom: 78px;
}

body.home .section-checkout__header h2 {
  margin: 0 0 18px;
}

body.home .section-checkout__content {
  display: grid;
  grid-template-columns: repeat(6, minmax(95px, 1fr));
  gap: 34px 36px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

body.home .section-checkout__content img {
  max-width: 135px;
  max-height: 92px;
  object-fit: contain;
}

body.home .section-checkout {
  position: relative;
  min-height: 575px;
  padding: 158px 0 135px;
  background: #f4f7fb;
}

body.home .section-checkout .container {
  position: relative;
}

body.home .section-checkout__header h2 {
  color: #0d1b2d;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0;
}

body.home .section-checkout__header .sub-title {
  color: #394a68;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
}

body.home .brand-strip {
  padding: 86px 0;
  background: #fff;
}

body.home .brand-strip.bg-gray {
  background: #f4f7fb;
}

body.home .brand-strip__header {
  margin-bottom: 42px;
}

body.home .brand-strip__header h2 {
  margin: 0;
  color: #0d1b2d;
  font-size: 36px;
  line-height: 1.2;
}

body.home .brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1060px, 100%);
  margin: 0 auto;
}

body.home .brand-strip__grid.telecom {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(900px, 100%);
}

body.home .brand-strip__grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 104px;
  padding: 12px 16px;
  text-align: center;
}

body.home .brand-strip__grid img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 78px;
  object-fit: contain;
}

body.home .brand-strip__grid span:nth-child(5) img,
body.home .brand-strip__grid.telecom span:nth-child(2) img,
body.home .brand-strip__grid.telecom span:nth-child(3) img,
body.home .brand-strip__grid.telecom span:nth-child(4) img {
  max-width: 210px;
}

.provider-dot-pattern {
  position: absolute;
  left: 16px;
  top: -40px;
  width: 142px;
  height: 122px;
  background-image: radial-gradient(#638ac8 3px, transparent 3px);
  background-size: 16px 16px;
  opacity: 0.95;
}

body.home .section-connect__text {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: center;
  margin-bottom: 58px;
}

body.home .find-right-electricity .section-connect__text .text {
  min-height: 230px;
}

body.home .find-right-electricity .paragraph-dot-pattern {
  display: block;
  width: 142px;
  height: 126px;
  margin-top: 22px;
  margin-left: auto;
  margin-right: 0;
  background-image: radial-gradient(#638ac8 3px, transparent 3px);
  background-size: 16px 16px;
  background-position: 0 0;
}

body.home .section-connect .container {
  position: relative;
}

.connect-dot-pattern {
  position: absolute;
  right: -71px;
  bottom: -64px;
  z-index: 0;
  width: 152px;
  height: 128px;
  opacity: 0.95;
  background-image: radial-gradient(#638ac8 3px, transparent 3px);
  background-size: 16px 16px;
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 0 100%, 0 56%, 58% 56%);
}

body.home .section-connect__block-flex {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

body.home .section-connect__block {
  display: block;
  color: inherit;
}

body.home .section-connect__item {
  position: relative;
  height: 100%;
  min-height: 330px;
  padding: 94px 34px 42px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 24px rgba(111, 120, 146, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

body.home .section-connect__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 38px rgba(111, 120, 146, 0.18);
}

body.home .item-pattern {
  position: absolute;
  top: -48px;
  left: 28px;
}

body.home .item-pattern img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

body.home .item-title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.35;
}

body.home .learn-more {
  margin: 30px 0 0;
  color: var(--gs-blue);
  font-weight: 800;
}

body.home .help-support {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 88px 0 0;
  background: #f4f7fb;
}

body.home .help-support .grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.92fr) minmax(420px, 1fr);
  gap: 92px;
  align-items: end;
}

body.home .help-support__text .h5 {
  margin: 0 0 34px;
  color: #394a68;
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
}

body.home .help-support__phone a {
  color: var(--gs-blue);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
}

body.home .help-support__img {
  position: relative;
  z-index: 1;
  order: 1;
  min-height: 492px;
  text-align: left;
  isolation: isolate;
  background: linear-gradient(#0b82c8, #0b82c8) 68px 432px /
    min(520px, calc(100% - 96px)) 56px no-repeat;
}

body.home .help-support__text {
  order: 2;
  max-width: 640px;
  padding-bottom: 92px;
}

body.home .help-support__text h2 {
  max-width: 640px;
  color: #202a36;
  font-size: clamp(42px, 4.1vw, 58px);
  line-height: 1.18;
  letter-spacing: 0;
}

body.home .help-support__img::before {
  content: "";
  position: absolute;
  left: 96px;
  bottom: 64px;
  z-index: -2;
  width: 430px;
  height: 245px;
  border-radius: 430px 430px 0 0;
  background: #0b82c8;
}

body.home .help-support__img::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 74px;
  z-index: -3;
  width: 118px;
  height: 104px;
  background-image: radial-gradient(#6c94d5 3px, transparent 3.5px);
  background-size: 16px 16px;
}

body.home .help-support__img img {
  display: block;
  width: min(575px, 100%);
  height: 430px;
  max-width: none;
  margin: 0 0 0 22px;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: 48% 42%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(20, 56, 76, 0.1);
}

body.home .help-support__phone a::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  margin-right: 12px;
  background: currentColor;
  vertical-align: -3px;
  clip-path: path(
    "M27.1 20.3l-4.5-4.5a1.7 1.7 0 0 0-2.4 0l-3.8 3.8-8-8 3.8-3.8a1.7 1.7 0 0 0 0-2.4L7.7.9a1.7 1.7 0 0 0-2.4 0L1.1 5.1C1.1 17.3 10.7 26.9 22.9 26.9l4.2-4.2a1.7 1.7 0 0 0 0-2.4zM28 13.5h-3.4c0-5.6-4.5-10.1-10.1-10.1V0C22 0 28 6 28 13.5zM21.2 13.5h-3.4c0-1.9-1.5-3.4-3.4-3.4V6.8c3.8 0 6.8 3 6.8 6.7z"
  );
}

body.home .family-visual {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(#0b82c8, #0b82c8) 72px 430px / calc(100% - 110px)
    56px no-repeat;
}

body.home .family-visual::before {
  content: "";
  position: absolute;
  left: 72px;
  bottom: 56px;
  z-index: -2;
  width: min(560px, calc(100% - 72px));
  height: 300px;
  border-radius: 560px 560px 0 0;
  background: #0b82c8;
}

body.home .family-visual::after {
  content: "";
  position: absolute;
  right: 72px;
  top: 108px;
  z-index: -1;
  width: 128px;
  height: 112px;
  background-image: radial-gradient(#6c94d5 3px, transparent 3.5px);
  background-size: 16px 16px;
}

body.home .family-visual img {
  width: min(620px, 100%);
  height: 430px;
  object-fit: cover;
  object-position: 52% 40%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(20, 56, 76, 0.1);
}

.specialist-visual img {
  border-radius: 12px;
}

span#on-off-status {
  position: relative;
}

body.home .faq-container {
  padding: 78px 0 92px;
  background: var(--gs-blue);
  color: #fff;
}

body.home .faq-container h2 {
  margin: 0 0 36px;
  color: #fff;
  text-align: center;
}

body.home .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

body.home .faq-item h3 {
  position: relative;
  margin: 0;
  padding: 22px 44px 22px 0;
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.35;
}

body.home .faq-item h3::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 20px;
  font-size: 28px;
  font-weight: 500;
  transition: transform 0.28s ease;
}

body.home .faq-item.active_faq h3::after {
  content: "-";
  transform: rotate(180deg);
}

body.home .faq-item .collapse {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 56px 0 0;
  transform: translateY(-6px);
  transition:
    max-height 0.36s ease,
    opacity 0.24s ease,
    padding-bottom 0.36s ease,
    transform 0.36s ease;
}

body.home .faq-item.active_faq .collapse {
  max-height: 420px;
  opacity: 1;
  padding-bottom: 22px;
  transform: translateY(0);
}

body.home .newletter {
  padding: 42px 15px 104px;
  background: var(--gs-blue);
  color: #fff;
}

body.home .newletter__title {
  color: #fff;
  text-align: center;
  font-size: 50px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0;
}

body.home .yellow {
  color: #ffcc4a;
}

body.home #comparision-form .customer-form {
  width: 964px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

body.home #comparision-form .search-base {
  height: 112px;
  padding: 13px;
  border-radius: 10px;
  box-shadow: none;
}

body.home #comparision-form .search-base__input {
  height: 86px;
  padding: 0 37px;
  border-radius: 8px 0 0 8px;
  color: #6f7892;
  font-size: 20px;
}

body.home #comparision-form .search-base__button {
  width: 245px;
  height: 88px;
  border-radius: 6px;
  font-size: 20px;
}

body.home footer .footer {
  background: #00348f;
  color: #fff;
  position: relative;
  width: 100%;
}

body.home .footer__top {
  padding: 80px 0 52px;
}

body.home .footer__top .grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}

body.home .footer__top__text,
body.home .footer__social {
  margin: 8px 0;
  color: #fff;
  font-size: 13px;
}

body.home .footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.home .footer a {
  color: #fff;
  transition: color 0.2s ease;
}

body.home .footer a:hover {
  color: #51b37f;
}

body.home .footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}

body.home .footer__social a {
  display: inline-flex;
  width: 24px;
  height: 24px;
  color: #fff;
}

body.home .footer__social svg {
  display: block;
  width: 24px;
  height: 24px;
  overflow: visible;
}

body.home .footer__social circle {
  fill: none;
  stroke: currentColor;
  transition: stroke 0.2s ease;
}

body.home .footer__social path {
  fill: currentColor;
  transition: fill 0.2s ease;
}

body.home #scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: #51b37f;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    background-color 0.2s ease;
}

body.home #scroll-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.home #scroll-to-top:hover {
  background: #48a873;
}

body.home #scroll-to-top span {
  display: block;
  width: 19px;
  height: 19px;
  border-top: 7px solid #fff;
  border-left: 7px solid #fff;
  transform: rotate(45deg);
}

body.home #scroll-to-top span + span {
  margin-top: -12px;
}

body.home .footer__bottom {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

body.home .footer-bottom-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
  color: #fff;
  font-size: 12px;
}

body.home .footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

@media (max-width: 1180px) {
  #header.header-2 .cus-tp-rating-area,
  #header.header-2 .search-icon {
    display: none;
  }
}

@media (max-width: 1280px) {
  .tp-review-track {
    grid-auto-columns: calc((100% - 60px) / 3);
  }
}

@media (max-width: 960px) {
  #header.header-2,
  #header.header-2.header-scrolled {
    min-height: 85px;
    background: var(--gs-blue);
  }

  #header.header-2.header-scrolled .container {
    width: min(1170px, calc(100% - 24px));
  }

  #header.header-2.header-scrolled .menu {
    min-height: 85px;
    gap: 16px;
  }

  #header.header-2.header-scrolled .logo-2 img {
    width: 150px;
  }

  #header.header-2.header-scrolled .postcode-area,
  #header.header-2.header-scrolled .cus-tp-rating-area {
    display: none;
  }

  #header.header-2 .menu-items,
  #header.header-2 .menu__phone {
    display: none;
  }

  #header.header-2 .button-menu-mobile {
    display: block;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  #header.header-2 .button-menu-mobile::before,
  #header.header-2 .button-menu-mobile::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    margin: 8px auto;
    background: #fff;
  }

  .offcanvas-area.active {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    background: rgba(0, 0, 0, 0.42);
  }

  .offcanvas-inner {
    width: min(320px, 86vw);
    height: 100%;
    margin-left: auto;
    padding: 72px 28px;
    background: #fff;
  }

  .offcanvas-nav .menu {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .offcanvas-nav a {
    color: var(--gs-blue);
    font-weight: 800;
  }

  .offc-close-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
  }

  .offc-close-btn::before,
  .offc-close-btn::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 16px;
    width: 22px;
    height: 2px;
    background: var(--gs-blue);
  }

  .offc-close-btn::before {
    transform: rotate(45deg);
  }

  .offc-close-btn::after {
    transform: rotate(-45deg);
  }

  body.home .site-head {
    padding-top: 130px;
    padding-bottom: 70px;
  }

  body.home .search-head {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 42px auto 0;
    transform: none;
  }

  body.home .search-base {
    height: auto;
    flex-direction: column;
  }

  body.home .search-base__input,
  body.home .search-base__button {
    width: 100%;
    border-radius: 5px;
  }

  body.home .row-home-a,
  body.home .row-home-a.flip-content,
  body.home .section-connect__text,
  body.home .section-connect__block-flex,
  body.home .help-support .grid,
  body.home .footer__top .grid {
    grid-template-columns: 1fr;
  }

  body.home .help-support {
    min-height: 0;
    padding: 68px 0 0;
  }

  body.home .help-support__img {
    min-height: 360px;
    background-position: 42px 314px;
    background-size: min(430px, calc(100% - 72px)) 46px;
  }

  body.home .help-support__img img {
    width: min(500px, 100%);
    height: 310px;
    margin-left: 0;
  }

  body.home .help-support__text {
    padding-bottom: 56px;
  }

  body.home .help-support__img::before {
    left: 24px;
    bottom: 34px;
    width: 330px;
    height: 190px;
  }

  body.home .help-support__img::after {
    left: 42px;
    top: 34px;
    transform: scale(0.78);
    transform-origin: left top;
  }

  body.home .help-support__phone a {
    font-size: 32px;
  }

  body.home .row-home-a.flip-content > div:first-child {
    order: 2;
  }

  body.home .section-checkout__content {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  body.home .section-checkout {
    min-height: 0;
    padding: 78px 0;
  }

  body.home .section-checkout__header {
    margin-bottom: 42px;
  }

  .provider-dot-pattern {
    left: 8px;
    top: -32px;
    width: 96px;
    height: 80px;
    background-size: 14px 14px;
  }

  .connect-dot-pattern {
    right: 8px;
    bottom: -46px;
    transform: scale(0.72);
    transform-origin: right bottom;
  }

  body.home .slider-reviews {
    flex-basis: auto;
  }

  body.home .slider-reviews__item {
    flex-basis: calc((100% - 16px) / 2.2) !important;
  }

  .customer-review-window {
    width: calc(100% - 32px);
  }

  .tp-slider-shell {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .tp-review-track {
    grid-auto-columns: calc((100% - 30px) / 2);
    gap: 30px;
  }

  body.home .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.home .footer__menu {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  body.home .container {
    width: min(100% - 24px, 1170px);
  }

  body.home .index-section {
    padding: 58px 0;
  }

  body.home .site-head .title {
    font-size: 31px;
  }

  body.home .slider-reviews {
    gap: 14px;
  }

  body.home .slider-reviews__item {
    flex-basis: 84vw !important;
  }

  .customer-review-window {
    width: calc(100% - 24px);
  }

  .customer-review-window::before,
  .customer-review-window::after {
    width: 42px;
  }

  .customer-review-dots span {
    width: 28px;
    height: 10px;
  }

  .tp-slider-shell {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    margin-top: 32px;
  }

  .tp-review-track {
    grid-auto-columns: 100%;
    gap: 18px;
  }

  .tp-review-card {
    min-height: 188px;
  }

  body.home .section-connect__item {
    min-height: 0;
  }
}

/* Highest-priority header overrides for legacy body:has() rules */
body.home:has(#header.header-2) #header.header-2 {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 999 !important;
  height: auto !important;
  min-height: 85px !important;
  background: var(--gs-blue) !important;
}

body.home:has(#header.header-2) #header.header-2.header-scrolled {
  min-height: 106px !important;
}

body.home:has(#header.header-2) #header.header-2.header-scrolled .container {
  width: min(1500px, calc(100% - 48px)) !important;
  margin: 0 auto !important;
}

body.home:has(#header.header-2) #header.header-2 .menu {
  display: flex !important;
  align-items: center !important;
  min-height: 85px !important;
  padding-top: 0 !important;
}

body.home:has(#header.header-2) #header.header-2.header-scrolled .menu {
  min-height: 106px !important;
  gap: 34px !important;
  padding-top: 0 !important;
  align-items: center !important;
}

body.home:has(#header.header-2) #header.header-2.header-scrolled .menu-items,
body.home:has(#header.header-2) #header.header-2.header-scrolled .search-icon {
  display: none !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .cus-tp-rating-area,
body.home:has(#header.header-2) #header.header-2.header-scrolled .postcode-area,
body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .button-menu-mobile {
  display: block !important;
}

body.home:has(#header.header-2) #header.header-2.header-scrolled .menu__phone {
  display: flex !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .button-menu-mobile {
  flex: 0 0 52px !important;
}

body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 {
  flex: 0 0 186px !important;
}

body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 img {
  width: 186px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .cus-tp-rating-area {
  flex: 0 0 300px !important;
  margin-right: auto !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .cus-tp-rating {
  column-gap: 9px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .cus-tp-rating
  strong {
  font-size: 18px !important;
  line-height: 1 !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .cus-tp-rating
  strong
  img {
  width: 91px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .cus-tp-rating
  small {
  font-size: 12px !important;
  line-height: 1.1 !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .cus-tp-rating
  small
  img {
  width: 112px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .postcode-area {
  flex: 0 0 454px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .postcode-area
  .search-base {
  width: 454px !important;
  height: 74px !important;
  border-radius: 5px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .postcode-area
  .search-base__input {
  height: 74px !important;
  padding: 0 26px !important;
  font-size: 20px !important;
  line-height: 74px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .postcode-area
  .search-base__button {
  width: 224px !important;
  height: 68px !important;
  min-height: 68px !important;
  margin: 3px 4px 3px 0 !important;
  padding: 0 !important;
  font-size: 20px !important;
  line-height: 68px !important;
}

/* body.home:has(#header.header-2) #header.header-2.header-scrolled .menu__phone {
  flex: 0 0 202px !important;
} */

body.home:has(#header.header-2) #header.header-2.header-scrolled .phone-wrap {
  gap: 6px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .phone-wrap
  svg {
  width: 24px !important;
  height: 24px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .menu__phone__number {
  font-size: 28px !important;
  line-height: 28px !important;
  letter-spacing: 0 !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .menu__phone__text {
  padding-left: 18px !important;
  font-size: 16px !important;
  line-height: 16px !important;
}

body.home:has(#header.header-2)
  #header.header-2.header-scrolled
  .button-menu-mobile {
  width: 52px !important;
  height: 44px !important;
}

@media (max-width: 960px) {
  body.home:has(#header.header-2) #header.header-2.header-scrolled,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .menu {
    min-height: 85px !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .cus-tp-rating-area,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .postcode-area,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .menu__phone {
    display: none !important;
  }
}

body.home .offcanvas-area .offc-close-btn {
  top: 30px !important;
  right: 26px !important;
  z-index: 4 !important;
  display: block !important;
  width: 42px !important;
  height: 42px !important;
}

body.home .offcanvas-area .offc-close-btn::before,
body.home .offcanvas-area .offc-close-btn::after {
  left: 5px !important;
  top: 20px !important;
  width: 36px !important;
  height: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.home .offcanvas-area .offc-close-btn::before {
  transform: rotate(45deg) !important;
}

body.home .offcanvas-area .offc-close-btn::after {
  transform: rotate(-45deg) !important;
}

body.home .offcanvas-area.active {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2000 !important;
  display: block !important;
  pointer-events: auto !important;
  background: rgba(0, 0, 0, 0.32) !important;
  opacity: 1 !important;
}

body.home .offcanvas-area .offcanvas-inner {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: min(400px, 100vw) !important;
  height: 100% !important;
  margin-left: 0 !important;
  padding: 72px 38px !important;
  background: var(--gs-blue) !important;
  transform: translateX(100%);
  transition: transform 0.32s ease !important;
}

body.home .offcanvas-area.active .offcanvas-inner {
  transform: translateX(0) !important;
}

/* Final responsive pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.home img,
body.home svg {
  max-width: 100%;
}

body.home .title,
body.home .h1,
body.home .section-connect__title,
body.home .newletter__title {
  overflow-wrap: anywhere;
}

@media (max-width: 1400px) {
  body.home:has(#header.header-2) #header.header-2.header-scrolled .container {
    width: min(100% - 32px, 1260px) !important;
  }

  body.home:has(#header.header-2) #header.header-2.header-scrolled .menu {
    gap: 22px !important;
  }

  body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 {
    flex-basis: 166px !important;
  }

  body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 img {
    width: 166px !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .cus-tp-rating-area {
    flex-basis: 245px !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .postcode-area {
    flex-basis: 420px !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .postcode-area
    .search-base {
    width: 420px !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .menu__phone__number {
    font-size: 24px !important;
  }
}

@media (max-width: 1200px) and (min-width: 961px) {
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .cus-tp-rating-area {
    display: none !important;
  }

  body.home:has(#header.header-2) #header.header-2.header-scrolled .menu {
    justify-content: space-between !important;
    gap: 18px !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .postcode-area {
    flex: 0 1 410px !important;
    margin-left: auto !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .postcode-area
    .search-base {
    width: 100% !important;
  }

  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .postcode-area
    .search-base__button {
    width: 176px !important;
  }

  body.home .section-connect__block-flex {
    gap: 22px;
  }

  body.home .section-connect__item {
    padding-left: 42px;
    padding-right: 42px;
  }
}

@media (max-width: 1100px) {
  body.home .row-home-a,
  body.home .row-home-a.flip-content,
  body.home .section-connect__text {
    gap: 42px;
  }

  body.home .section-connect__title,
  body.home .row-home-a h2,
  body.home .help-support__text h2 {
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.14;
  }

  body.home .section-checkout__content {
    grid-template-columns: repeat(4, minmax(105px, 1fr));
    gap: 36px 30px;
  }

  body.home .brand-strip__grid,
  body.home .brand-strip__grid.telecom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home #comparision-form .customer-form {
    width: min(100% - 32px, 860px);
  }
}

@media (max-width: 960px) {
  body.home:has(#header.header-2) #header.header-2 .container,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .container {
    width: min(100% - 28px, 1170px) !important;
  }

  body.home:has(#header.header-2) #header.header-2 .logo-2,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 {
    flex: 0 0 auto !important;
  }

  body.home:has(#header.header-2) #header.header-2 .logo-2 img,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 img {
    width: clamp(132px, 28vw, 160px) !important;
  }

  body.home .site-head {
    min-height: auto;
  }

  body.home .site-head .title {
    font-size: clamp(34px, 7vw, 54px);
  }

  body.home .site-head .sub-title {
    font-size: clamp(18px, 3vw, 28px);
  }

  body.home .row-home-a,
  body.home .row-home-a.flip-content {
    gap: 34px;
  }

  body.home .row-home-a.flip-content > div:first-child {
    order: 0;
  }

  body.home .row-home-a img {
    width: 100%;
    border-radius: 12px;
  }

  body.home .family-visual {
    min-height: 390px;
    max-width: 620px;
    margin: 0 auto;
    background-position: 42px 330px;
    background-size: calc(100% - 84px) 46px;
  }

  body.home .family-visual img {
    height: 330px;
  }

  body.home .family-visual::before {
    left: 42px;
    bottom: 46px;
    height: 210px;
  }

  body.home .family-visual::after {
    right: 44px;
    top: 40px;
    transform: scale(0.78);
    transform-origin: right top;
  }

  body.home .energy-collage {
    max-width: 720px;
    margin: 0 auto;
  }

  body.home .section-connect__text {
    margin-bottom: 38px;
  }

  body.home .find-right-electricity .section-connect__text .text {
    min-height: 0;
  }

  body.home .find-right-electricity .paragraph-dot-pattern {
    margin: 24px 0 0;
    width: 112px;
    height: 98px;
    background-size: 14px 14px;
  }

  body.home .help-support .grid {
    gap: 24px;
  }

  body.home .newletter__title {
    margin-bottom: 44px;
    font-size: clamp(34px, 6vw, 48px);
  }

  body.home #comparision-form .search-base {
    height: auto;
    padding: 10px;
  }

  body.home #comparision-form .search-base__input,
  body.home #comparision-form .search-base__button {
    height: 66px;
    width: 100%;
    border-radius: 6px;
  }

  body.home #comparision-form .search-base__input {
    padding: 0 20px;
    font-size: 18px;
  }

  body.home #comparision-form .search-base__button {
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  body.home .energy-collage {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  body.home .energy-collage__item {
    border-radius: 12px;
  }

  body.home .energy-collage__item--large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  body.home .energy-collage__item--tall {
    grid-column: 2;
    grid-row: 2;
  }

  body.home .energy-collage__item--small {
    grid-column: 1;
    grid-row: 2;
  }

  body.home .energy-collage__item--wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  body.home .family-visual {
    min-height: 315px;
    background-position: 22px 268px;
    background-size: calc(100% - 44px) 40px;
  }

  body.home .family-visual img {
    height: 270px;
  }

  body.home .family-visual::before {
    left: 24px;
    bottom: 40px;
    width: calc(100% - 48px);
    height: 170px;
  }

  body.home .family-visual::after {
    right: 22px;
    top: 22px;
    transform: scale(0.62);
  }
}

@media (max-width: 760px) {
  body.home .index-section {
    padding: 62px 0;
  }

  body.home .search-base {
    padding: 8px;
  }

  body.home .search-base__input,
  body.home .search-base__button {
    height: 58px;
  }

  body.home .section-checkout__content {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 28px 24px;
  }

  body.home .brand-strip {
    padding: 64px 0;
  }

  body.home .brand-strip__header {
    margin-bottom: 30px;
  }

  body.home .brand-strip__header h2 {
    font-size: 30px;
  }

  body.home .brand-strip__grid {
    gap: 16px;
  }

  body.home .brand-strip__grid span {
    min-height: 78px;
    padding: 16px 12px;
  }

  body.home .brand-strip__grid img {
    max-height: 64px;
  }

  body.home .section-checkout__content img {
    max-width: 118px;
    max-height: 74px;
  }

  body.home .section-connect__item {
    padding: 78px 28px 34px;
  }

  body.home .section-connect__item .item-pattern {
    left: 28px;
    width: 92px;
    height: 92px;
  }

  body.home .section-connect__item .item-pattern img {
    width: 58px;
    height: 58px;
  }

  body.home .help-support {
    padding-top: 48px;
  }

  body.home .help-support__img {
    min-height: 300px;
    background-position: 22px 254px;
    background-size: min(320px, calc(100% - 44px)) 40px;
  }

  body.home .help-support__img img {
    width: min(100%, 520px);
    height: 255px;
  }

  body.home .help-support__img::before {
    left: 38px;
    bottom: 46px;
    width: 260px;
    height: 150px;
  }

  body.home .help-support__phone a {
    font-size: clamp(26px, 7vw, 34px);
  }

  body.home .faq-container {
    padding: 58px 0 66px;
  }

  body.home .faq-item h3 {
    padding-right: 36px;
    font-size: 18px;
  }

  body.home .faq-item .collapse {
    padding-right: 12px;
  }

  body.home .footer__top {
    padding: 58px 0 38px;
  }
}

@media (max-width: 560px) {
  body.home .container {
    width: min(100% - 24px, 1170px);
  }

  body.home:has(#header.header-2) #header.header-2,
  body.home:has(#header.header-2) #header.header-2.header-scrolled,
  body.home:has(#header.header-2) #header.header-2 .menu,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .menu {
    min-height: 74px !important;
  }

  body.home .site-head {
    padding-top: 108px;
    padding-bottom: 54px;
  }

  body.home .site-head .title {
    font-size: clamp(30px, 9vw, 38px);
  }

  body.home .search-head {
    margin-top: 28px;
  }

  body.home .tp-review-track {
    grid-auto-columns: 100%;
  }

  body.home .tp-slider-shell {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
  }

  body.home .homepage-slider-reviews {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  body.home .slider-reviews__item {
    flex-basis: calc(100vw - 48px) !important;
  }

  body.home .customer-review-controls {
    gap: 8px;
  }

  body.home .customer-review-dots {
    gap: 6px;
  }

  body.home .customer-review-dots span {
    width: 22px;
  }

  body.home .section-checkout__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home .brand-strip__grid,
  body.home .brand-strip__grid.telecom {
    grid-template-columns: 1fr;
  }

  body.home .provider-dot-pattern,
  body.home .connect-dot-pattern,
  body.home .paragraph-dot-pattern {
    opacity: 0.55;
  }

  body.home .help-support__text {
    padding-bottom: 38px;
  }

  body.home .newletter {
    padding: 40px 12px 70px;
  }

  body.home .newletter__title {
    margin-bottom: 32px;
    font-size: 32px;
  }

  body.home .footer-bottom-row {
    gap: 20px;
  }

  body.home .footer__menu {
    flex-direction: column;
    gap: 12px;
  }

  body.home #scroll-to-top {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 380px) {
  body.home .button-menu-mobile,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .button-menu-mobile {
    width: 42px !important;
  }

  body.home .site-head .title,
  body.home .section-connect__title,
  body.home .row-home-a h2,
  body.home .help-support__text h2 {
    font-size: 29px;
  }

  body.home .section-connect__item {
    padding-left: 22px;
    padding-right: 22px;
  }

  body.home .offcanvas-area .offcanvas-inner {
    width: 86vw !important;
    padding-left: 28px !important;
    padding-right: 28px !important;
  }
}

/* Mobile/tablet hero and header polish */
@media (max-width: 960px) {
  body.home:has(#header.header-2) #header.header-2 {
    min-height: 92px !important;
  }

  body.home:has(#header.header-2) #header.header-2 .menu,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .menu {
    min-height: 92px !important;
  }

  body.home:has(#header.header-2) #header.header-2 .logo-2 img,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 img {
    width: clamp(150px, 30vw, 182px) !important;
  }

  #header.header-2 .button-menu-mobile,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .button-menu-mobile {
    position: relative !important;
    flex: 0 0 48px !important;
    width: 48px !important;
    height: 44px !important;
    margin-left: auto !important;
  }

  #header.header-2 .button-menu-mobile::before,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .button-menu-mobile::before {
    content: "" !important;
    position: absolute !important;
    left: 7px !important;
    top: 10px !important;
    width: 34px !important;
    height: 3px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #fff !important;
    box-shadow:
      0 11px 0 #fff,
      0 22px 0 #fff !important;
  }

  #header.header-2 .button-menu-mobile::after,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .button-menu-mobile::after {
    content: none !important;
  }

  body.home .site-head {
    padding-top: 132px !important;
    padding-bottom: 68px !important;
  }

  body.home .site-head .title {
    max-width: 720px;
    margin-inline: auto;
    font-size: clamp(42px, 8vw, 62px) !important;
    line-height: 1.08 !important;
  }

  body.home .site-head .sub-title {
    margin-top: 22px;
    font-size: clamp(21px, 3.6vw, 28px) !important;
    line-height: 1.25;
  }

  body.home .site-head .point-header {
    right: 13%;
    top: 42%;
  }

  body.home .site-head .search-head {
    width: min(100% - 56px, 650px) !important;
    margin-top: 36px !important;
  }

  body.home .site-head .search-base {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    height: auto !important;
    min-height: 169px !important;
    padding: 10px !important;
    overflow: visible !important;
    border-radius: 10px !important;
  }

  body.home .site-head .search-base__input {
    display: block !important;
    width: 100% !important;
    height: 38px !important;
    padding: 0 18px !important;
    border-radius: 7px 7px 0 0 !important;
    font-size: 20px !important;
    line-height: 38px !important;
    text-align: left !important;
  }

  body.home .site-head .search-base__button {
    display: block !important;
    width: 100% !important;
    height: 74px !important;
    min-height: 74px !important;
    margin: 0 !important;
    border-radius: 6px !important;
    font-size: 21px !important;
    line-height: 74px !important;
  }
}

@media (max-width: 620px) {
  body.home:has(#header.header-2) #header.header-2,
  body.home:has(#header.header-2) #header.header-2 .menu,
  body.home:has(#header.header-2) #header.header-2.header-scrolled,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .menu {
    min-height: 92px !important;
  }

  body.home:has(#header.header-2) #header.header-2 .container,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .container {
    width: calc(100% - 36px) !important;
  }

  body.home:has(#header.header-2) #header.header-2 .logo-2 img,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 img {
    width: 174px !important;
  }

  body.home .site-head {
    padding-top: 132px !important;
    padding-bottom: 66px !important;
  }

  body.home .site-head .title {
    font-size: clamp(40px, 10.6vw, 50px) !important;
    line-height: 1.08 !important;
  }

  body.home .site-head .sub-title {
    font-size: clamp(21px, 5vw, 24px) !important;
  }

  body.home .site-head .search-head {
    width: min(100% - 46px, 560px) !important;
  }

  body.home .site-head .search-base__input {
    font-size: 20px !important;
    text-align: center !important;
  }
}

@media (max-width: 430px) {
  body.home:has(#header.header-2) #header.header-2 .logo-2 img,
  body.home:has(#header.header-2) #header.header-2.header-scrolled .logo-2 img {
    width: 150px !important;
  }

  #header.header-2 .button-menu-mobile,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .button-menu-mobile {
    width: 42px !important;
    flex-basis: 42px !important;
  }

  #header.header-2 .button-menu-mobile::before,
  body.home:has(#header.header-2)
    #header.header-2.header-scrolled
    .button-menu-mobile::before {
    width: 32px !important;
    height: 3px !important;
    border: 0 !important;
    background: #fff !important;
    box-shadow:
      0 10px 0 #fff,
      0 20px 0 #fff !important;
  }

  body.home .site-head .title {
    font-size: clamp(35px, 10vw, 42px) !important;
  }

  body.home .site-head .search-head {
    width: min(100% - 28px, 420px) !important;
  }

  body.home .site-head .search-base {
    min-height: 108px !important;
    padding: 8px !important;
  }

  body.home .site-head .search-base__input {
    height: 34px !important;
    font-size: 18px !important;
    line-height: 34px !important;
  }

  body.home .site-head .search-base__button {
    height: 66px !important;
    min-height: 66px !important;
    font-size: 19px !important;
    line-height: 66px !important;
  }
}
