﻿:root {
  --green: #295931;
  --orange: #f09628;
  --deep: #33403d;
  --ink: #0d0d0d;
  --paper: #ffffff;
  --mist: #f6f6f2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(51, 64, 61, 0.1);
}

.site-header .container {
  padding: 0;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  width: 130px;
  height: auto;
}

.header-center {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--deep);
}

.header-right {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(51, 64, 61, 0.16);
  box-shadow: 0 18px 36px rgba(13, 13, 13, 0.18);
  display: grid;
  gap: 4px;
  padding: 8px;
  z-index: 5;
}

.dropdown-menu[hidden] {
  display: none;
}

.dropdown-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--deep);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.dropdown-item:hover {
  background: rgba(41, 89, 49, 0.08);
}

.dropdown-item .icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.dropdown-toggle {
  gap: 8px;
}

.user-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.dropdown-arrow {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-left: 4px;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--deep);
  border: 1px solid rgba(51, 64, 61, 0.2);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-link:hover {
  transform: translateY(-1px);
  border-color: rgba(41, 89, 49, 0.4);
  box-shadow: 0 8px 16px rgba(51, 64, 61, 0.16);
}


.page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(41, 89, 49, 0.08) 0%, rgba(255, 255, 255, 0.92) 40%),
    radial-gradient(circle at 15% 18%, rgba(240, 150, 40, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(41, 89, 49, 0.16), transparent 40%),
    repeating-linear-gradient(
      140deg,
      rgba(41, 89, 49, 0.12) 0px,
      rgba(41, 89, 49, 0.12) 3px,
      transparent 2px,
      transparent 9px
    ),
    var(--paper);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.brand-logo {
  width: 220px;
  height: auto;
  display: block;
  margin-bottom: 32px;
}

.hero {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  animation: rise 0.9s ease-out both;
}

.hero-text {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(440px, 90%);
  height: auto;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-title {
  font-family: "Oswald", "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.hero-title span {
  color: var(--green);
}

.hero-copy {
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
  margin: 0;
  color: #1a1a1a;
}

.hero-copy strong {
  color: var(--deep);
}

.divider {
  width: 160px;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--orange));
  border-radius: 999px;
  margin-top: 8px;
}

.section-title {
  margin: 64px 0 12px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.4rem;
}

.section-sub {
  margin: 0 0 28px;
  color: #3b3b3b;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  align-items: start;
}

.product-card {
  position: relative;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  min-height: 240px;
  box-shadow: 0 18px 36px rgba(13, 13, 13, 0.18);
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  animation: float-in 0.8s ease forwards;
  align-self: start;
}

.product-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(120deg, rgba(41, 89, 49, 0.12), rgba(240, 150, 40, 0.12));
}

.product-card:nth-child(1) {
  animation-delay: 0.2s;
}

.product-card:nth-child(2) {
  animation-delay: 0.4s;
}

.product-card:nth-child(3) {
  animation-delay: 0.6s;
}

.product-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: #ffffff;
}

.product-card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.learn-more {
  margin-top: 18px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(41, 89, 49, 0.35);
  background: #ffffff;
  color: var(--deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.learn-more .arrow {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.learn-more[aria-expanded="true"] .arrow {
  transform: rotate(90deg);
}

.learn-more:hover {
  transform: translateY(-1px);
  border-color: var(--green);
  box-shadow: 0 8px 18px rgba(41, 89, 49, 0.18);
}

.product-panel {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e6e6e6;
  display: grid;
  gap: 16px;
}

.product-panel[hidden] {
  display: none;
}

.panel-inner {
  display: grid;
  gap: 16px;
  animation: fade-in 0.35s ease;
}

.panel-inner h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
}

.panel-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.panel-inner ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.panel-cta {
  padding-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(120deg, var(--green), var(--orange));
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(51, 64, 61, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button.compact {
  margin-top: 16px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

.cta-button.inline {
  margin-top: 18px;
  margin-left: 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(51, 64, 61, 0.25);
}

.cta-button.small {
  padding: 8px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background: transparent;
  color: var(--deep);
  border: 1px solid rgba(51, 64, 61, 0.35);
  box-shadow: none;
}

.cta-button.small:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(51, 64, 61, 0.15);
}

.product-card .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.product-card .tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.product-card.featured {
  border-color: rgba(240, 150, 40, 0.35);
  box-shadow: 0 18px 40px rgba(240, 150, 40, 0.18);
}

.product-card.featured::after {
  content: "";
  position: absolute;
  inset: 12px 12px auto auto;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  opacity: 0.18;
}

.product-card.blurred {
  background: #28302f;
  filter: blur(2.2px) grayscale(0.3);
  opacity: 0.7;
}

.product-card.blurred::before {
  content: "?";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.product-card.blurred > * {
  visibility: hidden;
}

.accent-line {
  margin-top: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .container {
    padding: 56px 0 72px;
  }

  .header-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .header-left,
  .header-right {
    justify-content: center;
  }

  .hero-title {
    letter-spacing: 0.02em;
  }

  .product-card {
    min-height: 220px;
  }

  .hero-visual img {
    width: min(380px, 100%);
  }
}
