.gw-topbar {
  background: #1d7c3f;
  color: #d7f0de;
  font-size: 13px;
}

.gw-topbar .gw-container {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.gw-topbar a {
  color: #fff;
}

.gw-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gw-border);
  box-shadow: 0 8px 20px rgba(28, 96, 50, 0.08);
}

.gw-nav-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gw-space-4);
}

.gw-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--gw-space-2);
  min-width: 0;
}

.gw-logo img {
  width: auto;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
}

.gw-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #1a5c35;
  white-space: nowrap;
}

.gw-nav {
  display: flex;
  gap: 8px;
}

.gw-nav a {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #274936;
  font-size: 15px;
  font-weight: 600;
}

.gw-nav a:hover,
.gw-nav a.is-active {
  color: var(--gw-primary);
  background: #e8f6eb;
}

.gw-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gw-border);
  border-radius: 10px;
  background: #fff;
  padding: 10px 8px;
}

.gw-nav-toggle span {
  display: block;
  height: 2px;
  background: #2f5b42;
  margin: 5px 0;
}

.gw-hero {
  padding: 58px 0 52px;
  background: linear-gradient(120deg, #f8fdf9 0%, #eef8f0 55%, #e6f2e8 100%);
}

.gw-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.gw-hero-copy h1 {
  margin: 0;
  font-size: 52px;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.gw-hero-copy p {
  margin: var(--gw-space-3) 0 0;
  color: var(--gw-text-muted);
  font-size: 17px;
}

.gw-hero-actions {
  margin-top: var(--gw-space-4);
  display: flex;
  gap: var(--gw-space-2);
  flex-wrap: wrap;
}

.gw-hero-media img {
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
}

.gw-card,
.gw-text-card,
.gw-news-item,
.gw-product-card {
  background: var(--gw-surface);
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
  box-shadow: 0 8px 24px rgba(24, 86, 45, 0.06);
}

.gw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gw-space-3);
}

.gw-card {
  padding: 24px;
}

.gw-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.gw-card p {
  margin: 0;
  color: var(--gw-text-muted);
}

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

.gw-product-card {
  overflow: hidden;
}

.gw-product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gw-product-card h3,
.gw-product-card p,
.gw-product-card a {
  margin-left: 18px;
  margin-right: 18px;
}

.gw-product-card h3 {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 20px;
}

.gw-product-card p {
  margin-top: 0;
  margin-bottom: 14px;
  color: var(--gw-text-muted);
}

.gw-product-card a {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gw-primary);
  font-weight: 700;
}

.gw-news-list {
  display: grid;
  gap: 14px;
}

.gw-news-item {
  display: block;
  padding: 22px;
}

.gw-news-item time {
  display: inline-block;
  color: #769381;
  font-size: 13px;
  margin-bottom: 8px;
}

.gw-news-item h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.gw-news-item p {
  margin: 0;
  color: var(--gw-text-muted);
}

.gw-text-card {
  padding: 24px;
}

.gw-text-card p {
  margin: 0 0 12px;
  color: var(--gw-text-muted);
}

.gw-text-card p:last-child {
  margin-bottom: 0;
}

.gw-footer {
  background: #123724;
  color: #d8e8dd;
  margin-top: 54px;
}

.gw-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  padding: 42px 0 30px;
}

.gw-footer h4,
.gw-footer h5 {
  margin: 0 0 12px;
  color: #fff;
}

.gw-footer p,
.gw-footer li {
  margin: 0 0 8px;
  color: #b8d4c1;
}

.gw-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gw-footer a {
  color: #fff;
}

.gw-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gw-footer-copy p {
  margin: 0;
  padding: 14px 0;
  font-size: 13px;
  color: #94b8a0;
}

@media (max-width: 1199px) {
  .gw-hero-copy h1 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .gw-topbar .gw-container {
    gap: 12px;
    min-height: 32px;
    font-size: 12px;
  }

  .gw-nav-toggle {
    display: block;
  }

  .gw-nav {
    position: absolute;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--gw-border);
    border-radius: var(--gw-radius-sm);
    padding: 10px;
    box-shadow: var(--gw-shadow);
  }

  .gw-nav.is-open {
    display: flex;
  }

  .gw-nav a {
    justify-content: flex-start;
    border-radius: 10px;
    padding: 0 12px;
  }

  .gw-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gw-feature-grid,
  .gw-product-grid,
  .gw-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .gw-topbar {
    display: none;
  }

  .gw-nav-inner {
    height: 66px;
  }

  .gw-logo img {
    width: auto;
    height: 38px;
    max-width: 170px;
  }

  .gw-logo span {
    font-size: 16px;
  }

  .gw-nav {
    top: 66px;
  }

  .gw-hero {
    padding: 36px 0;
  }

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

  .gw-hero-copy p {
    font-size: 15px;
  }

  .gw-feature-grid,
  .gw-product-grid,
  .gw-footer-grid {
    grid-template-columns: 1fr;
  }

  .gw-product-card img {
    height: 200px;
  }

  .gw-news-item h3 {
    font-size: 20px;
  }
}
