:root {
  --bg-950: #020303;
  --bg-900: #060806;
  --bg-850: #0b100d;
  --surface-dark: rgba(5, 8, 6, 0.76);
  --surface-dark-strong: rgba(3, 4, 3, 0.9);
  --surface-glass: rgba(255, 255, 255, 0.07);
  --surface-light: rgba(249, 252, 247, 0.96);
  --text-light: #f7fbf4;
  --text-light-muted: #bcc8bd;
  --text-dark: #122027;
  --text-dark-muted: #5c6f68;
  --line-light: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(7, 23, 31, 0.1);
  --green: #a7ef57;
  --green-strong: #78c83e;
  --green-soft: #edf8dd;
  --blue: #8fd8c4;
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.36);
  --shadow-card: 0 20px 54px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.18);
  --radius-2xl: 36px;
  --radius-xl: 28px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-light);
  background:
    radial-gradient(circle at 14% 12%, rgba(167, 239, 87, 0.16), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 52% 100%, rgba(120, 200, 62, 0.08), transparent 28%),
    linear-gradient(180deg, #010101 0%, #040504 48%, #020302 100%);
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

::selection {
  color: #07151b;
  background: rgba(139, 207, 53, 0.35);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.page-glow,
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-glow-a {
  background: radial-gradient(circle at 18% 24%, rgba(167, 239, 87, 0.12), transparent 30%);
}

.page-glow-b {
  background: radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.08), transparent 28%);
}

.page-noise {
  opacity: 0.03;
  background-image:
    linear-gradient(transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 100% 100%, 4px 4px;
  mix-blend-mode: soft-light;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

section[id] {
  scroll-margin-top: 110px;
}

.hero .container,
.section > .container {
  position: relative;
  z-index: 1;
}

.hero .container {
  z-index: 4;
}

/* Header */

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 15px 20px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(4, 15, 20, 0.62);
  backdrop-filter: blur(18px);
  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.site-header.is-scrolled .header-shell {
  background: rgba(4, 15, 20, 0.82);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand-image {
  width: 54px;
  height: 54px;
  padding: 4px;
  object-fit: cover;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(139, 207, 53, 0.2);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  color: var(--text-light-muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.site-nav a {
  color: var(--text-light-muted);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text-light);
}

.site-nav-phone {
  display: none;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.header-phone:hover,
.header-phone:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(139, 207, 53, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.header-phone-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #07151b;
  background: linear-gradient(135deg, #d4f39d 0%, var(--green) 100%);
  box-shadow: 0 10px 22px rgba(139, 207, 53, 0.22);
  flex: 0 0 36px;
}

.header-phone-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-phone-copy {
  display: flex;
  align-items: center;
}

.header-phone-copy span {
  display: none;
}

.header-phone-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--text-light);
  transition: transform var(--transition), top var(--transition), opacity var(--transition);
}

.nav-toggle span:first-child {
  top: 18px;
}

.nav-toggle span:last-child {
  top: 28px;
}

body.nav-open .nav-toggle span:first-child {
  top: 23px;
  transform: rotate(45deg);
}

body.nav-open .nav-toggle span:last-child {
  top: 23px;
  transform: rotate(-45deg);
}

/* Buttons */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-solid {
  color: #07151b;
  background: linear-gradient(135deg, var(--green) 0%, #b8e967 100%);
  box-shadow: 0 16px 34px rgba(139, 207, 53, 0.24);
}

.button-whatsapp {
  color: #f6fff6;
  background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
  box-shadow: 0 16px 34px rgba(31, 168, 85, 0.24);
}

.button-outline {
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline-light {
  background: rgba(255, 255, 255, 0.08);
}

.button-outline-dark {
  color: var(--text-light);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

/* Shared Section Styles */

.section {
  position: relative;
  padding: 96px 0;
}

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

.section-heading-dark h2,
.section-heading-dark p {
  color: var(--text-light);
}

.section-heading-dark .section-kicker {
  color: var(--green);
}

.section-kicker,
.eyebrow,
.product-tag,
.flow-index,
.hero-flow-note span {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--green);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green-soft);
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(139, 207, 53, 0.12);
}

h1,
h2,
h3,
strong {
  font-family: "Sora", sans-serif;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--text-light);
}

h3 {
  font-size: 1.34rem;
  line-height: 1.16;
  letter-spacing: -0.04em;
  color: inherit;
}

p {
  line-height: 1.75;
}

.section-heading p,
.flow-step p,
.product-card p,
.benefit-card p,
.application-card p,
.solar-copy p,
.peak-copy p,
.mini-panel span,
.faq-answer p,
.final-panel p,
.enquiry-copy p,
.hero-subtitle,
.hero-flow-note p,
.portfolio-copy p {
  color: var(--text-light-muted);
  font-size: 1rem;
}

/* Section Background Images */

.hero,
#how-it-works,
.products,
#benefits,
.applications,
.industry-visuals,
.portfolio,
.peak-shaving,
.faq,
.final-cta {
  overflow: hidden;
}

.hero::before,
#how-it-works::before,
.products::before,
#benefits::before,
.applications::before,
.industry-visuals::before,
.portfolio::before,
.peak-shaving::before,
.faq::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero::after,
#how-it-works::after,
.products::after,
#benefits::after,
.applications::after,
.industry-visuals::after,
.portfolio::after,
.peak-shaving::after,
.faq::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background-image: url("Images/Banner.png");
  z-index: 0;
}

.hero::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(3, 13, 17, 0.36) 0%, rgba(3, 13, 17, 0.74) 62%, rgba(3, 13, 17, 0.9) 100%),
    linear-gradient(180deg, rgba(3, 13, 17, 0.28) 0%, rgba(3, 13, 17, 0.82) 100%);
  z-index: 2;
}

#how-it-works::before {
  background-image: url("Images/Banner_2.png");
}

#how-it-works::after {
  background:
    linear-gradient(180deg, rgba(4, 16, 21, 0.82) 0%, rgba(4, 16, 21, 0.9) 100%),
    linear-gradient(90deg, rgba(4, 16, 21, 0.78) 0%, rgba(4, 16, 21, 0.58) 100%);
}

.products::before {
  background-image:
    radial-gradient(circle at 12% 16%, rgba(167, 239, 87, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #020202 0%, #070907 100%);
  opacity: 1;
  transform: none;
}

.products::after {
  background:
    linear-gradient(180deg, rgba(1, 2, 1, 0.24) 0%, rgba(1, 2, 1, 0.58) 100%);
}

#benefits::before {
  background-image: url("Images/img131.jpg");
}

#benefits::after {
  background:
    linear-gradient(180deg, rgba(4, 16, 21, 0.72) 0%, rgba(4, 16, 21, 0.84) 100%);
}

.applications::before {
  background-image: url("Images/Banner_2.png");
}

.applications::after {
  background:
    linear-gradient(180deg, rgba(5, 17, 22, 0.48) 0%, rgba(5, 17, 22, 0.62) 48%, rgba(5, 17, 22, 0.82) 100%);
}

.industry-visuals::before {
  background-image: url("Images/img131.jpg");
}

.industry-visuals::after {
  background:
    linear-gradient(180deg, rgba(4, 16, 21, 0.7) 0%, rgba(4, 16, 21, 0.84) 100%);
}

.portfolio::before {
  background-image: url("Images/Banner_2.png");
}

.portfolio::after {
  background:
    linear-gradient(180deg, rgba(4, 14, 18, 0.44) 0%, rgba(4, 14, 18, 0.66) 100%);
}

.peak-shaving::before {
  background-image: url("Images/portfolio-goa.jpeg");
}

.peak-shaving::after {
  background:
    linear-gradient(180deg, rgba(4, 15, 20, 0.86) 0%, rgba(4, 15, 20, 0.92) 100%);
}

.faq::before {
  background-image: url("Images/portfolio-palwal.jpeg");
}

.faq::after {
  background:
    linear-gradient(180deg, rgba(4, 15, 20, 0.84) 0%, rgba(4, 15, 20, 0.92) 100%);
}

.final-cta::before {
  background-image: url("Images/Banner_CTA.png");
}

.final-cta::after {
  background:
    linear-gradient(90deg, rgba(4, 15, 20, 0.84) 0%, rgba(4, 15, 20, 0.62) 100%),
    linear-gradient(180deg, rgba(4, 15, 20, 0.38) 0%, rgba(4, 15, 20, 0.82) 100%);
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 142px 0 104px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.12;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 1));
  z-index: 3;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.hero-copy {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  font-size: clamp(2.5rem, 4.15vw, 4.55rem);
  letter-spacing: -0.055em;
}

.hero-subtitle {
  max-width: 56rem;
  margin-top: 22px;
  font-size: 1.04rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: var(--text-light);
}

.hero-brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(139, 207, 53, 0.12);
  border: 1px solid rgba(139, 207, 53, 0.2);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 34px;
}

.hero-flow-note {
  max-width: 40rem;
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  text-align: center;
}

.hero-flow-note span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
}

.metric-card {
  padding: 22px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.metric-card strong {
  display: block;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.05em;
}

.metric-card span {
  display: block;
  margin-top: 10px;
  color: var(--text-light-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* How It Works */

.flow-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.flow-step {
  min-width: 0;
  padding: 24px 20px;
  min-height: 290px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition:
    transform 320ms ease,
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.flow-step.is-active,
.flow-step.is-complete {
  border-color: rgba(139, 207, 53, 0.32);
}

.flow-step.is-active {
  transform: translateY(-8px);
  background: rgba(139, 207, 53, 0.14);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.24);
}

.flow-step.is-complete {
  background: rgba(27, 174, 233, 0.12);
}

.flow-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--text-light);
  background: linear-gradient(135deg, rgba(139, 207, 53, 0.18), rgba(27, 174, 233, 0.12));
}

.flow-icon svg,
.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-step .flow-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--green);
}

.flow-step h3 {
  color: var(--text-light);
  white-space: normal;
  line-height: 1.22;
}

.flow-step p {
  margin-top: 12px;
}

.flow-connector {
  display: none;
}

.flow-connector::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #c2ec73);
  transition: width 700ms ease;
}

.flow-connector.is-active::after {
  width: 100%;
}

/* Products */

.products .section-heading p {
  max-width: 52rem;
}

.product-stage {
  position: relative;
  padding: clamp(28px, 3.5vw, 42px);
  border-radius: calc(var(--radius-2xl) + 12px);
  background:
    linear-gradient(160deg, rgba(5, 7, 5, 0.96) 0%, rgba(10, 14, 11, 0.92) 58%, rgba(8, 12, 9, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.38);
}

.product-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 10%, rgba(167, 239, 87, 0.16), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: calc(var(--radius-2xl) + 2px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.product-shell,
.product-heading,
.product-overview,
.product-grid {
  position: relative;
  z-index: 1;
}

.product-shell {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.product-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.product-heading {
  margin-bottom: 0;
}

.product-heading h2 {
  max-width: 11.5ch;
  color: var(--text-light);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.25rem, 2.9vw + 0.8rem, 3.55rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.product-heading p {
  max-width: 58ch;
  color: var(--text-light-muted);
  font-size: 1.02rem;
  line-height: 1.78;
}

.product-frame-panel {
  padding: 24px 26px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-frame-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(167, 239, 87, 0.12);
  border: 1px solid rgba(167, 239, 87, 0.18);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-frame-panel strong {
  display: block;
  margin-top: 16px;
  max-width: 18ch;
  color: var(--text-light);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.24rem, 1.1vw + 0.98rem, 1.68rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.product-frame-panel p {
  margin-top: 14px;
  color: var(--text-light-muted);
  line-height: 1.72;
}

.product-frame-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-frame-points span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(247, 251, 244, 0.88);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-frame-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.product-brochure-button {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px rgba(167, 239, 87, 0.18);
}

.product-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.product-overview-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-overview-card span {
  display: inline-block;
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-overview-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text-light);
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.25;
}

.product-overview-card p {
  margin: 10px 0 0;
  color: var(--text-light-muted);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-2xl);
  color: var(--text-light);
  background:
    linear-gradient(180deg, rgba(11, 15, 12, 0.92) 0%, rgba(17, 23, 18, 0.86) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 239, 87, 0.98) 0%, rgba(255, 255, 255, 0.92) 62%, rgba(255, 255, 255, 0) 100%);
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(167, 239, 87, 0.22);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.34);
}

.product-card-glow {
  position: absolute;
  inset: -72px -34px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 239, 87, 0.24), transparent 70%);
  opacity: 0.9;
}

.product-card-glow-blue {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 72%);
}

.product-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(167, 239, 87, 0.12);
  border: 1px solid rgba(167, 239, 87, 0.18);
  color: var(--green-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-scale {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(247, 251, 244, 0.86);
  font-size: 0.79rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-copy {
  position: relative;
  z-index: 1;
  order: 3;
  margin-top: 20px;
}

.product-card h3 {
  margin-top: 0;
  max-width: none;
  line-height: 1.14;
  white-space: normal;
  color: var(--text-light);
}

.product-card p {
  margin-top: 12px;
  color: rgba(231, 237, 231, 0.72);
  font-size: 0.98rem;
}

.product-media {
  position: relative;
  z-index: 1;
  order: 2;
  display: grid;
  place-items: center;
  min-height: 234px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, #fbfff6 0%, #dfe8d6 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 32px rgba(0, 0, 0, 0.16);
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top, rgba(167, 239, 87, 0.16), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(167, 239, 87, 0.06));
}

.product-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 240px;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  transition: transform 500ms ease;
}

.product-card:hover .product-photo,
.product-card:focus-within .product-photo {
  transform: scale(1.03);
}

.product-specs,
.product-applications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.product-specs {
  order: 4;
  margin-top: 20px;
}

.product-applications {
  order: 5;
  margin-top: 14px;
}

.product-specs span,
.product-applications span {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.product-specs span {
  color: #f4ffe7;
  background: rgba(167, 239, 87, 0.1);
  border: 1px solid rgba(167, 239, 87, 0.18);
}

.product-applications span {
  color: rgba(244, 249, 244, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Benefits and Applications */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.benefit-card,
.application-card,
.mini-panel {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.benefit-card,
.application-card {
  padding: 24px;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.benefit-card:hover,
.benefit-card:focus-within,
.application-card:hover,
.application-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(139, 207, 53, 0.22);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
}

.icon-box {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 18px;
  color: var(--text-light);
  background: linear-gradient(135deg, rgba(139, 207, 53, 0.18), rgba(27, 174, 233, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-box-dark {
  color: var(--green-soft);
  background: rgba(139, 207, 53, 0.12);
}

.benefit-card h3,
.application-card h3 {
  margin-top: 18px;
  color: var(--text-light);
}

.benefit-card p {
  margin-top: 12px;
}

.applications .section-heading {
  max-width: 62rem;
}

.applications .section-heading p {
  max-width: 48rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.application-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(220px, 248px) auto;
  align-items: stretch;
  min-height: 0;
  padding: 0;
  background: linear-gradient(180deg, rgba(8, 12, 10, 0.94) 0%, rgba(11, 17, 13, 0.98) 100%);
}

.application-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(167, 239, 87, 0.95) 0%, rgba(255, 255, 255, 0.75) 55%, rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.application-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 248px;
  background:
    linear-gradient(180deg, rgba(4, 15, 20, 0.06) 0%, rgba(4, 15, 20, 0.18) 46%, rgba(4, 15, 20, 0.42) 100%);
  z-index: 1;
  pointer-events: none;
}

.application-card img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 248px;
  object-fit: cover;
  filter: brightness(0.82) saturate(1.02);
  transform: none;
  transition:
    transform 800ms ease,
    filter 800ms ease;
}

.application-card:hover img,
.application-card:focus-within img {
  transform: scale(1.03);
  filter: brightness(0.88) saturate(1.04);
}

.application-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px 24px 26px;
  background: linear-gradient(180deg, rgba(7, 11, 8, 0.94) 0%, rgba(11, 16, 12, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.application-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(4, 20, 19, 0.5);
  border: 1px solid rgba(139, 207, 53, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.application-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(139, 207, 53, 0.14);
}

.application-card h3 {
  margin-top: 0;
  max-width: 14ch;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(1.28rem, 0.7vw + 1.05rem, 1.72rem);
  font-weight: 800;
  line-height: 1.14;
  white-space: normal;
  text-wrap: balance;
}

.application-card p {
  margin-top: 0;
  max-width: none;
  color: rgba(245, 248, 242, 0.8);
  font-size: 0.99rem;
  line-height: 1.72;
}

.application-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.application-points span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 700;
}

.application-card-wide {
  min-height: 0;
}

.application-card-standard {
  min-height: 0;
}

.application-card-wide img {
  height: 264px;
}

.application-card-wide::after {
  height: 264px;
}

.application-card-commercial img {
  object-position: center;
}

.application-card-commercial::after {
  background:
    linear-gradient(180deg, rgba(4, 15, 20, 0.04) 0%, rgba(4, 15, 20, 0.14) 44%, rgba(4, 15, 20, 0.36) 100%);
}

.application-card-industry img {
  object-position: center 20%;
}

.application-card-industry::after {
  background:
    linear-gradient(180deg, rgba(4, 15, 20, 0.08) 0%, rgba(4, 15, 20, 0.2) 44%, rgba(4, 15, 20, 0.4) 100%);
}

.application-card-renewable img {
  object-position: center;
  filter: brightness(0.88) saturate(1.02);
}

.application-card-grid img {
  object-position: center;
  filter: brightness(0.9) saturate(1.02);
}

.application-card-ev img {
  object-position: center;
  filter: brightness(0.78) saturate(1.08);
}

.application-card-warehouse img {
  object-position: center top;
}

.application-card-telecom img {
  object-position: center 28%;
  filter: brightness(0.84) saturate(1.02);
}

.application-card-hospitality img {
  object-position: center;
}

/* Portfolio */

.portfolio .section-heading p {
  max-width: 48rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(4, 14, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.portfolio-card:hover,
.portfolio-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(139, 207, 53, 0.22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.portfolio-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 22, 30, 0.96), rgba(12, 29, 40, 0.9));
}

.portfolio-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--portfolio-image);
  background-position: center;
  background-size: cover;
  filter: blur(24px) saturate(1.08);
  opacity: 0.56;
  transform: scale(1.08);
}

.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 14, 18, 0.06) 0%, rgba(4, 14, 18, 0.16) 100%);
}

.portfolio-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 340px;
  padding: 18px 18px 0;
  object-fit: contain;
  object-position: center;
  transition: transform 420ms ease;
}

.portfolio-card:hover img,
.portfolio-card:focus-within img {
  transform: scale(1.02);
}

.portfolio-copy {
  padding: 24px 24px 28px;
}

.portfolio-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(139, 207, 53, 0.12);
  border: 1px solid rgba(139, 207, 53, 0.18);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  color: var(--text-light);
}

/* Solar */

.solar-shell {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 44px;
  border-radius: 36px;
  color: var(--text-light);
  background: url("Images/Banner_2.png") center / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.solar-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 15, 20, 0.74) 0%, rgba(4, 15, 20, 0.46) 48%, rgba(4, 15, 20, 0.2) 100%);
}

.solar-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.solar-copy p {
  margin-top: 16px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 15px 18px 15px 42px;
  border-radius: 20px;
  color: var(--text-light);
  font-weight: 700;
  background: rgba(6, 18, 25, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #c3eb77);
  box-shadow: 0 0 0 8px rgba(139, 207, 53, 0.1);
  transform: translateY(-50%);
}

/* Industry Visuals */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.industry-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(5, 16, 23, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.industry-card:hover,
.industry-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(139, 207, 53, 0.22);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.industry-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.industry-copy {
  padding: 22px;
}

.industry-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-soft);
  background: rgba(139, 207, 53, 0.12);
  border: 1px solid rgba(139, 207, 53, 0.18);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.industry-copy h3 {
  color: var(--text-light);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  white-space: normal;
  line-height: 1.18;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.industry-copy p {
  margin-top: 12px;
  color: var(--text-light-muted);
  line-height: 1.72;
}

.industry-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.industry-points span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
}

/* Peak Shaving */

.peak-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.peak-copy {
  max-width: 920px;
}

.peak-copy p {
  margin-top: 16px;
}

.peak-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.mini-panel {
  padding: 20px;
}

.mini-panel strong {
  display: block;
  color: var(--text-light);
  font-size: 1rem;
}

.mini-panel span {
  display: block;
  margin-top: 8px;
}

/* Why Loom */

.why-shell {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(248, 252, 244, 0.92), rgba(231, 245, 215, 0.82)),
    url("Images/Banner_CTA.png") right center / cover no-repeat;
  background-blend-mode: screen, normal;
  border: 1px solid rgba(139, 207, 53, 0.18);
  box-shadow: var(--shadow-strong);
}

.why-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(248, 252, 244, 0.97) 0%, rgba(242, 248, 238, 0.92) 42%, rgba(242, 248, 238, 0.56) 72%, rgba(242, 248, 238, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(235, 244, 228, 0.2) 100%);
}

.why-shell::after {
  content: "";
  position: absolute;
  inset: -18% auto auto 58%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 207, 53, 0.18) 0%, rgba(139, 207, 53, 0.04) 58%, rgba(139, 207, 53, 0) 74%);
  pointer-events: none;
}

.why-shell > * {
  position: relative;
  z-index: 1;
}

.why-shell .section-heading {
  max-width: 58rem;
}

.why-shell .section-heading-dark h2,
.why-shell .section-heading-dark p {
  color: var(--text-dark);
}

.why-shell .section-heading-dark p {
  max-width: 44rem;
  margin-top: 14px;
  color: var(--text-dark-muted);
}

.why-shell .section-heading-dark .section-kicker {
  color: var(--green-strong);
}

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

.why-card {
  position: relative;
  padding: 18px 20px 18px 54px;
  border-radius: 22px;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(139, 207, 53, 0.16);
  box-shadow: 0 12px 28px rgba(9, 34, 23, 0.08);
  backdrop-filter: blur(10px);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.why-card::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), #c3eb77);
  box-shadow: 0 0 0 8px rgba(139, 207, 53, 0.12);
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(139, 207, 53, 0.34);
  background: rgba(247, 252, 241, 0.92);
  box-shadow: 0 18px 34px rgba(9, 34, 23, 0.12);
}

/* Enquiry */

.enquiry {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eef5e7 0%, #f7faf5 100%);
}

.enquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(139, 207, 53, 0.14), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(27, 174, 233, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
}

.enquiry-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 1.16fr);
  gap: 28px;
  align-items: start;
}

.enquiry-copy {
  padding-top: 10px;
}

.enquiry-copy .section-kicker {
  color: var(--green-strong);
}

.enquiry-copy h2 {
  color: var(--text-dark);
}

.enquiry-copy p {
  margin-top: 16px;
  color: var(--text-dark-muted);
}

.enquiry-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.enquiry .mini-panel {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 207, 53, 0.14);
  box-shadow: 0 12px 28px rgba(9, 34, 23, 0.08);
  backdrop-filter: blur(10px);
}

.enquiry .mini-panel strong {
  color: var(--text-dark);
}

.enquiry .mini-panel span {
  color: var(--text-dark-muted);
}

.contact-card {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  color: var(--text-light);
  background:
    radial-gradient(circle at top right, rgba(37, 211, 102, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(7, 23, 31, 0.98), rgba(10, 32, 42, 0.94));
  box-shadow: 0 20px 42px rgba(9, 34, 23, 0.16);
}

.contact-label {
  color: rgba(216, 240, 169, 0.92);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-phone {
  color: var(--text-light);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.05;
}

.contact-card .contact-helper {
  margin: 0;
  color: var(--text-light-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-card {
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(139, 207, 53, 0.14);
  box-shadow: 0 20px 44px rgba(9, 34, 23, 0.12);
}

.form-embed {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(139, 207, 53, 0.12);
}

.zoho-form-frame {
  display: block;
  width: 100%;
  height: 680px;
  border: none;
  background: #ffffff;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-span-2 {
  grid-column: 1 / -1;
}

.field span {
  color: var(--text-dark);
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 54px;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(7, 23, 31, 0.12);
  background: #f7fbf6;
  color: var(--text-dark);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(93, 180, 67, 0.64);
  box-shadow: 0 0 0 4px rgba(139, 207, 53, 0.14);
  background: #ffffff;
}

.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: rgba(226, 98, 72, 0.9);
  box-shadow: 0 0 0 4px rgba(226, 98, 72, 0.08);
}

.field-error {
  min-height: 18px;
  color: #c84f35;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.form-helper {
  color: var(--text-dark-muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--text-dark);
  font-weight: 700;
}

.form-status.is-error {
  color: #c84f35;
}

.form-status.is-success {
  color: #1f7a3b;
}

/* FAQ */

.faq-shell {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 36px;
  background: rgba(4, 15, 20, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.faq-item.is-open {
  border-color: rgba(139, 207, 53, 0.22);
  background: rgba(139, 207, 53, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  color: var(--text-light);
  text-align: left;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
  transform: translateY(-50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer p {
  padding: 0 22px 22px;
}

/* Final CTA and Footer */

.final-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 40px;
  border-radius: 36px;
  color: var(--text-light);
  background: rgba(4, 15, 20, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.final-panel .section-kicker,
.final-panel h2,
.final-panel p {
  color: var(--text-light);
}

.final-panel p {
  max-width: 40rem;
  margin-top: 14px;
}

.final-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 0 0 36px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--text-light-muted);
  font-size: 0.92rem;
}

.footer-shell a {
  color: var(--text-light);
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  overflow: visible;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  color: #f6fff6;
  background: linear-gradient(135deg, #25d366 0%, #1fa855 100%);
  box-shadow: 0 22px 44px rgba(16, 104, 55, 0.28);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.whatsapp-float-popup {
  position: absolute;
  right: 10px;
  bottom: calc(100% + 12px);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  min-width: 212px;
  padding: 10px 14px 10px 10px;
  border-radius: 22px;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 38px rgba(9, 34, 23, 0.16);
  animation: whatsapp-popup-float 2.8s ease-in-out infinite;
}

.whatsapp-float-popup::after {
  content: "";
  position: absolute;
  right: 32px;
  top: calc(100% - 2px);
  width: 14px;
  height: 14px;
  background: inherit;
  transform: rotate(45deg);
  border-radius: 4px;
}

.whatsapp-float-avatar {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(9, 34, 23, 0.16));
}

.whatsapp-float-message {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-float-message strong {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  line-height: 1;
}

.whatsapp-float-message span {
  color: var(--text-dark-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.15;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 52px rgba(16, 104, 55, 0.34);
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 46px;
}

.whatsapp-float-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-float-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whatsapp-float-copy span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.whatsapp-float-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

@keyframes whatsapp-popup-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Reveal */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (min-width: 1181px) {
  .section-heading {
    max-width: none;
  }

  h2 {
    font-size: clamp(1.72rem, 2.15vw, 2.5rem);
    white-space: nowrap;
  }

  h3 {
    white-space: nowrap;
  }

  .flow-step h3 {
    font-size: 0.95rem;
  }

  .product-card h3 {
    max-width: none;
    font-size: 1.08rem;
    white-space: normal;
  }

  .product-heading h2 {
    max-width: 11.5ch;
    font-size: clamp(2.2rem, 2.4vw + 0.9rem, 3.3rem);
    white-space: normal;
  }

  .benefit-card h3,
  .portfolio-copy h3 {
    font-size: 1.06rem;
  }

  .application-card h3 {
    max-width: none;
    font-size: 1.2rem;
  }

  .application-card-wide h3 {
    font-size: 1.56rem;
  }
}

@media (max-width: 1180px) {
  .flow-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .enquiry-shell {
    grid-template-columns: 1fr;
  }

  .product-lead {
    grid-template-columns: 1fr;
  }

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

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

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

  .application-card-wide,
  .application-card-standard {
    grid-column: auto;
    min-height: 0;
  }
}

@media (max-width: 960px) {
  .site-header {
    top: 12px;
  }

  .header-shell {
    gap: 16px;
    padding: 14px 16px;
    border-radius: 28px;
  }

  .site-nav,
  .header-phone,
  .header-actions .button-outline {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  body.nav-open .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(4, 15, 20, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-strong);
  }

  body.nav-open .site-nav a {
    padding: 10px 8px;
    color: var(--text-light);
  }

  body.nav-open .site-nav .site-nav-phone {
    display: grid;
    gap: 6px;
    margin-top: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.nav-open .site-nav .site-nav-phone span {
    color: var(--text-light-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  body.nav-open .site-nav .site-nav-phone strong {
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    color: var(--text-light);
  }

  .flow-board {
    grid-template-columns: 1fr;
  }

  .product-stage {
    padding: 24px;
  }

  .product-stage::after {
    inset: 14px;
  }

  .product-shell,
  .product-lead {
    gap: 18px;
  }

  .product-shell {
    margin-bottom: 22px;
  }

  .product-frame-panel {
    padding: 22px;
  }

  .product-overview {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 20px;
  }

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

  .application-card {
    grid-template-rows: minmax(210px, 220px) auto;
  }

  .application-card img,
  .application-card-wide img {
    height: 220px;
  }

  .application-card::after,
  .application-card-wide::after {
    height: 220px;
  }

  .application-copy {
    padding: 22px;
  }

  .product-media {
    min-height: 220px;
  }

  .product-photo {
    height: 220px;
    padding: 16px;
  }

  .flow-connector {
    display: none;
  }

  .flow-connector::after {
    width: 100%;
    height: 0;
    transition:
      height 700ms ease,
      width 700ms ease;
  }

  .flow-connector.is-active::after {
    height: 100%;
  }

  .hero-metrics,
  .benefit-grid,
  .industry-grid,
  .portfolio-grid,
  .why-grid,
  .peak-points,
  .feature-list,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .application-card-wide,
  .application-card-standard {
    grid-column: auto;
  }

  .application-card h3 {
    white-space: normal;
  }

  .final-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: 154px 0 74px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .hero-copy h1 {
    white-space: normal;
    max-width: 9ch;
    font-size: clamp(2.9rem, 12vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.95rem, 10vw, 2.85rem);
  }

  .hero-actions,
  .header-actions,
  .final-actions,
  .contact-actions {
    width: 100%;
  }

  .hero-actions .button,
  .header-actions .button,
  .final-actions .button,
  .contact-actions .button,
  .form-footer .button {
    width: 100%;
  }

  .solar-shell,
  .why-shell,
  .faq-shell,
  .final-panel,
  .form-card {
    padding: 24px;
  }

  .solar-shell {
    min-height: 0;
    align-items: flex-start;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
  }

  .application-copy {
    padding: 22px;
  }

  .zoho-form-frame {
    height: 760px;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .header-actions {
    display: none;
  }

  .whatsapp-float {
    padding: 10px;
  }

  .whatsapp-float-popup {
    right: 0;
    min-width: 178px;
    padding: 8px 10px 8px 8px;
  }

  .whatsapp-float-avatar {
    width: 48px;
    height: 48px;
  }

  .whatsapp-float-message strong {
    font-size: 0.84rem;
  }

  .whatsapp-float-message span {
    font-size: 0.72rem;
  }

  .whatsapp-float-copy {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand-image {
    width: 48px;
    height: 48px;
  }

  .hero-flow-note,
  .metric-card,
  .flow-step,
  .benefit-card,
  .application-card,
  .mini-panel,
  .why-card {
    border-radius: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
