/* ---------- Base ---------- */
* {
  box-sizing: border-box;
  min-width: 0;
}

:root {
  --green-950: #042d26;
  --green-900: #063d34;
  --green-800: #075245;
  --green-700: #0b6b59;
  --green-600: #087f68;
  --green-100: #e7f2ef;
  --green-50: #f4faf8;
  --gold: #f4b63f;
  --gold-soft: #fff4d8;
  --blue-dark: #071b24;
  --text: #17332e;
  --muted: #657772;
  --line: #d8e5e1;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(4, 45, 38, 0.11);
  --max: 1200px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: clip;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

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

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

.container {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  max-width: 100%;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid var(--green-700);
  color: var(--green-800);
  background: transparent;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(4, 45, 38, 0.13);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
}

.btn-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-950);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 0;
  color: var(--green-700);
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

/* ---------- Top Bar / Header ---------- */
.topbar {
  background: var(--green-950);
  color: var(--white);
  font-size: 0.86rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: 260px;
}

.header-logo {
  display: block;
  width: clamp(135px, 15vw, 210px);
  max-height: 58px;
  height: auto;
  object-fit: contain;
}

#nav-toggle {
  display: none;
}

.burger {
  display: none;
  width: 44px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  flex: 0 0 auto;
}

.burger span,
.burger span::before,
.burger span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-900);
  position: relative;
}

.burger span::before {
  position: absolute;
  top: -7px;
}

.burger span::after {
  position: absolute;
  top: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: var(--green-950);
  font-weight: 750;
}

.site-nav a {
  position: relative;
  padding: 27px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  border-radius: 999px;
  background: var(--green-700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

/* ---------- Hero ---------- */
.products-hero {
  min-height: clamp(560px, 78vh, 820px);
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--green-950);
}

.products-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.products-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.68;
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 20%, rgba(244, 182, 63, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(4, 45, 38, 0.97) 0%, rgba(4, 45, 38, 0.84) 44%, rgba(4, 45, 38, 0.24) 100%);
}

.products-hero-content {
  width: min(700px, 100%);
  padding: 92px 0 116px;
  text-align: left;
}

.products-hero .eyebrow {
  color: #ffe3a1;
}

.products-hero h1 {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: clamp(2.35rem, 5.2vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.products-hero p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero-actions,
.intro-actions,
.product-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.product-stats {
  position: absolute;
  right: max(28px, calc((100vw - var(--max)) / 2));
  bottom: 42px;
  width: min(670px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
}

.stat {
  padding: 20px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 1.12rem;
}

.stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(70px, 8vw, 112px) 0;
}

.section-soft {
  background: var(--green-50);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-head > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: stretch;
  padding: clamp(26px, 5vw, 58px);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.intro-panel h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.intro-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-actions {
  margin-top: 28px;
}

.intro-visual {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 28px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 82% 16%, rgba(244, 182, 63, 0.34), transparent 27%),
    linear-gradient(135deg, rgba(4, 45, 38, 0.99), rgba(8, 127, 104, 0.86));
}

.intro-visual::before,
.intro-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transform: skewX(-14deg);
}

.intro-visual::before {
  width: 230px;
  height: 126px;
  right: -34px;
  top: 64px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 46px 42px;
}

.intro-visual::after {
  width: 150px;
  height: 220px;
  left: -52px;
  bottom: -62px;
  border-radius: 50%;
  transform: none;
  background: rgba(244, 182, 63, 0.12);
}

.visual-mark,
.visual-copy {
  position: relative;
  z-index: 1;
}

.visual-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-950);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.visual-copy strong,
.visual-copy span {
  display: block;
}

.visual-copy strong {
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.8vw, 2.65rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.visual-copy span {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.76);
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(4, 45, 38, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.product-image img {
  width: 100%;
  height: 274px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.product-type {
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content h3 {
  margin-bottom: 14px;
  color: var(--green-950);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.product-content > p:not(.product-type) {
  color: var(--muted);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 24px;
}

.product-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 750;
}

.product-actions {
  align-items: center;
  margin-top: auto;
}

.product-card-dark {
  background: var(--green-950);
  border-color: rgba(255, 255, 255, 0.08);
}

.product-card-dark .product-image {
 background-color: white;
}

.product-card-dark .product-content h3,
.product-card-dark .product-type {
  color: var(--white);
}

.product-card-dark .product-type {
  color: #ffe3a1;
}

.product-card-dark .product-content > p:not(.product-type) {
  color: rgba(255, 255, 255, 0.74);
}

.product-card-dark .product-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.product-card-dark .text-link {
  color: var(--white);
}

/* ---------- Trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  min-height: 270px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(4, 45, 38, 0.06);
}

.trust-card > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--green-950);
  font-weight: 900;
}

.trust-card h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1.16rem;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border-radius: 32px;
  background: var(--green-100);
  border: 1px solid var(--line);
}

.cta-band h2 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.cta-band p:not(.eyebrow) {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.cta-actions {
  justify-content: flex-end;
}

/* ---------- Footer ---------- */
footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 46px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

footer h3 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer p,
footer a,
footer span {
  color: rgba(255, 255, 255, 0.72);
}

footer a:hover {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .topbar-inner,
  .topbar-links {
    justify-content: center;
    text-align: center;
  }

  .topbar-links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  #nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: var(--green-50);
  }

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

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

  .products-hero-content {
    width: min(680px, 100%);
    padding: 82px 0 44px;
  }

  .product-stats {
    position: static;
    width: 100%;
    margin: 0 auto 28px;
  }

  .section-head,
  .intro-panel,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    min-height: 360px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    min-height: 300px;
  }

  .product-image img {
    height: 244px;
  }
}

@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    max-width: 70%;
  }

  .header-logo {
    width: clamp(115px, 42vw, 165px);
    max-height: 48px;
  }

  .products-hero-bg img {
    object-position: 58% center;
  }

  .products-hero::after {
    background:
      radial-gradient(circle at 70% 8%, rgba(244, 182, 63, 0.26), transparent 28%),
      linear-gradient(90deg, rgba(4, 45, 38, 0.97) 0%, rgba(4, 45, 38, 0.88) 58%, rgba(4, 45, 38, 0.42) 100%);
  }

  .products-hero-content {
    padding: 66px 0 32px;
  }

  .products-hero h1 {
    font-size: clamp(2rem, 11vw, 3.35rem);
  }

  .hero-actions,
  .intro-actions,
  .product-actions,
  .cta-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .intro-actions .btn,
  .product-actions .btn,
  .cta-actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .product-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .product-stats {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .intro-panel {
    padding: 24px;
    border-radius: 26px;
  }

  .intro-visual {
    min-height: 330px;
    padding: 24px;
  }

  .visual-mark {
    width: 76px;
    height: 76px;
    font-size: 1.65rem;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-image {
    min-height: 260px;
    padding: 22px;
  }

  .product-image img {
    height: 210px;
  }

  .product-number {
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
  }

  .product-content {
    padding: 24px;
  }

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

  .trust-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
