:root {
  --bg-dark: #171d20;
  --bg-darker: #101619;
  --lime: #c9e47a;
  --lime-strong: #d5ef80;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.8);
  --line: rgba(255, 255, 255, 0.26);
  --container: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: #12181b;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.04), transparent 22%),
    linear-gradient(180deg, #1f272b 0%, #101619 100%);
}

.utility-bar {
  background: var(--lime);
  color: #172115;
  font-size: 0.95rem;
}

.utility-inner,
.utility-left,
.utility-right,
.nav-bar,
.site-nav {
  display: flex;
  align-items: center;
}

.utility-inner {
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
}

.utility-left,
.utility-right {
  gap: 1.5rem;
  flex-wrap: wrap;
}

.utility-left span {
  display: inline-flex;
  align-items: center;
  line-height: 1.35;
}

.utility-right a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.social-icon {
  border-radius: 50%;
  border: 1px solid rgba(23, 33, 21, 0.18);
  background: rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(23, 33, 21, 0.35);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #172115;
}

.social-label {
  font-weight: 800;
}

.site-header {
  position: relative;
  z-index: 5;
  background: rgba(21, 28, 31, 0.94);
  backdrop-filter: blur(14px);
}

.nav-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 96px;
  gap: clamp(1rem, 2vw, 2.1rem);
}

.site-nav {
  gap: clamp(1rem, 1.55vw, 1.7rem);
  flex: 1 1 auto;
  min-width: 0;
}

.nav-item-has-children {
  position: relative;
  display: flex;
  align-items: center;
}

.site-nav a {
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
}

.site-nav > a[href="#"] {
  display: none;
}

.site-nav > a,
.nav-item-has-children > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.95rem 0;
  font-size: 0.99rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.22s ease;
}

.site-nav > a::before,
.nav-item-has-children > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(201, 228, 122, 0.98), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.nav-item-has-children > a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -3px;
  border-right: 1.5px solid rgba(201, 228, 122, 0.86);
  border-bottom: 1.5px solid rgba(201, 228, 122, 0.86);
  transform: rotate(45deg);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.site-nav > a:hover,
.nav-item-has-children > a:hover,
.nav-item-has-children:focus-within > a {
  color: #fff;
}

.site-nav > a:hover::before,
.site-nav > a.active::before,
.nav-item-has-children:hover > a::before,
.nav-item-has-children:focus-within > a::before,
.nav-item-has-children > a.active::before {
  transform: scaleX(1);
}

.nav-item-has-children:hover > a::after,
.nav-item-has-children:focus-within > a::after,
.nav-item-has-children > a.active::after {
  transform: rotate(45deg) translate(2px, 2px);
  border-color: rgba(213, 239, 128, 1);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 0.3rem;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(22, 31, 35, 0.98), rgba(14, 21, 24, 0.98)),
    rgba(19, 27, 30, 0.98);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 12;
  max-height: min(72vh, 560px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.nav-submenu a {
  display: flex;
  align-items: center;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(201, 228, 122, 0.12);
  color: #fff;
  transform: translateX(3px);
}

.nav-submenu a.active {
  background: rgba(201, 228, 122, 0.16);
  color: var(--lime-strong);
}

.nav-item-has-children:hover .nav-submenu,
.nav-item-has-children:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav a span {
  display: none;
}

.nav-submenu-products {
  min-width: min(540px, 68vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
}

.nav-submenu-products .nav-submenu-category {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0.95rem 1rem;
  background:
    linear-gradient(135deg, rgba(201, 228, 122, 0.22), rgba(201, 228, 122, 0.08)),
    rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-submenu-products .nav-submenu-category::after {
  content: "Category";
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: rgba(14, 20, 22, 0.54);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-submenu-products .nav-submenu-category.active {
  color: var(--lime-strong);
}

.nav-submenu-products .nav-submenu-category:not(:first-child) {
  margin-top: 0.35rem;
}

.nav-submenu-products a:not(.nav-submenu-category) {
  min-height: 54px;
  padding-left: 1.3rem;
  position: relative;
}

.nav-submenu-products a:not(.nav-submenu-category)::before {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 228, 122, 0.82);
  transform: translateY(-50%);
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: clamp(150px, 14vw, 220px);
  justify-self: center;
}

.site-logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-end;
  justify-self: end;
  min-width: max-content;
}

.quote-btn,
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 50px;
  padding: 0 8px 0 20px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.quote-btn {
  background: var(--lime);
  color: #182116;
}

.quote-btn span,
.hero-cta span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #171d20;
  color: #fff;
  font-size: 1.3rem;
}

.contact-btn {
  padding: 0 1.15rem;
  border: 1px solid rgba(201, 228, 122, 0.42);
  background: rgba(201, 228, 122, 0.1);
  color: #f8fbe9;
}

.contact-btn.is-current {
  background: var(--lime);
  border-color: transparent;
  color: #182116;
}

.quote-btn:hover,
.contact-btn:hover {
  transform: translateY(-1px);
}

.contact-btn:hover {
  background: rgba(201, 228, 122, 0.18);
  border-color: rgba(201, 228, 122, 0.7);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero-banner {
  position: relative;
  min-height: calc(100vh - 42px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #1a2328 0%, #243442 52%, #26394b 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  filter: saturate(0.95) brightness(0.72);
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 14, 16, 0.3), rgba(9, 14, 16, 0.08)),
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.08), transparent 12%),
    radial-gradient(circle at 38% 21%, rgba(255, 255, 255, 0.06), transparent 16%),
    radial-gradient(circle at 62% 22%, rgba(255, 255, 255, 0.05), transparent 14%),
    radial-gradient(circle at 77% 26%, rgba(255, 255, 255, 0.06), transparent 13%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 13, 16, 0.78) 0%, rgba(8, 13, 16, 0.42) 34%, rgba(8, 13, 16, 0.56) 100%),
    radial-gradient(circle at 60% 38%, rgba(201, 228, 122, 0.08), transparent 22%);
  z-index: 1;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 138px);
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 3.25rem;
  padding: 2.2rem 0 5.5rem;
}

.feature-rail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-top: 4rem;
  align-self: stretch;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
  padding: 1.45rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0.65;
}

.feature-item h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.feature-item:hover,
.feature-item.active {
  opacity: 1;
  transform: translateX(6px);
}

.feature-item.active h3 {
  color: var(--lime-strong);
}

.feature-item.active .feature-icon {
  border-color: rgba(213, 239, 128, 0.95);
  box-shadow: 0 0 0 8px rgba(213, 239, 128, 0.06);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  position: relative;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.solar-panel::before {
  left: 12px;
  right: 12px;
  top: 15px;
  height: 22px;
  border: 1.5px solid #fff;
  border-radius: 4px;
  transform: skew(-12deg);
}

.solar-panel::after {
  left: 22px;
  right: 18px;
  bottom: 11px;
  height: 1.5px;
  background: #fff;
  box-shadow: 0 -7px 0 #fff, 0 -14px 0 #fff;
}

.solar-battery::before {
  left: 17px;
  top: 12px;
  width: 24px;
  height: 30px;
  border: 1.5px solid #fff;
  border-radius: 5px;
}

.solar-battery::after {
  left: 25px;
  top: 7px;
  width: 8px;
  height: 4px;
  background: #fff;
  border-radius: 2px 2px 0 0;
  box-shadow: 0 11px 0 0 transparent, 0 18px 0 0 transparent;
}

.solar-inverter::before {
  left: 13px;
  top: 15px;
  width: 30px;
  height: 24px;
  border: 1.5px solid #d7ef89;
  border-radius: 8px;
}

.solar-inverter::after {
  left: 22px;
  top: 21px;
  width: 12px;
  height: 12px;
  border: 1.5px solid #d7ef89;
  border-radius: 50%;
  box-shadow: -15px 0 0 -4px #d7ef89, 15px 0 0 -4px #d7ef89;
}

.hero-stage {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3.2rem;
  z-index: 2;
}

.hero-slides {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(32px) scale(0.985);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease,
    visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.hero-content {
  width: 100%;
  max-width: 680px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 2rem 2.2rem 2rem 0;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.3rem;
  font-weight: 800;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.hero-tagline::before,
.hero-tagline::after {
  content: "";
  width: 94px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.hero-label {
  margin: 0 0 1.2rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime-strong);
}

.hero-content h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.15rem, 5.2vw, 5.35rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.hero-subheading {
  max-width: 620px;
  margin: 1.35rem 0 0;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-height: 56px;
  margin-top: 2rem;
  padding: 0 10px 0 22px;
  border-radius: 999px;
  background: var(--lime);
  color: #182116;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-dots {
  display: flex;
  justify-content: flex-start;
  gap: 0.85rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 680px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  background: var(--lime-strong);
  transform: scale(1.3);
}

.why-loom-section {
  position: relative;
  padding: 2.2rem 0 3.4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 228, 122, 0.12), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(93, 152, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #eff5e5 0%, #f8fbf2 40%, #eef4e7 100%);
  color: #18211b;
}

.why-loom-section::before,
.why-loom-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.why-loom-section::before {
  width: 280px;
  height: 280px;
  top: -90px;
  left: -70px;
  background: rgba(201, 228, 122, 0.2);
}

.why-loom-section::after {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -120px;
  background: rgba(24, 33, 27, 0.07);
}

.why-loom-simple {
  position: relative;
  z-index: 1;
  padding: 2.3rem 2rem 2.1rem;
  border-radius: 32px;
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: 0 26px 70px rgba(25, 42, 31, 0.12);
  background:
    radial-gradient(circle at top center, rgba(201, 228, 122, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 239, 0.98)),
    #fff;
  text-align: center;
  overflow: hidden;
}

.why-loom-simple::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(201, 228, 122, 0.24);
  pointer-events: none;
}

.why-loom-simple::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.22), transparent 68%);
  pointer-events: none;
}

.why-loom-simple h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #131a15;
}

.why-loom-summary {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 1.05rem auto 0;
  color: #55655d;
  font-size: 1.02rem;
  line-height: 1.85;
}

.why-loom-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem;
}

.why-loom-copy,
.why-loom-showcase {
  min-width: 0;
}

.why-loom-copy,
.capabilities-panel,
.financial-band {
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: 0 22px 60px rgba(25, 42, 31, 0.1);
}

.why-loom-copy {
  padding: 2.2rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 239, 0.96)),
    #fff;
}

.why-loom-kicker,
.capabilities-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #506237;
}

.why-loom-kicker::before,
.capabilities-label::before {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(80, 98, 55, 0.5);
}

.why-loom-copy h2 {
  margin: 1rem 0 1.15rem;
  max-width: 13ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #131a15;
}

.why-loom-lead,
.why-loom-text,
.financial-card p,
.capabilities-header span {
  color: #55655d;
  line-height: 1.8;
}

.why-loom-lead,
.why-loom-text {
  margin: 0;
  font-size: 1rem;
}

.why-loom-text {
  margin-top: 1rem;
}

.why-loom-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.why-point {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 27, 0.08);
}

.why-point h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.3;
  color: #142019;
}

.why-point p {
  margin: 0.45rem 0 0;
  color: #55655d;
  line-height: 1.7;
  font-size: 0.96rem;
}

.why-point-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(201, 228, 122, 0.26), rgba(201, 228, 122, 0.08));
  border: 1px solid rgba(80, 98, 55, 0.12);
}

.why-point-icon::before,
.why-point-icon::after {
  content: "";
  position: absolute;
}

.why-point-icon::before {
  left: 15px;
  top: 16px;
  width: 24px;
  height: 16px;
  border: 1.6px solid #2f4235;
  border-radius: 4px;
  transform: skew(-12deg);
}

.why-point-icon::after {
  left: 20px;
  top: 24px;
  width: 14px;
  height: 1.6px;
  background: #2f4235;
  box-shadow: 0 5px 0 #2f4235;
}

.why-point-icon-support::before {
  left: 17px;
  top: 14px;
  width: 22px;
  height: 22px;
  border: 1.6px solid #2f4235;
  border-radius: 50%;
  transform: none;
}

.why-point-icon-support::after {
  left: 18px;
  top: 34px;
  width: 20px;
  height: 8px;
  border: 1.6px solid #2f4235;
  border-top: 0;
  border-radius: 0 0 10px 10px;
  background: transparent;
  box-shadow: none;
}

.why-point-icon-savings::before {
  left: 20px;
  top: 13px;
  width: 16px;
  height: 26px;
  border: 1.6px solid #2f4235;
  border-radius: 10px;
  transform: none;
}

.why-point-icon-savings::after {
  left: 25px;
  top: 19px;
  width: 6px;
  height: 14px;
  background: #2f4235;
  clip-path: polygon(50% 0, 100% 45%, 63% 45%, 100% 100%, 0 58%, 37% 58%, 0 0);
  box-shadow: none;
}

.why-loom-showcase {
  display: grid;
  gap: 0;
}

.capabilities-panel {
  padding: 0.35rem 0 0;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background:
    none;
  color: #18211b;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    radial-gradient(circle at 15% 30%, rgba(24, 33, 27, 0.03), transparent 34%),
    radial-gradient(circle at 78% 25%, rgba(24, 33, 27, 0.025), transparent 28%),
    linear-gradient(135deg, rgba(201, 228, 122, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 251, 247, 0.99));
  box-shadow: 0 20px 50px rgba(25, 42, 31, 0.09);
}

.capability-stat {
  position: relative;
  min-width: 0;
  padding: 1.85rem 1.2rem 1.65rem;
  background:
    radial-gradient(circle at center, rgba(24, 33, 27, 0.025), transparent 72%);
  transition: background 0.3s ease, transform 0.3s ease;
  text-align: center;
}

.capability-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 0;
  bottom: 22px;
  width: 1px;
  background:
    linear-gradient(180deg, transparent, rgba(24, 33, 27, 0.14), transparent);
}

.capability-stat:hover {
  background:
    radial-gradient(circle at center, rgba(201, 228, 122, 0.14), transparent 72%);
  transform: translateY(-2px);
}

.capability-stat strong,
.financial-card strong {
  display: block;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #121815;
}

.capability-stat p {
  margin: 0.72rem 0 0;
  color: #4f5f58;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
}

.financial-band {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(201, 228, 122, 0.16), rgba(255, 255, 255, 0.92)),
    #fff;
}

.financial-card {
  padding: 1.45rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(24, 33, 27, 0.08);
}

.financial-card p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #44534c;
}

.financial-card strong {
  margin-top: 0.85rem;
  color: #18211b;
}

.financial-card span {
  display: block;
  margin-top: 0.7rem;
  color: #56655e;
  line-height: 1.65;
  font-size: 0.92rem;
}

.journey-section {
  position: relative;
  padding: 1.2rem 0 5rem;
  background:
    radial-gradient(circle at 18% 14%, rgba(201, 228, 122, 0.16), transparent 20%),
    radial-gradient(circle at 84% 18%, rgba(24, 33, 27, 0.04), transparent 24%),
    linear-gradient(180deg, #f8fbf2 0%, #eef4e8 100%);
  color: #162019;
}

.journey-intro {
  display: grid;
  gap: 0.85rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.journey-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f7046;
}

.journey-kicker::before,
.journey-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(95, 112, 70, 0.4);
}

.journey-intro h2 {
  margin: 0;
  max-width: 900px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.95rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #141b16;
}

.journey-slider {
  position: relative;
  margin-top: 2rem;
  padding: 3.4rem 1.2rem 1.2rem;
  border-radius: 0;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 239, 0.94)),
    #fff;
  box-shadow: 0 26px 60px rgba(21, 33, 24, 0.08);
  overflow: hidden;
}

.journey-slider::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 8.45rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(95, 112, 70, 0.16), rgba(95, 112, 70, 0.3), rgba(95, 112, 70, 0.16));
}

.journey-controls {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
}

.journey-arrow {
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: #1d261f;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(20, 30, 22, 0.14);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.journey-arrow:hover {
  transform: translateY(-2px);
  background: #2b392d;
}

.journey-arrow:disabled {
  opacity: 0.42;
  cursor: default;
  transform: none;
}

.journey-viewport {
  overflow: hidden;
}

.journey-track {
  display: flex;
  transition: transform 0.55s ease;
  will-change: transform;
}

.journey-card {
  flex: 0 0 calc(100% / 4);
  min-width: 0;
  position: relative;
  padding: 0 1rem 0 1.15rem;
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 0.72;
}

.journey-card::before {
  content: "";
  position: absolute;
  left: 1.12rem;
  top: 1.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(201, 228, 122, 0.5), rgba(95, 112, 70, 0.12));
}

.journey-dot {
  display: block;
  width: 18px;
  height: 18px;
  margin-left: -0.05rem;
  border-radius: 50%;
  background: #c9e47a;
  box-shadow: 0 0 0 8px rgba(201, 228, 122, 0.16);
}

.journey-card.active .journey-dot {
  box-shadow: 0 0 0 12px rgba(201, 228, 122, 0.2);
}

.journey-card.active {
  opacity: 1;
  transform: translateY(-4px);
}

.journey-year {
  margin: 1.8rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.25rem, 3.5vw, 3.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #6f7d54;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.journey-card.active .journey-year {
  color: #131a15;
}

.journey-icon {
  display: none;
}

.journey-card h3 {
  margin: 1rem 0 0 3.15rem;
  max-width: 12ch;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.42;
  color: #1a231d;
}

.journey-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.journey-page {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(95, 112, 70, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.journey-page.active {
  background: #c9e47a;
  transform: scale(1.25);
}

.product-showcase-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 18% 16%, rgba(201, 228, 122, 0.16), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(201, 228, 122, 0.12), transparent 16%),
    linear-gradient(180deg, #f4f8ee 0%, #dde7d7 100%);
  color: #162019;
}

.product-showcase-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.product-showcase-intro h2 {
  margin: 0 auto;
  max-width: 900px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #141c16;
  text-wrap: balance;
}

.product-showcase-summary {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #56655d;
  font-size: 1.02rem;
  line-height: 1.8;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.product-showcase-card {
  position: relative;
  min-height: 100%;
  padding: 1.6rem;
  border: 1px solid rgba(24, 33, 27, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 243, 0.98)),
    #fff;
  box-shadow: 0 20px 40px rgba(34, 49, 39, 0.1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-showcase-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 228, 122, 0.22);
  pointer-events: none;
}

.product-showcase-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 60%;
  height: 240%;
  transform: rotate(18deg);
  background: linear-gradient(180deg, transparent, rgba(201, 228, 122, 0.18), transparent);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.35s ease;
  pointer-events: none;
}

.product-showcase-card-featured {
  background:
    radial-gradient(circle at top center, rgba(201, 228, 122, 0.22), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 235, 0.98)),
    #fff;
  transform: translateY(-10px);
}

.product-showcase-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 228, 122, 0.26);
  box-shadow: 0 28px 55px rgba(34, 49, 39, 0.16);
}

.product-showcase-card:hover::after {
  opacity: 1;
  transform: translateX(120%) rotate(18deg);
}

.product-showcase-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 1rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    radial-gradient(circle at top center, rgba(201, 228, 122, 0.14), transparent 48%),
    rgba(241, 245, 235, 0.9);
  overflow: hidden;
}

.product-showcase-media img {
  width: 100%;
  max-width: 230px;
  max-height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.22));
  animation: product-float 4.8s ease-in-out infinite;
}

.product-showcase-label {
  margin: 1.2rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7f44;
}

.product-showcase-card h3 {
  margin: 0.8rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.9rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #172019;
}

.product-showcase-card p:last-child {
  margin: 0.95rem 0 0;
  max-width: 22ch;
  color: #5a6a63;
  font-size: 1rem;
  line-height: 1.7;
}

.presence-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 12% 16%, rgba(201, 228, 122, 0.14), transparent 18%),
    radial-gradient(circle at 86% 20%, rgba(22, 34, 26, 0.07), transparent 18%),
    linear-gradient(180deg, #f8fbf5 0%, #edf4e7 100%);
  overflow: hidden;
}

.presence-section::before,
.presence-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.presence-section::before {
  inset: 30px auto auto 6%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.2), transparent 68%);
  filter: blur(16px);
  animation: process-glow 8s ease-in-out infinite;
}

.presence-section::after {
  inset: auto 8% 28px auto;
  width: 280px;
  height: 280px;
  background:
    linear-gradient(rgba(110, 132, 67, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 132, 67, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1), transparent 75%);
  opacity: 0.55;
}

.presence-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.4rem;
  align-items: stretch;
  z-index: 1;
}

.presence-copy,
.presence-visual {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 242, 0.96)),
    #fff;
  box-shadow: 0 24px 54px rgba(22, 34, 26, 0.1);
  overflow: hidden;
}

.presence-copy::before,
.presence-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 228, 122, 0.22);
  pointer-events: none;
}

.presence-copy {
  padding: 1.5rem 1.5rem 1.35rem;
  align-self: start;
}

.presence-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667c40;
}

.presence-kicker::before,
.presence-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(102, 124, 64, 0.38);
}

.presence-copy h2 {
  margin: 0.85rem 0 0;
  max-width: 12ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #132018;
}

.presence-summary {
  margin: 0.85rem 0 0;
  max-width: 58ch;
  color: #596861;
  font-size: 0.98rem;
  line-height: 1.72;
}

.presence-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.presence-points span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0 1rem;
  border: 1px solid rgba(110, 132, 67, 0.18);
  background: rgba(201, 228, 122, 0.14);
  color: #20301f;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  animation: presence-chip-float 5.2s ease-in-out infinite;
}

.presence-points span::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #c9e47a;
  box-shadow: 0 0 0 6px rgba(201, 228, 122, 0.18);
}

.presence-points span:nth-child(2) {
  animation-delay: 0.35s;
}

.presence-points span:nth-child(3) {
  animation-delay: 0.7s;
}

.presence-points span:nth-child(4) {
  animation-delay: 1.05s;
}

.presence-points span:nth-child(5) {
  animation-delay: 1.4s;
}

.presence-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.presence-stats article {
  padding: 1.1rem 1rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(244, 248, 238, 0.95));
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.presence-stats article:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 228, 122, 0.32);
  box-shadow: 0 18px 42px rgba(22, 34, 26, 0.1);
}

.presence-stats strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #152019;
}

.presence-stats span {
  display: block;
  margin-top: 0.55rem;
  color: #5b6962;
  font-size: 0.95rem;
  line-height: 1.65;
}

.presence-visual {
  padding: 0.85rem;
  min-height: 100%;
}

.presence-image-frame {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at top center, rgba(201, 228, 122, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(245, 248, 241, 0.88), rgba(228, 235, 223, 0.92));
  overflow: hidden;
  display: flex;
}

.presence-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.18) 42%, transparent 68%);
  transform: translateX(-110%);
  animation: presence-sheen 5.8s ease-in-out infinite;
  z-index: 1;
}

.presence-image-frame img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}

.presence-contact-frame {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 197, 86, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(12, 24, 48, 0.94), rgba(7, 15, 31, 0.98));
}

.presence-contact-image {
  min-height: 0;
}

.presence-visual:hover .presence-image-frame img {
  transform: scale(1.04);
}

.corporate-video-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 14% 16%, rgba(201, 228, 122, 0.12), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(22, 34, 26, 0.08), transparent 18%),
    linear-gradient(180deg, #f5f9f0 0%, #eaf1e3 100%);
  overflow: hidden;
}

.corporate-video-section::before,
.corporate-video-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(14px);
  animation: process-glow 9s ease-in-out infinite;
}

.corporate-video-section::before {
  top: 42px;
  left: -90px;
  width: 290px;
  height: 290px;
  background: rgba(201, 228, 122, 0.16);
}

.corporate-video-section::after {
  right: -110px;
  bottom: 18px;
  width: 300px;
  height: 300px;
  background: rgba(22, 34, 26, 0.08);
  animation-delay: 1.2s;
}

.corporate-video-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 239, 0.98)),
    #fff;
  box-shadow: 0 24px 58px rgba(22, 34, 26, 0.12);
  overflow: hidden;
  z-index: 1;
}

.corporate-video-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 228, 122, 0.22);
  pointer-events: none;
}

.corporate-video-copy {
  max-width: 1120px;
  padding: 0.15rem 0 0.5rem;
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  text-align: center;
  margin: 0 auto;
  width: 100%;
}

.corporate-video-heading-split {
  display: grid;
  gap: 0.25rem;
  width: 100%;
  max-width: 100%;
  justify-items: center;
}

.corporate-video-heading-split span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.95rem, 2.6vw, 2.65rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #132018;
}

.corporate-video-heading-split span:first-child {
  opacity: 0.9;
}

.corporate-video-heading-split span:last-child {
  color: #5f7641;
}

.corporate-video-summary {
  margin: 0;
  max-width: 72ch;
  color: #5c6a63;
  font-size: 0.98rem;
  line-height: 1.72;
}

.corporate-video-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.3rem;
  justify-content: center;
}

.corporate-video-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 0.9rem;
  border: 1px solid rgba(110, 132, 67, 0.16);
  background: rgba(201, 228, 122, 0.14);
  color: #243122;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.corporate-video-stage {
  position: relative;
  width: 100%;
  min-height: 320px;
  max-height: 320px;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background: #0f1511;
  overflow: hidden;
  box-shadow: 0 22px 46px rgba(18, 28, 21, 0.18);
}

.corporate-video-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 9, 0.14), rgba(8, 12, 9, 0.48)),
    radial-gradient(circle at center, transparent 28%, rgba(8, 12, 9, 0.16) 100%);
  z-index: 1;
  pointer-events: none;
}

.corporate-video-player {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 320px;
  object-fit: cover;
  transform: scale(1.01);
}

.corporate-video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 120px;
  border: 0;
  background: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.corporate-video-toggle:hover {
  transform: translate(-50%, -50%) scale(1.04);
}

.corporate-video-toggle:not(.is-paused) {
  opacity: 0;
  pointer-events: none;
}

.corporate-video-stage:hover .corporate-video-toggle:not(.is-paused),
.corporate-video-toggle:focus-visible {
  opacity: 1;
  pointer-events: auto;
}

.corporate-video-toggle-ring,
.corporate-video-toggle-icon,
.corporate-video-toggle-label,
.corporate-video-toggle-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.corporate-video-toggle-content {
  position: relative;
  width: 120px;
  height: 120px;
  flex-direction: column;
  gap: 0.35rem;
}

.corporate-video-toggle-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  animation: corporate-pulse 3.2s ease-in-out infinite;
}

.corporate-video-toggle-icon {
  position: relative;
  z-index: 1;
  min-width: 36px;
  min-height: 36px;
  font-size: 0;
  line-height: 1;
  color: #fff;
}

.corporate-video-toggle-icon::before {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
}

.corporate-video-toggle.is-paused .corporate-video-toggle-icon::before {
  content: "\25B6";
  margin-left: 0.18rem;
}

.corporate-video-toggle:not(.is-paused) .corporate-video-toggle-icon::before {
  content: "\275A\275A";
}

.corporate-video-toggle-label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 228, 122, 0.12), transparent 18%),
    radial-gradient(circle at 84% 16%, rgba(22, 34, 26, 0.08), transparent 18%),
    linear-gradient(180deg, #f8fbf5 0%, #edf4e7 100%);
  overflow: hidden;
}

.site-footer {
  position: relative;
  padding: 0 0 2rem;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04), transparent 28%),
    repeating-conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0.03) 0deg, rgba(255, 255, 255, 0.01) 10deg, transparent 10deg, transparent 20deg),
    linear-gradient(180deg, #2c2d2b 0%, #242523 100%);
  color: #f4f6ef;
  overflow: hidden;
}

.footer-shell {
  position: relative;
  padding: 1.2rem 1.1rem 0;
}

.footer-topbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
  padding: 0 0 1.45rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top-item {
  display: block;
}

.footer-top-item > div {
  display: grid;
  gap: 0.32rem;
}

.footer-top-item strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
}

.footer-top-item a,
.footer-top-item span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.45;
  text-decoration: none;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.8fr)) minmax(0, 1.1fr);
  gap: 1.4rem;
  padding: 1.2rem 0 1.8rem;
  align-items: start;
}

.footer-column h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
  color: #fff;
}

.footer-newsletter p,
.footer-links a,
.footer-consent span,
.footer-social p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-newsletter p,
.footer-social p {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
  line-height: 1.72;
}

.footer-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.footer-newsletter-form input {
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: #182018;
  font: inherit;
}

.footer-newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #c9e47a;
  color: #182018;
  cursor: pointer;
}

.footer-newsletter-form button svg {
  width: 18px;
  height: 18px;
  fill: #182018;
}

.footer-consent {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
}

.footer-consent input {
  accent-color: #c9e47a;
}

.footer-social {
  margin-top: 2rem;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #1c231c;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-social-links .social-icon {
  border: 0;
  background: #fff;
}

.footer-social-links .social-icon svg {
  fill: #182018;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-links a {
  display: block;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.55;
}

.site-footer.is-product-footer .footer-main {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-gallery-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.footer-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom {
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-panel,
.faq-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 249, 241, 0.99)),
    #fff;
  box-shadow: 0 24px 56px rgba(22, 34, 26, 0.1);
  padding: 1.8rem;
  overflow: hidden;
}

.contact-panel::before,
.faq-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 228, 122, 0.22);
  pointer-events: none;
}

.contact-panel::after,
.faq-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(201, 228, 122, 0), rgba(201, 228, 122, 0.75), rgba(201, 228, 122, 0));
  opacity: 0.75;
}

.contact-kicker,
.faq-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667c40;
}

.contact-kicker::before,
.contact-kicker::after,
.faq-kicker::before,
.faq-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(102, 124, 64, 0.38);
}

.contact-panel h2,
.faq-panel h3 {
  margin: 1rem 0 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #132018;
}

.contact-panel h2 {
  max-width: 11ch;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
}

.faq-panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.contact-summary {
  margin: 0.8rem 0 0;
  max-width: 60ch;
  color: #586760;
  font-size: 0.96rem;
  line-height: 1.68;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex: 1;
  align-content: start;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #1a281d;
  font-size: 0.86rem;
  font-weight: 700;
}

.contact-form label span {
  position: relative;
  z-index: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 27, 0.1);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.78rem 0.9rem;
  font: inherit;
  color: #162019;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(110, 132, 67, 0.45);
  box-shadow: 0 0 0 4px rgba(201, 228, 122, 0.16);
}

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

.contact-submit {
  justify-self: start;
  align-self: end;
  min-height: 46px;
  padding: 0 1.3rem;
  border: 0;
  background: linear-gradient(135deg, #1b2a1e, #39503a);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(27, 42, 30, 0.2);
}

.faq-panel {
  display: grid;
  gap: 0.95rem;
  align-content: start;
}

.faq-item {
  position: relative;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 243, 0.95));
  padding: 0.15rem 0;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 228, 122, 0.28);
  box-shadow: 0 14px 30px rgba(22, 34, 26, 0.08);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.1rem;
  font-weight: 700;
  color: #17221a;
  line-height: 1.5;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: #6b7f44;
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 1.1rem 1rem;
  color: #5b6962;
  font-size: 0.96rem;
  line-height: 1.72;
}

.industries-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 228, 122, 0.12), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(22, 34, 26, 0.05), transparent 16%),
    linear-gradient(180deg, #edf4e7 0%, #f8fbf5 100%);
  color: #152019;
}

.industries-intro {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.industries-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667c40;
}

.industries-kicker::before,
.industries-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(102, 124, 64, 0.4);
}

.industries-intro h2 {
  margin: 1rem 0 0;
  max-width: 700px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #131a15;
}

.industries-summary {
  max-width: 760px;
  margin: 1rem 0 0;
  color: #5b6a63;
  font-size: 1.02rem;
  line-height: 1.8;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.industry-card {
  grid-column: span 4;
  display: grid;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: 0 20px 46px rgba(22, 34, 26, 0.08);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.industry-card-wide {
  grid-column: span 8;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 228, 122, 0.35);
  box-shadow: 0 28px 60px rgba(22, 34, 26, 0.14);
}

.industry-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.industry-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 13, 10, 0.02), rgba(7, 13, 10, 0.18) 36%, rgba(7, 13, 10, 0.74) 100%);
}

.industry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.industry-card:hover .industry-media img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.industry-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem;
  z-index: 1;
}

.industry-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.85rem;
  background: rgba(201, 228, 122, 0.2);
  color: #eff9c4;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-card h3 {
  margin: 0.9rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}

.industry-card p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.98rem;
  line-height: 1.72;
  max-width: 32ch;
}

.process-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 228, 122, 0.12), transparent 18%),
    radial-gradient(circle at 82% 14%, rgba(201, 228, 122, 0.1), transparent 16%),
    linear-gradient(180deg, #f6faf2 0%, #eef4e8 100%);
  color: #162019;
  overflow: hidden;
}

.process-section::before,
.process-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
  animation: process-glow 9s ease-in-out infinite;
}

.process-section::before {
  width: 260px;
  height: 260px;
  top: 40px;
  left: -80px;
  background: rgba(201, 228, 122, 0.2);
}

.process-section::after {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: 20px;
  background: rgba(161, 182, 117, 0.12);
  animation-delay: 1.2s;
}

.clients-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 228, 122, 0.1), transparent 18%),
    linear-gradient(180deg, #f8fbf6 0%, #eef4e8 100%);
  overflow: hidden;
}

.manufacturing-section {
  position: relative;
  padding: 1rem 0 5rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 228, 122, 0.1), transparent 18%),
    linear-gradient(180deg, #f7faf3 0%, #edf4e7 100%);
}

.manufacturing-showcase {
  display: grid;
  gap: 0.8rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 56px rgba(22, 34, 26, 0.08);
}

.manufacturing-intro-card {
  padding: 1.15rem 1.15rem 0.7rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 235, 0.98));
  color: #162019;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.manufacturing-kicker {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a7f44;
}

.manufacturing-intro-card h2 {
  margin: 0.8rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.85rem, 2.8vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #132018;
}

.manufacturing-summary {
  margin: 0.75rem 0 0;
  color: #5b6962;
  font-size: 0.94rem;
  line-height: 1.66;
}

.manufacturing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.manufacturing-tab {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.72rem;
  border: 1px solid rgba(110, 132, 67, 0.16);
  background: rgba(201, 228, 122, 0.12);
  color: #243122;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.manufacturing-tab.active,
.manufacturing-tab:hover {
  background: #c9e47a;
  border-color: rgba(110, 132, 67, 0.34);
  color: #172018;
  transform: translateY(-1px);
}

.manufacturing-hero {
  position: relative;
  min-height: 440px;
  max-height: 440px;
  border: 1px solid rgba(24, 33, 27, 0.08);
  overflow: hidden;
  background: #f7faf3;
}

.manufacturing-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease, opacity 0.35s ease;
}

.manufacturing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 11, 0.04), rgba(10, 14, 11, 0.18));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.manufacturing-hero:hover img {
  transform: scale(1.01);
  filter: saturate(1.04);
}

.manufacturing-hero:hover::after {
  opacity: 1;
}

.clients-shell {
  position: relative;
  padding: 2rem 1.4rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(rgba(120, 138, 96, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 138, 96, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 241, 0.99));
  background-size: 100px 100px, 100px 100px, auto;
  box-shadow: 0 24px 56px rgba(22, 34, 26, 0.08);
  overflow: hidden;
}

.clients-shell::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 228, 122, 0.18);
  pointer-events: none;
}

.clients-intro {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.clients-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2f372f;
}

.clients-kicker::before,
.clients-kicker::after {
  content: "✶";
  color: #70804f;
  font-size: 0.82rem;
}

.clients-intro h2 {
  margin: 0.8rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: #171f18;
}

.clients-summary {
  margin: 0.9rem auto 0;
  max-width: 60ch;
  color: #66746d;
  font-size: 0.98rem;
  line-height: 1.72;
}

.clients-slider {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: clients-marquee 22s linear infinite;
}

.clients-track.is-paused {
  animation-play-state: paused;
}

.client-logo-card {
  flex: 0 0 220px;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 33, 27, 0.06);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 30px rgba(22, 34, 26, 0.06);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 228, 122, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.client-logo-card img {
  width: 78%;
  max-height: 62px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.35s ease;
}

.client-logo-card:hover img {
  transform: scale(1.02);
}

.process-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667c40;
}

.process-kicker::before,
.process-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(102, 124, 64, 0.42);
}

.process-intro h2 {
  margin: 0.9rem auto 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.05rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #131a15;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
  position: relative;
  z-index: 1;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1rem 0.9rem 1.1rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 40px rgba(22, 34, 26, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 228, 122, 0.35);
  box-shadow: 0 26px 54px rgba(22, 34, 26, 0.14);
}

.process-step:not(:last-child)::after {
  content: none;
  position: absolute;
  top: 5.1rem;
  right: -0.7rem;
  font-size: 4rem;
  line-height: 1;
  color: rgba(129, 145, 135, 0.6);
  transform: rotate(-8deg);
  animation: process-arrow-float 2.8s ease-in-out infinite;
}

.process-media {
  position: relative;
  width: min(100%, 240px);
  height: auto;
  margin: 0 auto;
  border-radius: 24px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 32, 24, 0.08);
  animation: process-float 4.2s ease-in-out infinite;
}

.process-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  display: block;
  background: linear-gradient(180deg, #f8faf5, #edf2e6);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.process-step:hover .process-media img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

.process-number {
  position: absolute;
  top: -8px;
  left: -6px;
  z-index: 1;
  min-width: 40px;
  height: 40px;
  padding: 0 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c9e47a;
  color: #263020;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(201, 228, 122, 0.28);
}

.process-step h3 {
  margin: 1.2rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1a241d;
}

.process-step p {
  margin: 0.8rem auto 0;
  max-width: 26ch;
  color: #5a6a63;
  font-size: 0.98rem;
  line-height: 1.7;
}

.process-step:nth-child(2) .process-media {
  animation-delay: 0.45s;
}

.process-step:nth-child(3) .process-media {
  animation-delay: 0.9s;
}

.process-step:nth-child(4) .process-media {
  animation-delay: 1.35s;
}

@keyframes process-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes process-arrow-float {
  0%,
  100% {
    transform: rotate(-8deg) translateX(0);
  }
  50% {
    transform: rotate(-8deg) translateX(8px);
  }
}

@keyframes process-glow {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.85;
  }
  50% {
    transform: translateY(16px) scale(1.05);
    opacity: 1;
  }
}

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

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

@keyframes presence-sheen {
  0%,
  100% {
    transform: translateX(-120%);
  }

  52% {
    transform: translateX(130%);
  }
}

@keyframes corporate-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 16px rgba(201, 228, 122, 0.08);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 28px rgba(201, 228, 122, 0.04);
  }
}

@keyframes clients-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.testimonials-section {
  position: relative;
  padding: 2rem 0 5rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(201, 228, 122, 0.12), transparent 16%),
    radial-gradient(circle at 84% 14%, rgba(201, 228, 122, 0.08), transparent 18%),
    linear-gradient(180deg, #f9fbf7 0%, #eef4e8 100%);
  color: #162019;
}

.testimonials-intro {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonials-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #667c40;
}

.testimonials-kicker::before,
.testimonials-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(102, 124, 64, 0.42);
}

.testimonials-intro h2 {
  margin: 0.85rem auto 0;
  max-width: 760px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.95rem, 3.4vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #131a15;
  text-wrap: balance;
}

.testimonials-summary {
  max-width: 680px;
  margin: 0.9rem auto 0;
  color: #5b6a63;
  font-size: 0.98rem;
  line-height: 1.75;
}

.projects-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
  align-items: start;
}

.projects-featured,
.project-shot {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(24, 33, 27, 0.08);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(22, 34, 26, 0.1);
  overflow: hidden;
}

.projects-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: stretch;
}

.projects-featured-media {
  min-height: 0;
  padding: 0.85rem;
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #f7f8f4, #edf1e7);
}

.projects-featured-media img,
.project-shot img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 20px;
}

.projects-featured-copy {
  padding: 1.45rem 1.45rem 1.55rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.projects-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.8rem;
  background: rgba(201, 228, 122, 0.2);
  color: #667c40;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.projects-featured-copy h3 {
  margin: 0.85rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #131a15;
}

.projects-featured-copy p {
  margin: 0.85rem 0 0;
  color: #5b6a63;
  font-size: 0.98rem;
  line-height: 1.72;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.project-shot {
  aspect-ratio: auto;
  padding: 0.75rem;
  background: linear-gradient(180deg, #f7f8f4, #edf1e7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.project-shot:hover,
.projects-featured:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 228, 122, 0.3);
  box-shadow: 0 24px 52px rgba(22, 34, 26, 0.14);
}

.product-showcase-card:nth-child(2) .product-showcase-media img {
  animation-delay: 0.35s;
}

.product-showcase-card:nth-child(3) .product-showcase-media img {
  animation-delay: 0.7s;
}

@keyframes product-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.reveal-card {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 1180px) {
  .site-nav {
    gap: 1.1rem;
  }

  .hero-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 2rem;
  }

  .hero-content {
    max-width: 640px;
  }

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

}

@media (max-width: 980px) {
  .utility-inner {
    padding: 0.65rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-bar {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto 1fr auto;
  }

  .site-logo {
    justify-self: center;
    width: 170px;
  }

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

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(19, 27, 30, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0.8rem;
  }

  .nav-item-has-children {
    width: 100%;
    display: grid;
    gap: 0.4rem;
  }

  .site-nav > a,
  .nav-item-has-children > a {
    width: 100%;
    justify-content: space-between;
    padding: 0.25rem 0;
  }

  .site-nav > a::before,
  .nav-item-has-children > a::before {
    bottom: -0.15rem;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    display: grid;
    gap: 0.35rem;
    padding: 0.15rem 0 0 0.75rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-submenu a {
    padding: 0.35rem 0;
    border-radius: 0;
    font-size: 0.94rem;
    color: rgba(255, 255, 255, 0.74);
  }

  .nav-submenu a:hover,
  .nav-submenu a:focus-visible,
  .nav-submenu a.active {
    background: transparent;
    transform: none;
  }

  .nav-submenu-products {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .nav-submenu-products .nav-submenu-category {
    min-height: 0;
    padding: 0.45rem 0;
    background: transparent;
  }

  .nav-submenu-products .nav-submenu-category::after {
    content: none;
  }

  .nav-submenu-products .nav-submenu-category:not(:first-child) {
    margin-top: 0.45rem;
  }

  .nav-submenu-products a:not(.nav-submenu-category) {
    min-height: 0;
    margin-left: 0.85rem;
    padding-left: 1rem;
  }

  .nav-submenu-products a:not(.nav-submenu-category)::before {
    left: 0.2rem;
  }

  .site-nav.open {
    display: flex;
  }

  .quote-btn {
    display: none;
  }

  .contact-btn {
    min-height: 44px;
    padding: 0 0.95rem;
    font-size: 0.88rem;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }

  .feature-rail {
    padding-top: 0;
    order: 2;
  }

  .hero-stage {
    order: 1;
    padding-top: 1rem;
    align-items: stretch;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding-right: 0;
  }

  .hero-banner {
    min-height: auto;
  }

  .capability-strip,
  .financial-band {
    grid-template-columns: 1fr;
  }

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

  .product-showcase-card-featured {
    transform: none;
  }

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

  .presence-copy h2 {
    max-width: 14ch;
  }

  .presence-image-frame img {
    min-height: 500px;
  }

  .corporate-video-shell,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-topbar,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .corporate-video-stage,
  .corporate-video-player {
    min-height: 300px;
    max-height: 300px;
  }

  .contact-panel h2 {
    max-width: 14ch;
  }

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

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

  .client-logo-card {
    flex-basis: 190px;
    height: 116px;
  }

  .process-step:nth-child(2)::after,
  .process-step:nth-child(4)::after {
    content: none;
  }

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

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

  .projects-featured {
    grid-template-columns: 1fr;
  }

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

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

  .journey-card {
    flex-basis: calc(100% / 2);
  }

  .capabilities-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .capabilities-header span {
    max-width: none;
    text-align: left;
  }

}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .utility-bar {
    font-size: 0.82rem;
  }

  .utility-left,
  .utility-right {
    gap: 0.75rem;
  }

  .social-label {
    display: none;
  }

  .site-logo {
    width: 140px;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
    margin: 0;
  }

  .hero-highlights {
    gap: 0.65rem;
  }

  .hero-tagline {
    white-space: normal;
  }

  .hero-dots {
    width: 100%;
  }

  .hero-tagline {
    font-size: 0.84rem;
    gap: 0.6rem;
  }

  .hero-tagline::before {
    display: none;
  }

  .hero-tagline::after {
    width: 42px;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-subheading {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-cta {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero-slides {
    min-height: 470px;
  }

  .hero-dots {
    justify-content: flex-start;
  }

  .why-loom-section {
    padding: 4.2rem 0 4.6rem;
  }

  .why-loom-simple {
    padding: 1.4rem 1.1rem;
  }

  .why-loom-simple h2 {
    font-size: 2.55rem;
  }

  .capabilities-panel {
    padding-top: 1rem;
  }

  .journey-section {
    padding: 0 0 4rem;
  }

  .product-showcase-section {
    padding: 0 0 4rem;
  }

  .presence-section {
    padding: 0 0 4rem;
  }

  .clients-section {
    padding: 0 0 4rem;
  }

  .manufacturing-section {
    padding: 0 0 4rem;
  }

  .site-footer {
    padding-bottom: 1.5rem;
  }

  .contact-btn {
    min-height: 42px;
    padding: 0 0.8rem;
    font-size: 0.82rem;
  }

  .corporate-video-section {
    padding: 0 0 4rem;
  }

  .contact-section {
    padding: 0 0 4rem;
  }

  .industries-section {
    padding: 0 0 4rem;
  }

  .process-section {
    padding: 0 0 4rem;
  }

  .testimonials-section {
    padding: 0 0 4rem;
  }

  .product-showcase-intro h2 {
    max-width: none;
    font-size: 2.25rem;
  }

  .product-showcase-summary {
    font-size: 0.98rem;
  }

  .presence-copy,
  .presence-visual {
    padding: 1rem;
  }

  .presence-copy {
    padding: 1.15rem;
  }

  .presence-copy h2 {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 2.7rem);
  }

  .presence-summary {
    font-size: 0.96rem;
    line-height: 1.72;
  }

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

  .presence-image-frame img {
    min-height: 360px;
  }

  .corporate-video-shell {
    padding: 1rem;
  }

  .corporate-video-heading-split {
    width: 100%;
    max-width: 100%;
  }

  .corporate-video-heading-split span {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .corporate-video-summary {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .corporate-video-stage,
  .corporate-video-player {
    min-height: 220px;
    max-height: 220px;
  }

  .corporate-video-toggle {
    min-width: 86px;
    min-height: 86px;
  }

  .corporate-video-toggle-content {
    width: 86px;
    height: 86px;
    gap: 0.25rem;
  }

  .corporate-video-toggle-icon::before {
    font-size: 1.05rem;
  }

  .corporate-video-toggle-label {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .corporate-video-highlights {
    gap: 0.55rem;
  }

  .corporate-video-highlights span {
    min-height: 34px;
    padding: 0 0.75rem;
    font-size: 0.74rem;
  }

  .clients-shell {
    padding: 1.35rem 0.85rem;
  }

  .manufacturing-intro-card {
    padding: 1.4rem 1rem;
  }

  .manufacturing-intro-card h2 {
    font-size: 2rem;
  }

  .manufacturing-summary {
    font-size: 0.94rem;
  }

  .manufacturing-hero,
  .manufacturing-hero img {
    min-height: 300px;
    max-height: 300px;
  }

  .footer-shell {
    padding: 1rem 0.4rem 0;
  }

  .footer-newsletter-form {
    grid-template-columns: minmax(0, 1fr) 52px;
  }

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

  .footer-bottom p {
    font-size: 0.88rem;
  }

  .clients-intro h2 {
    font-size: 2.35rem;
  }

  .clients-summary {
    font-size: 0.94rem;
  }

  .clients-slider {
    margin-top: 1.5rem;
  }

  .client-logo-card {
    flex-basis: 150px;
    height: 96px;
  }

  .client-logo-card img {
    width: 72%;
    max-height: 46px;
  }

  .contact-panel,
  .faq-panel {
    padding: 1.1rem;
  }

  .contact-panel h2 {
    max-width: none;
    font-size: clamp(1.95rem, 8vw, 2.7rem);
  }

  .faq-panel h3 {
    font-size: 1.9rem;
  }

  .contact-summary,
  .faq-item p {
    font-size: 0.94rem;
  }

  .contact-form {
    gap: 0.7rem;
  }

  .process-intro h2 {
    font-size: 2.1rem;
  }

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

  .process-step {
    padding: 1rem 0.9rem 0;
  }

  .process-step::after {
    content: none !important;
  }

  .process-step h3 {
    font-size: 1.35rem;
  }

  .industries-intro h2 {
    max-width: none;
    font-size: 2.35rem;
  }

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

  .testimonials-intro h2 {
    max-width: none;
    font-size: 2rem;
  }

  .projects-featured {
    grid-template-columns: 1fr;
  }

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

  .project-shot {
    aspect-ratio: auto;
  }

  .projects-featured-copy h3 {
    font-size: 1.45rem;
  }

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

  .industry-card h3 {
    font-size: 1.35rem;
  }

  .journey-intro h2 {
    max-width: none;
    font-size: 2rem;
  }

  .journey-slider {
    margin-top: 1.5rem;
    padding: 3.8rem 0.85rem 1rem;
  }

  .journey-slider::before {
    left: 0.85rem;
    right: 0.85rem;
    top: 8.55rem;
  }

  .journey-controls {
    right: 50%;
    transform: translateX(50%);
  }

  .journey-card {
    flex-basis: 100%;
    padding: 0 0.75rem 0 0.9rem;
  }

  .journey-card::before {
    left: 0.82rem;
  }

  .journey-card h3 {
    margin-left: 3rem;
    max-width: 13ch;
    font-size: 0.98rem;
  }


  .capability-stat {
    padding: 1.35rem 1.1rem;
  }

  .capability-stat:not(:last-child)::after {
    top: auto;
    right: 18px;
    left: 18px;
    bottom: 0;
    width: auto;
    height: 1px;
  }

  .capability-stat strong,
  .financial-card strong {
    font-size: 2.2rem;
  }

  .financial-card {
    padding: 1.2rem;
  }

}

.site-nav a.active {
  color: var(--lime-strong);
}

.about-page .page-shell {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 18% 12%, rgba(201, 228, 122, 0.08), transparent 20%),
    linear-gradient(180deg, #eef4e8 0%, #f8fbf5 100%);
}

.about-page .site-header {
  background: rgba(21, 28, 31, 0.94);
}

.about-page main {
  color: #162019;
}

.about-hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #172018;
}

.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.58);
}

.contact-page .about-hero-video {
  object-position: center center;
  filter: saturate(0.94) brightness(0.42);
}

.contact-page .about-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 14, 22, 0.82), rgba(8, 14, 22, 0.42)),
    radial-gradient(circle at 70% 18%, rgba(255, 199, 97, 0.16), transparent 20%),
    radial-gradient(circle at 28% 70%, rgba(115, 194, 255, 0.12), transparent 22%);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 15, 11, 0.76), rgba(9, 15, 11, 0.38)),
    radial-gradient(circle at 60% 40%, rgba(201, 228, 122, 0.1), transparent 26%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0;
}

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

.about-hero-kicker,
.about-section-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b8044;
}

.about-hero-kicker::before,
.about-hero-kicker::after,
.about-section-kicker::before,
.about-section-kicker::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(201, 228, 122, 0.34);
}

.about-hero-copy h1 {
  margin: 1rem 0 0;
  max-width: 14ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
}

.about-hero-copy p:not(.about-hero-kicker) {
  margin: 1.1rem 0 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  margin-left: auto;
  margin-right: auto;
}

.about-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.about-hero-badges span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid rgba(201, 228, 122, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-story-section,
.about-pillars-section,
.about-milestones-section,
.about-presence-section,
.about-values-section,
.about-cta-section {
  padding: 5rem 0;
}

.about-story-layout,
.about-presence-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: stretch;
}

.about-story-card,
.about-presence-copy,
.about-story-visual,
.about-presence-map,
.about-cta-card {
  position: relative;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 236, 0.99)),
    #fff;
  box-shadow: 0 24px 56px rgba(22, 34, 26, 0.08);
  overflow: hidden;
}

.about-story-card,
.about-presence-copy,
.about-cta-card {
  padding: 1.6rem;
}

.about-story-card h2,
.about-presence-copy h2,
.about-section-head h2,
.about-cta-card h2 {
  margin: 1rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #132018;
}

.about-story-card p:not(.about-section-kicker),
.about-presence-copy p:not(.about-section-kicker),
.about-cta-card p:not(.about-section-kicker) {
  margin: 0.95rem 0 0;
  color: #5b6962;
  font-size: 1rem;
  line-height: 1.75;
}

.about-story-visual {
  min-height: 100%;
}

.about-story-visual img,
.about-presence-map img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.about-story-stat {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.1rem;
  background: rgba(24, 32, 25, 0.88);
  color: #fff;
  min-width: 180px;
}

.about-story-stat strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.about-story-stat span {
  display: block;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-story-stats,
.about-pillars-grid,
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.about-story-metric,
.about-pillar,
.about-value-card,
.about-milestone {
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 238, 0.98)),
    #fff;
  box-shadow: 0 20px 42px rgba(22, 34, 26, 0.06);
  padding: 1.4rem 1.2rem;
}

.about-story-metric strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: #132018;
}

.about-story-metric span,
.about-pillar p,
.about-value-card p,
.about-milestone h3 {
  display: block;
  margin-top: 0.8rem;
  color: #5b6962;
  font-size: 0.96rem;
  line-height: 1.68;
}

.about-section-head {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.about-pillars-grid,
.about-values-grid {
  margin-top: 2rem;
}

.about-pillar h3,
.about-value-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  line-height: 1.14;
  color: #172018;
}

.about-milestones-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.about-milestone span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 0.85rem;
  background: rgba(201, 228, 122, 0.14);
  color: #23311f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-milestone h3 {
  margin: 1rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1.34;
  color: #172018;
}

.about-presence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.about-presence-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  border: 1px solid rgba(110, 132, 67, 0.16);
  background: rgba(201, 228, 122, 0.12);
  color: #23311f;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-cta-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.about-cta-card h2 {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.about-cta-card p:not(.about-section-kicker) {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.about-cta-actions .hero-cta,
.about-cta-actions .quote-btn {
  min-width: 220px;
  justify-content: center;
}

.dealer-page .page-shell,
.distributor-page .page-shell,
.system-integrator-page .page-shell {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 12% 12%, rgba(201, 228, 122, 0.09), transparent 18%),
    linear-gradient(180deg, #edf4e7 0%, #f9fcf5 100%);
}

.dealer-page .site-header,
.distributor-page .site-header,
.system-integrator-page .site-header {
  background: rgba(21, 28, 31, 0.94);
}

.dealer-page main,
.distributor-page main,
.system-integrator-page main {
  color: #162019;
}

.dealer-hero,
.dealer-showcase-section,
.dealer-benefits-section,
.dealer-eligibility-section,
.dealer-steps-section,
.dealer-form-section,
.dealer-cta-section {
  position: relative;
  padding: 2rem 0 5rem;
}

.dealer-hero {
  padding-top: 3rem;
  overflow: hidden;
  min-height: min(980px, calc(100vh - 42px));
}

.dealer-hero-layout,
.dealer-showcase-layout,
.dealer-form-layout,
.dealer-eligibility-layout {
  display: grid;
  gap: 1.35rem;
}

.dealer-hero-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
}

.dealer-showcase-layout,
.dealer-form-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
}

.dealer-hero-video,
.dealer-hero-overlay,
.dealer-orb {
  position: absolute;
}

.dealer-hero-video {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.48);
  transform: scale(1.05);
}

.dealer-hero-overlay {
  inset: 0;
  background:
    linear-gradient(110deg, rgba(10, 15, 12, 0.78) 12%, rgba(17, 30, 20, 0.5) 44%, rgba(11, 18, 13, 0.78) 100%),
    radial-gradient(circle at 22% 18%, rgba(201, 228, 122, 0.18), transparent 22%);
}

.dealer-orb {
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
}

.dealer-orb-one {
  top: 9%;
  right: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.38), transparent 68%);
  animation: dealerFloat 9s ease-in-out infinite;
}

.dealer-orb-two {
  bottom: 10%;
  left: 6%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(100, 168, 112, 0.22), transparent 70%);
  animation: dealerFloat 11s ease-in-out infinite reverse;
}

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

.dealer-hero-copy,
.dealer-hero-panel,
.dealer-benefit-card,
.dealer-eligibility-card,
.dealer-form-copy,
.dealer-step-card,
.dealer-form-card,
.dealer-required-card,
.dealer-cta-card {
  border: 1px solid rgba(28, 40, 31, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 56px rgba(28, 43, 30, 0.08);
}

.dealer-hero-copy,
.dealer-hero-panel,
.dealer-showcase-copy,
.dealer-clip-stage,
.dealer-benefit-card,
.dealer-eligibility-card,
.dealer-form-copy,
.dealer-form-card,
.dealer-step-card,
.dealer-cta-card,
.dealer-required-card {
  height: 100%;
}

.dealer-showcase-copy,
.dealer-clip-stage,
.dealer-benefit-card,
.dealer-eligibility-card,
.dealer-form-copy,
.dealer-form-card,
.dealer-step-card,
.dealer-cta-card {
  display: flex;
  flex-direction: column;
}

.dealer-hero-copy,
.dealer-hero-panel,
.dealer-eligibility-card,
.dealer-form-copy,
.dealer-form-card,
.dealer-cta-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 243, 0.98));
}

.dealer-hero-copy {
  padding: 3rem;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.11));
  backdrop-filter: blur(14px);
  color: #fff;
}

.dealer-kicker,
.dealer-panel-label,
.dealer-form-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6b8044;
}

.dealer-hero .dealer-kicker,
.dealer-hero .dealer-panel-label {
  color: #d5ef80;
}

.dealer-kicker::before,
.dealer-kicker::after,
.dealer-panel-label::before,
.dealer-panel-label::after,
.dealer-form-label::before,
.dealer-form-label::after {
  content: "";
  width: 34px;
  height: 1px;
  background: rgba(104, 129, 62, 0.42);
}

.dealer-hero .dealer-kicker::before,
.dealer-hero .dealer-kicker::after,
.dealer-hero .dealer-panel-label::before,
.dealer-hero .dealer-panel-label::after {
  background: rgba(213, 239, 128, 0.55);
}

.dealer-hero-copy h1,
.dealer-section-head h2,
.dealer-eligibility-card h2,
.dealer-form-copy h2,
.dealer-form-card h3,
.dealer-cta-card h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 1.02;
  color: #162019;
}

.dealer-hero-copy h1,
.dealer-hero-summary,
.dealer-hero-copy .dealer-secondary-link {
  color: #fff;
}

.dealer-section-head {
  text-align: center;
}

.dealer-section-head h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
}

.dealer-section-head-wide h2 {
  max-width: none;
}

.dealer-eligibility-card h2,
.dealer-form-copy h2,
.dealer-form-card h3,
.dealer-cta-card h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.dealer-hero-summary,
.dealer-form-summary,
.dealer-note,
.dealer-benefit-card p,
.dealer-hero-panel p,
.dealer-eligibility-card p,
.dealer-cta-card p {
  color: #5a675c;
  line-height: 1.76;
}

.dealer-hero-summary,
.dealer-form-summary {
  margin: 1rem 0 0;
  max-width: 62ch;
}

.dealer-hero-chips,
.dealer-tag-list,
.dealer-required-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.dealer-hero-chips {
  margin-top: 1.5rem;
}

.dealer-hero-chips span,
.dealer-tag-list span,
.dealer-required-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(95, 123, 62, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: #283325;
  font-size: 0.94rem;
  font-weight: 600;
}

.dealer-hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.dealer-secondary-link {
  color: #405636;
  font-weight: 700;
}

.dealer-hero-actions .hero-cta,
.dealer-cta-card .hero-cta {
  margin-top: 0;
}

.dealer-hero-actions .dealer-secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
}

.dealer-hero-panel {
  padding: 2.2rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 24, 18, 0.82), rgba(23, 35, 25, 0.88));
  backdrop-filter: blur(12px);
}

.dealer-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.dealer-panel-grid article,
.dealer-benefit-card,
.dealer-step-card,
.dealer-required-card {
  background: rgba(255, 255, 255, 0.76);
}

.dealer-panel-grid article {
  background: rgba(255, 255, 255, 0.08);
}

.dealer-stat-ribbon {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.dealer-stat-chip {
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(213, 239, 128, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.dealer-stat-chip strong {
  display: block;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
}

.dealer-stat-chip span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.dealer-panel-grid article {
  padding: 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dealer-panel-grid strong,
.dealer-benefit-card h3,
.dealer-step-card h3,
.dealer-required-card h3 {
  display: block;
  color: #172017;
}

.dealer-panel-grid strong {
  color: #fff;
}

.dealer-panel-grid p {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.system-integrator-page .dealer-hero-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.system-integrator-page .dealer-hero-copy,
.system-integrator-page .dealer-hero-panel {
  justify-content: center;
}

.system-integrator-page .dealer-hero-copy h1 {
  max-width: none;
}

.system-integrator-page .dealer-hero-summary {
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
}

.system-integrator-page .dealer-hero-panel p {
  color: rgba(241, 246, 237, 0.82);
}

.system-integrator-page .dealer-showcase-copy h2,
.system-integrator-page .dealer-section-head h2,
.system-integrator-page .dealer-eligibility-card h2,
.system-integrator-page .dealer-form-copy h2,
.system-integrator-page .dealer-form-card h3,
.system-integrator-page .dealer-cta-card h2 {
  max-width: none;
}

.dealer-benefits-grid,
.dealer-steps-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  align-items: stretch;
}

.dealer-benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dealer-steps-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dealer-benefit-card,
.dealer-step-card {
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.dealer-benefit-card h3,
.dealer-step-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.dealer-benefit-card p {
  margin: 0.8rem 0 0;
}

.dealer-benefit-card::before,
.dealer-step-card::before,
.dealer-clip-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(201, 228, 122, 0.18), transparent);
  transform: translateX(-140%);
  transition: transform 0.75s ease;
}

.dealer-benefit-card:hover,
.dealer-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 44px rgba(26, 40, 28, 0.14);
  border-color: rgba(130, 156, 78, 0.2);
}

.dealer-benefit-card:hover::before,
.dealer-step-card:hover::before,
.dealer-clip-stage.is-animating .dealer-clip-media::before {
  transform: translateX(140%);
}

.dealer-check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.dealer-check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: #263125;
  font-weight: 600;
}

.dealer-check-list li::before {
  content: "";
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #c9e47a;
  box-shadow: 0 0 0 6px rgba(201, 228, 122, 0.22);
}

.dealer-eligibility-card {
  padding: 2rem;
}

.dealer-tag-list {
  margin-top: 1.4rem;
}

.dealer-step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  min-height: 36px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: #dff0a7;
  color: #26301f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dealer-step-card h3 {
  margin-top: 1rem;
}

.dealer-showcase-section {
  padding-top: 0;
}

.dealer-showcase-copy,
.dealer-clip-stage {
  border-radius: 34px;
}

.dealer-showcase-copy {
  padding: 2.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 243, 0.98));
}

.dealer-showcase-copy h2,
.dealer-clip-copy h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.05;
  color: #162019;
}

.dealer-showcase-copy p:not(.dealer-kicker),
.dealer-clip-copy p {
  color: #5a675c;
  line-height: 1.72;
}

.dealer-showcase-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.dealer-showcase-points span {
  position: relative;
  padding-left: 1.3rem;
  color: #283325;
  font-weight: 600;
}

.dealer-showcase-points span::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #b7d96b;
}

.dealer-clip-stage {
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(19, 29, 23, 0.98), rgba(31, 44, 35, 0.98));
}

.dealer-clip-media {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dealer-clip-video {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  filter: saturate(0.95) brightness(0.68);
  transform: scale(1.02);
}

.dealer-clip-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 9, 0.08), rgba(8, 12, 9, 0.42)),
    radial-gradient(circle at 18% 20%, rgba(201, 228, 122, 0.18), transparent 20%);
}

.dealer-clip-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.dealer-clip-tab {
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.dealer-clip-tab.active,
.dealer-clip-tab:hover {
  background: #d5ef80;
  color: #1d2819;
  transform: translateY(-2px);
}

.dealer-clip-copy {
  padding: 1rem 0 0.2rem;
  flex: 1 1 auto;
}

.dealer-clip-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d5ef80;
}

.dealer-clip-copy h3 {
  color: #fff;
}

.dealer-clip-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.dealer-form-copy {
  display: grid;
  gap: 1.2rem;
  align-content: start;
  padding: 2rem;
}

.dealer-required-card {
  padding: 1.5rem;
}

.dealer-required-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.dealer-required-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.dealer-required-grid span {
  min-height: 48px;
  justify-content: center;
  text-align: center;
}

.dealer-form-card {
  padding: 2rem;
}

.dealer-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.dealer-form-grid label {
  display: grid;
  gap: 0.45rem;
  color: #1a281d;
  font-size: 0.86rem;
  font-weight: 600;
}

.dealer-form-grid input,
.dealer-form-grid select,
.dealer-form-grid textarea {
  width: 100%;
  border: 1px solid rgba(24, 33, 27, 0.1);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.82rem 0.95rem;
  border-radius: 16px;
  color: #182018;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dealer-form-grid textarea {
  min-height: 110px;
  resize: vertical;
}

.dealer-form-grid input:focus,
.dealer-form-grid select:focus,
.dealer-form-grid textarea:focus {
  outline: none;
  border-color: rgba(110, 132, 67, 0.45);
  box-shadow: 0 0 0 4px rgba(201, 228, 122, 0.16);
}

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

.dealer-form-grid .contact-submit {
  justify-self: start;
  margin-top: 0.25rem;
}

.dealer-cta-card {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 228, 122, 0.18), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 238, 0.98));
}

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

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

@media (max-width: 980px) {
  .dealer-hero-layout,
  .dealer-showcase-layout,
  .dealer-form-layout,
  .dealer-eligibility-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dealer-hero,
  .dealer-showcase-section,
  .dealer-benefits-section,
  .dealer-eligibility-section,
  .dealer-steps-section,
  .dealer-form-section,
  .dealer-cta-section {
    padding: 1rem 0 4rem;
  }

  .dealer-hero-copy,
  .dealer-hero-panel,
  .dealer-showcase-copy,
  .dealer-eligibility-card,
  .dealer-form-copy,
  .dealer-form-card,
  .dealer-required-card,
  .dealer-cta-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .dealer-panel-grid,
  .dealer-stat-ribbon,
  .dealer-benefits-grid,
  .dealer-steps-grid,
  .dealer-required-grid,
  .dealer-form-grid {
    grid-template-columns: 1fr;
  }

  .dealer-clip-media,
  .dealer-clip-video {
    min-height: 260px;
  }

  .dealer-hero-actions,
  .dealer-cta-card {
    align-items: flex-start;
  }
}

@keyframes dealerFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.06);
  }
}

.products-page .page-shell,
.product-detail-page .page-shell {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 18% 10%, rgba(201, 228, 122, 0.09), transparent 18%),
    linear-gradient(180deg, #edf4e7 0%, #f9fcf5 100%);
}

.products-page .site-header,
.product-detail-page .site-header {
  background: rgba(21, 28, 31, 0.94);
}

.products-page main,
.product-detail-page main {
  color: #162019;
}

.products-hero,
.products-directory-section,
.product-detail-hero,
.product-detail-section,
.product-gallery-section,
.product-features-section,
.product-applications-section,
.product-related-section {
  position: relative;
  padding: 2rem 0 5rem;
}

.products-hero,
.product-detail-hero {
  overflow: hidden;
  min-height: min(880px, calc(100vh - 42px));
}

.catalog-hero-video,
.catalog-hero-overlay {
  position: absolute;
  inset: 0;
}

.catalog-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.46);
  transform: scale(1.04);
}

.catalog-hero-overlay {
  background:
    linear-gradient(112deg, rgba(9, 15, 11, 0.82) 14%, rgba(15, 25, 17, 0.54) 46%, rgba(9, 15, 11, 0.8) 100%),
    radial-gradient(circle at 20% 18%, rgba(201, 228, 122, 0.18), transparent 18%);
}

.products-hero-layout,
.product-hero-layout,
.products-summary-layout,
.product-detail-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
}

.products-hero-layout,
.products-summary-layout,
.product-detail-layout {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: start;
}

.product-hero-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.products-hero-copy,
.products-hero-panel,
.products-summary-card,
.category-band,
.module-card,
.product-hero-copy,
.product-hero-panel,
.product-story-card,
.product-spec-card,
.product-feature-card,
.product-applications-card,
.product-related-card {
  border: 1px solid rgba(28, 40, 31, 0.08);
  border-radius: 32px;
  box-shadow: 0 24px 56px rgba(28, 43, 30, 0.08);
}

.products-hero-copy,
.product-hero-copy {
  padding: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  color: #fff;
  backdrop-filter: blur(14px);
}

.products-hero-panel,
.products-summary-card,
.category-band,
.module-card,
.product-hero-panel,
.product-story-card,
.product-spec-card,
.product-feature-card,
.product-applications-card,
.product-related-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 243, 0.98));
}

.products-hero-copy h1,
.products-summary-card h2,
.category-band h2,
.product-hero-copy h1,
.product-gallery-copy h2,
.product-story-card h2,
.product-spec-card h3,
.product-applications-card h2,
.product-related-head h2 {
  margin: 1rem 0 0;
  font-size: clamp(2.05rem, 4vw, 4.1rem);
  line-height: 1.02;
}

.products-hero-copy h1,
.products-hero-copy p,
.product-hero-copy h1,
.product-hero-copy p,
.product-hero-copy .hero-cta,
.product-hero-copy .dealer-secondary-link {
  color: #fff;
}

.products-hero-copy p,
.products-summary-card p,
.module-card p,
.product-gallery-copy p,
.product-story-card p,
.product-spec-card p,
.product-feature-card p,
.product-applications-card p,
.product-related-card p {
  line-height: 1.72;
}

.products-summary-card,
.products-hero-panel,
.category-band,
.product-hero-panel,
.product-gallery-stage-card,
.product-gallery-copy,
.product-story-card,
.product-spec-card,
.product-applications-card {
  padding: 2rem;
}

.products-summary-card,
.category-band,
.module-card,
.product-story-card,
.product-spec-card,
.product-feature-card,
.product-applications-card,
.product-related-card {
  color: #162019;
}

.products-summary-card,
.product-applications-card {
  display: grid;
  gap: 1rem;
}

.products-summary-grid,
.product-spec-grid,
.product-feature-grid,
.product-related-grid {
  display: grid;
  gap: 1rem;
}

.products-summary-grid,
.product-feature-grid,
.product-related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.products-summary-grid article,
.product-spec-grid article {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(240, 245, 234, 0.9);
  border: 1px solid rgba(33, 47, 37, 0.07);
}

.products-summary-grid strong,
.product-spec-grid strong {
  display: block;
  color: #172017;
  font-size: 1.1rem;
}

.products-summary-grid span,
.product-spec-grid span {
  display: block;
  margin-top: 0.35rem;
  color: #5a675c;
  font-size: 0.92rem;
}

.category-band + .category-band {
  margin-top: 1.35rem;
}

.category-band {
  padding: 2rem;
}

.category-meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b8044;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.module-card,
.product-feature-card,
.product-related-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.module-card:hover,
.product-related-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 155, 77, 0.22);
  box-shadow: 0 22px 44px rgba(27, 41, 28, 0.12);
}

.module-card,
.product-related-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.module-tech,
.product-kicker,
.product-card-kicker {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6c8143;
}

.module-card h3,
.product-related-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
  color: #172017;
}

.module-card-links,
.product-hero-actions,
.product-related-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: auto;
}

.text-link {
  color: #3c5532;
  font-weight: 700;
}

.products-hero-panel img,
.product-hero-panel img {
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(247, 250, 239, 0.96), rgba(236, 243, 223, 0.92));
}

.product-hero-panel {
  display: grid;
  gap: 1rem;
}

.product-hero-panel p {
  margin: 0;
  color: #58655a;
}

.product-gallery-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.product-gallery-stage-card,
.product-gallery-copy {
  display: grid;
  gap: 1rem;
  color: #162019;
}

.product-gallery-stage-shell {
  display: grid;
  place-items: center;
  min-height: clamp(320px, 40vw, 580px);
  padding: 1.4rem;
  border-radius: 28px;
  border: 1px solid rgba(33, 47, 37, 0.08);
  background:
    radial-gradient(circle at top center, rgba(201, 228, 122, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(249, 251, 245, 0.98), rgba(237, 242, 228, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.product-gallery-stage-shell img {
  width: 100%;
  height: clamp(280px, 34vw, 500px);
  display: block;
  object-fit: contain;
  object-position: center;
}

.product-gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.product-gallery-thumb {
  appearance: none;
  width: 100%;
  padding: 0.8rem;
  display: grid;
  gap: 0.75rem;
  text-align: left;
  border-radius: 22px;
  border: 1px solid rgba(33, 47, 37, 0.08);
  background: rgba(248, 250, 244, 0.98);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(108, 129, 67, 0.34);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 16px 32px rgba(21, 33, 19, 0.1);
}

.product-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(249, 251, 245, 0.98), rgba(237, 242, 228, 0.96));
}

.product-gallery-thumb span {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #203024;
}

.product-gallery-copy {
  align-content: start;
}

.product-gallery-copy h2 {
  max-width: 13ch;
}

.product-gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-gallery-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 124, 71, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: #2b3827;
  font-size: 0.9rem;
  font-weight: 600;
}

.product-gallery-caption {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(33, 47, 37, 0.07);
  background: rgba(240, 245, 234, 0.92);
  color: #50604f;
}

.product-badge-list,
.product-chip-list,
.product-applications-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-badge-list span,
.product-chip-list span,
.product-applications-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(100, 124, 71, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: #283325;
  font-size: 0.93rem;
  font-weight: 600;
}

.product-detail-layout {
  align-items: stretch;
}

.product-story-card,
.product-spec-card {
  height: 100%;
}

.product-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.2rem;
}

.product-feature-grid {
  margin-top: 2rem;
}

.product-feature-card h3 {
  margin: 0;
  font-size: 1.12rem;
  color: #172017;
}

.product-related-head {
  text-align: center;
}

.product-related-head h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

@media (max-width: 1180px) {
  .product-gallery-layout,
  .category-grid,
  .products-summary-grid,
  .product-feature-grid,
  .product-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .products-hero-layout,
  .products-summary-layout,
  .product-hero-layout,
  .product-gallery-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .products-hero,
  .products-directory-section,
  .product-detail-hero,
  .product-gallery-section,
  .product-detail-section,
  .product-features-section,
  .product-applications-section,
  .product-related-section {
    padding: 1rem 0 4rem;
  }

  .products-hero-copy,
  .products-hero-panel,
  .products-summary-card,
  .category-band,
  .product-hero-copy,
  .product-hero-panel,
  .product-gallery-stage-card,
  .product-gallery-copy,
  .product-story-card,
  .product-spec-card,
  .product-feature-card,
  .product-applications-card,
  .product-related-card {
    padding: 1.35rem;
    border-radius: 24px;
  }

  .category-grid,
  .products-summary-grid,
  .product-spec-grid,
  .product-feature-grid,
  .product-related-grid {
    grid-template-columns: 1fr;
  }

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

  .products-hero-panel img,
  .product-hero-panel img {
    height: 240px;
  }
}

@media (max-width: 980px) {
  .about-hero-inner {
    min-height: 64vh;
  }

  .about-story-layout,
  .about-presence-layout,
  .about-story-stats,
  .about-pillars-grid,
  .about-values-grid,
  .about-milestones-grid {
    grid-template-columns: 1fr;
  }

  .about-story-visual img,
  .about-presence-map img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 62vh;
  }

  .about-hero-inner {
    min-height: 62vh;
    padding: 3rem 0;
  }

  .about-hero-copy h1 {
    max-width: none;
    font-size: 2.7rem;
  }

  .about-hero-copy p:not(.about-hero-kicker) {
    font-size: 0.96rem;
  }

  .about-story-section,
  .about-pillars-section,
  .about-milestones-section,
  .about-presence-section,
  .about-values-section,
  .about-cta-section {
    padding: 4rem 0;
  }

  .about-story-card,
  .about-presence-copy,
  .about-cta-card {
    padding: 1.2rem 1rem;
  }

  .about-story-card h2,
  .about-presence-copy h2,
  .about-section-head h2,
  .about-cta-card h2 {
    font-size: 2.15rem;
    max-width: none;
  }

  .about-hero-badges span,
  .about-presence-list span {
    min-height: 34px;
    font-size: 0.76rem;
  }
}

.calculator-page .page-shell {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 18% 12%, rgba(201, 228, 122, 0.1), transparent 20%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.46), transparent 18%),
    linear-gradient(180deg, #eef4e8 0%, #f8fbf5 100%);
}

.calculator-page .site-header {
  background: rgba(21, 28, 31, 0.94);
}

.calculator-page main {
  position: relative;
  color: #162019;
  overflow: hidden;
}

.calculator-hero,
.calculator-workspace-section {
  position: relative;
}

.calculator-hero {
  padding: 4.6rem 0 2rem;
}

.calculator-workspace-section {
  padding: 1rem 0 5rem;
}

.calculator-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.calculator-rings span {
  position: absolute;
  border: 1px solid rgba(101, 196, 127, 0.28);
  border-radius: 50%;
}

.calculator-rings span:nth-child(1) {
  width: 780px;
  height: 780px;
  top: -240px;
  left: -40px;
}

.calculator-rings span:nth-child(2) {
  width: 980px;
  height: 980px;
  top: -330px;
  left: 120px;
}

.calculator-rings span:nth-child(3) {
  width: 1280px;
  height: 1280px;
  top: -470px;
  left: 300px;
}

.calculator-rings-bottom span:nth-child(1) {
  width: 980px;
  height: 980px;
  top: -100px;
  left: -260px;
}

.calculator-rings-bottom span:nth-child(2) {
  width: 1280px;
  height: 1280px;
  top: -260px;
  left: 80px;
}

.calculator-hero-inner,
.calculator-workspace {
  position: relative;
  z-index: 1;
}

.calculator-title-block {
  max-width: 920px;
  margin: 1.6rem auto 0;
  text-align: center;
}

.calculator-title-block h1 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.55rem, 5vw, 4.55rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  color: #263533;
}

.calculator-title-block p {
  max-width: 58ch;
  margin: 1rem auto 0;
  color: #67746c;
  font-size: 1rem;
  line-height: 1.8;
}

.calculator-selector {
  max-width: 1080px;
  margin: 3rem auto 0;
}

.calculator-selector-head h2 {
  margin: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: #32413e;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.property-card {
  position: relative;
  padding: 1.45rem 1.35rem 1.1rem;
  border: 1px solid rgba(111, 164, 129, 0.18);
  background:
    linear-gradient(180deg, rgba(198, 235, 247, 0.55), rgba(213, 239, 195, 0.56)),
    linear-gradient(180deg, #eff8fb, #f5fbef);
  text-align: left;
  color: #1a2320;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.property-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.64) 45%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.property-card:hover,
.property-card.active {
  transform: translateY(-8px);
  border-color: rgba(98, 187, 112, 0.34);
  box-shadow: 0 22px 44px rgba(30, 52, 33, 0.12);
}

.property-card:hover::before,
.property-card.active::before {
  transform: translateX(120%);
}

.property-card-label {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.property-card-copy {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 3.6em;
  margin-top: 0.55rem;
  color: #69786e;
  font-size: 0.92rem;
  line-height: 1.7;
}

.property-card-illustration {
  position: relative;
  display: block;
  height: 220px;
  margin-top: 1rem;
}

.property-card-illustration span,
.property-stage-illustration span {
  position: absolute;
  display: block;
}

.property-card-illustration-residential .tower {
  bottom: 18px;
  border: 5px solid #485861;
  border-bottom-width: 8px;
  background:
    repeating-linear-gradient(90deg, transparent 0 12px, rgba(82, 134, 176, 0.95) 12px 20px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

.property-card-illustration-residential .tower::before,
.property-card-illustration-residential .tower::after,
.property-stage-residential .res-building::before,
.property-stage-residential .res-building::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  height: 8px;
  background: #42515a;
}

.property-card-illustration-residential .tower::before,
.property-stage-residential .res-building::before {
  top: -12px;
}

.property-card-illustration-residential .tower::after,
.property-stage-residential .res-building::after {
  bottom: -13px;
}

.property-card-illustration-residential .tower-one {
  left: 10%;
  width: 18%;
  height: 134px;
  background-color: #fb8b92;
}

.property-card-illustration-residential .tower-two {
  left: 38%;
  width: 18%;
  height: 154px;
  background-color: #efbf59;
}

.property-card-illustration-residential .tower-three {
  right: 12%;
  width: 21%;
  height: 176px;
  background-color: #c58f73;
}

.property-card-illustration-residential .ground-tree,
.property-stage-residential .res-tree,
.property-card-illustration-commercial .tree,
.property-stage-commercial .com-plant,
.property-card-illustration-industrial .stack::after,
.property-stage-industrial .ind-stack::after {
  border-radius: 999px;
}

.property-card-illustration-residential .ground-tree::before,
.property-stage-residential .res-tree::before,
.property-card-illustration-commercial .tree::before,
.property-stage-commercial .com-plant::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 4px;
  height: 14px;
  background: #6b6e4d;
  transform: translateX(-50%);
}

.property-card-illustration-residential .ground-tree {
  bottom: 18px;
  width: 18px;
  height: 18px;
  background: #7cb15c;
}

.property-card-illustration-residential .tree-one {
  left: 4%;
}

.property-card-illustration-residential .tree-two {
  left: 31%;
}

.property-card-illustration-residential .tree-three {
  right: 6%;
}

.property-card-illustration-commercial .block {
  bottom: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    #9c95c8;
  border: 5px solid #7070a0;
}

.property-card-illustration-commercial .block-left {
  left: 12%;
  width: 32%;
  height: 138px;
}

.property-card-illustration-commercial .block-right {
  right: 10%;
  width: 44%;
  height: 104px;
}

.property-card-illustration-commercial .glass,
.property-stage-commercial .com-window-line {
  background: repeating-linear-gradient(90deg, rgba(130, 146, 204, 0.22) 0 14px, rgba(255, 255, 255, 0.42) 14px 24px);
}

.property-card-illustration-commercial .glass-one {
  left: 14%;
  bottom: 36px;
  width: 28%;
  height: 82px;
}

.property-card-illustration-commercial .glass-two {
  right: 14%;
  bottom: 34px;
  width: 38%;
  height: 54px;
}

.property-card-illustration-commercial .tree {
  bottom: 18px;
  width: 22px;
  height: 22px;
  background: #b6ad42;
}

.property-card-illustration-commercial .tree-left {
  left: 7%;
}

.property-card-illustration-commercial .tree-right {
  right: 6%;
}

.property-card-illustration-industrial .plant-base,
.property-stage-industrial .ind-base {
  left: 10%;
  right: 10%;
  bottom: 18px;
  height: 58px;
  background: #f3b36d;
  border: 5px solid #524d64;
}

.property-card-illustration-industrial .plant-block,
.property-stage-industrial .ind-plant {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0)), #f08d63;
  border: 5px solid #50485d;
}

.property-card-illustration-industrial .block-one {
  left: 14%;
  bottom: 76px;
  width: 24%;
  height: 88px;
}

.property-card-illustration-industrial .block-two {
  right: 18%;
  bottom: 76px;
  width: 18%;
  height: 116px;
}

.property-card-illustration-industrial .stack {
  bottom: 76px;
  width: 20px;
  background: #ea9a57;
  border: 4px solid #4f4d60;
  border-bottom: 0;
}

.property-card-illustration-industrial .stack-one {
  left: 44%;
  height: 104px;
}

.property-card-illustration-industrial .stack-two {
  left: 57%;
  height: 130px;
}

.property-card-illustration-industrial .stack-three {
  right: 30%;
  height: 148px;
}

.property-card-illustration-industrial .stack::after,
.property-stage-industrial .ind-stack::after {
  content: "";
  left: 50%;
  top: -34px;
  width: 26px;
  height: 18px;
  background: rgba(255, 230, 194, 0.58);
  filter: blur(3px);
  transform: translateX(-50%);
}

.calculator-workspace {
  padding: 1.8rem 1.5rem 0.2rem;
}

.calculator-workspace-head {
  text-align: center;
}

.calculator-workspace-head h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  color: #2c3b39;
}

.calculator-workspace-head p {
  max-width: 64ch;
  margin: 0.8rem auto 0;
  color: #66756d;
  font-size: 0.98rem;
  line-height: 1.76;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.8rem;
}

.calculator-left-column {
  display: grid;
  gap: 1rem;
}

.calculator-form-card,
.calculator-results-card {
  position: relative;
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: 0 24px 56px rgba(28, 43, 30, 0.08);
  overflow: hidden;
}

.calculator-form-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.97);
}

.calculator-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.calculator-field {
  display: grid;
  gap: 0.45rem;
}

.calculator-field span {
  color: #33433d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.calculator-field select,
.calculator-inline-input {
  min-height: 56px;
  border: 1px solid rgba(35, 47, 41, 0.16);
  background: #fff;
}

.calculator-field select {
  width: 100%;
  padding: 0 1rem;
  color: #263532;
}

.calculator-inline-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  align-items: center;
}

.calculator-inline-input input {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  border: 0;
  outline: 0;
  color: #263532;
  background: transparent;
}

.calculator-inline-input em {
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2c98ce, #2ab54d);
  color: #fff;
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 700;
}

.calculator-inline-input-rupee em {
  background: #fff;
  color: #5f6b66;
  border-left: 1px solid rgba(35, 47, 41, 0.16);
  font-size: 1.1rem;
}

.calculator-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.calculator-submit,
.calculator-back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0 1.25rem;
  border: 0;
  background: #16b237;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.calculator-submit span,
.calculator-back-button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.92rem;
}

.property-stage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.property-stage::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(102, 172, 119, 0.34), transparent);
}

.property-stage-illustration {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.property-stage-illustration.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.property-stage-residential .res-building {
  bottom: 30px;
  border: 7px solid #4f5e66;
  border-bottom-width: 10px;
  background:
    repeating-linear-gradient(90deg, transparent 0 16px, rgba(101, 149, 194, 0.95) 16px 27px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.property-stage-residential .res-building-one {
  left: 8%;
  width: 18%;
  height: 210px;
  background-color: #fb8b92;
}

.property-stage-residential .res-building-two {
  left: 34%;
  width: 20%;
  height: 256px;
  background-color: #efbf59;
}

.property-stage-residential .res-building-three {
  right: 13%;
  width: 24%;
  height: 292px;
  background-color: #c58f73;
}

.property-stage-residential .res-tree {
  bottom: 26px;
  width: 28px;
  height: 28px;
  background: #82af59;
}

.property-stage-residential .res-tree-one {
  left: 3%;
}

.property-stage-residential .res-tree-two {
  left: 26%;
}

.property-stage-residential .res-tree-three {
  right: 27%;
}

.property-stage-residential .res-tree-four {
  right: 4%;
}

.property-stage-commercial .com-building {
  border: 7px solid #6e6d9d;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    #ada5d8;
}

.property-stage-commercial .com-building-back {
  left: 13%;
  bottom: 72px;
  width: 34%;
  height: 224px;
}

.property-stage-commercial .com-building-front {
  right: 8%;
  bottom: 28px;
  width: 56%;
  height: 188px;
}

.property-stage-commercial .com-window-line {
  background: repeating-linear-gradient(90deg, rgba(133, 151, 212, 0.26) 0 18px, rgba(235, 244, 255, 0.56) 18px 34px);
}

.property-stage-commercial .com-window-line-one {
  left: 16%;
  bottom: 100px;
  width: 26%;
  height: 124px;
}

.property-stage-commercial .com-window-line-two {
  right: 12%;
  bottom: 70px;
  width: 48%;
  height: 108px;
}

.property-stage-commercial .com-window-line-three {
  right: 26%;
  bottom: 28px;
  width: 18%;
  height: 40px;
}

.property-stage-commercial .com-plant {
  bottom: 28px;
  width: 30px;
  height: 30px;
  background: #b8b04e;
}

.property-stage-commercial .com-plant-one {
  left: 8%;
}

.property-stage-commercial .com-plant-two {
  right: 3%;
}

.property-stage-industrial .ind-base {
  left: 7%;
  right: 9%;
  height: 88px;
}

.property-stage-industrial .ind-tower {
  left: 18%;
  bottom: 118px;
  width: 22%;
  height: 196px;
}

.property-stage-industrial .ind-block {
  right: 12%;
  bottom: 118px;
  width: 24%;
  height: 248px;
}

.property-stage-industrial .ind-stack {
  bottom: 118px;
  width: 26px;
  background: #ea9a57;
  border: 5px solid #4f4d60;
  border-bottom: 0;
}

.property-stage-industrial .ind-stack-one {
  left: 46%;
  height: 188px;
}

.property-stage-industrial .ind-stack-two {
  left: 60%;
  height: 236px;
}

.property-stage-industrial .ind-stack-three {
  right: 24%;
  height: 282px;
}

.property-stage-industrial .ind-smoke {
  width: 34px;
  height: 24px;
  background: rgba(255, 234, 207, 0.62);
  border-radius: 50%;
  filter: blur(5px);
  animation: smokeFloat 3.2s ease-in-out infinite;
}

.property-stage-industrial .smoke-one {
  left: 46%;
  bottom: 322px;
}

.property-stage-industrial .smoke-two {
  left: 59%;
  bottom: 370px;
  animation-delay: 0.5s;
}

.property-stage-industrial .smoke-three {
  right: 22%;
  bottom: 420px;
  animation-delay: 1s;
}

.calculator-results-card {
  padding: 1.5rem 1.25rem 1.15rem;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(194, 229, 244, 0.7), rgba(214, 239, 195, 0.72)),
    linear-gradient(180deg, #eff8fb, #f5fbef);
}

.calculator-results-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background:
    radial-gradient(circle at 20% 100%, rgba(255, 255, 255, 0.6), transparent 38%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.38));
  pointer-events: none;
}

.calculator-results-card h3 {
  margin: 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  line-height: 1.18;
  letter-spacing: -0.04em;
  color: #33423d;
}

.calculator-results-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.9rem;
  margin-top: 1.5rem;
}

.result-field {
  display: grid;
  gap: 0.45rem;
}

.result-field span {
  color: #34443e;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.result-field strong {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border: 1px solid rgba(35, 47, 41, 0.34);
  background: rgba(255, 255, 255, 0.94);
  color: #34423f;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
}

.calculator-results-note {
  position: relative;
  z-index: 1;
  margin: 1.2rem auto 0;
  max-width: 32ch;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.72);
  color: #5f6c65;
  font-size: 0.76rem;
  line-height: 1.6;
  text-align: center;
}

.calculator-back-row {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  padding-bottom: 1.2rem;
}

.calculator-back-button {
  background: #1ea63d;
}

@keyframes smokeFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-16px) scale(1.12);
    opacity: 0.82;
  }
}

@media (max-width: 1080px) {
  .property-grid {
    grid-template-columns: 1fr;
  }

  .property-card-copy {
    min-height: auto;
  }

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

  .calculator-results-card {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .calculator-form-grid {
    grid-template-columns: 1fr;
  }

  .property-stage {
    min-height: 360px;
  }

  .result-field strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 640px) {
  .calculator-hero {
    padding-top: 3.2rem;
  }

  .calculator-title-block h1,
  .calculator-selector-head h2,
  .calculator-workspace-head h2,
  .calculator-results-card h3 {
    max-width: none;
    font-size: 2.15rem;
  }

  .calculator-selector {
    margin-top: 2.2rem;
  }

  .property-card {
    padding: 1.15rem 1rem 0.95rem;
  }

  .property-card-illustration {
    height: 180px;
  }

  .calculator-workspace {
    padding: 1.25rem 0.9rem 0.2rem;
  }

  .property-stage {
    min-height: 310px;
  }

  .calculator-results-grid {
    grid-template-columns: 1fr;
  }

  .calculator-rings span:nth-child(1) {
    width: 480px;
    height: 480px;
    left: -180px;
    top: -120px;
  }

  .calculator-rings span:nth-child(2) {
    width: 640px;
    height: 640px;
    left: -120px;
    top: -160px;
  }

  .calculator-rings span:nth-child(3) {
    display: none;
  }
}

.calculator-selector,
.calculator-workspace {
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 239, 0.99)),
    #fff;
  box-shadow: 0 24px 56px rgba(28, 43, 30, 0.08);
}

.property-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(235, 245, 240, 0.95), rgba(246, 250, 243, 0.98));
}

.property-card-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 126, 73, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: #58763c;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.property-card-label,
.property-card-copy,
.property-card-meta {
  position: relative;
  z-index: 1;
}

.property-card-copy {
  min-height: auto;
  margin-top: 0.7rem;
}

.property-card-meta {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(86, 111, 93, 0.12);
  color: #51635a;
  font-size: 0.88rem;
  line-height: 1.7;
}

.property-card-illustration,
.property-card-illustration-residential,
.property-card-illustration-commercial,
.property-card-illustration-industrial {
  display: none;
}

.property-stage {
  min-height: 320px;
}

.property-stage::after {
  display: none;
}

.property-stage-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(237, 247, 250, 0.98), rgba(245, 249, 239, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}

.property-stage-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -45% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.24), transparent 64%);
  pointer-events: none;
}

.property-stage-panel::after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  top: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid rgba(95, 145, 113, 0.08);
  pointer-events: none;
}

.property-stage-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.property-stage-topline,
.property-stage-panel h3,
.property-stage-panel p,
.property-stage-points {
  position: relative;
  z-index: 1;
}

.property-stage-topline {
  display: grid;
  gap: 0.35rem;
}

.property-stage-topline span {
  color: #6b8044;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-stage-topline strong {
  color: #2a3937;
  font-size: 1rem;
  line-height: 1.45;
}

.property-stage-panel h3 {
  margin: 0;
  max-width: 22ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: #21302d;
}

.property-stage-panel p {
  max-width: 58ch;
  margin: 0;
  color: #5c6d65;
  font-size: 0.98rem;
  line-height: 1.8;
}

.property-stage-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.property-stage-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  border: 1px solid rgba(86, 111, 93, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: #30413e;
  font-size: 0.84rem;
  font-weight: 600;
}

@media (max-width: 820px) {
  .property-card {
    min-height: 210px;
  }

  .property-stage {
    min-height: 360px;
  }

  .property-stage-panel {
    padding: 1.2rem;
  }
}

@media (max-width: 640px) {
  .property-card {
    min-height: auto;
  }

  .property-stage {
    min-height: 400px;
  }

  .property-stage-panel h3 {
    max-width: none;
    font-size: 2rem;
  }
}

.calculator-page .page-shell {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03)),
    radial-gradient(circle at 12% 10%, rgba(201, 228, 122, 0.14), transparent 18%),
    radial-gradient(circle at 88% 8%, rgba(214, 240, 224, 0.92), transparent 20%),
    linear-gradient(180deg, #edf3e8 0%, #f7faf4 46%, #eef5ea 100%);
}

.calculator-rings {
  display: none;
}

.calculator-hero {
  padding: 5rem 0 1.2rem;
}

.calculator-title-block {
  position: relative;
  max-width: 980px;
  padding: 1.4rem 0 0;
}

.calculator-title-block::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(88vw, 920px);
  height: 100%;
  background:
    radial-gradient(circle at center, rgba(201, 228, 122, 0.1), transparent 58%);
  transform: translateX(-50%);
  pointer-events: none;
}

.calculator-hero-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 0.7rem;
  color: #698145;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-title-block h1 {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  line-height: 0.96;
  color: #1f2a27;
}

.calculator-title-block p:not(.calculator-hero-kicker) {
  position: relative;
  z-index: 1;
  max-width: 54ch;
  margin-top: 1.1rem;
  color: #5d6c65;
  font-size: 1.02rem;
}

.calculator-hero-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.calculator-hero-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.95rem;
  border: 1px solid rgba(93, 122, 89, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #34423d;
  font-size: 0.84rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.calculator-selector,
.calculator-workspace {
  border: 1px solid rgba(32, 44, 36, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 244, 0.96));
  box-shadow: 0 24px 56px rgba(30, 44, 33, 0.07);
}

.calculator-selector {
  max-width: 1160px;
  margin-top: 3.3rem;
  padding: 1.5rem;
}

.calculator-selector-head h2 {
  max-width: 18ch;
  margin: 0 auto;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  color: #24322f;
}

.property-grid {
  gap: 1rem;
}

.property-card {
  min-height: 220px;
  align-items: flex-start;
  padding: 1.45rem;
  border: 1px solid rgba(60, 84, 67, 0.1);
  background:
    linear-gradient(180deg, rgba(246, 250, 244, 0.96), rgba(236, 244, 235, 0.96));
  box-shadow: none;
}

.property-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #cae47a, #70b16a);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.property-card:hover,
.property-card.active {
  transform: translateY(-4px);
  border-color: rgba(109, 168, 97, 0.24);
  box-shadow: 0 18px 34px rgba(45, 67, 46, 0.08);
}

.property-card:hover::after,
.property-card.active::after {
  opacity: 1;
}

.property-card-mark {
  width: auto;
  height: auto;
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #7b9564;
  font-size: 0.88rem;
  letter-spacing: 0.2em;
}

.property-card-label {
  margin-top: 1.1rem;
  font-size: 1.5rem;
  color: #1f2b28;
}

.property-card-copy {
  margin-top: 0.5rem;
  color: #68756e;
}

.property-card-meta {
  margin-top: auto;
  width: 100%;
  padding-top: 1rem;
  color: #495850;
  font-size: 0.86rem;
}

.calculator-workspace {
  padding: 1.5rem;
}

.calculator-workspace-head {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.calculator-workspace-kicker {
  margin: 0;
  color: #698145;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-workspace-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  color: #21302c;
}

.calculator-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 1.1rem;
  margin-top: 1.6rem;
}

.calculator-form-card {
  padding: 1rem;
  border: 1px solid rgba(35, 47, 41, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 247, 0.98));
  box-shadow: none;
}

.calculator-field span {
  color: #47564e;
}

.calculator-field select,
.calculator-inline-input {
  border-color: rgba(42, 56, 48, 0.12);
}

.calculator-submit,
.calculator-back-button {
  min-height: 50px;
  padding: 0 1.35rem;
  background: linear-gradient(135deg, #1f9a39, #2ab54d);
}

.property-stage {
  min-height: 310px;
}

.property-stage-panel {
  padding: 1.7rem;
  border: 1px solid rgba(30, 44, 36, 0.08);
  background:
    linear-gradient(140deg, rgba(245, 249, 241, 0.98), rgba(233, 242, 232, 0.98));
}

.property-stage-panel::before {
  inset: auto -5% -30% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.18), transparent 64%);
}

.property-stage-panel::after {
  display: none;
}

.property-stage-topline span {
  color: #698145;
}

.property-stage-topline strong {
  color: #44554c;
}

.property-stage-panel h3 {
  max-width: 19ch;
  color: #1d2b28;
}

.property-stage-panel p {
  max-width: 60ch;
}

.property-stage-points span {
  border-color: rgba(82, 109, 92, 0.12);
  background: rgba(255, 255, 255, 0.8);
}

.calculator-results-card {
  padding: 1.35rem;
  border: 1px solid rgba(78, 122, 69, 0.12);
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(238, 247, 241, 0.98), rgba(225, 239, 225, 0.98));
  box-shadow: none;
}

.calculator-results-card::after {
  height: 0;
}

.calculator-results-card h3 {
  font-size: 1.65rem;
  color: #263430;
}

.result-field span {
  color: #47564f;
}

.result-field strong {
  min-height: 56px;
  border-color: rgba(46, 62, 52, 0.18);
  color: #283632;
  font-size: 1.28rem;
}

.calculator-results-note {
  max-width: none;
  margin-top: 1rem;
  padding: 0;
  background: none;
  color: #647168;
  font-size: 0.76rem;
}

.calculator-back-row {
  margin-top: 1.25rem;
}

@media (max-width: 1080px) {
  .calculator-selector {
    padding: 1.1rem;
  }

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

@media (max-width: 640px) {
  .calculator-hero {
    padding-top: 3.2rem;
  }

  .calculator-title-block h1 {
    max-width: none;
    font-size: 2.7rem;
  }

  .calculator-selector,
  .calculator-workspace {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .property-stage {
    min-height: 360px;
  }

  .property-stage-panel {
    padding: 1.2rem;
  }

  .property-stage-panel h3 {
    font-size: 1.9rem;
  }
}

.calculator-hero {
  padding: 4.6rem 0 1.6rem;
}

.calculator-hero-inner {
  display: grid;
  gap: 1.6rem;
}

.calculator-hero-showcase {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(34, 48, 37, 0.08);
  background:
    radial-gradient(circle at top left, rgba(201, 228, 122, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 239, 0.96));
  box-shadow: 0 28px 60px rgba(25, 38, 28, 0.08);
  overflow: hidden;
}

.calculator-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
}

.calculator-title-block {
  width: min(100%, 640px);
  margin: 0;
  padding: 1.15rem 1.15rem 1.05rem;
  text-align: left;
  background: rgba(18, 28, 22, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px rgba(12, 19, 15, 0.18);
}

.calculator-title-block::before {
  display: none;
}

.calculator-hero-kicker {
  margin-bottom: 0.7rem;
  color: #c9e47a;
}

.calculator-title-block h1 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  color: #fff;
}

.calculator-title-block p:not(.calculator-hero-kicker) {
  max-width: 48ch;
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.96rem;
}

.calculator-hero-points {
  justify-content: flex-start;
  margin-top: 1rem;
}

.calculator-hero-points span {
  min-height: 34px;
  padding: 0 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
  color: #f4f8f1;
  box-shadow: none;
}

.calculator-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.calculator-hero-stats article {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(38, 54, 43, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  animation: calculatorCardFloat 5.8s ease-in-out infinite;
}

.calculator-hero-stats article:nth-child(2) {
  animation-delay: 0.8s;
}

.calculator-hero-stats article:nth-child(3) {
  animation-delay: 1.4s;
}

.calculator-hero-stats strong {
  display: block;
  color: #22302c;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
}

.calculator-hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: #67756d;
  font-size: 0.84rem;
  line-height: 1.65;
}

.calculator-hero-banner {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(36, 52, 41, 0.08);
  overflow: hidden;
  background: #e9f1e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.calculator-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 18, 14, 0.08) 0%, rgba(12, 18, 14, 0.12) 32%, rgba(12, 18, 14, 0.58) 100%),
    linear-gradient(135deg, rgba(16, 24, 20, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  z-index: 1;
  pointer-events: none;
}

.calculator-hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-160%);
  animation: calculatorSweep 6.2s ease-in-out infinite;
  z-index: 1;
}

.calculator-hero-banner img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.calculator-hero-showcase:hover .calculator-hero-banner img {
  transform: scale(1.03);
}

.calculator-banner-chip {
  position: absolute;
  z-index: 2;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  background: rgba(18, 28, 22, 0.78);
  color: #f3f7ef;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.calculator-banner-chip-top {
  top: 1rem;
  left: 1rem;
}

.calculator-banner-chip-bottom {
  right: 1rem;
  bottom: 1rem;
  background: rgba(201, 228, 122, 0.92);
  color: #1f2a21;
}

.calculator-selector {
  position: relative;
  max-width: 1160px;
  margin-top: 0;
  padding: 1.2rem;
  overflow: hidden;
}

.calculator-selector::before {
  content: "";
  position: absolute;
  inset: auto -10% -38% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.14), transparent 68%);
  pointer-events: none;
}

.calculator-selector-head h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
}

.property-grid {
  gap: 1rem;
  margin-top: 1.3rem;
}

.property-card {
  min-height: 208px;
  border: 1px solid rgba(38, 54, 43, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(239, 246, 236, 0.92));
}

.property-card::before {
  background: linear-gradient(120deg, transparent 0%, rgba(201, 228, 122, 0.18) 48%, transparent 100%);
}

.property-card-mark {
  color: #7d9760;
}

.property-card-label {
  font-size: 1.42rem;
}

.property-card-meta {
  color: #5b6a62;
}

.calculator-workspace {
  position: relative;
  padding: 1.25rem;
  overflow: hidden;
}

.calculator-workspace::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #c9e47a 0%, #69ad68 55%, transparent 100%);
}

.calculator-workspace-head {
  gap: 0.35rem;
}

.calculator-layout {
  gap: 1rem;
}

.calculator-form-card {
  padding: 1rem;
  border: 1px solid rgba(39, 54, 44, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.calculator-field select,
.calculator-inline-input,
.result-field strong {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.calculator-field select:focus,
.calculator-inline-input:focus-within {
  border-color: rgba(70, 151, 71, 0.36);
  box-shadow: 0 0 0 4px rgba(201, 228, 122, 0.16);
}

.calculator-submit,
.calculator-back-button {
  position: relative;
  overflow: hidden;
}

.calculator-submit::after,
.calculator-back-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 46%, transparent 100%);
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}

.calculator-submit:hover::after,
.calculator-back-button:hover::after {
  transform: translateX(140%);
}

.property-stage {
  min-height: 320px;
}

.property-stage-panel {
  padding: 1.45rem;
  background:
    linear-gradient(145deg, rgba(246, 250, 244, 0.98), rgba(233, 242, 232, 0.98));
}

.property-stage-panel h3 {
  max-width: 18ch;
}

.property-stage-points span {
  min-height: 34px;
}

.calculator-results-card {
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(238, 247, 241, 0.98), rgba(229, 240, 228, 0.98));
}

.calculator-results-grid {
  gap: 0.85rem;
}

.result-field strong {
  min-height: 54px;
  font-size: 1.18rem;
  background: rgba(255, 255, 255, 0.88);
}

.result-field:hover strong {
  border-color: rgba(74, 126, 69, 0.28);
  transform: translateY(-2px);
}

.calculator-back-row {
  margin-top: 1rem;
  padding-bottom: 0.8rem;
}

@keyframes calculatorSweep {
  0%,
  100% {
    transform: translateX(-160%);
  }

  50% {
    transform: translateX(420%);
  }
}

@keyframes calculatorCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

@media (max-width: 1080px) {
  .calculator-title-block h1 {
    max-width: none;
  }

  .calculator-hero-banner img {
    min-height: 320px;
  }

  .calculator-hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .calculator-hero-showcase {
    padding: 0.95rem;
  }

  .calculator-hero-overlay {
    padding: 0.85rem;
  }

  .calculator-title-block {
    width: 100%;
    padding: 1rem 0.95rem;
  }

  .calculator-title-block h1 {
    font-size: 2.65rem;
  }

  .calculator-banner-chip {
    min-height: 34px;
    padding: 0 0.7rem;
    font-size: 0.7rem;
  }

  .calculator-hero-banner,
  .calculator-hero-banner img {
    min-height: 250px;
  }
}

.calculator-hero {
  padding-bottom: 0.8rem;
}

.calculator-hero-inner {
  position: relative;
  z-index: 2;
}

.calculator-hero .calculator-selector {
  margin-top: 1.35rem;
}

.calculator-hero-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
  padding: 0 0 1rem;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.calculator-hero-banner {
  min-height: 600px;
  border: 0;
  box-shadow: none;
  background: #142019;
}

.calculator-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.7);
  transform: scale(1.03);
}

.calculator-hero-banner::before {
  background:
    linear-gradient(180deg, rgba(8, 13, 10, 0.08) 0%, rgba(8, 13, 10, 0.22) 30%, rgba(8, 13, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 13, 10, 0.6) 0%, rgba(8, 13, 10, 0.12) 42%, rgba(8, 13, 10, 0.46) 100%),
    radial-gradient(circle at 18% 24%, rgba(201, 228, 122, 0.16), transparent 18%);
}

.calculator-hero-banner::after {
  z-index: 2;
}

.calculator-hero-overlay {
  padding: clamp(1rem, 2.8vw, 2.1rem) 0;
  z-index: 3;
}

.calculator-title-block {
  margin-left: 0;
  background: rgba(15, 22, 18, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 40px rgba(6, 10, 7, 0.18);
}

.calculator-hero-stats {
  margin-top: -3.6rem;
  position: relative;
  z-index: 3;
}

.calculator-hero-stats article {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(25, 38, 28, 0.08);
}

.calculator-banner-chip {
  z-index: 4;
}

.calculator-banner-accent {
  position: absolute;
  right: clamp(1rem, 2.8vw, 2rem);
  bottom: clamp(1rem, 2.8vw, 2rem);
  z-index: 3;
  width: min(280px, 28vw);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 40px rgba(8, 13, 10, 0.22);
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: calculatorCardFloat 6s ease-in-out infinite;
}

.calculator-banner-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  pointer-events: none;
}

.calculator-banner-accent img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
  display: block;
}

@media (max-width: 1080px) {
  .calculator-hero-banner,
  .calculator-hero-video {
    min-height: 420px;
  }

  .calculator-hero-stats {
    margin-top: 0;
  }

  .calculator-banner-accent {
    width: min(220px, 34vw);
  }
}

@media (max-width: 640px) {
  .calculator-hero-showcase {
    padding: 0 0 0.9rem;
  }

  .calculator-hero-overlay {
    padding: 0.85rem 0;
  }

  .calculator-hero-banner,
  .calculator-hero-video {
    min-height: 280px;
  }

  .calculator-banner-accent {
    display: none;
  }
}

.calculator-hero-showcase {
  width: 100%;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.calculator-hero-banner {
  width: 100%;
  min-height: 620px;
  border: 0;
  box-shadow: none;
  background: #142019;
}

.calculator-hero-video {
  min-height: 620px;
}

.calculator-hero-stats {
  margin-top: -3.6rem;
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
}

.calculator-hero-stats article {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(25, 38, 28, 0.08);
}

@media (max-width: 1080px) {
  .calculator-hero-banner,
  .calculator-hero-video {
    min-height: 420px;
  }

  .calculator-hero-stats {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .calculator-hero-showcase {
    padding: 0;
  }

  .calculator-hero-banner,
  .calculator-hero-video {
    min-height: 280px;
  }
}

.calculator-page .calculator-rings,
.calculator-page .calculator-banner-accent,
.calculator-page .calculator-banner-chip {
  display: none;
}

.calculator-page .calculator-page-main {
  color: #18211b;
}

.calculator-page .calculator-hero {
  position: relative;
  padding: 0 0 3.2rem;
  overflow: hidden;
}

.calculator-page .calculator-hero-media {
  position: relative;
  min-height: 86vh;
  margin: 0;
  background: #121915;
}

.calculator-page .calculator-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 86vh;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(0.9) brightness(0.62);
}

.calculator-page .calculator-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 12, 10, 0.22) 0%, rgba(8, 12, 10, 0.34) 38%, rgba(8, 12, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(8, 12, 10, 0.66) 0%, rgba(8, 12, 10, 0.16) 46%, rgba(8, 12, 10, 0.54) 100%),
    radial-gradient(circle at 18% 18%, rgba(201, 228, 122, 0.18), transparent 16%);
  z-index: 1;
}

.calculator-page .calculator-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.calculator-page .calculator-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.calculator-page .calculator-hero-copy,
.calculator-page .calculator-hero-sidecards {
  opacity: 0;
  transform: translateY(26px);
  animation: calculatorHeroReveal 0.9s ease forwards;
}

.calculator-page .calculator-hero-sidecards {
  animation-delay: 0.18s;
}

.calculator-page .calculator-hero-copy {
  max-width: none;
  padding: 2rem 0 7rem;
  text-align: center;
}

.calculator-page .calculator-hero-copy h1 {
  margin: 0;
  max-width: none;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 700;
}

.calculator-page .calculator-hero-tagline {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.calculator-page .calculator-selector-section {
  position: relative;
  z-index: 3;
  margin-top: -4.2rem;
  padding-bottom: 2rem;
}

.calculator-page .calculator-selector-shell,
.calculator-page .calculator-workspace,
.calculator-page .calculator-benefits-grid {
  border: 1px solid rgba(30, 42, 34, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 240, 0.98));
  box-shadow: 0 24px 56px rgba(28, 43, 30, 0.08);
}

.calculator-page .calculator-selector-shell {
  padding: 1.45rem;
}

.calculator-page .calculator-section-kicker {
  margin: 0;
  color: #6d8447;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-page .calculator-selector-head {
  display: grid;
  gap: 0.45rem;
}

.calculator-page .calculator-selector-head h2,
.calculator-page .calculator-workspace-head h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #1f2a27;
}

.calculator-page .property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.calculator-page .property-card {
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.35rem;
  border: 1px solid rgba(54, 75, 60, 0.08);
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(247, 250, 244, 0.98), rgba(238, 245, 235, 0.98));
  color: #1d2824;
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.calculator-page .property-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c9e47a, #6aae67);
  transform: scaleX(0.16);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.calculator-page .property-card:hover,
.calculator-page .property-card.active {
  transform: translateY(-6px);
  border-color: rgba(99, 158, 91, 0.2);
  box-shadow: 0 18px 34px rgba(44, 67, 45, 0.08);
}

.calculator-page .property-card:hover::before,
.calculator-page .property-card.active::before {
  transform: scaleX(1);
}

.calculator-page .property-card-mark {
  color: #7c9760;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.calculator-page .property-card-label {
  margin-top: 0.6rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.calculator-page .property-card-copy,
.calculator-page .property-card-meta {
  color: #617067;
  font-size: 0.92rem;
  line-height: 1.72;
}

.calculator-page .property-card-meta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(77, 101, 84, 0.1);
}

.calculator-page .calculator-workspace-section {
  padding: 1.2rem 0 2rem;
}

.calculator-page .calculator-workspace {
  padding: 1.45rem;
}

.calculator-page .calculator-workspace-head {
  display: grid;
  gap: 0.4rem;
  justify-items: center;
  text-align: center;
}

.calculator-page .calculator-workspace-head p:not(.calculator-section-kicker) {
  max-width: 62ch;
  margin: 0;
  color: #66746c;
  font-size: 0.98rem;
  line-height: 1.78;
}

.calculator-page .calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.15rem;
  margin-top: 1.5rem;
  align-items: stretch;
}

.calculator-page .calculator-left-column {
  display: grid;
  gap: 1rem;
}

.calculator-page .calculator-form-card,
.calculator-page .calculator-results-card,
.calculator-page .property-stage-panel,
.calculator-page .calculator-benefit-card {
  border: 1px solid rgba(32, 44, 36, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 240, 0.98));
}

.calculator-page .calculator-form-card {
  padding: 1rem;
}

.calculator-page .calculator-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.calculator-page .calculator-field {
  display: grid;
  gap: 0.45rem;
}

.calculator-page .calculator-field span {
  color: #47564f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.calculator-page .calculator-field select,
.calculator-page .calculator-inline-input {
  min-height: 56px;
  border: 1px solid rgba(40, 55, 47, 0.14);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.calculator-page .calculator-field select {
  width: 100%;
  padding: 0 1rem;
  color: #25332f;
}

.calculator-page .calculator-inline-input {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  align-items: center;
}

.calculator-page .calculator-inline-input input {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  border: 0;
  outline: 0;
  background: transparent;
  color: #25332f;
}

.calculator-page .calculator-inline-input em {
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #238f35, #2bb44e);
  color: #fff;
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 700;
}

.calculator-page .calculator-inline-input-rupee em {
  background: #fff;
  color: #5c6962;
  border-left: 1px solid rgba(40, 55, 47, 0.14);
  font-size: 1.05rem;
}

.calculator-page .calculator-field select:focus,
.calculator-page .calculator-inline-input:focus-within {
  border-color: rgba(88, 151, 81, 0.34);
  box-shadow: 0 0 0 4px rgba(201, 228, 122, 0.18);
}

.calculator-page .calculator-form-actions,
.calculator-page .calculator-back-row {
  display: flex;
  justify-content: center;
}

.calculator-page .calculator-form-actions {
  margin-top: 1rem;
}

.calculator-page .calculator-submit,
.calculator-page .calculator-back-button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 1.35rem;
  border: 0;
  background: linear-gradient(135deg, #1f9a39, #2ab54d);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
}

.calculator-page .calculator-submit::after,
.calculator-page .calculator-back-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 46%, transparent 100%);
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}

.calculator-page .calculator-submit:hover::after,
.calculator-page .calculator-back-button:hover::after {
  transform: translateX(140%);
}

.calculator-page .calculator-submit span,
.calculator-page .calculator-back-button span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  font-size: 0.9rem;
}

.calculator-page .property-stage {
  position: relative;
  min-height: 330px;
  overflow: hidden;
}

.calculator-page .property-stage-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.45rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.calculator-page .property-stage-panel::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.16), transparent 66%);
  pointer-events: none;
}

.calculator-page .property-stage-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.calculator-page .property-stage-topline,
.calculator-page .property-stage-panel h3,
.calculator-page .property-stage-panel p,
.calculator-page .property-stage-points {
  position: relative;
  z-index: 1;
}

.calculator-page .property-stage-topline {
  display: grid;
  gap: 0.35rem;
}

.calculator-page .property-stage-topline span {
  color: #6d8447;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-page .property-stage-topline strong {
  color: #46564d;
  font-size: 0.98rem;
  line-height: 1.55;
}

.calculator-page .property-stage-panel h3 {
  margin: 0;
  max-width: 18ch;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #22302c;
}

.calculator-page .property-stage-panel p {
  margin: 0;
  max-width: 58ch;
  color: #5e6d65;
  font-size: 0.98rem;
  line-height: 1.82;
}

.calculator-page .property-stage-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.calculator-page .property-stage-points span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(75, 101, 83, 0.1);
  background: rgba(255, 255, 255, 0.82);
  color: #33423d;
  font-size: 0.83rem;
  font-weight: 600;
}

.calculator-page .calculator-results-card {
  padding: 1.2rem;
  background:
    radial-gradient(circle at top right, rgba(201, 228, 122, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(239, 247, 240, 0.98), rgba(228, 240, 228, 0.98));
}

.calculator-page .calculator-results-head {
  display: grid;
  gap: 0.35rem;
}

.calculator-page .calculator-results-head h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: #24322e;
}

.calculator-page .calculator-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.calculator-page .result-field {
  display: grid;
  gap: 0.42rem;
}

.calculator-page .result-field span {
  color: #45534d;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.calculator-page .result-field strong {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border: 1px solid rgba(44, 59, 50, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: #293632;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.calculator-page .result-field:hover strong {
  border-color: rgba(74, 126, 69, 0.28);
  transform: translateY(-2px);
}

.calculator-page .calculator-results-note {
  margin: 1rem 0 0;
  color: #66746c;
  font-size: 0.76rem;
  line-height: 1.7;
}

.calculator-page .calculator-back-row {
  margin-top: 1rem;
}

.calculator-page .calculator-benefits-section {
  padding: 0 0 4rem;
}

.calculator-page .calculator-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
}

.calculator-page .calculator-benefit-card {
  padding: 1.2rem;
}

.calculator-page .calculator-benefit-card h3 {
  margin: 0.7rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.65rem;
  line-height: 1.14;
  letter-spacing: -0.04em;
  color: #21302c;
}

.calculator-page .calculator-benefit-card p:last-child {
  margin: 0.85rem 0 0;
  color: #607067;
  font-size: 0.94rem;
  line-height: 1.8;
}

@keyframes calculatorHeroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .calculator-page .calculator-hero-grid,
  .calculator-page .calculator-layout,
  .calculator-page .property-grid,
  .calculator-page .calculator-benefits-grid {
    grid-template-columns: 1fr;
  }

  .calculator-page .calculator-hero-media,
  .calculator-page .calculator-hero-video {
    min-height: 72vh;
  }

  .calculator-page .calculator-hero-copy,
  .calculator-page .calculator-hero-sidecards {
    padding-bottom: 2rem;
  }
}

@media (max-width: 820px) {
  .calculator-page .calculator-form-grid,
  .calculator-page .calculator-results-grid {
    grid-template-columns: 1fr;
  }

  .calculator-page .property-stage {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
  .calculator-page .calculator-hero-media,
  .calculator-page .calculator-hero-video {
    min-height: 560px;
  }

  .calculator-page .calculator-hero-copy {
    padding-top: 5rem;
  }

  .calculator-page .calculator-hero-copy h1 {
    max-width: none;
    font-size: 2.9rem;
  }

  .calculator-page .calculator-hero-tagline {
    font-size: 0.96rem;
  }

  .calculator-page .calculator-selector-section {
    margin-top: -2rem;
  }

  .calculator-page .calculator-selector-shell,
  .calculator-page .calculator-workspace,
  .calculator-page .calculator-benefits-grid {
    padding: 1rem;
  }

  .calculator-page .property-card,
  .calculator-page .property-stage-panel,
  .calculator-page .calculator-benefit-card {
    padding: 1rem;
  }

  .calculator-page .property-stage-panel h3,
.calculator-page .calculator-benefit-card h3 {
  max-width: none;
  font-size: 2rem;
  }
}

.board-page .page-shell,
.vision-page .page-shell,
.scheme-page .page-shell {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.04)),
    radial-gradient(circle at 18% 12%, rgba(201, 228, 122, 0.08), transparent 20%),
    linear-gradient(180deg, #eef4e8 0%, #f8fbf5 100%);
}

.board-page .site-header,
.vision-page .site-header,
.scheme-page .site-header {
  background: rgba(21, 28, 31, 0.94);
}

.board-page main,
.vision-page main,
.scheme-page main {
  color: #162019;
}

.board-hero,
.vision-hero {
  position: relative;
  min-height: 64vh;
  overflow: hidden;
  background: #172018;
}

.vision-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.56);
}

.board-hero-overlay,
.vision-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 15, 11, 0.76), rgba(9, 15, 11, 0.36)),
    radial-gradient(circle at 60% 40%, rgba(201, 228, 122, 0.1), transparent 26%);
}

.board-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 15, 11, 0.52), rgba(9, 15, 11, 0.66)),
    radial-gradient(circle at 80% 32%, rgba(201, 228, 122, 0.08), transparent 24%);
}

.board-hero-inner,
.vision-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 64vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.board-hero-copy,
.vision-hero-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.board-hero-copy h1,
.vision-hero-copy h1 {
  margin: 1rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #fff;
}

.board-hero-copy p:not(.about-section-kicker),
.vision-hero-copy p:not(.about-section-kicker) {
  margin: 1rem auto 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.board-message-section,
.board-highlights-section,
.board-vision-section,
.vision-core-section,
.vision-pillars-section {
  padding: 5rem 0;
}

.board-message-layout,
.vision-core-grid,
.board-highlights-grid,
.vision-pillars-grid {
  display: grid;
  gap: 1.2rem;
}

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

.board-message-card,
.vision-core-card,
.board-highlight,
.vision-pillar,
.vision-benefit-card {
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 236, 0.99)),
    #fff;
  box-shadow: 0 24px 56px rgba(22, 34, 26, 0.08);
}

.board-message-card {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 1.2rem;
  padding: 1.2rem;
  align-items: stretch;
}

.board-portrait {
  min-height: 100%;
  overflow: hidden;
}

.board-portrait img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.board-message-copy {
  padding: 0.4rem 0;
}

.board-message-copy h2,
.vision-core-card h2,
.vision-pillars-head h2 {
  margin: 0.9rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: #18241d;
}

.board-role {
  margin: 0.7rem 0 0;
  color: #698145;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.board-message-copy p:not(.about-section-kicker):not(.board-role),
.vision-core-card p:not(.about-section-kicker),
.board-highlight p,
.vision-pillar p {
  margin: 0.9rem 0 0;
  color: #5f6d66;
  font-size: 0.98rem;
  line-height: 1.82;
}

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

.board-highlight,
.vision-pillar,
.vision-core-card,
.vision-pillars-head {
  padding: 1.35rem;
}

.board-highlight strong,
.vision-pillar h3 {
  display: block;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #1f2c26;
}

.board-message-copy,
.vision-core-card,
.board-highlight,
.vision-pillar,
.vision-pillars-head {
  word-spacing: 0.02em;
}

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

.vision-pillars-head {
  margin-bottom: 1.2rem;
}

.vision-pillars-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1080px) {
  .board-message-card,
  .vision-core-grid,
  .board-highlights-grid,
  .vision-pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .board-hero,
  .vision-hero {
    min-height: 58vh;
  }

  .board-hero-inner,
  .vision-hero-inner {
    min-height: 58vh;
    padding: 3rem 0;
  }

  .board-message-section,
  .board-highlights-section,
  .board-vision-section,
  .vision-core-section,
  .vision-pillars-section {
    padding: 4rem 0;
  }

  .board-message-card,
  .vision-core-card,
  .board-highlight,
  .vision-pillar,
  .vision-pillars-head {
    padding: 1rem;
  }

  .board-message-copy h2,
  .vision-core-card h2,
  .vision-pillars-head h2 {
    font-size: 2.15rem;
  }
}

.scheme-hero {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, #162019 0%, #0e1511 100%);
}

.scheme-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.scheme-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 15, 11, 0.3), rgba(9, 15, 11, 0.74)),
    radial-gradient(circle at 20% 18%, rgba(201, 228, 122, 0.18), transparent 18%),
    radial-gradient(circle at 70% 30%, rgba(201, 228, 122, 0.1), transparent 26%);
}

.scheme-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.5rem 0;
}

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

.scheme-hero-copy h1 {
  margin: 1rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #fff;
}

.scheme-hero-copy p:not(.about-section-kicker) {
  max-width: 64ch;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.8;
}

.scheme-hero-actions,
.scheme-hero-badges,
.scheme-list,
.scheme-cta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.scheme-hero-actions {
  justify-content: center;
  margin-top: 1.5rem;
}

.scheme-hero-badges {
  justify-content: center;
  margin-top: 1.5rem;
}

.scheme-hero-badges span,
.scheme-list span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid rgba(201, 228, 122, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.scheme-highlights-section {
  position: relative;
  z-index: 2;
  margin-top: -3rem;
}

.scheme-intro-section,
.scheme-benefits-section,
.scheme-tables-section,
.scheme-process-section,
.scheme-details-section,
.scheme-why-now-section,
.scheme-faq-section,
.scheme-cta-section {
  padding: 5rem 0;
}

.scheme-intro-layout,
.scheme-highlights-grid,
.scheme-table-grid,
.scheme-details-grid,
.scheme-benefits-grid,
.scheme-process-grid,
.scheme-faq-grid {
  display: grid;
  gap: 1.2rem;
}

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

.scheme-highlights-grid,
.scheme-benefits-grid,
.scheme-details-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

.scheme-card,
.scheme-highlight,
.scheme-benefit,
.scheme-table-card,
.scheme-step,
.scheme-faq-item,
.scheme-cta-card {
  border: 1px solid rgba(24, 33, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(243, 248, 236, 0.99)),
    #fff;
  box-shadow: 0 24px 56px rgba(22, 34, 26, 0.08);
}

.scheme-card,
.scheme-highlight,
.scheme-benefit,
.scheme-table-card,
.scheme-step,
.scheme-faq-item,
.scheme-cta-card {
  padding: 1.35rem;
}

.scheme-card h2,
.scheme-process-head h2,
.scheme-cta-card h2 {
  margin: 0.9rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #18241d;
}

.scheme-card p:not(.about-section-kicker),
.scheme-benefit p,
.scheme-step p,
.scheme-faq-item p,
.scheme-cta-card p:not(.about-section-kicker) {
  margin: 0.9rem 0 0;
  color: #5f6d66;
  font-size: 0.98rem;
  line-height: 1.82;
}

.scheme-list {
  margin-top: 1rem;
}

.scheme-list span,
.scheme-cta-list span {
  background: rgba(201, 228, 122, 0.12);
  color: #253227;
  border-color: rgba(96, 127, 74, 0.14);
}

.scheme-benefit strong,
.scheme-highlight strong,
.scheme-step strong,
.scheme-faq-item h3 {
  display: block;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #1f2c26;
}

.scheme-highlight {
  border: 1px solid rgba(201, 228, 122, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 236, 0.96)),
    #fff;
  box-shadow: 0 18px 38px rgba(22, 34, 26, 0.08);
  padding: 1.2rem;
}

.scheme-highlight strong {
  font-size: 1.16rem;
}

.scheme-highlight p {
  margin: 0.7rem 0 0;
  color: #607066;
  font-size: 0.93rem;
  line-height: 1.72;
}

.scheme-process-head {
  margin-bottom: 1.2rem;
}

.scheme-step strong {
  color: #6d8447;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scheme-step h3 {
  margin: 0.6rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #1f2c26;
}

.scheme-step {
  position: relative;
  overflow: hidden;
}

.scheme-step::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 7rem;
  height: 7rem;
  background: radial-gradient(circle, rgba(201, 228, 122, 0.16), transparent 70%);
  pointer-events: none;
}

.scheme-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
}

.scheme-table th,
.scheme-table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(24, 33, 27, 0.08);
  color: #4f5d56;
  font-size: 0.92rem;
  line-height: 1.55;
}

.scheme-table th {
  color: #1f2c26;
  font-weight: 700;
}

.scheme-cta-card {
  text-align: center;
}

.scheme-cta-list {
  justify-content: center;
  margin-top: 1rem;
}

@media (max-width: 1080px) {
  .scheme-highlights-grid,
  .scheme-intro-layout,
  .scheme-benefits-grid,
  .scheme-table-grid,
  .scheme-process-grid,
  .scheme-details-grid,
  .scheme-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .scheme-hero {
    min-height: 60vh;
  }

  .scheme-highlights-section {
    margin-top: -2rem;
  }

  .scheme-hero-inner {
    min-height: 60vh;
    padding: 3rem 0;
  }

  .scheme-intro-section,
  .scheme-benefits-section,
  .scheme-tables-section,
  .scheme-process-section,
  .scheme-details-section,
  .scheme-why-now-section,
  .scheme-faq-section,
  .scheme-cta-section {
    padding: 4rem 0;
  }

  .scheme-card,
  .scheme-highlight,
  .scheme-benefit,
  .scheme-table-card,
  .scheme-step,
  .scheme-faq-item,
  .scheme-cta-card {
    padding: 1rem;
  }

  .scheme-card h2,
  .scheme-process-head h2,
  .scheme-cta-card h2 {
    font-size: 2.15rem;
  }
}
