@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --surface-soft: #f7f9fb;
  --ink: #20262e;
  --muted: #68727d;
  --line: #dfe6ec;
  --green: #13a05f;
  --green-dark: #087146;
  --blue: #165dba;
  --yellow: #fff319;
  --shadow: 0 16px 36px rgba(35, 43, 52, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.45;
}

body::before {
  background:
    linear-gradient(90deg, rgba(19, 160, 95, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(19, 160, 95, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

iconify-icon {
  display: inline-block;
  height: 1em;
  width: 1em;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 230, 236, 0.9);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand img {
  display: block;
  height: 44px;
  object-fit: contain;
  width: 188px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 26px;
  color: #38414a;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.header-action,
.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  white-space: nowrap;
}

.header-action {
  background: #f4fbf7;
  border: 1px solid #cfe8da;
  color: var(--green-dark);
}

.button--primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(19, 160, 95, 0.22);
}

.button--primary:hover {
  background: var(--green-dark);
}

.button--secondary {
  background: #ffffff;
  border: 1px solid var(--line);
  color: #263241;
}

.button--secondary:hover,
.header-action:hover {
  border-color: #a8d7bd;
  box-shadow: 0 10px 22px rgba(24, 88, 55, 0.08);
}

main {
  overflow: hidden;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.86fr);
  min-height: calc(100vh - 76px);
  padding: clamp(34px, 6vw, 72px) clamp(18px, 6vw, 86px) clamp(28px, 5vw, 56px);
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--yellow);
  border: 1px solid #d8d000;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.hero h1 {
  color: #111827;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800;
  line-height: 0.96;
  margin: 0;
}

.hero__lead {
  color: #4f5964;
  font-size: clamp(18px, 2vw, 24px);
  margin: 26px 0 0;
  max-width: 700px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.product-topline {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  padding-bottom: 18px;
}

.product-topline__status {
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 7px rgba(19, 160, 95, 0.12);
  height: 10px;
  width: 10px;
}

.product-topline strong {
  flex: 1;
  font-size: 15px;
}

.product-topline img {
  border-radius: 8px;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

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

.product-grid div,
.feature-list article,
.contact-grid a {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-grid div {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 18px;
}

.product-grid iconify-icon,
.feature-list iconify-icon,
.contact-grid iconify-icon {
  color: var(--green);
  font-size: 28px;
}

.product-grid strong {
  color: #1f2937;
  font-size: 17px;
}

.product-grid span {
  color: var(--muted);
  font-size: 14px;
}

.metric-band,
.section,
.workflow,
.price-section,
.contacts {
  margin: 0 auto;
  max-width: 1180px;
  padding-left: 18px;
  padding-right: 18px;
}

.metric-band {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 72px;
}

.metric-band div {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.metric-band strong {
  color: #111827;
  display: block;
  font-size: 25px;
}

.metric-band span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.section,
.workflow,
.price-section,
.contacts {
  padding-bottom: 86px;
}

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

.section-heading h2,
.workflow h2,
.price-panel h2,
.contacts h2 {
  color: #111827;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 0;
}

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

.feature-list article {
  min-height: 300px;
  padding: 24px;
}

.feature-list h3 {
  color: #20262e;
  font-size: 20px;
  line-height: 1.2;
  margin: 22px 0 12px;
}

.feature-list p,
.price-panel p {
  color: var(--muted);
  margin: 0;
}

.product-groups-layout {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  margin-top: 28px;
}

.product-group-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(35, 43, 52, 0.07);
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 30px);
}

.product-group-panel__head {
  align-items: flex-start;
  display: flex;
  gap: 16px;
}

.product-group-panel__head iconify-icon {
  background: #effaf4;
  border: 1px solid #d3eddf;
  border-radius: 8px;
  color: var(--green);
  flex: 0 0 auto;
  font-size: 28px;
  padding: 10px;
}

.product-group-panel--osu .product-group-panel__head iconify-icon {
  background: #eef6ff;
  border-color: #d6e8fb;
  color: var(--blue);
}

.product-group-panel h3 {
  color: #111827;
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.product-group-panel p {
  color: var(--muted);
  margin: 0;
}

.product-group-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-group-tags li {
  background: var(--surface-soft);
  border: 1px solid #dce5ed;
  border-radius: 8px;
  color: #263241;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 8px 11px;
}

.product-group-panel--osu .product-group-tags li {
  background: #f4f9ff;
  border-color: #d8e8f8;
}

.workflow {
  align-items: start;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
}

.workflow-steps {
  counter-reset: steps;
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.workflow-steps li {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  min-height: 76px;
  padding: 16px 20px;
}

.workflow-steps span {
  align-items: center;
  background: #effaf4;
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.workflow-steps strong {
  font-size: 18px;
}

.price-panel {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 44px);
}

.price-panel > div {
  max-width: 720px;
}

.price-panel .button {
  flex: 0 0 auto;
}

.contact-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.contact-grid a {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 24px;
}

.contact-grid span {
  color: var(--muted);
  font-weight: 700;
}

.contact-grid strong {
  color: #111827;
  font-size: clamp(20px, 3vw, 30px);
  overflow-wrap: anywhere;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 28px 18px;
}

.site-footer img {
  height: 32px;
  object-fit: contain;
  width: 32px;
}

.site-footer span {
  color: #1f2937;
  font-weight: 800;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
}

@media (max-width: 960px) {
  .site-header {
    align-items: stretch;
    display: grid;
    gap: 12px;
    position: static;
  }

  .site-nav {
    justify-content: space-between;
  }

  .header-action {
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__product {
    max-width: 680px;
  }

  .metric-band,
  .feature-list,
  .product-groups-layout,
  .workflow,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-panel {
    align-items: stretch;
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand img {
    height: 38px;
    width: 164px;
  }

  .site-nav {
    font-size: 13px;
    gap: 12px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .metric-band {
    padding-bottom: 54px;
  }

  .section,
  .workflow,
  .price-section,
  .contacts {
    padding-bottom: 64px;
  }
}
