:root {
  --gp-primary: #0d5d40;
  --gp-primary-dark: #073f2b;
  --gp-emerald: #19ae70;
  --gp-mint: #bff5db;
  --gp-lime: #caf467;
  --gp-ink: #202d2c;
  --gp-muted: #64746e;
  --gp-border: #d7e7df;
  --gp-section: #f4faf7;
  --gp-surface: #ffffff;
  --gp-soft: #edf8f2;
  --gp-shadow: 0 18px 48px rgba(13, 93, 64, 0.12);
  --gp-shadow-sm: 0 12px 28px rgba(13, 93, 64, 0.08);
  --gp-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gp-ink);
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--gp-primary);
  text-decoration: none;
}

a:hover {
  color: var(--gp-emerald);
}

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

.text-muted {
  color: var(--gp-muted) !important;
}

.site-navbar {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215, 231, 223, 0.86);
  box-shadow: 0 10px 30px rgba(32, 45, 44, 0.04);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--gp-primary-dark) !important;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  color: var(--gp-primary-dark);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gp-mint), var(--gp-lime));
  box-shadow: inset 0 0 0 1px rgba(13, 93, 64, 0.14);
}

.navbar-nav .nav-link {
  color: #42524d;
  font-weight: 650;
  padding: 0.5rem 0.9rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gp-primary);
}

.nav-cta {
  border: 1px solid var(--gp-primary);
  border-radius: var(--gp-radius);
  color: var(--gp-primary) !important;
  padding-inline: 1rem !important;
}

.nav-cta:hover {
  color: #fff !important;
  background: var(--gp-primary);
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--gp-radius);
  font-weight: 750;
  letter-spacing: 0;
}

.btn-primary {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
  box-shadow: 0 14px 26px rgba(13, 93, 64, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--gp-primary-dark);
  border-color: var(--gp-primary-dark);
}

.btn-outline-primary {
  color: var(--gp-primary);
  border-color: rgba(13, 93, 64, 0.32);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--gp-primary);
  border-color: var(--gp-primary);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 249, 0.94) 42%, rgba(241, 250, 246, 0.72) 66%, rgba(241, 250, 246, 0.28) 100%),
    url("../img/hero.jpg") center right / cover no-repeat,
    radial-gradient(circle at 82% 14%, rgba(202, 244, 103, 0.32), transparent 32rem),
    radial-gradient(circle at 18% 86%, rgba(25, 174, 112, 0.16), transparent 28rem),
    linear-gradient(135deg, #ffffff 0%, #f0faf4 48%, #e4f7e7 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 93, 64, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 93, 64, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.45rem 0.7rem;
  color: var(--gp-primary-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(13, 93, 64, 0.14);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  color: var(--gp-primary-dark);
  font-size: 5.1rem;
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: 0;
}

.hero .lead,
.page-hero .lead {
  max-width: 680px;
  color: #50645d;
  font-size: 1.22rem;
  line-height: 1.72;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.image-frame img {
  width: 100%;
  border-radius: var(--gp-radius);
  border: 1px solid rgba(13, 93, 64, 0.12);
  box-shadow: var(--gp-shadow);
}

.hero-badge {
  position: absolute;
  left: -1.4rem;
  bottom: 1.3rem;
  max-width: 250px;
  padding: 1rem;
  border-radius: var(--gp-radius);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 231, 223, 0.9);
  box-shadow: var(--gp-shadow-sm);
}

.hero-badge strong {
  display: block;
  color: var(--gp-primary-dark);
  font-size: 1.35rem;
}

.section-padding {
  padding: 6rem 0;
}

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

.section-gradient {
  background:
    radial-gradient(circle at 12% 0%, rgba(25, 174, 112, 0.14), transparent 23rem),
    radial-gradient(circle at 86% 100%, rgba(202, 244, 103, 0.22), transparent 27rem),
    linear-gradient(180deg, #fff, #f4faf7);
}

.section-title {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title .kicker {
  color: var(--gp-emerald);
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title h2 {
  margin: 0.55rem 0 0.8rem;
  color: var(--gp-primary-dark);
  font-size: 3.05rem;
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

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

.feature-card,
.game-card,
.article-card,
.metric-card,
.contact-card,
.legal-card,
.expertise-card,
.process-step {
  height: 100%;
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius);
  background: var(--gp-surface);
  box-shadow: 0 8px 22px rgba(32, 45, 44, 0.04);
}

.lift-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.lift-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 174, 112, 0.48);
  box-shadow: var(--gp-shadow-sm);
}

.feature-card,
.expertise-card {
  padding: 1.5rem;
}

.value-panel {
  height: 100%;
  padding: 1rem 0 0;
  border-top: 3px solid rgba(25, 174, 112, 0.32);
}

.icon-chip {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: var(--gp-radius);
  color: var(--gp-primary-dark);
  background: linear-gradient(135deg, rgba(191, 245, 219, 0.95), rgba(202, 244, 103, 0.65));
}

.feature-card h3,
.expertise-card h3,
.value-panel h3,
.process-step h3,
.game-card h3,
.article-card h3 {
  color: var(--gp-primary-dark);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-card p,
.expertise-card p,
.value-panel p,
.process-step p,
.game-card p,
.article-card p {
  color: var(--gp-muted);
}

.image-frame {
  position: relative;
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  z-index: -1;
  border-radius: var(--gp-radius);
  background: linear-gradient(135deg, rgba(191, 245, 219, 0.8), rgba(202, 244, 103, 0.44));
}

.check-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  color: #42524d;
}

.check-list i {
  margin-top: 0.35rem;
  color: var(--gp-emerald);
}

.game-card {
  overflow: hidden;
}

.game-card img,
.article-card img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

.game-card-body,
.article-card-body {
  padding: 1.35rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  padding: 0.34rem 0.6rem;
  border-radius: 999px;
  color: var(--gp-primary-dark);
  background: var(--gp-soft);
  border: 1px solid rgba(13, 93, 64, 0.09);
  font-size: 0.78rem;
  font-weight: 800;
}

.process-track {
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 2.25rem;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--gp-primary), var(--gp-emerald), var(--gp-lime));
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  text-align: center;
}

.process-number {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--gp-primary);
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(13, 93, 64, 0.18);
}

.metric-card {
  padding: 1.6rem;
  text-align: center;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(13, 93, 64, 0.22), rgba(202, 244, 103, 0.58)) border-box;
  border: 1px solid transparent;
}

.metric-card strong {
  display: block;
  color: var(--gp-primary);
  font-size: 3rem;
  line-height: 1;
  font-weight: 850;
}

.metric-card span {
  display: block;
  margin-top: 0.55rem;
  color: var(--gp-muted);
  font-weight: 700;
}

.cta-band {
  padding: 4rem;
  border-radius: var(--gp-radius);
  color: #fff;
  background:
    radial-gradient(circle at 92% 18%, rgba(202, 244, 103, 0.46), transparent 16rem),
    linear-gradient(135deg, var(--gp-primary-dark), var(--gp-primary) 56%, #17845d);
  box-shadow: var(--gp-shadow);
}

.cta-band h2 {
  max-width: 720px;
  font-size: 3.2rem;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

.cta-band .btn-outline-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
}

.cta-band .btn-outline-primary:hover {
  color: var(--gp-primary-dark);
  background: #fff;
  border-color: #fff;
}

.page-hero {
  padding: 8.5rem 0 5rem;
  background:
    radial-gradient(circle at 84% 18%, rgba(202, 244, 103, 0.24), transparent 25rem),
    linear-gradient(135deg, #fff, #f0faf4);
  border-bottom: 1px solid var(--gp-border);
}

.page-hero.compact {
  padding-bottom: 4.4rem;
}

.expertise-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.expertise-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--gp-muted);
}

.expertise-list i {
  margin-top: 0.35rem;
  color: var(--gp-emerald);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.product-meta span {
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: #f0f7f3;
  color: #53625d;
  font-size: 0.78rem;
  font-weight: 750;
}

.article-card {
  overflow: hidden;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #71817a;
  font-size: 0.88rem;
  font-weight: 650;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.4rem;
  color: var(--gp-primary);
  font-weight: 800;
}

.contact-card {
  padding: 2rem;
}

.form-label {
  color: var(--gp-primary-dark);
  font-weight: 750;
}

.form-control,
.form-select {
  min-height: 48px;
  border-color: var(--gp-border);
  border-radius: var(--gp-radius);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gp-emerald);
  box-shadow: 0 0 0 0.22rem rgba(25, 174, 112, 0.16);
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(25, 174, 112, 0.35);
  border-radius: var(--gp-radius);
  color: var(--gp-primary-dark);
  background: #eefaf3;
  font-weight: 750;
}

.form-success.is-visible {
  display: block;
}

.contact-item {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gp-border);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-grid;
  place-items: center;
  border-radius: var(--gp-radius);
  color: var(--gp-primary-dark);
  background: var(--gp-soft);
}

.legal-card {
  padding: 2rem;
}

.legal-card h2 {
  color: var(--gp-primary-dark);
  margin-top: 2.2rem;
  font-size: 1.45rem;
  font-weight: 850;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--gp-muted);
}

.site-footer {
  padding: 4.5rem 0 2rem;
  background: #10231d;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer .brand-mark {
  color: var(--gp-primary-dark);
}

.footer-brand {
  color: #fff;
  font-weight: 850;
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
}

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

.site-footer li + li {
  margin-top: 0.52rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover {
  color: var(--gp-lime);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero h1,
  .page-hero h1 {
    font-size: 4rem;
  }

  .section-title h2 {
    font-size: 2.55rem;
  }

  .cta-band h2 {
    font-size: 2.55rem;
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 247, 0.9)),
      url("../img/hero.jpg") center / cover no-repeat,
      linear-gradient(135deg, #ffffff 0%, #f0faf4 48%, #e4f7e7 100%);
  }

  .hero-visual {
    margin-top: 2.5rem;
  }

  .hero-badge {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .process-track::before {
    display: none;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .cta-band {
    padding: 2.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .hero .lead,
  .page-hero .lead {
    font-size: 1.05rem;
  }

  .section-title h2,
  .cta-band h2 {
    font-size: 2.15rem;
  }

  .metric-card strong {
    font-size: 2.35rem;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .section-padding {
    padding: 3.7rem 0;
  }

  .game-card img,
  .article-card img {
    height: 205px;
  }

  .cta-band {
    padding: 2rem 1.4rem;
  }

  .contact-card,
  .legal-card {
    padding: 1.35rem;
  }
}
