:root {
  --background: #f7f5ef;
  --foreground: #1d2426;
  --muted: #687579;
  --line: #dcd7cb;
  --paper: #fffdf8;
  --ink: #20282a;
  --teal: #0f7c80;
  --teal-dark: #07595d;
  --coral: #d85f3f;
  --gold: #d7a43b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.hero {
  min-height: 92vh;
  padding: 24px clamp(18px, 4vw, 56px) 64px;
  background:
    linear-gradient(120deg, rgba(15, 124, 128, 0.12), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, #f3eee4 100%);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1180px;
}

.brand,
.nav-links {
  align-items: center;
  display: flex;
}

.brand {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--teal);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  color: #4f5b5e;
  font-size: 14px;
  font-weight: 700;
  gap: clamp(14px, 3vw, 30px);
}

.nav-links a:hover {
  color: var(--teal);
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  margin: 74px auto 0;
  max-width: 1180px;
}

.hero-copy h1,
.section h2 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.03;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(42px, 6vw, 78px);
  max-width: 760px;
}

.eyebrow {
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.lead {
  color: #4f5b5e;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
  margin: 28px 0 0;
  max-width: 690px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
}

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

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.full {
  margin-top: 20px;
  width: 100%;
}

.hero-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 46px 0 0;
  max-width: 640px;
}

.hero-stats div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.hero-stats dt {
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  margin: 7px 0 0;
}

.hero-product {
  align-self: stretch;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-product img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: clamp(14px, 3vw, 34px);
  width: 100%;
}

.hero-note {
  background: #1d2426;
  bottom: 18px;
  color: #ffffff;
  font-size: 14px;
  left: 18px;
  line-height: 1.4;
  padding: 12px 14px;
  position: absolute;
  right: 18px;
}

.section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 84px clamp(18px, 4vw, 56px);
}

.intro,
.split,
.inquiry {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: 0.78fr 1fr;
}

.section h2 {
  font-size: clamp(31px, 4vw, 52px);
}

.section p {
  color: #526064;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
}

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

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

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-card img {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  object-fit: contain;
  padding: 14px;
  width: 100%;
}

.product-body {
  padding: 20px;
}

.product-body h3,
.inquiry-box h3 {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.product-body p {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 11px;
}

.product-body ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.product-body li {
  color: #344043;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  padding-left: 17px;
  position: relative;
}

.product-body li::before {
  background: var(--teal);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 7px;
}

.split {
  align-items: center;
  background: #e9f0ef;
  border-radius: 8px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.panel-image {
  background: #ffffff;
  border: 1px solid #cdd9d7;
  border-radius: 8px;
  overflow: hidden;
}

.panel-image img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 20px;
  width: 100%;
}

.panel-copy p {
  margin-top: 18px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  background: #fffdf8;
  border: 1px solid #cdd9d7;
  border-radius: 8px;
  color: #263235;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
}

.process-list {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 190px;
  padding: 20px;
}

.process-list span {
  color: var(--coral);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 24px;
}

.process-list p {
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.inquiry {
  align-items: start;
  background: var(--ink);
  border-radius: 8px;
  color: #ffffff;
  margin-bottom: 64px;
}

.inquiry h2,
.inquiry .eyebrow {
  color: #ffffff;
}

.inquiry p {
  color: #d8dddd;
  margin-top: 18px;
}

.inquiry-box {
  background: #fffdf8;
  border-radius: 8px;
  color: var(--ink);
  padding: 24px;
}

.inquiry-box p {
  color: #526064;
  font-size: 15px;
  line-height: 1.65;
  margin: 12px 0 20px;
}

.contact-line {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #263235;
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-top: 10px;
  overflow-wrap: anywhere;
  padding: 12px;
}

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

.social-row a {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 0 12px;
}

.social-row a:hover {
  border-color: var(--teal);
}

@media (max-width: 920px) {
  .hero-grid,
  .intro,
  .split,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: 48px;
  }

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

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

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

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

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

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-copy h1 {
    font-size: 41px;
  }

  .hero-stats,
  .product-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .social-row {
    grid-template-columns: 1fr;
  }

  .hero-note {
    bottom: 12px;
    font-size: 13px;
    left: 12px;
    right: 12px;
  }
}
