:root {
  --green: #1f7b5e;
  --green-dark: #0d4d3a;
  --green-deep: #07372d;
  --silver: #9ea3a8;
  --silver-light: #eef1f3;
  --ink: #111827;
  --muted: #667085;
  --white: #ffffff;
  --soft: #f7faf9;
  --shadow: 0 24px 80px rgba(8, 44, 35, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Tahoma, Verdana, Segoe UI, Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(31,123,94,.12), transparent 34%),
              linear-gradient(180deg, #ffffff 0%, #f8fbfa 48%, #edf4f1 100%);
  overflow-x: hidden;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(31, 123, 94, .065) 1px, transparent 1px), linear-gradient(90deg, rgba(31, 123, 94, .065) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%);
}
.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .42;
  animation: float 12s ease-in-out infinite alternate;
}
.orb-one { width: 360px; height: 360px; background: #c8ddd5; top: 5%; right: -120px; }
.orb-two { width: 260px; height: 260px; background: #d7dadd; bottom: 8%; left: -80px; animation-delay: -5s; }
.orb-three { width: 180px; height: 180px; background: #a7d0c0; top: 52%; right: 20%; animation-delay: -9s; }

.site-header {
  width: min(var(--max), calc(100% - 40px));
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(31, 123, 94, .12);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
}
.brand {
  display: flex;
  align-items: center;
  min-width: 210px;
}
.brand img {
  display: block;
  width: min(330px, 46vw);
  max-height: 82px;
  object-fit: contain;
}
.nav { display: flex; gap: 8px; align-items: center; }
.nav a {
  color: #344054;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: .25s ease;
}
.nav a:hover { background: rgba(31, 123, 94, .10); color: var(--green-dark); }

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 60px auto 26px;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: .97;
  letter-spacing: -.06em;
  margin-bottom: 26px;
  color: var(--green-deep);
}
h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
  color: var(--green-deep);
  margin-bottom: 0;
}
h3 { font-size: 20px; color: var(--green-deep); margin-bottom: 12px; }
.lead {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.8;
  color: #425466;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 38px rgba(31, 123, 94, .28);
}
.btn-secondary {
  color: var(--green-dark);
  background: #fff;
  border: 1px solid rgba(31, 123, 94, .16);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-row span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(31, 123, 94, .11);
  color: #475467;
  font-size: 13px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}
.maintenance-card {
  position: absolute;
  top: 18px;
  left: 0;
  right: 24px;
  z-index: 3;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31, 123, 94, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.status-line { display: flex; gap: 10px; align-items: center; color: var(--green-deep); margin-bottom: 10px; }
.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(31,123,94,.55);
  animation: pulse 1.8s infinite;
}
.maintenance-card p { color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.progress-wrap {
  height: 9px;
  border-radius: 999px;
  background: #e7eeeb;
  overflow: hidden;
}
.progress-wrap span {
  display: block;
  width: 63%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #b7c9c2, var(--green));
  background-size: 180% 100%;
  animation: shimmer 2.4s linear infinite;
}
.product-orbit {
  position: absolute;
  inset: 100px 0 0 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,.54), rgba(255,255,255,.22));
  border: 1px solid rgba(31, 123, 94, .11);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(31,123,94,.14), transparent 28%),
              linear-gradient(130deg, transparent, rgba(158,163,168,.16));
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(31, 123, 94, .18);
  animation: rotate 22s linear infinite;
}
.ring-one { width: 380px; height: 380px; left: calc(50% - 190px); top: 84px; }
.ring-two { width: 270px; height: 270px; left: calc(50% - 135px); top: 139px; animation-duration: 16s; animation-direction: reverse; }
.icon-card {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-size: 34px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31, 123, 94, .12);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .10);
  animation: bob 5s ease-in-out infinite alternate;
}
.icon-one { left: 12%; top: 36%; }
.icon-two { right: 14%; top: 25%; animation-delay: -1s; }
.icon-three { right: 22%; bottom: 16%; animation-delay: -2s; }
.icon-four { left: 18%; bottom: 12%; animation-delay: -3s; }
.center-piece {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  width: 174px;
  height: 174px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--white);
  background: radial-gradient(circle at 35% 25%, #3a9879, var(--green-dark));
  box-shadow: 0 28px 70px rgba(31, 123, 94, .34), inset 0 0 0 10px rgba(255,255,255,.12);
}
.center-piece span { font-size: 40px; font-weight: 800; letter-spacing: -.05em; }
.center-piece small { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; }

.notice-band,
.section,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.notice-band {
  margin-top: 10px;
  margin-bottom: 88px;
  padding: 18px 24px;
  border-radius: 20px;
  color: #1d2939;
  background: linear-gradient(90deg, rgba(31,123,94,.12), rgba(158,163,168,.16));
  border: 1px solid rgba(31,123,94,.14);
}
.notice-band p { margin: 0; line-height: 1.6; }
.notice-band a { color: var(--green-dark); font-weight: 800; }
.section { padding: 86px 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.split p,
.section-heading p,
.contact-panel p {
  font-size: 18px;
  line-height: 1.8;
  color: #475467;
}
.muted { color: var(--muted) !important; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(31, 123, 94, .11);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
  min-height: 210px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 123, 94, .24);
  box-shadow: 0 26px 64px rgba(8, 44, 35, .13);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: rgba(31, 123, 94, .09);
  font-size: 25px;
  font-weight: 900;
}
.card p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.contact-panel {
  padding: clamp(28px, 6vw, 64px);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 32px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.contact-panel::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -160px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.contact-panel .section-kicker,
.contact-panel h2,
.contact-panel p { color: var(--white); position: relative; z-index: 1; }
.email-card {
  position: relative;
  z-index: 1;
  display: block;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(16px);
  transition: transform .25s ease, background .25s ease;
}
.email-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.18); }
.email-card span { display: block; margin-bottom: 10px; color: rgba(255,255,255,.72); }
.email-card strong { font-size: clamp(20px, 2.5vw, 30px); word-break: break-word; }
.site-footer {
  padding: 36px 0 46px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #667085;
  font-size: 14px;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--green-dark); font-weight: 700; }

@keyframes float { to { transform: translate3d(40px, -32px, 0) scale(1.04); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 13px rgba(31,123,94,0); } 100% { box-shadow: 0 0 0 0 rgba(31,123,94,0); } }
@keyframes shimmer { to { background-position: -180% 0; } }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes bob { to { transform: translateY(-16px); } }

@media (max-width: 940px) {
  .site-header { border-radius: 28px; align-items: flex-start; flex-direction: column; }
  .nav { width: 100%; justify-content: space-between; }
  .hero { grid-template-columns: 1fr; margin-top: 42px; min-height: auto; }
  .hero-visual { min-height: 520px; }
  .split, .section-heading, .contact-panel { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .site-header, .hero, .notice-band, .section, .site-footer { width: min(100% - 28px, var(--max)); }
  .brand img { width: min(100%, 330px); }
  .nav { flex-wrap: wrap; gap: 4px; }
  .nav a { padding: 9px 10px; }
  h1 { font-size: clamp(40px, 13vw, 58px); }
  .lead { font-size: 15px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { min-height: 470px; }
  .maintenance-card { right: 0; }
  .product-orbit { inset-top: 118px; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .site-footer { flex-direction: column; }
  .icon-card { width: 64px; height: 64px; font-size: 24px; border-radius: 20px; }
  .center-piece { width: 150px; height: 150px; }
}
