﻿:root {
  --primary: #53B700;
  --primary-dark: #3f8f00;
  --primary-soft: #eaf8db;
  --primary-strong: #6fd63b;
  --text: #14220b;
  --text-muted: #60705b;
  --surface: #ffffff;
  --surface-alt: #f7fcf2;
  --border: #e3f0d4;
  --shadow: 0 18px 45px rgba(20, 34, 11, 0.08);
  --shadow-hover: 0 22px 50px rgba(20, 34, 11, 0.14);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-lg: 32px;
  --transition: all 0.25s ease;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fcfffa 0%, #f6fbf0 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

:focus-visible {
  outline: 3px solid rgba(83, 183, 0, 0.24);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: var(--primary-soft);
  color: var(--text);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--primary);
  color: white;
  padding: 0.85rem 1rem;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(83, 183, 0, 0.08);
  box-shadow: 0 12px 30px rgba(20, 34, 11, 0.04);
  min-height: 90px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  min-height: 90px;
}

.logo img {
  height: 76px;
  width: auto;
  display: block;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
}

.navbar a {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-weight: 600;
}

.navbar a:hover,
.navbar a.active {
  color: var(--primary);
  background: var(--primary-soft);
}

.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--primary);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.menu-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-1px);
}

main {
  overflow-x: hidden;
}

section[id],
.hero[id] {
  scroll-margin-top: 100px;
}

.hero {
  position: relative;
  padding: 112px 0 96px;
  background: linear-gradient(135deg, #fafff3 0%, #f3fce7 45%, #ffffff 100%);
  overflow: hidden;
  animation: heroGradientShift 10s ease-in-out infinite alternate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 183, 0, 0.16) 0%, rgba(83, 183, 0, 0) 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 183, 0, 0.12) 0%, rgba(83, 183, 0, 0) 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.25rem;
  max-width: 640px;
  animation: fadeUp 0.8s ease both;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(83, 183, 0, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(20, 34, 11, 0.05);
}

h1,
h2,
h3,
.section-title span,
.page-banner h1 {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 4.4vw, 4.35rem);
  line-height: 1.04;
  color: var(--text);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

p {
  color: var(--text-muted);
  max-width: 68ch;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 50px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
  box-shadow: 0 14px 30px rgba(20, 34, 11, 0.08);
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 34px rgba(20, 34, 11, 0.14);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #6ccf23 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-dark);
  border-color: rgba(83, 183, 0, 0.18);
  box-shadow: 0 8px 20px rgba(20, 34, 11, 0.05);
}

.btn-outline:hover {
  background: white;
  color: var(--primary-dark);
  border-color: var(--primary);
}

.hero-image {
  margin-top: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatCard 4.2s ease-in-out infinite;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  padding: clamp(1.2rem, 2vw, 1.7rem);
  border-radius: 30px;
  background: linear-gradient(135deg, #4fae00 0%, #64c92a 100%);
  box-shadow: 0 28px 60px rgba(83, 183, 0, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-visual:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 34px 70px rgba(83, 183, 0, 0.26);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -20px -35px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-app-shell {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(145deg, #f8fff0 0%, #ffffff 100%);
  border: 1px solid rgba(83, 183, 0, 0.12);
  box-shadow: 0 18px 40px rgba(20, 34, 11, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-app-shell:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(20, 34, 11, 0.1);
}

.hero-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.hero-app-logo {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #79d64d);
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 12px 24px rgba(83, 183, 0, 0.2);
}

.hero-app-title {
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--text);
}

.hero-app-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-app-search {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-app-list {
  display: grid;
  gap: 0.7rem;
}

.hero-app-venue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(20, 34, 11, 0.04);
}

.hero-app-venue-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-app-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary-soft);
  font-size: 1.1rem;
}

.hero-app-venue h3 {
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
}

.hero-app-venue p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.hero-app-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: linear-gradient(135deg, var(--primary), #6fd63b);
  color: white;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(83, 183, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-app-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 24px rgba(83, 183, 0, 0.24);
}

.hero-app-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 0.2rem;
}

.hero-app-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-app-rating span {
  color: var(--text-muted);
  font-weight: 600;
}

.hero-app-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(83, 183, 0, 0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.stats {
  padding: 0 0 70px;
}

.stats-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  position: relative;
  padding: 2rem 1.4rem 1.7rem;
  text-align: center;
  background: linear-gradient(145deg, #ffffff 0%, #f9fff3 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(20, 34, 11, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(20, 34, 11, 0.1);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(83, 183, 0, 0.16));
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.stat-card h2 {
  color: var(--primary);
  margin-bottom: 0.35rem;
  font-size: clamp(1.7rem, 2.4vw, 2.15rem);
  line-height: 1.1;
}

.stat-card p {
  margin: 0;
  font-weight: 700;
  color: var(--text-muted);
}

section {
  padding: 84px 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--primary);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-title p {
  margin: 0 auto;
  font-size: clamp(1rem, 1.1vw, 1.06rem);
}

p,
li {
  font-size: clamp(0.98rem, 1.05vw, 1.05rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.sports-grid,
.feature-grid,
.timeline {
  display: grid;
  gap: 1.35rem;
}

.sports-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sport-card,
.feature-card,
.step {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.sport-card:hover,
.feature-card:hover,
.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.7rem;
  background: linear-gradient(145deg, #ffffff 0%, #f9fff3 100%);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -28px;
  right: -28px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 183, 0, 0.12) 0%, rgba(83, 183, 0, 0) 72%);
}

.sport-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f9fff3 100%);
  padding: 2rem 1.7rem;
}

.sport-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 183, 0, 0.12) 0%, rgba(83, 183, 0, 0) 72%);
}

.sport-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(83, 183, 0, 0.16));
  color: var(--primary);
  font-size: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, background 0.3s ease;
}

.sport-card:hover .icon {
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, var(--primary), #78d54b);
  color: white;
}

.sport-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.sport-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-soft), rgba(83, 183, 0, 0.18));
  color: var(--primary);
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.feature-card:hover i {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, var(--primary), #79d64d);
  color: white;
}

.feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  line-height: 1.7;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  align-items: start;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, rgba(83, 183, 0, 0.24) 0%, rgba(83, 183, 0, 0.82) 50%, rgba(83, 183, 0, 0.24) 100%);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.2rem;
  background: linear-gradient(145deg, #ffffff 0%, #f9fff3 100%);
  border: 1px solid rgba(83, 183, 0, 0.12);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(20, 34, 11, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px rgba(20, 34, 11, 0.1);
}

.step-number {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #79d64d);
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 14px 30px rgba(83, 183, 0, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.06);
  box-shadow: 0 18px 34px rgba(83, 183, 0, 0.3);
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  margin: 0 auto;
  font-size: 0.96rem;
}

.download {
  background: linear-gradient(135deg, #f8fff1 0%, #f3fce8 100%);
}

.download-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
}

.download-content span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.download-content h2 {
  margin-bottom: 0.85rem;
}

.download-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem;
  list-style: none;
}

.download-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.download-list i {
  color: var(--primary);
}

.download-image {
  display: flex;
  justify-content: center;
}

.qr-card-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 560px;
}

.qr-card {
  width: 100%;
  padding: 1.2rem;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff 0%, #f8fff0 100%);
  border: 1px solid rgba(83, 183, 0, 0.12);
  box-shadow: 0 24px 50px rgba(20, 34, 11, 0.12);
}

.qr-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.36rem;
  margin-bottom: 0.9rem;
}

.qr-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.qr-card h3 {
  margin: 0;
  font-size: 1.14rem;
}

.qr-card img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(20, 34, 11, 0.08);
}

.qr-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.faq-container {
  display: grid;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff 0%, #f9fff3 100%);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(20, 34, 11, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(20, 34, 11, 0.09);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.4rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
}

.faq-question i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  color: var(--text-muted);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
  padding: 0 1.4rem 1.2rem;
}

.contact-cta {
  padding-top: 40px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 3.4rem 2.5rem;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(135deg, #3f8f00 0%, var(--primary) 55%, #7ddc3d 100%);
  color: white;
  box-shadow: 0 28px 60px rgba(83, 183, 0, 0.24);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.cta-box h2 {
  position: relative;
  z-index: 1;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-box p {
  position: relative;
  z-index: 1;
  margin: 0 auto 1.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  max-width: 620px;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
  background: white;
  color: var(--primary);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-box .btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 30px rgba(20, 34, 11, 0.14);
  background: #f5fff0;
  color: var(--primary-dark);
}

footer {
  padding: 76px 0 24px;
  background: linear-gradient(180deg, #0f1909 0%, #111c0b 100%);
  color: #f2f7eb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 2.2rem;
  align-items: start;
}

.footer-logo {
  height: 56px;
  margin-bottom: 1rem;
}

footer h3 {
  margin-bottom: 0.8rem;
  color: white;
  font-size: 1.05rem;
}

footer p,
footer li,
footer a {
  color: rgba(242, 247, 235, 0.82);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  list-style: none;
}

.footer-links a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease, transform 0.25s ease;
}

footer a:hover {
  color: var(--primary);
  transform: translateX(2px);
}

.footer-contact-list {
  display: grid;
  gap: 0.75rem;
}

.footer-contact-list p {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

.copyright {
  width: min(var(--container), 92%);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: rgba(242, 247, 235, 0.68);
}

.page-banner {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, rgba(83, 183, 0, 0.12), rgba(255, 255, 255, 0.95));
}

.page-banner h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 0.5rem;
}

.page-banner p {
  font-size: 1.04rem;
}

.policy-section {
  padding: 40px 0 90px;
}

.policy-card {
  padding: 2.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.policy-card h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
}

.policy-card h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.35rem;
}

.policy-card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0.8rem 0 0.9rem 1.2rem;
  color: var(--text-muted);
}

.policy-card a {
  color: var(--primary);
  font-weight: 600;
}

.policy-card a:hover {
  color: var(--primary-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  margin-top: 2rem;
}

.contact-form,
.contact-info {
  padding: 1.45rem;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
  color: var(--text);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(83, 183, 0, 0.12);
}

.contact-info .map-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-top: 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: white;
  color: var(--text-muted);
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.m-0 {
  margin: 0;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

