:root {
  --green-950: #002d20;
  --green-900: #003f2b;
  --green-800: #005935;
  --green-700: #08734a;
  --green-600: #0b8c59;
  --green-500: #10a96b;
  --green-100: #dff5e9;
  --green-50: #effaf4;
  --gold-500: #e8bb00;
  --gold-400: #f4c82d;
  --orange-500: #da9500;
  --ink: #17231e;
  --ink-soft: #46554e;
  --gray-500: #7a8680;
  --gray-300: #cbd3cf;
  --gray-200: #dde3e0;
  --gray-100: #ecedef;
  --gray-50: #f7f9f8;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(0, 45, 32, 0.08);
  --shadow-lg: 0 30px 80px rgba(0, 45, 32, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 92px;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 45, 32, 0.08);
  box-shadow: 0 8px 30px rgba(0, 45, 32, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  position: relative;
  z-index: 2;
  width: 170px;
}

.brand img {
  width: 100%;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-navigation a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-header.is-scrolled .main-navigation a {
  color: var(--ink-soft);
}

.main-navigation a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-navigation a:hover,
.site-header.is-scrolled .main-navigation a:hover {
  color: var(--gold-500);
}

.main-navigation a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-navigation .nav-cta {
  padding: 11px 18px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 8px;
}

.site-header.is-scrolled .main-navigation .nav-cta {
  color: var(--green-950);
}

.main-navigation .nav-cta:hover {
  color: var(--green-950);
  background: var(--gold-400);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-header.is-scrolled .menu-button {
  color: var(--green-900);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 920px;
  padding: 170px 0 58px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 32%, rgba(16, 169, 107, 0.2), transparent 25%),
    linear-gradient(135deg, var(--green-950), var(--green-900) 52%, #004b32);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 1;
  height: 72px;
  content: "";
  background: var(--white);
  clip-path: polygon(0 82%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: 10%;
  right: -8%;
  width: 520px;
  height: 520px;
  background: rgba(232, 187, 0, 0.08);
}

.hero-glow-two {
  bottom: 8%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(16, 169, 107, 0.11);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 76px;
  align-items: center;
}

.hero-content,
.hero-visual,
.monitor-copy,
.monitor-dashboard,
.elite-copy,
.elite-showcase,
.about-copy,
.about-visual,
.contact-copy,
.contact-details {
  min-width: 0;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}

.eyebrow.light {
  color: var(--gold-400);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.1rem, 5.5vw, 5.65rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
}

.button-gold {
  color: var(--green-950);
  background: var(--gold-500);
  box-shadow: 0 12px 30px rgba(232, 187, 0, 0.16);
}

.button-gold:hover {
  background: var(--gold-400);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-brand-mark {
  position: absolute;
  top: -90px;
  right: -40px;
  width: 450px;
  opacity: 0.09;
  filter: saturate(0);
  transform: rotate(-4deg);
}

.operation-card {
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 2;
  width: min(100%, 480px);
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 24px;
  box-shadow: 0 35px 90px rgba(0, 20, 13, 0.35);
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
  backdrop-filter: blur(18px);
}

.operation-card-header,
.pressure-panel,
.operation-metrics {
  display: flex;
  align-items: center;
}

.operation-card-header {
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.operation-card-header > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.operation-card-header strong {
  font-size: 1.2rem;
}

.live-indicator {
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.live-indicator i,
.dashboard-online i {
  width: 7px;
  height: 7px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(16, 169, 107, 0.12);
}

.equipment-tag {
  padding: 8px 11px;
  color: var(--green-800);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
}

.pressure-panel {
  gap: 26px;
  padding: 30px 0;
}

.gauge {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 144px;
  flex: 0 0 144px;
  background:
    radial-gradient(circle at center, white 57%, transparent 58%),
    conic-gradient(var(--green-500) 0 74%, var(--gray-100) 74% 100%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 89, 53, 0.06);
}

.gauge::after {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px dashed rgba(0, 89, 53, 0.16);
  border-radius: 50%;
}

.gauge-value {
  z-index: 1;
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.gauge small {
  z-index: 1;
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pressure-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pressure-copy > span {
  color: var(--gray-500);
  font-size: 0.73rem;
  font-weight: 700;
}

.pressure-copy strong {
  color: var(--green-700);
  font-size: 1.7rem;
}

.pressure-copy small {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.operation-metrics {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-200);
}

.operation-metrics > div {
  display: flex;
  flex-direction: column;
}

.operation-metrics span {
  color: var(--gray-500);
  font-size: 0.67rem;
}

.operation-metrics strong {
  margin-top: 2px;
  font-size: 0.87rem;
}

.operation-metrics .status-ok {
  color: var(--green-600);
}

.floating-note {
  position: absolute;
  right: 320px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 12px;
  align-items: center;
  width: 240px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}

.note-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: var(--green-800);
  background: var(--gold-500);
  border-radius: 10px;
}

.note-icon svg {
  width: 18px;
  height: 18px;
}

.floating-note > span:last-child {
  display: flex;
  flex-direction: column;
}

.floating-note small {
  color: var(--gray-500);
  font-size: 0.62rem;
}

.floating-note strong {
  font-size: 0.78rem;
}

.hero-pillars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-pillars > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-pillars > div:first-child {
  padding-left: 0;
}

.hero-pillars > div:last-child {
  border-right: 0;
}

.hero-pillars span {
  grid-row: 1 / 3;
  color: var(--gold-500);
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-pillars strong {
  font-size: 0.88rem;
}

.hero-pillars small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
}

.section {
  padding: 120px 0;
}

.solutions {
  background:
    radial-gradient(circle at 0 60%, rgba(16, 169, 107, 0.05), transparent 28%),
    var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading h2,
.center-heading h2,
.monitor-copy h2,
.about-copy h2,
.contact-copy h2,
.elite-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-heading > p,
.center-heading > p,
.about-copy > p {
  margin: 0;
  color: var(--ink-soft);
}

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

.solution-card {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  min-height: 315px;
  padding: 36px;
  overflow: hidden;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.solution-card:hover {
  border-color: rgba(0, 89, 53, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.solution-card-featured {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent),
    var(--green-900);
  border-color: var(--green-900);
}

.solution-card-featured::after {
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 230px;
  height: 230px;
  content: "";
  border: 45px solid rgba(232, 187, 0, 0.1);
  border-radius: 50%;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(0, 45, 32, 0.08);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.solution-card-featured .card-number {
  color: rgba(255, 255, 255, 0.08);
}

.solution-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 16px;
}

.solution-card-featured .solution-icon {
  color: var(--green-950);
  background: var(--gold-500);
}

.solution-icon svg {
  width: 30px;
  height: 30px;
}

.solution-card h3 {
  margin: 4px 0 12px;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.solution-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.solution-card-featured p {
  color: rgba(255, 255, 255, 0.67);
}

.solution-card .card-kicker {
  color: var(--green-600);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card-featured .card-kicker {
  color: var(--gold-400);
}

.solution-card > a {
  z-index: 1;
  display: inline-flex;
  grid-column: 2;
  gap: 6px;
  align-items: center;
  align-self: end;
  width: max-content;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
}

.solution-card-featured > a {
  color: var(--gold-400);
}

.solution-card > a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.solution-card > a:hover svg {
  transform: translateX(4px);
}

.impact-section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 24%, rgba(232, 187, 0, 0.13), transparent 26%),
    linear-gradient(125deg, #111a16, var(--green-950));
}

.impact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent, black 48%, transparent);
}

.impact-section .container {
  position: relative;
}

.impact-heading {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 48px;
}

.impact-heading .eyebrow {
  margin-bottom: 8px;
}

.impact-heading h2 {
  max-width: 790px;
  margin: 0;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

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

.impact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.impact-card-stop {
  background:
    radial-gradient(circle at 92% 8%, rgba(218, 149, 0, 0.15), transparent 26%),
    rgba(255, 255, 255, 0.045);
}

.impact-card-gain {
  color: var(--green-950);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.42), transparent 24%),
    var(--gold-500);
  border-color: var(--gold-500);
}

.impact-card-top {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.impact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 11px;
}

.impact-card-gain .impact-icon {
  color: var(--white);
  background: var(--green-900);
}

.impact-icon svg {
  width: 22px;
  height: 22px;
}

.impact-label {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.impact-card-stop .impact-label {
  color: var(--gold-400);
}

.impact-card h3 {
  max-width: 510px;
  margin: 0 0 20px;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.impact-card > p {
  max-width: 530px;
  margin: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.91rem;
}

.impact-card-gain > p {
  color: rgba(0, 45, 32, 0.72);
}

.impact-card ul {
  display: grid;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.impact-card li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.impact-card li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  content: "";
  background: var(--orange-500);
  border-radius: 50%;
}

.impact-question {
  display: block;
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.86rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.impact-card-gain .impact-question {
  border-color: rgba(0, 45, 32, 0.17);
}

.impact-gain-number {
  position: absolute;
  right: 34px;
  bottom: 82px;
  color: rgba(0, 63, 43, 0.11);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 9rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.impact-gain-number span,
.impact-gain-number small {
  font-size: 0.42em;
  letter-spacing: -0.02em;
}

.impact-cta {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.impact-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.86rem;
}

.impact-cta .button {
  flex: 0 0 auto;
}

.impact-disclaimer {
  margin: 14px 4px 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

.monitor-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 45%, rgba(16, 169, 107, 0.16), transparent 35%),
    var(--green-950);
}

.monitor-lines {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(30deg, transparent 48%, white 49%, white 50%, transparent 51%),
    linear-gradient(-30deg, transparent 48%, white 49%, white 50%, transparent 51%);
  background-size: 100px 100px;
}

.monitor-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: center;
}

.monitor-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.monitor-copy h2 {
  margin-bottom: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.check-list li > span {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 2px;
  place-items: center;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 50%;
}

.check-list svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--gold-400);
  font-size: 0.85rem;
  font-weight: 800;
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.monitor-dashboard {
  overflow: hidden;
  color: var(--ink);
  background: var(--gray-50);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 15, 10, 0.42);
}

.dashboard-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  color: var(--gray-500);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.66rem;
  font-weight: 700;
}

.dashboard-topbar > div {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 8px;
  height: 8px;
  background: var(--gray-200);
  border-radius: 50%;
}

.window-dot:first-child {
  background: #f19586;
}

.window-dot:nth-child(2) {
  background: #f1cf6c;
}

.window-dot:nth-child(3) {
  background: #83d2a7;
}

.dashboard-online {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-self: end;
  color: var(--green-700);
}

.dashboard-body {
  padding: 26px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dashboard-title > div {
  display: flex;
  flex-direction: column;
}

.dashboard-title small,
.dashboard-title > span {
  color: var(--gray-500);
  font-size: 0.65rem;
}

.dashboard-title strong {
  font-size: 1.1rem;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dashboard-kpis > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.kpi-icon {
  display: grid;
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
}

.kpi-icon svg {
  width: 15px;
  height: 15px;
}

.kpi-icon.green {
  color: var(--green-700);
  background: var(--green-100);
}

.kpi-icon.gold {
  color: #8a6200;
  background: #fff2b8;
}

.kpi-icon.gray {
  color: var(--ink-soft);
  background: var(--gray-100);
}

.dashboard-kpis small {
  overflow: hidden;
  color: var(--gray-500);
  font-size: 0.58rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-kpis strong {
  margin: 2px 0;
  font-size: 0.94rem;
}

.dashboard-kpis em {
  color: var(--green-600);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
}

.chart-card {
  margin-top: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
}

.chart-header {
  display: flex;
  justify-content: space-between;
}

.chart-header > div {
  display: flex;
  flex-direction: column;
}

.chart-header small,
.chart-header > span {
  color: var(--gray-500);
  font-size: 0.58rem;
}

.chart-header strong {
  font-size: 0.8rem;
}

.line-chart {
  width: 100%;
  height: auto;
  margin: 8px 0 0;
}

.chart-grid path {
  stroke: var(--gray-200);
  stroke-width: 1;
}

.chart-area {
  fill: url("#chart-fill");
  stroke: none;
}

.chart-line {
  fill: none;
  stroke: var(--green-500);
  stroke-width: 4;
}

.line-chart circle {
  fill: var(--white);
  stroke: var(--green-500);
  stroke-width: 4;
}

.chart-legend {
  display: flex;
  gap: 18px;
  color: var(--gray-500);
  font-size: 0.58rem;
}

.chart-legend span {
  display: flex;
  gap: 5px;
  align-items: center;
}

.chart-legend i {
  width: 8px;
  height: 8px;
  border-radius: 2px;
}

.legend-green {
  background: var(--green-500);
}

.legend-gold {
  background: var(--gold-500);
}

.legend-gray {
  background: var(--gray-300);
}

.process-section {
  overflow: hidden;
  background: var(--gray-50);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto 68px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading > p {
  max-width: 620px;
  margin: 20px auto 0;
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.process-step {
  position: relative;
  min-height: 240px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--gray-300);
  font-size: 0.7rem;
  font-weight: 900;
}

.step-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--green-800);
  background: var(--green-100);
  border-radius: 14px;
}

.step-icon svg {
  width: 24px;
  height: 24px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.process-arrow {
  color: var(--gold-500);
}

.process-arrow svg {
  width: 26px;
  stroke-width: 2.2;
}

.elite-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 40%, rgba(218, 149, 0, 0.16), transparent 27%),
    linear-gradient(135deg, #171510, #241d12);
}

.elite-texture {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(115deg, transparent 45%, rgba(255, 255, 255, 0.18) 46%, transparent 47%),
    radial-gradient(circle, rgba(255, 255, 255, 0.32) 1px, transparent 1px);
  background-size:
    170px 170px,
    17px 17px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.elite-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.elite-brand {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
}

.elite-brand img {
  width: 68px;
  height: 92px;
  object-fit: contain;
}

.elite-brand > div {
  display: flex;
  flex-direction: column;
}

.elite-brand p {
  margin: 0;
  color: var(--gold-400);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.elite-brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.elite-copy h2 {
  color: #f5f0e7;
}

.elite-lead {
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.65);
}

.elite-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.elite-features > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
}

.elite-features span {
  color: var(--gold-400);
  font-size: 0.62rem;
  font-weight: 900;
}

.elite-features p {
  display: flex;
  flex-direction: column;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  line-height: 1.45;
}

.elite-features strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.77rem;
}

.client-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
}

.client-note > span {
  display: grid;
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
  place-items: center;
  color: #171510;
  background: var(--gold-500);
  border-radius: 50%;
}

.client-note svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.6;
}

.elite-showcase {
  position: relative;
  min-height: 660px;
}

.report-frame {
  position: absolute;
  display: block;
  padding: 0;
  overflow: hidden;
  background: #f5faf7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42);
  font: inherit;
  text-align: left;
  cursor: zoom-in;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.report-frame:hover {
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.52);
}

.report-main {
  top: 0;
  right: 0;
  z-index: 2;
  width: 66%;
  transform: rotate(2deg);
}

.report-main:hover {
  transform: rotate(1deg) translateY(-5px);
}

.report-secondary {
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 61%;
  transform: rotate(-4deg);
}

.report-secondary:hover {
  transform: rotate(-2deg) translateY(-5px);
}

.frame-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 34px;
  padding: 0 12px;
  color: #64746c;
  background: var(--white);
  border-bottom: 1px solid #dce6e1;
  font-size: 0.55rem;
}

.frame-bar > span {
  display: flex;
  gap: 4px;
}

.frame-bar i {
  width: 6px;
  height: 6px;
  background: #d9dfdc;
  border-radius: 50%;
}

.report-frame img {
  width: 100%;
}

.report-main img {
  aspect-ratio: 0.73;
  object-fit: cover;
  object-position: top;
}

.report-secondary img {
  aspect-ratio: 1.18;
  object-fit: cover;
  object-position: top;
}

.elite-stat {
  position: absolute;
  right: -12px;
  bottom: 78px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  width: 230px;
  padding: 18px;
  color: #1f1a10;
  background: var(--gold-500);
  border-radius: 11px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.elite-stat strong {
  font-size: 0.8rem;
}

.elite-stat span {
  margin-top: 4px;
  font-size: 0.65rem;
  line-height: 1.45;
}

.platform-details {
  background:
    radial-gradient(circle at 95% 10%, rgba(16, 169, 107, 0.07), transparent 24%),
    var(--gray-50);
}

.detail-showcase {
  display: grid;
  gap: 32px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 0;
  min-height: 610px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.detail-card-reverse {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
}

.detail-card-reverse .detail-preview {
  grid-column: 2;
  grid-row: 1;
}

.detail-card-reverse .detail-copy {
  grid-column: 1;
  grid-row: 1;
}

.detail-preview {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 610px;
  padding: 0;
  overflow: hidden;
  background: #e9f7ef;
  border: 0;
  cursor: zoom-in;
}

.detail-preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 45, 32, 0.5), transparent 32%);
  opacity: 0.68;
  transition: opacity 0.25s ease;
}

.detail-preview:hover::after {
  opacity: 0.9;
}

.detail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.45s ease;
}

.detail-preview-report img {
  object-position: center 9%;
}

.detail-preview-directory img {
  object-position: center 6%;
}

.detail-preview:hover img {
  transform: scale(1.025);
}

.preview-action {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 11px 15px;
  color: var(--green-950);
  background: var(--gold-500);
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.76rem;
  font-weight: 900;
}

.preview-action svg {
  width: 18px;
  height: 18px;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 52px;
}

.detail-kicker {
  margin: 0 0 12px;
  color: var(--green-700);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-copy h3 {
  margin: 0 0 20px;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.detail-copy > p:not(.detail-kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.detail-points {
  display: grid;
  gap: 10px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
}

.detail-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.detail-points li::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-top: 7px;
  content: "";
  background: var(--gold-500);
  border-radius: 50%;
}

.detail-button {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 0;
  color: var(--green-700);
  background: transparent;
  border: 0;
  border-bottom: 2px solid var(--gold-500);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 900;
  cursor: pointer;
}

.detail-button svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s ease;
}

.detail-button:hover svg {
  transform: translateX(4px);
}

.image-viewer[hidden] {
  display: none !important;
}

body.viewer-open {
  overflow: hidden;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 11, 8, 0.88);
  backdrop-filter: blur(9px);
}

.image-viewer-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(96vw, 1540px);
  height: min(94vh, 980px);
  overflow: hidden;
  background: #111a16;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.56);
}

.image-viewer-header,
.image-viewer-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-viewer-header {
  min-height: 68px;
  padding: 12px 18px 12px 24px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.image-viewer-header > div {
  display: flex;
  flex-direction: column;
}

.image-viewer-header span {
  color: var(--gold-400);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.image-viewer-header strong {
  font-size: 0.92rem;
}

.image-viewer-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
}

.image-viewer-close:hover {
  color: var(--green-950);
  background: var(--gold-500);
}

.image-viewer-close svg {
  width: 20px;
  height: 20px;
}

.image-viewer-toolbar {
  min-height: 52px;
  padding: 8px 24px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.035);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zoom-controls {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
}

.zoom-controls button,
.zoom-controls span {
  display: grid;
  min-width: 42px;
  height: 34px;
  place-items: center;
}

.zoom-controls button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  font-size: 1.25rem;
  cursor: pointer;
}

.zoom-controls button:hover {
  color: var(--green-950);
  background: var(--gold-500);
}

.zoom-controls span {
  min-width: 64px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  font-weight: 800;
}

.image-viewer-toolbar > a {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
}

.image-viewer-toolbar > a svg {
  width: 16px;
  height: 16px;
}

.image-viewer-canvas {
  overflow: auto;
  padding: 28px;
  text-align: center;
  background:
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.025) 25%, transparent 25%),
    #0b120f;
  background-position:
    0 0,
    14px 14px;
  background-size: 28px 28px;
}

.image-viewer-canvas img {
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  transition: width 0.2s ease;
}

.about-section {
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(0, 63, 43, 0.82), rgba(0, 45, 32, 0.98)),
    var(--green-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-visual::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 330px;
  height: 330px;
  content: "";
  border: 55px solid rgba(232, 187, 0, 0.1);
  border-radius: 50%;
}

.about-symbol {
  position: absolute;
  top: 40px;
  left: -38px;
  width: 470px;
  opacity: 0.16;
  filter: saturate(0) brightness(3);
  transform: rotate(-4deg);
}

.about-quote {
  position: absolute;
  right: 42px;
  bottom: 46px;
  left: 42px;
}

.about-quote > span {
  color: var(--gold-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-quote blockquote {
  margin: 12px 0 0;
  color: var(--white);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.35;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy > p + p {
  margin-top: 16px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.about-values span {
  padding: 8px 13px;
  color: var(--green-800);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.contact-section {
  padding: 20px 0 100px;
  background:
    linear-gradient(to bottom, var(--white) 0 25%, var(--gray-50) 25% 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 76px;
  padding: 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(232, 187, 0, 0.12), transparent 22%),
    var(--green-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-copy h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
}

.contact-copy > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.66);
}

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

.contact-details {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0 0 0 48px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  font-style: normal;
}

.contact-details > div {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
}

.contact-icon svg {
  width: 19px;
  height: 19px;
}

.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.77rem;
  line-height: 1.65;
}

.contact-details strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 0.78rem;
}

.contact-details a:hover {
  color: var(--gold-400);
}

.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: #0d1712;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1fr;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 52px;
}

.footer-brand img {
  width: 220px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 0.74rem;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.66rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

@media (max-width: 1080px) {
  .hero-layout,
  .monitor-layout,
  .elite-layout {
    gap: 44px;
  }

  .main-navigation {
    gap: 22px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.8vw, 4.8rem);
  }

  .floating-note {
    right: 245px;
  }

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

  .process-arrow {
    display: none;
  }

  .about-layout {
    gap: 58px;
  }

  .contact-card {
    gap: 48px;
    padding: 50px;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 80px;
  }

  .brand {
    width: 145px;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: block;
  }

  .main-navigation {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    justify-content: center;
    padding: 82px 28px 30px;
    visibility: hidden;
    background: rgba(0, 45, 32, 0.98);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .main-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .main-navigation a,
  .site-header.is-scrolled .main-navigation a {
    padding: 12px;
    color: var(--white);
    font-size: 1.15rem;
    text-align: center;
  }

  .main-navigation .nav-cta,
  .site-header.is-scrolled .main-navigation .nav-cta {
    margin-top: 10px;
    color: var(--green-950);
  }

  .site-header:has(.main-navigation.is-open) .brand img,
  .site-header:has(.main-navigation.is-open).is-scrolled .brand img {
    filter: brightness(0) invert(1);
  }

  .site-header:has(.main-navigation.is-open) .menu-button,
  .site-header:has(.main-navigation.is-open).is-scrolled .menu-button {
    color: var(--white);
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-layout,
  .monitor-layout,
  .elite-layout,
  .about-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .impact-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .hero-visual {
    width: min(100%, 600px);
    min-height: 480px;
    margin: 0 auto;
  }

  .hero-pillars {
    margin-top: 32px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .monitor-copy {
    max-width: 690px;
  }

  .monitor-dashboard {
    width: min(100%, 720px);
    margin: 0 auto;
  }

  .elite-copy {
    max-width: 740px;
  }

  .elite-showcase {
    width: min(100%, 720px);
    min-height: 630px;
    margin: 0 auto;
  }

  .detail-card,
  .detail-card-reverse {
    grid-template-columns: 1fr;
  }

  .detail-card-reverse .detail-preview,
  .detail-card-reverse .detail-copy {
    grid-column: 1;
    grid-row: auto;
  }

  .detail-preview {
    min-height: 520px;
  }

  .about-visual {
    width: min(100%, 650px);
  }

  .contact-details {
    padding: 40px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }
}

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

  .hero {
    padding: 125px 0 70px;
  }

  .hero::after {
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(2.3rem, 10.5vw, 4rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
  }

  .operation-card {
    top: 58px;
    padding: 20px;
    transform: none;
  }

  .pressure-panel {
    gap: 18px;
  }

  .gauge {
    width: 116px;
    height: 116px;
    flex-basis: 116px;
  }

  .gauge-value {
    font-size: 1.9rem;
  }

  .pressure-copy strong {
    font-size: 1.35rem;
  }

  .floating-note {
    right: auto;
    bottom: 0;
    left: 8px;
    width: 220px;
  }

  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-pillars > div,
  .hero-pillars > div:first-child {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-pillars > div:last-child {
    border-bottom: 0;
  }

  .section,
  .impact-section,
  .monitor-section,
  .elite-section {
    padding: 88px 0;
  }

  .impact-heading {
    margin-bottom: 34px;
  }

  .impact-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

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

  .impact-card {
    min-height: 470px;
    padding: 28px 24px;
  }

  .impact-card h3 {
    font-size: 1.75rem;
  }

  .impact-gain-number {
    right: 22px;
    bottom: 78px;
    font-size: 7rem;
  }

  .impact-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .center-heading h2,
  .monitor-copy h2,
  .about-copy h2,
  .contact-copy h2,
  .elite-copy h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .solution-grid,
  .elite-features,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .solution-card {
    grid-template-columns: 56px 1fr;
    min-height: 0;
    padding: 26px 22px;
  }

  .solution-icon {
    width: 50px;
    height: 50px;
  }

  .solution-icon svg {
    width: 24px;
    height: 24px;
  }

  .solution-card > a {
    margin-top: 10px;
  }

  .dashboard-body {
    padding: 18px;
  }

  .dashboard-title > span {
    display: none;
  }

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-kpis > div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
  }

  .kpi-icon {
    grid-row: 1 / 4;
    margin: 0;
  }

  .chart-header > span {
    display: none;
  }

  .chart-legend {
    flex-wrap: wrap;
  }

  .process-flow {
    gap: 12px;
  }

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

  .elite-brand img {
    width: 58px;
    height: 78px;
  }

  .elite-showcase {
    min-height: 510px;
  }

  .detail-card {
    min-height: 0;
  }

  .detail-preview {
    min-height: 430px;
  }

  .detail-copy {
    padding: 38px 28px;
  }

  .detail-copy h3 {
    font-size: 2.25rem;
  }

  .image-viewer {
    padding: 0;
  }

  .image-viewer-panel {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .image-viewer-header {
    padding-left: 16px;
  }

  .image-viewer-toolbar {
    padding: 8px 14px;
  }

  .image-viewer-toolbar > a {
    font-size: 0;
  }

  .image-viewer-toolbar > a::before {
    content: "Original";
    font-size: 0.72rem;
  }

  .image-viewer-canvas {
    padding: 14px;
  }

  .report-main {
    width: 78%;
  }

  .report-secondary {
    width: 72%;
  }

  .elite-stat {
    right: 0;
    bottom: 38px;
    width: 200px;
  }

  .about-visual {
    min-height: 430px;
  }

  .about-symbol {
    width: 390px;
  }

  .about-quote {
    right: 28px;
    bottom: 34px;
    left: 28px;
  }

  .about-quote blockquote {
    font-size: 1.28rem;
  }

  .contact-section {
    padding-bottom: 70px;
  }

  .contact-card {
    gap: 20px;
    width: min(calc(100% - 24px), var(--container));
    padding: 38px 24px;
    border-radius: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    padding: 18px 0;
  }
}

@media (max-width: 420px) {
  .operation-card {
    padding: 16px;
  }

  .operation-card-header strong {
    font-size: 1rem;
  }

  .pressure-panel {
    gap: 12px;
  }

  .gauge {
    width: 100px;
    height: 100px;
    flex-basis: 100px;
  }

  .pressure-copy small {
    display: none;
  }

  .operation-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .operation-metrics > div:last-child {
    display: none;
  }

  .floating-note {
    left: 0;
  }

  .solution-card {
    display: block;
  }

  .solution-icon {
    margin-bottom: 18px;
  }

  .solution-card > a {
    display: flex;
    margin-top: 20px;
  }

  .elite-showcase {
    min-height: 430px;
  }

  .detail-preview {
    min-height: 360px;
  }

  .preview-action {
    right: 14px;
    bottom: 14px;
  }

  .elite-stat {
    bottom: 18px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
