/* Alice Spring — ALICE SPRING PTY LTD corporate site (desktop) */
:root {
  --yellow: #f5c518;
  --yellow-dark: #d4a80f;
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --grey-bg: #f4f4f4;
  --grey-text: #555;
  --white: #fff;
  --green: #004d40;
  --green-dark: #003530;
  --green-light: #e0f2f1;
  --magenta: #880e4f;
  --magenta-hover: #a3155c;
  --font-display: "Outfit", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
body {
  font-family: var(--font-body);
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1200px, 92vw); margin: 0 auto; }

/* ========== DESKTOP-ONLY LAYOUT ========== */
body.desktop-site {
  min-width: 1280px;
}
body.desktop-site .container {
  width: min(1200px, 90%);
}

/* ========== SITE HEADER (professional nav) ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s, height 0.4s var(--ease);
  overflow: visible;
}
.site-header.scrolled {
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 64px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(245, 197, 24, 0.18);
}
.site-header.scrolled .logo img {
  height: 36px;
}
.site-header .logo img {
  height: 44px;
  width: auto;
  transition: height 0.4s var(--ease);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
  overflow: visible;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
  overflow: visible;
}
.main-nav .nav-link,
.nav-dropdown-trigger {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: inherit;
  line-height: 1.2;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active,
.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger {
  color: var(--yellow);
  background: rgba(255,255,255,0.06);
}
.nav-chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s var(--ease);
  margin-top: 2px;
}
.nav-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown {
  position: relative;
  z-index: 1100;
}
/* Hover bridge so menu stays open when moving cursor down */
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: rgba(18, 18, 18, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid var(--yellow);
  padding: 0.65rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  border-radius: 0 0 8px 8px;
}
.nav-dropdown-menu--wide {
  min-width: 260px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.35rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.nav-dropdown-menu a.menu-lead {
  font-weight: 700;
  color: var(--yellow);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-dropdown-menu a:hover {
  background: rgba(245, 197, 24, 0.12);
  color: var(--yellow);
  padding-left: 1.5rem;
}
.menu-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0.35rem 1rem 0.4rem;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.header-abn {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.header-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-phone:hover { color: var(--yellow); }
.btn-header {
  background: var(--yellow);
  color: var(--black);
  padding: 0.55rem 1.1rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-header:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
}

.hero-entity {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.15s forwards;
}
.btn-hero {
  display: inline-block;
  margin-top: 1.75rem;
  background: var(--yellow);
  color: var(--black);
  padding: 0.85rem 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: auto;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
  transition: background 0.3s, transform 0.2s;
}
.btn-hero:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
}

.company-intro { margin-bottom: 1rem; }
.company-details {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.company-details div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.company-details dt {
  font-weight: 700;
  color: var(--charcoal);
}
.company-details dd { color: var(--grey-text); }

.capabilities-section {
  padding: 5rem 0;
  background: var(--grey-bg);
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.cap-card {
  background: var(--white);
  padding: 1.75rem;
  border-top: 4px solid var(--yellow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.cap-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}
.cap-card p { font-size: 0.9rem; color: var(--grey-text); }
.section-lead {
  font-size: 1rem;
  color: var(--grey-text);
  max-width: 720px;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}
.section-lead.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}
.industries-section { padding: 5rem 0; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.industry-card {
  background: var(--grey-bg);
  padding: 1.75rem;
  border-left: 4px solid var(--yellow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}
.industry-card p { font-size: 0.88rem; color: var(--grey-text); }

.products-header { margin-bottom: 2rem; }
.products-desc {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.why-section { background: var(--green); }
.why-section .why-choose { display: grid; grid-template-columns: 1fr 1.2fr; }
.why-section .benefits-grid { grid-template-columns: 1fr 1fr; }

.contact-right {
  display: flex;
  flex: 1;
  min-width: 0;
}
.contact-intro {
  color: var(--grey-text);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}
.contact-details {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: clamp(2.5rem, 4vw, 3.5rem);
  min-width: 320px;
  flex-shrink: 0;
}
.contact-details h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.contact-trade {
  color: var(--yellow);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.contact-details dl { display: grid; gap: 1rem; }
.contact-details div { font-size: 0.9rem; }
.contact-details dt {
  font-weight: 700;
  color: var(--yellow);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.contact-details a { color: var(--white); text-decoration: underline; }
.contact-details a:hover { color: var(--yellow); }

.site-footer {
  background: radial-gradient(circle at top center, rgba(245, 197, 24, 0.035) 0%, rgba(10, 10, 10, 0) 70%), var(--black);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
  border-top: 1.5px solid rgba(245, 197, 24, 0.12);
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer .footer-grid--6 {
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1fr 1fr 0.85fr;
}
.site-footer .logo img { height: 52px; margin-bottom: 1rem; }
.site-footer h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul li { margin-bottom: 0.45rem; font-size: 0.88rem; }
.site-footer ul li a {
  display: inline-block;
  transition: color 0.3s, transform 0.25s var(--ease);
}
.site-footer ul li a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}
.site-footer a { transition: color 0.3s; }
.site-footer a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}
.footer-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(245, 197, 24, 0.05);
  border: 1px solid rgba(245, 197, 24, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  color: var(--yellow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.footer-status-badge .status-dot {
  width: 6.5px;
  height: 6.5px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: statusPulse 1.8s infinite alternate;
}
@keyframes statusPulse {
  0% { opacity: 0.4; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1.1); }
}
.footer-legal {
  display: flex;
  gap: 2rem;
}
.footer-legal a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-legal a:hover { color: var(--yellow); }
.footer-copy { font-size: 0.78rem; text-align: center; }

.faq-section .accordion-body a {
  color: var(--green);
  text-decoration: underline;
}

/* ========== SUBPAGE HERO (unique background per page) ========== */
.subpage .site-header {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
}
.page-hero {
  margin-top: var(--header-h);
  min-height: 420px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.85) 100%);
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 3.5rem;
  width: 100%;
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero-entity {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  max-width: 850px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}
.page-hero-desc {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  line-height: 1.6;
  margin-top: 0.85rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}
.page-hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.85rem;
}
.btn-hero-sub {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-hero-sub:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 197, 24, 0.35);
}
.btn-hero-sub-outline {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  cursor: pointer;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-hero-sub-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-main {
  min-height: 45vh;
  padding: 4rem 0 5rem;
  background: var(--white);
}
.nav-dropdown-menu a.active {
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.1);
}

/* ========== LEGACY PROSUN HEADER (unused) ========== */
.prosun-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4vw;
  transition: background 0.4s var(--ease), padding 0.3s;
}
.prosun-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.6rem 4vw;
}
.prosun-header .logo img { height: 48px; width: auto; }
.menu-toggle {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 6px;
  padding: 10px;
}
.menu-toggle span {
  display: block; height: 3px; width: 100%;
  background: var(--yellow);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.fullscreen-nav {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.97);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.fullscreen-nav.open { opacity: 1; visibility: visible; }
.fullscreen-nav ul { text-align: center; }
.fullscreen-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  display: block; padding: 0.6em;
  transition: color 0.3s;
}
.fullscreen-nav a:hover { color: var(--yellow); }

/* ========== HERO ACCORDION (Prosun 1:1) ========== */
.hero-accordion {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  overflow: hidden;
  background: var(--black);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.hero-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  cursor: pointer;
  overflow: hidden;
  transition: flex 0.85s var(--ease);
}
.hero-accordion:has(.hero-panel.active) .hero-panel { flex: 0.65; }
.hero-accordion:has(.hero-panel.active) .hero-panel.active { flex: 3.4; }
.hero-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  transition: opacity 0.6s var(--ease);
}
.hero-panel.active::before,
.hero-panel:hover::before { opacity: 0.55; }
.hero-panel-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-panel-label {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.4s, bottom 0.5s var(--ease);
}
.hero-panel.active .hero-panel-label,
.hero-panel:hover .hero-panel-label {
  opacity: 1;
  bottom: 36px;
}
.hero-center {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 0 1.5rem;
}
.hero-center h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero-center p {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.55s forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ========== SHARED PROSUN SECTIONS ========== */
.section-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* Experience */
.experience { padding: 6rem 0; background: var(--white); }
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.feature-item { text-align: left; }
.feature-icon {
  width: 40px; height: 3px;
  background: var(--yellow);
  margin-bottom: 0.75rem;
}
.feature-item h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.feature-item p { font-size: 0.85rem; color: var(--grey-text); }
.experience-visual {
  position: relative;
  min-height: 420px;
}
.experience-visual .blue-shape {
  position: absolute;
  top: 0; right: 0;
  width: 85%; height: 100%;
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}
.experience-visual img.main-img {
  position: relative;
  z-index: 2;
  width: 78%;
  margin: 2rem auto 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.experience-visual .yellow-bar {
  position: absolute;
  bottom: 0; left: 10%;
  width: 60%; height: 8px;
  background: var(--yellow);
  z-index: 3;
}

/* Who we are */
.who-we-are { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.who-img { overflow: hidden; }
.who-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease);
}
.who-img:hover img { transform: scale(1.06); }
.who-content {
  background: var(--grey-bg);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s var(--ease);
}
.btn-arrow:hover { gap: 1.1rem; }
.btn-arrow .arrow-box {
  width: 44px; height: 44px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background 0.3s;
}
.btn-arrow:hover .arrow-box { background: var(--yellow-dark); }

/* Partners */
.partners {
  padding: 3rem 0;
  background: var(--white);
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.partners-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.partner-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: #bbb;
  letter-spacing: 0.06em;
  transition: color 0.3s;
}
.partner-logo:hover { color: #666; }

/* Product carousel */
.products-section {
  padding: 5rem 0;
  background: var(--charcoal);
}
.products-track-wrap { overflow: hidden; }
.products-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s var(--ease);
}
.product-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 240px;
  background: #252525;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--yellow);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 1.5rem;
  background: #1e1e1e;
}
.product-card .brand {
  padding: 1rem 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.carousel-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}
.carousel-nav button {
  width: 48px; height: 48px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-size: 1.25rem;
  transition: background 0.3s, color 0.3s;
}
.carousel-nav button:hover {
  background: var(--yellow);
  color: var(--black);
}

/* What we do */
.what-we-do {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  min-height: 560px;
}
.what-content {
  background: var(--grey-bg);
  padding: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-list { margin-top: 1.5rem; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
}
.service-list .dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.what-img { overflow: hidden; position: relative; }
.what-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.what-cta-wrap {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.what-we-do + .spacer { height: 48px; background: var(--white); }

/* Blog */
.blog-section {
  padding: 6rem 0;
  background: var(--grey-bg);
  position: relative;
  overflow: hidden;
}
.blog-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 16rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.06);
  pointer-events: none;
  white-space: nowrap;
}
.blog-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.blog-card .thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.blog-card:hover .thumb img { transform: scale(1.08); }
.blog-card .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.blog-card .body { padding: 1.5rem; }
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.blog-card p { font-size: 0.9rem; color: var(--grey-text); margin-bottom: 1rem; }
.read-more {
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Contact */
.contact-section { background: var(--white); }
.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-img img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.contact-form-wrap {
  padding: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.btn-submit {
  grid-column: 1 / -1;
  background: var(--black);
  color: var(--white);
  padding: 1rem 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: #333; }
.btn-magenta {
  background: var(--magenta);
  color: var(--white);
  padding: 0.65rem 1.35rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  transition: background 0.3s, transform 0.2s;
}
.btn-magenta:hover {
  background: var(--magenta-hover);
  transform: translateY(-2px);
}

/* UK Hero */
.uk-hero {
  background: var(--green);
  padding: 4rem 0 5rem;
  overflow: hidden;
}
.uk-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.uk-hero .tag {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.uk-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.uk-hero .desc { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; max-width: 480px; }
.trustpilot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  color: var(--white);
  font-size: 0.85rem;
}
.trustpilot .stars { color: #00b67a; letter-spacing: 2px; }
.uk-hero-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.uk-hero-img img {
  width: 100%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}
.uk-hero-img .video-btn {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  color: var(--green);
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  display: flex; align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}
.uk-hero-img .video-btn:hover { transform: scale(1.05); }

/* Featured */
.featured-in {
  padding: 2.5rem 0;
  background: #f0f0f0;
}
.featured-in p {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.5rem;
}
.media-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}
.media-logos span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #aaa;
  filter: grayscale(1);
  transition: filter 0.3s, color 0.3s;
}
.media-logos span:hover { filter: none; color: #666; }

/* Savings */
.savings-section {
  padding: 5rem 0;
  background: var(--white);
}
.savings-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #eee;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.savings-tabs button {
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #888;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.3s, border-color 0.3s;
}
.savings-tabs button.active {
  color: var(--green);
  border-bottom-color: var(--green);
}
.savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.gauges {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
.gauge {
  text-align: center;
  position: relative;
  width: 180px;
}
.gauge svg {
  width: 180px; height: 180px;
  transform: rotate(-90deg);
}
.gauge circle.bg { fill: none; stroke: #e8e8e8; stroke-width: 12; }
.gauge circle.fill {
  fill: none;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transition: stroke-dashoffset 2s var(--ease);
}
.gauge.green1 circle.fill { stroke: var(--green); }
.gauge.green2 circle.fill { stroke: #66bb6a; }
.gauge.animated circle.fill { stroke-dashoffset: var(--offset); }
.gauge-value {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--green);
  line-height: 1.2;
}
.gauge-label {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--grey-text);
  max-width: 140px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Banner */
.cta-banner {
  background: var(--green);
  padding: 1.75rem 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner .icon-house {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.cta-banner p {
  color: var(--white);
  font-size: 1rem;
  flex: 1;
}

/* Easy energy accordion */
.easy-energy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.easy-energy-img img {
  width: 100%; height: 100%;
  min-height: 400px;
  object-fit: cover;
}
.easy-energy-content {
  padding: clamp(3rem, 5vw, 4.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  color: var(--green);
  transition: color 0.3s;
}
.accordion-trigger .icon {
  width: 24px; height: 24px;
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.4s var(--ease);
  flex-shrink: 0;
}
.accordion-item.open .accordion-trigger .icon { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s;
}
.accordion-item.open .accordion-body {
  max-height: 200px;
  padding-bottom: 1rem;
}
.accordion-body p { font-size: 0.9rem; color: var(--grey-text); }

/* Testimonial */
.testimonial-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.testimonial-bg {
  position: absolute; inset: -10%;
  background-size: cover;
  background-position: center;
  transition: transform 0.15s linear;
  will-change: transform;
}
.testimonial-overlay {
  position: absolute; inset: 0;
  background: rgba(0, 77, 64, 0.82);
}
.testimonial-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 8vw;
  max-width: 900px;
  margin: 0 auto;
}
.testimonial-content h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}
.testimonial-slide {
  display: none;
  animation: testimonialFade 0.6s var(--ease);
}
.testimonial-slide.active { display: block; }
@keyframes testimonialFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-slide blockquote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-slide cite {
  color: rgba(255,255,255,0.8);
  font-style: normal;
  font-weight: 600;
}
.testimonial-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-size: 1.25rem;
  transition: background 0.3s, border-color 0.3s;
}
.testimonial-arrows:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.testimonial-arrows.prev { left: 2vw; }
.testimonial-arrows.next { right: 2vw; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, transform 0.3s;
}
.testimonial-dots button.active {
  background: var(--white);
  transform: scale(1.2);
}

/* Steps */
.steps-section {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0 2.5rem;
}
.step-icon {
  width: 80px; height: 80px;
  border: 2px solid var(--green);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: background 0.3s, color 0.3s;
}
.steps-grid > div:hover .step-icon {
  background: var(--green);
  color: var(--white);
}
.steps-grid h4 {
  font-family: var(--font-display);
  color: var(--green);
  margin-bottom: 0.5rem;
}
.steps-grid p { font-size: 0.9rem; color: var(--grey-text); }

/* Why choose */
.why-choose {
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
}
.why-choose-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
.why-choose-content {
  padding: clamp(3rem, 5vw, 4.5rem);
  color: var(--white);
}
.why-choose-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 2rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.benefit-box h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.benefit-box p { font-size: 0.85rem; opacity: 0.85; }

/* Stats bar */
.stats-bar {
  background: var(--green-light);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--green);
  display: block;
}
.stat-item .label {
  font-size: 0.85rem;
  color: var(--grey-text);
  margin-top: 0.25rem;
}

/* Our story */
.our-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5rem 0;
  background: var(--white);
}
.our-story-content { padding: 0 clamp(2rem, 5vw, 4rem); }
.our-story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--green);
  margin-bottom: 1.25rem;
}
.our-story-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* FAQ */
.faq-section {
  padding: 5rem 0;
  background: var(--green-light);
}
.faq-section h2 {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--green);
  margin-bottom: 2.5rem;
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-list .accordion-trigger { color: #222; }
.faq-list .accordion-trigger .icon { border-color: var(--green); color: var(--green); }

/* UK Footer */
.uk-footer {
  background: #0d2620;
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 1.5rem;
}
.uk-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.uk-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}
.uk-footer h5 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.uk-footer a { font-size: 0.88rem; display: block; margin-bottom: 0.4rem; transition: color 0.3s; }
.uk-footer a:hover { color: var(--white); }
.uk-footer-bottom {
  text-align: center;
  font-size: 0.75rem;
  padding-top: 1.5rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .experience-grid,
  .savings-grid,
  .uk-hero-grid,
  .why-choose,
  .our-story { grid-template-columns: 1fr; }
  .who-we-are,
  .what-we-do,
  .easy-energy,
  .contact-top { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .product-card { flex: 0 0 calc(50% - 0.75rem); }
  .hero-accordion { flex-direction: column; height: auto; min-height: 100vh; }
  .hero-panel { flex: none; height: 25vh; min-height: 140px; }
  .hero-panel.active { flex: none; height: 40vh; }
  .uk-nav { display: none; }
}
@media (max-width: 640px) {
  .features-row,
  .blog-grid,
  .stats-grid,
  .steps-grid,
  .benefits-grid,
  .uk-footer-grid,
  .footer-grid,
  .locations-grid,
  .contact-form { grid-template-columns: 1fr; }
  .gauges { flex-direction: column; align-items: center; }
  .partners-row { justify-content: center; }
}
