/* ─── Base ───────────────────────────────────────────────────────────────── */
:root {
  --green:        #1a7f4b;
  --green-dark:   #145f38;
  --green-light:  #e8f5ee;
  --white:        #ffffff;
  --gray-50:      #f8f9fa;
  --gray-100:     #f1f3f5;
  --gray-300:     #dee2e6;
  --gray-600:     #6c757d;
  --gray-800:     #343a40;
  --text:         #1e2a35;
  --radius:       10px;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.3; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

.btn-primary {
  background: var(--green);
  border-color: var(--green);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--green-dark);
  border-color: var(--green-dark);
}
.btn-outline-primary {
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-primary:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.text-green { color: var(--green) !important; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
#mainNav {
  padding: 14px 0;
  transition: box-shadow .2s;
}
#mainNav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.1); }

.brand-text {
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -.5px;
}
.brand-text strong { color: var(--green); }

.nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-800) !important;
  padding: .4rem .75rem !important;
}
.nav-link:hover { color: var(--green) !important; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  background: linear-gradient(135deg, #0f4c2a 0%, #1a7f4b 55%, #27ae60 100%);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}
#hero .hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  opacity: .88;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}
#hero .hero-actions { position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .3px;
}

/* ─── Trust strip ────────────────────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 18px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--gray-600);
  white-space: nowrap;
}
.trust-item i { color: var(--green); font-size: .9rem; }

/* ─── Section padding ────────────────────────────────────────────────────── */
.section-pad { padding: 72px 0; }

.section-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: .5rem;
}
.section-heading {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
}

/* ─── Feature cards ──────────────────────────────────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 16px;
}

/* ─── Country cards ──────────────────────────────────────────────────────── */
.region-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--green);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
  margin-bottom: 0;
}
.country-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 20px 16px;
  height: 100%;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  text-align: center;
}
.country-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green-light);
}
.country-card.coming-soon {
  opacity: .75;
}
.country-flag {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.country-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.country-card .country-licensee {
  font-size: .78rem;
  color: var(--gray-600);
  margin-bottom: 14px;
}
.country-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--green-light);
  color: var(--green);
  margin-bottom: 20px;
}
.country-badge.soon {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ─── CTA band ───────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0f4c2a 0%, #1a7f4b 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: .75rem;
}
.cta-band p {
  opacity: .85;
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.btn-light { font-weight: 600; }

/* ─── About strip ────────────────────────────────────────────────────────── */
.about-strip {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--gray-800);
  color: #adb5bd;
  padding: 56px 0 0;
}
.footer-brand {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -.5px;
  margin-bottom: .5rem;
}
.footer-brand strong { color: #6fcf97; }
.footer-heading {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #fff;
  margin-bottom: .75rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: .4rem; }
.footer-links a {
  color: #adb5bd;
  font-size: .88rem;
  transition: color .15s;
}
.footer-links a:hover { color: #6fcf97; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

/* ─── Responsive tweaks ──────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding: 52px 0; }
  #hero { padding: 72px 0 64px; }
  .footer-bottom { flex-direction: column; }
  .trust-strip .row { gap: .5rem !important; }
}
