:root {
  --header-bg: rgba(255, 255, 255, 0.92);
  --header-border: rgba(8, 20, 26, 0.1);
  --text: #08141a;
  --muted: #30443e;
  --accent: #30d158;
  --accent-dark: #13a744;
  --content-max: 1320px;
  --wide-content-max: 1440px;
  --section-x: clamp(20px, 5vw, 72px);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  background: #eef3f1;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(66, 216, 75, 0.12), transparent 34%),
    #ffffff;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #08141a;
  text-align: center;
}

.site-loader-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(8, 20, 26, 0.1);
}

.site-loader-card p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 800;
}

.site-loader-card span {
  width: 78px;
  height: 3px;
  overflow: hidden;
  background: rgba(66, 216, 75, 0.18);
  border-radius: 999px;
}

.site-loader-card span::before {
  display: block;
  width: 38%;
  height: 100%;
  content: "";
  background: #42d84b;
  border-radius: inherit;
  animation: loader-sweep 760ms ease-in-out infinite;
}

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

a,
button,
input,
select,
textarea,
summary {
  touch-action: manipulation;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #42d84b, #9aff7d);
  box-shadow: 0 0 18px rgba(66, 216, 75, 0.58);
  transition: width 120ms linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  min-height: 64px;
  padding: 0 var(--section-x);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: 0 12px 32px rgba(8, 20, 26, 0.08);
  backdrop-filter: blur(18px);
  transition:
    min-height 280ms ease,
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease,
    backdrop-filter 280ms ease;
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--wide-content-max);
  min-height: 64px;
  margin: 0 auto;
  padding: 7px 0;
}

.site-header.is-scrolled {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(19, 167, 68, 0.16);
  box-shadow: 0 16px 40px rgba(8, 20, 26, 0.14);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled .site-header-inner {
  min-height: 58px;
  padding: 5px 0;
}

.site-header.is-scrolled .brand img {
  width: 44px;
  height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  min-width: 0;
  color: #08141a;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 10px;
}

.brand span {
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.32rem, 1.9vw, 1.68rem);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-shadow: none;
  transition:
    color 280ms ease,
    transform 280ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, #42d84b, transparent);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.28);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: #159b34;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: #159b34;
}

.main-nav a:focus-visible,
.contact-button:focus-visible,
.nav-toggle-button:focus-visible,
.nav-toggle:focus-visible + .nav-toggle-button {
  outline: 3px solid rgba(48, 209, 88, 0.5);
  outline-offset: 5px;
}

.main-nav .contact-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  color: #04100b;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent), #9aff7d);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(48, 209, 88, 0.25);
}

.main-nav .contact-button:hover,
.main-nav .contact-button:focus-visible {
  color: #04100b;
  transform: translateY(-3px);
  background: linear-gradient(135deg, #70f36e, var(--accent-dark));
  box-shadow: 0 18px 34px rgba(48, 209, 88, 0.34);
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--header-border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle-button span {
  width: 20px;
  height: 2px;
  background: #08141a;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

main {
  min-height: calc(100vh - 64px);
}

.legal-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(48px, 8vw, 96px) 20px;
  background: #ffffff;
}

.legal-page article {
  width: min(820px, 100%);
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(8, 20, 26, 0.08);
}

.legal-page h1 {
  margin: 0 0 20px;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
}

.legal-page p {
  color: #4a4a4a;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.7;
}

.legal-page a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  margin-top: 10px;
  color: #159b34;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 71vh;
  align-items: center;
  width: 100%;
  padding: clamp(34px, 4.6vw, 58px) var(--section-x);
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.96) 34%, rgba(255, 255, 255, 0.76) 52%, rgba(255, 255, 255, 0.08) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.14)),
    url("assets/hero/hero-main.webp");
  background-color: #ffffff;
  background-position: center center, center center, right center;
  background-repeat: no-repeat;
  background-size: cover, cover, auto 100%;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 36%, rgba(255, 255, 255, 0) 67%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto auto 7% max(var(--section-x), calc((100vw - var(--wide-content-max)) / 2 + var(--section-x)));
  width: 120px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, #0a8733, rgba(66, 216, 75, 0));
  border-radius: 999px;
  pointer-events: none;
}

.hero.reveal-ready,
.hero.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  width: min(var(--wide-content-max), 100%);
  margin: 0 auto;
}

.hero-copy {
  display: grid;
  gap: clamp(14px, 1.8vw, 20px);
  max-width: 590px;
}

.hero-copy h1 {
  margin: 0;
  color: #08141a;
  font-size: clamp(48px, 5vw, 78px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: #078735;
}

.hero-subtitle {
  margin: 0;
  color: #08141a;
  font-size: clamp(1.05rem, 1.65vw, 1.38rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-description {
  max-width: 590px;
  margin: 0;
  color: #26342f;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 500;
  line-height: 1.65;
}

.hero-lineup {
  width: fit-content;
  margin: -2px 0 0;
  padding: 8px 13px;
  color: #078735;
  font-size: clamp(0.82rem, 0.95vw, 0.96rem);
  font-weight: 800;
  line-height: 1.2;
  background: rgba(66, 216, 75, 0.11);
  border: 1px solid rgba(66, 216, 75, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(66, 216, 75, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.hero-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-width: 172px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    color 240ms ease;
}

.hero-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #068934, #10a545);
  border: 1px solid rgba(7, 135, 47, 0.72);
  box-shadow: 0 18px 42px rgba(7, 135, 47, 0.24);
}

.hero-button-secondary {
  color: #07872f;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(7, 135, 47, 0.76);
  box-shadow: 0 16px 34px rgba(8, 20, 26, 0.08);
}

.hero-button-secondary::after {
  margin-left: 14px;
  content: "→";
  transition: transform 250ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-3px) scale(1.03);
}

.hero-button-secondary:hover::after,
.hero-button-secondary:focus-visible::after,
.feature-item a:hover::after,
.feature-item a:focus-visible::after,
.charger-card a:hover::after,
.charger-card a:focus-visible::after,
.cta-button:hover::after,
.cta-button:focus-visible::after {
  transform: translateX(4px);
}

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(7, 135, 47, 0.32);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  color: #04100b;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(8, 20, 26, 0.13);
}

.hero-button:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.capability-section {
  padding: clamp(28px, 4vw, 46px) var(--section-x);
  background: #f7faf8;
  border-top: 1px solid rgba(8, 20, 26, 0.06);
  border-bottom: 1px solid rgba(8, 20, 26, 0.06);
}

.capability-inner {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  width: min(var(--wide-content-max), 100%);
  margin: 0 auto;
}

.capability-heading {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.capability-heading p {
  margin: 0;
  color: #159b34;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.capability-heading h2 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 2.7vw, 42px);
  font-weight: 700;
  line-height: 1.08;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.capability-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 148px;
  padding: clamp(16px, 1.7vw, 22px);
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(8, 20, 26, 0.07);
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.capability-card:hover {
  border-color: rgba(66, 216, 75, 0.5);
  box-shadow:
    0 24px 58px rgba(8, 20, 26, 0.11),
    0 0 26px rgba(66, 216, 75, 0.12);
  transform: translateY(-6px);
}

.capability-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #159b34;
  background: rgba(66, 216, 75, 0.1);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 15px;
  box-shadow: 0 0 24px rgba(66, 216, 75, 0.12);
  transition: transform 250ms ease;
}

.capability-card:hover .capability-icon {
  transform: scale(1.08);
}

.capability-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.capability-card h3 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: 700;
  line-height: 1.15;
}

.stats-strip {
  padding: clamp(38px, 4.8vw, 58px) var(--section-x);
  background: #ffffff;
}

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(var(--wide-content-max), 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #050b08;
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 22px;
  box-shadow: 0 24px 64px rgba(8, 20, 26, 0.14);
}

.stats-strip-inner div {
  display: grid;
  gap: 4px;
  min-height: 112px;
  align-content: center;
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(66, 216, 75, 0.18);
}

.stats-strip-inner div:last-child {
  border-right: 0;
}

.stats-strip-inner strong {
  color: #42d84b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
}

.stats-strip-inner span {
  color: #c9d5d0;
  font-size: 0.9rem;
  font-weight: 700;
}

.intro-section {
  padding: 26px clamp(24px, 6vw, 72px);
  background: #ffffff;
}

.intro-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.intro-section h1 {
  position: relative;
  margin: 0;
  padding-top: 14px;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.08;
}

.intro-section h1::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  content: "";
  background: #42d84b;
  border-radius: 999px;
}

.intro-section h1 span {
  display: block;
}

.intro-copy {
  min-width: 0;
}

.intro-section p {
  max-width: 700px;
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.62;
}

.compact-contact {
  padding: clamp(38px, 4.8vw, 58px) var(--section-x);
}

.compact-contact .contact-inner {
  width: min(900px, 100%);
}

.compact-contact .contact-heading {
  margin-bottom: clamp(20px, 3vw, 30px);
}

.compact-contact .contact-form {
  margin: 0 auto;
}

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: clamp(12px, 1.6vw, 18px);
  align-items: center;
  width: min(var(--content-max), 100%);
  margin: 0 auto clamp(18px, 2.4vw, 26px);
}

.contact-detail-line {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px 14px;
  color: #eaf4ef;
  font-size: clamp(14px, 0.9vw, 16px);
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.contact-detail-line:hover,
.contact-detail-line:focus-visible {
  color: #42d84b;
  border-color: rgba(66, 216, 75, 0.54);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.28),
    0 0 24px rgba(66, 216, 75, 0.12);
  transform: translateY(-2px);
}

.contact-detail-line svg,
.footer-contact-line svg {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-line[href*="wa.me"] svg,
.footer-contact-line[href*="wa.me"] svg {
  fill: currentColor;
  stroke: none;
}

.contact-location,
.footer-location {
  color: #aebdb7;
}

.contact-location svg,
.footer-location svg {
  color: #42d84b;
}

.contact-detail-line span,
.footer-contact-line span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.website-qr {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #c9d5d0;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.website-qr {
  min-width: 132px;
}

.website-qr img {
  display: block;
  width: clamp(110px, 8vw, 140px);
  height: clamp(110px, 8vw, 140px);
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 12px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.contact-form:focus-within {
  border-color: rgba(66, 216, 75, 0.48);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.26),
    0 0 34px rgba(66, 216, 75, 0.18);
}

.contact-form.quote-highlight {
  border-color: rgba(66, 216, 75, 0.72);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.28),
    0 0 0 4px rgba(66, 216, 75, 0.14),
    0 0 42px rgba(66, 216, 75, 0.28);
}

.intro-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 20px;
}

.intro-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: #08141a;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.intro-button-primary {
  background: #42d84b;
  border: 1px solid #42d84b;
  box-shadow: 0 14px 30px rgba(66, 216, 75, 0.22);
}

.intro-button-secondary {
  color: #159b34;
  background: #ffffff;
  border: 1px solid #42d84b;
}

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

.intro-button-primary:hover,
.intro-button-primary:focus-visible {
  color: #08141a;
  box-shadow: 0 18px 42px rgba(66, 216, 75, 0.42);
}

.intro-button-secondary:hover,
.intro-button-secondary:focus-visible {
  color: #08141a;
  background: rgba(66, 216, 75, 0.08);
  box-shadow: 0 14px 30px rgba(66, 216, 75, 0.16);
}

.intro-button:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.feature-section {
  padding: clamp(38px, 4.8vw, 58px) var(--section-x);
  background: #f7faf8;
}

.feature-heading {
  display: grid;
  gap: 10px;
  width: min(820px, 100%);
  margin: 0 auto clamp(22px, 3vw, 32px);
  text-align: center;
}

.feature-heading h2 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.08;
}

.feature-heading p {
  margin: 0;
  color: #4a4a4a;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.feature-item {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 218px;
  padding: clamp(18px, 2vw, 24px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(66, 216, 75, 0.28);
  border-radius: 24px;
  box-shadow: 0 22px 56px rgba(8, 20, 26, 0.08);
  backdrop-filter: blur(14px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 216, 75, 0.58);
  box-shadow: 0 30px 70px rgba(8, 20, 26, 0.13);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #42d84b, #18a83c);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  box-shadow:
    0 16px 32px rgba(66, 216, 75, 0.28),
    0 0 0 8px rgba(66, 216, 75, 0.08);
}

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

.feature-item h3 {
  margin: 6px 0 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  font-weight: 700;
  line-height: 1;
}

.feature-item p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.feature-item a {
  width: fit-content;
  margin-top: 4px;
  color: #159b34;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
}

.feature-item a::after {
  display: inline-block;
  transition: transform 250ms ease;
}

.feature-item a:hover,
.feature-item a:focus-visible {
  color: #08141a;
}

.feature-item a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 64px) var(--section-x);
  background: #050b08;
  color: #f7fbf8;
}

.why-section::before,
.why-section::after {
  position: absolute;
  width: 360px;
  height: 360px;
  content: "";
  background: radial-gradient(circle, rgba(66, 216, 75, 0.22), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.why-section::before {
  top: -130px;
  left: -100px;
}

.why-section::after {
  right: -120px;
  bottom: -140px;
}

.why-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: clamp(22px, 3vw, 30px);
  text-align: center;
}

.section-heading p {
  margin: 0;
  color: #42d84b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0 auto;
  max-width: 760px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.05;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 20px);
}

.why-item {
  min-height: 216px;
  padding: clamp(17px, 2vw, 22px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 20px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.why-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(66, 216, 75, 0.56);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(66, 216, 75, 0.14);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.why-item span {
  display: inline-block;
  color: #42d84b;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.why-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #42d84b;
  background: rgba(66, 216, 75, 0.08);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 14px;
  box-shadow: 0 0 26px rgba(66, 216, 75, 0.14);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.14rem, 1.55vw, 1.34rem);
  font-weight: 700;
  line-height: 1.1;
}

.why-item p {
  margin: 0;
  color: #c9d5d0;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.48;
}

.impact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.impact-section::before {
  position: absolute;
  right: -14vw;
  bottom: 42px;
  width: 58vw;
  height: 24vw;
  min-width: 520px;
  min-height: 210px;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(66, 216, 75, 0.09), transparent 62%),
    repeating-radial-gradient(ellipse at center, transparent 0 34px, rgba(66, 216, 75, 0.12) 35px 37px);
  border-radius: 50%;
  transform: rotate(-9deg);
  pointer-events: none;
}

.impact-inner {
  position: relative;
  z-index: 1;
  width: min(1300px, 100%);
  margin: 0 auto;
}

.impact-heading {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto clamp(38px, 5vw, 60px);
  text-align: center;
}

.impact-heading p {
  margin: 0;
  color: #159b34;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.impact-heading h2 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
}

.impact-heading span {
  color: #4a4a4a;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 700;
  line-height: 1.7;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.impact-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 292px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(8, 20, 26, 0.08);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.impact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 216, 75, 0.58);
  box-shadow:
    0 30px 72px rgba(8, 20, 26, 0.13),
    0 0 32px rgba(66, 216, 75, 0.16);
}

.impact-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #42d84b, #159b34);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(66, 216, 75, 0.28);
}

.impact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.impact-card h3 {
  margin: 10px 0 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.1;
}

.impact-card strong {
  color: #08141a;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1;
}

.impact-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.products-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 5.6vw, 70px) var(--section-x);
  background: #050b08;
  color: #f7fbf8;
}

.products-showcase::before,
.products-showcase::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(66, 216, 75, 0.2), transparent 68%);
  filter: blur(10px);
}

.products-showcase::before {
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
}

.products-showcase::after {
  left: -130px;
  bottom: -170px;
  width: 460px;
  height: 460px;
}

.products-showcase-inner {
  position: relative;
  z-index: 1;
  width: min(var(--wide-content-max), 100%);
  margin: 0 auto;
}

.products-showcase-heading {
  display: grid;
  gap: 9px;
  max-width: 820px;
  margin: 0 auto clamp(24px, 3.2vw, 36px);
  text-align: center;
}

.products-showcase-heading p {
  margin: 0;
  color: #42d84b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.products-showcase-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.08;
}

.products-showcase-heading span {
  color: #c9d5d0;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.55;
}

.charger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: clamp(16px, 1.4vw, 22px);
}

.charger-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 8px;
  height: 100%;
  min-height: 430px;
  padding: clamp(16px, 1.25vw, 20px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 20px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.charger-card:hover {
  transform: translateY(-8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(66, 216, 75, 0.62);
  box-shadow:
    0 34px 78px rgba(0, 0, 0, 0.38),
    0 0 38px rgba(66, 216, 75, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.charger-visual {
  display: grid;
  width: 100%;
  height: clamp(220px, 16vw, 240px);
  padding: 12px;
  place-items: center;
  color: #42d84b;
  background:
    radial-gradient(circle at 50% 8%, rgba(66, 216, 75, 0.14), transparent 45%),
    rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 16px;
  box-shadow: 0 0 28px rgba(66, 216, 75, 0.14);
  overflow: hidden;
}

.charger-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 320ms ease;
}

.charger-card:hover .charger-visual img {
  transform: scale(1.03);
}

.custom-solution-card {
  background:
    radial-gradient(circle at 80% 8%, rgba(66, 216, 75, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
}

.custom-solution-visual {
  background:
    radial-gradient(circle at 50% 15%, rgba(66, 216, 75, 0.12), transparent 54%),
    rgba(255, 255, 255, 0.045);
}

.custom-solution-visual img {
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.custom-solution-card a {
  grid-row: 6;
}

.charger-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(17px, 1vw, 21px);
  font-weight: 700;
  line-height: 1.18;
}

.charger-capacity {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin: -2px 0 0;
  padding: 0 12px;
  color: #04100b;
  font-size: clamp(0.92rem, 0.95vw, 1.04rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #42d84b, #8eff83);
  border: 1px solid rgba(66, 216, 75, 0.64);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(66, 216, 75, 0.18);
}

.charger-card span {
  color: #c9d5d0;
  font-size: clamp(14px, 0.8vw, 16px);
  font-weight: 600;
  line-height: 1.42;
}

.charger-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.charger-specs li {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 8px;
  color: #c9d5d0;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 999px;
}

.charger-specs li::before {
  margin-right: 5px;
  color: #42d84b;
  content: "✓";
}

.charger-card a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4px;
  padding: 0 18px;
  color: #04100b;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(135deg, #42d84b 0%, #8eff83 100%);
  border: 1px solid rgba(66, 216, 75, 0.7);
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(66, 216, 75, 0.2);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    filter 280ms ease;
}

.charger-card a::after {
  display: inline-block;
  transition: transform 250ms ease;
}

.charger-card a:hover,
.charger-card a:focus-visible {
  color: #04100b;
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 20px 42px rgba(66, 216, 75, 0.34);
}

.charger-card a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.industries-section {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.industries-inner {
  width: min(1300px, 100%);
  margin: 0 auto;
}

.industries-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}

.industries-heading p {
  margin: 0;
  color: #159b34;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.industries-heading h2 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
}

.industries-heading span {
  color: #4a4a4a;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.7;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.industry-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 310px;
  padding: clamp(24px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(8, 20, 26, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 216, 75, 0.6);
  box-shadow:
    0 30px 72px rgba(8, 20, 26, 0.13),
    0 0 34px rgba(66, 216, 75, 0.16);
}

.industry-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #42d84b, #159b34);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(66, 216, 75, 0.24);
  transition: transform 220ms ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.08);
}

.industry-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card h3 {
  margin: 8px 0 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 800;
  line-height: 1.12;
}

.industry-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.62;
}

.industry-card a {
  width: fit-content;
  margin-top: 4px;
  color: #159b34;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
}

.industry-card a:hover,
.industry-card a:focus-visible {
  color: #08141a;
}

.industry-card a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.partner-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  color: #f7fbf8;
  background: #050b08;
}

.partner-section::before,
.partner-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(66, 216, 75, 0.2), transparent 68%);
  filter: blur(10px);
}

.partner-section::before {
  top: -150px;
  left: -120px;
  width: 430px;
  height: 430px;
}

.partner-section::after {
  right: -150px;
  bottom: -170px;
  width: 500px;
  height: 500px;
}

.partner-inner {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.partner-heading {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}

.partner-heading p {
  margin: 0;
  color: #42d84b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.partner-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.4vw, 4.1rem);
  font-weight: 800;
  line-height: 1.05;
}

.partner-heading span {
  color: #c9d5d0;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 700;
  line-height: 1.7;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 22px);
}

.partner-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 330px;
  padding: clamp(22px, 2.5vw, 30px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(66, 216, 75, 0.58);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(66, 216, 75, 0.16);
}

.partner-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #42d84b;
  background: rgba(66, 216, 75, 0.08);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 18px;
  box-shadow: 0 0 28px rgba(66, 216, 75, 0.14);
}

.partner-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-card h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  font-weight: 800;
  line-height: 1.12;
}

.partner-card p {
  margin: 0;
  color: #c9d5d0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.62;
}

.partner-card a {
  width: fit-content;
  margin-top: 4px;
  color: #42d84b;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}

.partner-card a:hover,
.partner-card a:focus-visible {
  color: #ffffff;
}

.partner-card a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.partner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(34px, 5vw, 56px) auto 0;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.partner-cta h3 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.12;
}

.partner-cta a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 24px;
  color: #04100b;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  background: #42d84b;
  border: 1px solid rgba(66, 216, 75, 0.7);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(66, 216, 75, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.partner-cta a:hover,
.partner-cta a:focus-visible {
  color: #04100b;
  transform: translateY(-2px);
  background: #86fb7b;
  box-shadow: 0 20px 40px rgba(66, 216, 75, 0.34);
}

.partner-cta a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.process-section {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.process-inner {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.process-heading {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto clamp(44px, 6vw, 72px);
  text-align: center;
}

.process-heading p {
  margin: 0;
  color: #159b34;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-heading h2 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
}

.process-heading span {
  color: #4a4a4a;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.7;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 22px);
}

.process-timeline::before {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(66, 216, 75, 0.38), transparent);
}

.process-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 330px;
  padding: clamp(24px, 2.6vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(8, 20, 26, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 216, 75, 0.58);
  box-shadow:
    0 30px 72px rgba(8, 20, 26, 0.13),
    0 0 34px rgba(66, 216, 75, 0.16);
}

.process-badge {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #04100b;
  font-size: 0.92rem;
  font-weight: 800;
  background: #42d84b;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(66, 216, 75, 0.24);
}

.process-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  color: #159b34;
  background: rgba(66, 216, 75, 0.08);
  border: 1px solid rgba(66, 216, 75, 0.2);
  border-radius: 16px;
}

.process-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  margin: 8px 0 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.28rem, 1.7vw, 1.65rem);
  font-weight: 800;
  line-height: 1.12;
}

.process-step p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.62;
}

.technology-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  color: #f7fbf8;
  background:
    linear-gradient(rgba(5, 11, 8, 0.92), rgba(5, 11, 8, 0.96)),
    linear-gradient(90deg, rgba(66, 216, 75, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(66, 216, 75, 0.08) 1px, transparent 1px),
    #050b08;
  background-size: auto, 64px 64px, 64px 64px, auto;
  animation: network-drift 18s linear infinite;
}

.technology-section::before,
.technology-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(66, 216, 75, 0.2), transparent 68%);
  filter: blur(10px);
}

.technology-section::before {
  top: -150px;
  right: -120px;
  width: 430px;
  height: 430px;
}

.technology-section::after {
  left: -130px;
  bottom: -170px;
  width: 500px;
  height: 500px;
}

.technology-inner {
  position: relative;
  z-index: 1;
  width: min(1300px, 100%);
  margin: 0 auto;
}

.technology-heading {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}

.technology-heading p {
  margin: 0;
  color: #42d84b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.technology-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.4vw, 4.1rem);
  font-weight: 800;
  line-height: 1.05;
}

.technology-heading span {
  color: #c9d5d0;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 700;
  line-height: 1.7;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.technology-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 292px;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.technology-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(66, 216, 75, 0.58);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(66, 216, 75, 0.16);
}

.technology-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #42d84b, #159b34);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(66, 216, 75, 0.24);
}

.technology-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.technology-card h3 {
  margin: 8px 0 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  font-weight: 800;
  line-height: 1.12;
}

.technology-card p {
  margin: 0;
  color: #c9d5d0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.62;
}

.compliance-section {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.compliance-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.compliance-heading {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}

.compliance-heading p {
  margin: 0;
  color: #159b34;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compliance-heading h2 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
}

.compliance-heading span {
  color: #4a4a4a;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.7;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.compliance-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 270px;
  padding: clamp(24px, 3vw, 32px);
  background: #ffffff;
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(8, 20, 26, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.compliance-card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 216, 75, 0.6);
  box-shadow:
    0 30px 72px rgba(8, 20, 26, 0.13),
    0 0 34px rgba(66, 216, 75, 0.16);
}

.compliance-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #42d84b, #159b34);
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(66, 216, 75, 0.24);
}

.compliance-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.compliance-card h3 {
  margin: 8px 0 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  font-weight: 800;
  line-height: 1.12;
}

.compliance-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.62;
}

.compliance-note {
  max-width: 920px;
  margin: clamp(28px, 4vw, 42px) auto 0;
  color: #5d6763;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 64px) var(--section-x);
  color: #f7fbf8;
  background: #050b08;
}

.faq-section::before,
.faq-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(66, 216, 75, 0.2), transparent 68%);
  filter: blur(10px);
}

.faq-section::before {
  top: -150px;
  left: -120px;
  width: 430px;
  height: 430px;
}

.faq-section::after {
  right: -150px;
  bottom: -170px;
  width: 500px;
  height: 500px;
}

.faq-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq-heading {
  display: grid;
  gap: 8px;
  margin: 0 auto clamp(22px, 3vw, 30px);
  text-align: center;
}

.faq-heading p {
  margin: 0;
  color: #42d84b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.05;
}

.faq-heading span {
  color: #c9d5d0;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.55;
}

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

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.faq-item:hover,
.faq-item[open] {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(66, 216, 75, 0.54);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.32),
    0 0 26px rgba(66, 216, 75, 0.12);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 2.4vw, 24px);
  color: #ffffff;
  font-size: clamp(16px, 1vw, 19px);
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
  transition: color 220ms ease;
}

.faq-item[open] summary {
  color: #42d84b;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background: #42d84b;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] summary span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item[open] summary span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 clamp(18px, 2.4vw, 24px) 20px;
  color: #c9d5d0;
  font-size: clamp(15px, 0.9vw, 17px);
  font-weight: 600;
  line-height: 1.58;
}

.insights-section {
  padding: clamp(72px, 9vw, 116px) clamp(20px, 5vw, 72px);
  background: #ffffff;
}

.insights-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.insights-heading {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}

.insights-heading p {
  margin: 0;
  color: #159b34;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.insights-heading h2 {
  margin: 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
}

.insights-heading span {
  color: #4a4a4a;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.7;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 30px);
}

.insight-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(66, 216, 75, 0.2);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(8, 20, 26, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.insight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(66, 216, 75, 0.52);
  box-shadow:
    0 30px 72px rgba(8, 20, 26, 0.13),
    0 0 28px rgba(66, 216, 75, 0.12);
}

.insight-image {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: #42d84b;
  background:
    radial-gradient(circle at 70% 28%, rgba(66, 216, 75, 0.2), transparent 34%),
    linear-gradient(135deg, #08141a, #0d2218);
  overflow: hidden;
}

.insight-image img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.insight-content {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
}

.insight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.insight-meta span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  color: #08141a;
  font-size: 0.76rem;
  font-weight: 800;
  background: rgba(66, 216, 75, 0.18);
  border: 1px solid rgba(66, 216, 75, 0.28);
  border-radius: 999px;
}

.insight-meta time {
  color: #66736d;
  font-size: 0.84rem;
  font-weight: 800;
}

.insight-card h3 {
  margin: 4px 0 0;
  color: #08141a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.12;
}

.insight-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

.insight-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: #159b34;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
}

.insight-card a span {
  transition: transform 180ms ease;
}

.insight-card a:hover,
.insight-card a:focus-visible {
  color: #08141a;
}

.insight-card a:hover span,
.insight-card a:focus-visible span {
  transform: translateX(4px);
}

.insight-card a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(46px, 6vw, 76px) var(--section-x);
  color: #f7fbf8;
  background: #050b08;
}

.contact-section::before,
.contact-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, rgba(66, 216, 75, 0.2), transparent 68%);
  filter: blur(10px);
}

.contact-section::before {
  top: -150px;
  right: -120px;
  width: 430px;
  height: 430px;
}

.contact-section::after {
  left: -150px;
  bottom: -170px;
  width: 500px;
  height: 500px;
}

.contact-inner {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), 100%);
  margin: 0 auto;
}

.contact-heading {
  display: grid;
  gap: 9px;
  max-width: 820px;
  margin: 0 auto clamp(26px, 3.5vw, 40px);
  text-align: center;
}

.contact-heading p {
  margin: 0;
  color: #42d84b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 800;
  line-height: 1.05;
}

.contact-heading span {
  color: #c9d5d0;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 16px;
}

.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(66, 216, 75, 0.22);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 216, 75, 0.54);
  box-shadow:
    0 26px 64px rgba(0, 0, 0, 0.34),
    0 0 26px rgba(66, 216, 75, 0.12);
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  flex: 0 0 auto;
  color: #42d84b;
  background: rgba(66, 216, 75, 0.08);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(66, 216, 75, 0.14);
}

.contact-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h3 {
  margin: 0 0 5px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.1;
}

.contact-card a,
.contact-card p {
  margin: 0;
  color: #c9d5d0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: #42d84b;
}

.contact-card a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 2.2vw, 26px);
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #ffffff;
  font-size: clamp(13px, 0.75vw, 15px);
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: #ffffff;
  font: inherit;
  font-size: clamp(15px, 0.9vw, 17px);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.form-field textarea {
  min-height: 108px;
  padding: 12px;
  resize: vertical;
}

.form-field select option {
  color: #08141a;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(66, 216, 75, 0.62);
  box-shadow: 0 0 0 4px rgba(66, 216, 75, 0.14);
}

.contact-form button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  width: fit-content;
  padding: 0 30px;
  color: #04100b;
  font-size: 0.92rem;
  font-weight: 800;
  background: #42d84b;
  border: 1px solid rgba(66, 216, 75, 0.7);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(66, 216, 75, 0.22);
  cursor: pointer;
  transition:
    transform 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-3px) scale(1.03);
  background: #86fb7b;
  box-shadow: 0 20px 40px rgba(66, 216, 75, 0.34);
}

.contact-form button:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

@keyframes network-drift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 64px 0, 0 64px, 0 0;
  }
}

.cta-section {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(42px, 6vw, 68px) 24px;
  text-align: center;
  background: #f7fbf8;
  border-top: 1px solid rgba(7, 17, 15, 0.12);
  border-bottom: 1px solid rgba(7, 17, 15, 0.12);
}

.cta-section h2 {
  margin: 0;
  color: #07110f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.cta-section p {
  max-width: 620px;
  margin: 0;
  color: #39504a;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 600;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 8px;
}

.cta-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  color: #04100b;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.cta-button-primary {
  background: linear-gradient(135deg, var(--accent), #9aff7d);
  border: 1px solid rgba(19, 167, 68, 0.3);
  box-shadow: 0 16px 34px rgba(48, 209, 88, 0.28);
}

.cta-button-secondary {
  color: #07110f;
  background: #ffffff;
  border: 1px solid rgba(7, 17, 15, 0.18);
  box-shadow: 0 14px 28px rgba(7, 17, 15, 0.1);
}

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

.cta-button-primary:hover,
.cta-button-primary:focus-visible {
  color: #04100b;
  background: linear-gradient(135deg, #86fb7b, var(--accent));
  box-shadow: 0 20px 40px rgba(48, 209, 88, 0.34);
}

.cta-button-secondary:hover,
.cta-button-secondary:focus-visible {
  color: #07110f;
  background: #f7fbf8;
  border-color: rgba(19, 167, 68, 0.42);
  box-shadow: 0 18px 34px rgba(7, 17, 15, 0.14);
}

.cta-button:focus-visible {
  outline: 3px solid rgba(48, 209, 88, 0.45);
  outline-offset: 5px;
}

.final-cta-section {
  padding: clamp(42px, 6vw, 68px) var(--section-x);
  color: #f7fbf8;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(66, 216, 75, 0.16), transparent 42%),
    #050b08;
  border-top: 1px solid rgba(66, 216, 75, 0.18);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.final-cta-inner h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.04;
}

.final-cta-inner p {
  max-width: 760px;
  margin: 0;
  color: #c9d5d0;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 600;
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding-top: 8px;
}

.toast-region {
  position: fixed;
  right: 30px;
  bottom: 100px;
  z-index: 80;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.toast {
  min-width: min(340px, calc(100vw - 40px));
  padding: 14px 16px;
  color: #f7fbf8;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  background: rgba(5, 11, 8, 0.94);
  border: 1px solid rgba(66, 216, 75, 0.36);
  border-radius: 14px;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.28),
    0 0 22px rgba(66, 216, 75, 0.14);
  opacity: 0;
  transform: translateY(12px);
  animation: toast-in 260ms ease forwards;
}

.toast.is-error {
  border-color: rgba(255, 91, 91, 0.55);
}

.site-footer {
  padding: clamp(26px, 3.7vw, 40px) var(--section-x) 14px;
  color: #c9d5d0;
  background: #020403;
  border-top: 1px solid rgba(66, 216, 75, 0.22);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 1fr 1fr;
  gap: clamp(24px, 3vw, 42px);
  width: min(var(--wide-content-max), 100%);
  margin: 0 auto;
  padding-bottom: clamp(16px, 2.2vw, 24px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-logo {
  display: inline-flex;
  width: 38px;
  margin-bottom: 2px;
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 7px;
}

.footer-brand h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.12rem, 1.55vw, 1.34rem);
  font-weight: 700;
  line-height: 1.15;
}

.footer-column h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.1;
}

.footer-brand p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.48;
}

.footer-column a {
  width: fit-content;
  color: #c9d5d0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-column .footer-logo {
  width: 38px;
}

.footer-column .footer-logo img {
  width: 38px;
  height: 38px;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #42d84b;
  transform: translateX(4px);
}

.footer-column a:focus-visible,
.footer-socials a:focus-visible,
.footer-bottom a:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.footer-contact {
  font-style: normal;
}

.footer-contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.footer-contact-line svg {
  width: 17px;
  height: 17px;
  color: #42d84b;
}

.footer-contact .footer-location {
  margin-bottom: 18px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.footer-socials a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #42d84b;
  text-decoration: none;
  background: rgba(66, 216, 75, 0.08);
  border: 1px solid rgba(66, 216, 75, 0.24);
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(66, 216, 75, 0);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.footer-socials svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: #04100b;
  background: #42d84b;
  box-shadow:
    0 12px 28px rgba(66, 216, 75, 0.24),
    0 0 22px rgba(66, 216, 75, 0.28);
  transform: translateY(-2px) scale(1.08);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--wide-content-max), 100%);
  margin: 0 auto;
  padding-top: 11px;
  color: #8fa19a;
  border-top: 1px solid rgba(66, 216, 75, 0.22);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.5;
}

.footer-bottom div {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom span {
  color: #8fa19a;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #42d84b;
}

.footer-column a,
.contact-card a,
.contact-card p,
.industry-card p,
.partner-card p,
.insight-card p,
.charger-card span {
  overflow-wrap: anywhere;
}

a,
button,
.intro-button,
.cta-button,
.charger-card a,
.partner-cta a,
.contact-form button {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transform: scale(0);
  animation: ripple-pop 620ms ease-out;
}

.intro-button,
.cta-button,
.charger-card a,
.partner-cta a,
.contact-form button {
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease,
    color 280ms ease;
}

.intro-button:hover,
.intro-button:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.charger-card a:hover,
.charger-card a:focus-visible,
.partner-cta a:hover,
.partner-cta a:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(66, 216, 75, 0.3);
}

.feature-item,
.why-item,
.impact-card,
.charger-card,
.industry-card,
.partner-card,
.process-step,
.technology-card,
.compliance-card,
.faq-item,
.insight-card,
.contact-card {
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease,
    background 300ms ease;
  will-change: transform;
}

.feature-item:hover .feature-icon,
.why-item:hover .why-icon,
.impact-card:hover .impact-icon,
.charger-card:hover .charger-visual,
.industry-card:hover .industry-icon,
.partner-card:hover .partner-icon,
.process-step:hover .process-icon,
.technology-card:hover .technology-icon,
.compliance-card:hover .compliance-icon,
.contact-card:hover .contact-icon {
  transform: scale(1.1);
}

.feature-icon,
.why-icon,
.impact-icon,
.charger-visual,
.industry-icon,
.partner-icon,
.process-icon,
.technology-icon,
.compliance-icon,
.contact-icon {
  transition: transform 300ms ease;
}

.insight-image img,
.footer-logo img,
.brand img {
  transition: transform 420ms ease;
}

.insight-card:hover .insight-image img,
.footer-logo:hover img,
.brand:hover img {
  transform: scale(1.03);
}

.faq-item::details-content {
  block-size: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    block-size 300ms ease,
    opacity 300ms ease;
}

.faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.form-field label {
  transform-origin: left center;
  transition:
    color 240ms ease,
    transform 240ms ease;
}

.form-field:focus-within label {
  color: #42d84b;
  transform: translateY(-2px) scale(0.96);
}

.form-field input:user-invalid,
.form-field select:user-invalid,
.form-field textarea:user-invalid,
.contact-form.was-validated input:invalid,
.contact-form.was-validated select:invalid,
.contact-form.was-validated textarea:invalid {
  border-color: rgba(255, 91, 91, 0.82);
  box-shadow: 0 0 0 4px rgba(255, 91, 91, 0.12);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.8;
}

.contact-form.is-submitting button::after {
  width: 16px;
  height: 16px;
  margin-left: 10px;
  content: "";
  border: 2px solid rgba(4, 16, 11, 0.28);
  border-top-color: #04100b;
  border-radius: 999px;
  animation: spin 700ms linear infinite;
}

.scroll-top {
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: 110px;
  z-index: 40;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #04100b;
  font-size: 1.15rem;
  font-weight: 800;
  background: #42d84b;
  border: 1px solid rgba(66, 216, 75, 0.7);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(66, 216, 75, 0.28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 280ms ease,
    transform 280ms ease,
    box-shadow 280ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  box-shadow: 0 20px 42px rgba(66, 216, 75, 0.38);
  transform: translateY(-3px);
}

.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  height: 58px;
  padding: 0 20px;
  color: #ffffff;
  font-family: "Inter", "Poppins", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: #25d366;
  border: 0;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.whatsapp-float svg {
  flex: 0 0 auto;
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  color: #ffffff;
  background: #2ee071;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transform: translateY(-3px);
}

.whatsapp-float:active {
  transform: translateY(-1px) scale(0.97);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(66, 216, 75, 0.42);
  outline-offset: 5px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-ready.reveal-from-left {
  transform: translateX(-26px) translateY(18px);
}

.reveal-ready.reveal-from-right {
  transform: translateX(26px) translateY(18px);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

@keyframes ripple-pop {
  to {
    opacity: 0;
    transform: scale(2.8);
  }
}

@keyframes loader-sweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(280%);
  }
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (min-width: 1440px) {
  :root {
    --content-max: 1320px;
    --wide-content-max: 1400px;
    --section-x: 72px;
  }

  .hero-copy {
    max-width: 610px;
  }
}

@media (min-width: 1920px) {
  :root {
    --content-max: 1320px;
    --wide-content-max: 1400px;
    --section-x: 72px;
  }

  .hero {
    background-position: center center, center center, calc(50% + 360px) center;
  }
}

@media (min-width: 2560px) {
  :root {
    --content-max: 1320px;
    --wide-content-max: 1400px;
    --section-x: 72px;
  }

  .hero {
    background-position: center center, center center, calc(50% + 390px) center;
  }
}

@media (max-width: 1080px) {
  .capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .stats-strip-inner div:nth-child(2) {
    border-right: 0;
  }

  .stats-strip-inner div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(66, 216, 75, 0.18);
  }

  .feature-grid,
  .why-grid,
  .impact-grid,
  .charger-grid,
  .industries-grid,
  .partner-grid,
  .process-timeline,
  .technology-grid,
  .compliance-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-timeline::before {
    display: none;
  }

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

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

  .website-qr {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .hero {
    min-height: 60vh;
    padding-top: clamp(32px, 4.4vw, 48px);
    padding-bottom: clamp(34px, 5vw, 52px);
    background-position: center center, center center, right center;
    background-size: cover, cover, auto 100%;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 58px;
    padding: 0 clamp(18px, 4vw, 32px);
  }

  .site-header-inner {
    min-height: 58px;
    padding: 7px 0;
  }

  .brand img {
    width: 43px;
    height: 43px;
    max-height: none;
  }

  .site-header.is-scrolled .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-toggle-button {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(8, 20, 26, 0.14);
    backdrop-filter: blur(12px);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: clamp(14px, 4vw, 32px);
    left: clamp(14px, 4vw, 32px);
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(8, 20, 26, 0.1);
    border-radius: 18px;
    box-shadow: 0 24px 54px rgba(8, 20, 26, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    backdrop-filter: blur(18px);
    transition:
      opacity 220ms ease,
      transform 220ms ease;
  }

  .main-nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0;
    color: #30443e;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(8, 20, 26, 0.08);
  }

  .main-nav a::after {
    bottom: 8px;
  }

  .main-nav .contact-button {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    padding: 0 18px;
    color: #04100b;
    border-bottom: 0;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .main-nav a,
  .footer-column a,
  .footer-bottom a,
  .feature-item a,
  .industry-card a,
  .partner-card a,
  .insight-card a,
  .contact-card a,
  .intro-button,
  .cta-button,
  .partner-cta a,
  .contact-form button {
    min-height: 44px;
  }

  .whatsapp-float {
    padding: 0 18px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 58px;
    padding: 0 20px;
  }

  .site-header-inner {
    min-height: 58px;
    padding: 7px 0;
  }

  .brand img {
    width: 43px;
    height: 43px;
    max-height: none;
  }

  .site-header.is-scrolled .brand img {
    width: 40px;
    height: 40px;
  }

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

  .main-nav {
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    width: auto;
    padding: 10px 18px 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(8, 20, 26, 0.1);
    border-radius: 18px;
    box-shadow: 0 24px 54px rgba(8, 20, 26, 0.14);
    backdrop-filter: blur(18px);
  }

  .main-nav a {
    min-height: 48px;
    padding: 0;
    color: #30443e;
    font-size: 1.18rem;
    border-bottom: 1px solid rgba(8, 20, 26, 0.08);
  }

  .main-nav .contact-button {
    width: 100%;
    margin-top: 14px;
    padding: 0 18px;
    min-height: 48px;
    border-bottom: 0;
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .intro-section {
    padding: 45px 20px;
  }

  .intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .intro-section h1 {
    font-size: clamp(2.25rem, 9vw, 2.625rem);
  }

  .intro-section p {
    font-size: 1.0625rem;
  }

  .intro-actions {
    display: flex;
    width: min(100%, 330px);
    gap: 12px;
  }

  .intro-button {
    flex: 1 1 0;
    min-width: 150px;
  }

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

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

  .stats-strip-inner {
    grid-template-columns: 1fr;
  }

  .stats-strip-inner div,
  .stats-strip-inner div:nth-child(2),
  .stats-strip-inner div:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(66, 216, 75, 0.18);
  }

  .stats-strip-inner div:last-child {
    border-bottom: 0;
  }

  .final-cta-actions {
    display: grid;
    width: 100%;
  }

  .toast-region {
    right: 20px;
    bottom: 88px;
    left: 20px;
  }

  .feature-item {
    min-height: auto;
  }

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

  .why-item {
    min-height: auto;
  }

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

  .impact-card {
    min-height: auto;
  }

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

  .charger-card {
    min-height: auto;
  }

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

  .industry-card {
    min-height: auto;
  }

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

  .partner-card {
    min-height: auto;
  }

  .partner-cta {
    display: grid;
  }

  .partner-cta a {
    width: 100%;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-left: 18px;
  }

  .process-timeline::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(66, 216, 75, 0.42), transparent);
  }

  .process-step {
    min-height: auto;
  }

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

  .technology-card {
    min-height: auto;
  }

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

  .compliance-card {
    min-height: auto;
  }

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

  .contact-layout,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-info-strip {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    width: 100%;
  }

  .cta-section {
    gap: 22px;
  }

  .cta-actions {
    display: grid;
    width: min(100%, 300px);
  }

  .cta-button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-socials {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
    padding: 34px 16px 280px;
    background:
      linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 52%, rgba(255, 255, 255, 0.58) 72%, rgba(255, 255, 255, 0.1) 100%),
      url("assets/hero/hero-main.webp");
    background-color: #ffffff;
    background-position: center top, center bottom;
    background-repeat: no-repeat;
    background-size: cover, 100% auto;
  }

  .brand {
    gap: 6px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .hero-copy {
    gap: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 11vw, 54px);
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 5.2vw, 1.32rem);
  }

  .hero-description {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    gap: 12px;
  }

  .hero-button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    font-size: 0.92rem;
  }

  .intro-section,
  .feature-section,
  .why-section,
  .impact-section,
  .products-showcase,
  .industries-section,
  .partner-section,
  .process-section,
  .technology-section,
  .compliance-section,
  .faq-section,
  .insights-section,
  .contact-section,
  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro-section h1,
  .feature-heading h2,
  .section-heading h2,
  .impact-heading h2,
  .products-showcase-heading h2,
  .industries-heading h2,
  .partner-heading h2,
  .process-heading h2,
  .technology-heading h2,
  .compliance-heading h2,
  .faq-heading h2,
  .insights-heading h2,
  .contact-heading h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .intro-actions,
  .cta-actions {
    display: grid;
    width: 100%;
  }

  .intro-button,
  .cta-button,
  .charger-card a,
  .partner-cta a,
  .contact-form button {
    width: 100%;
  }

  .feature-item,
  .why-item,
  .impact-card,
  .charger-card,
  .industry-card,
  .partner-card,
  .process-step,
  .technology-card,
  .compliance-card,
  .insight-card,
  .contact-card,
  .contact-form {
    border-radius: 20px;
  }

  .contact-card {
    align-items: flex-start;
  }

  .insight-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-top {
    bottom: 100px;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float {
    right: 20px;
    bottom: 20px;
    height: 56px;
    padding: 0 18px;
  }

  .whatsapp-float svg {
    width: 23px;
    height: 23px;
  }

  .reveal-ready.reveal-from-left,
  .reveal-ready.reveal-from-right {
    transform: translateY(18px);
  }
}

@media (max-width: 380px) {
  .brand img {
    width: 42px;
    height: 42px;
  }

  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .main-nav {
    right: 10px;
    left: 10px;
  }

  .feature-item,
  .why-item,
  .impact-card,
  .charger-card,
  .industry-card,
  .partner-card,
  .process-step,
  .technology-card,
  .compliance-card,
  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 359px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 9999px;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-ready,
  .reveal-ready.reveal-from-left,
  .reveal-ready.reveal-from-right {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    transition: none;
  }
}


/* Buying guidance and durable enquiry feedback */
.charger-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  padding: 16px;
}
.charger-card .charger-visual { flex: 0 0 auto; }
.charger-card > h3 { font-family: "Inter", system-ui, sans-serif; font-size: 1rem; line-height: 1.4; }
.charger-card > .charger-capacity { align-self: flex-start; }
.charger-card > a {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 46px;
  height: 46px;
  max-height: 46px;
  padding: 0 14px;
  border-radius: 10px;
}
.charger-card > span, .charger-card > .custom-solution-description { margin-bottom: 10px; }
.custom-solution-applications { color: #bdcdc3; font-size: .85rem; line-height: 1.6; margin: 0 0 12px; }
.buying-guide { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.buying-guide p { max-width: 78ch; line-height: 1.7; }
.buying-guide a { display: inline-block; padding: 12px 0; color: #087d35; font-weight: 700; }
.enquiry-help, .enquiry-status { line-height: 1.6; color: #e2eee6; }
.enquiry-help a { color: #9bf4ac; text-decoration: underline; }
.enquiry-status:empty { display: none; }
.contact-form .enquiry-status:not(:empty) { display: block; grid-column: 1 / -1; margin: 12px 0; padding: 18px 20px; border: 1px solid #a4c5e3; border-radius: 10px; background: #edf5fc; color: #173f63; font-size: 16px; font-weight: 600; line-height: 1.6; }
.contact-form .enquiry-status[data-state="success"] { background: #e8f7ec; border-color: #76b98a; color: #174a29; }
.contact-form .enquiry-status[data-state="error"] { background: #fff1ef; border-color: #d8948e; color: #812b24; }
.enquiry-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 600px) { .whatsapp-float { width: 52px; height: 52px; padding: 0; } .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); } }

.company-introduction { padding: 64px 24px; background: #f3f8f4; color: #17362a; }
.company-introduction-inner { max-width: 1000px; margin: auto; }
.about-eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 800; color: #087d35; }
.company-introduction h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.2; max-width: 24ch; margin: 14px 0 24px; }
.company-introduction p { max-width: 85ch; line-height: 1.75; margin-bottom: 16px; }
.about-contact { display: inline-flex; padding: 14px 20px; border-radius: 10px; background: #087d35; color: white; font-weight: 700; text-decoration: none; }
.product-availability { max-width: 85ch; margin: 0 auto 28px; color: #ccdbd1; line-height: 1.6; text-align: center; font-size: .9rem; }
