:root {
  --green-accent: #37e37b;
  --bg-deep: #021012;
  --card-bg-alt: rgba(0, 35, 28, 0.95);
  --text-main: #f5fbff;
  --text-muted: #9bb3c2;
  --border-subtle: rgba(255,255,255,0.06);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #021012;
  background-image:
    radial-gradient(circle at 20% 80%, #0f3d32 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(55,227,123,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0a1a15 0%, #021012 100%);
  color: #f5fbff;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 6vw;
  background: rgba(0,20,12,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  height: 45px;
  width: auto;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.brand-name {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5fbff;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #9bb3c2;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #37e37b;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 6vw;
  text-align: center;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #37e37b, transparent);
  opacity: 0.7;
}

.hero-content {
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 380px;
  max-width: 90%;
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 8px 30px rgba(55,227,123,0.25));
  border-radius: 12px;
}

.hero-tagline {
  font-size: 0.8rem;
  color: #37e37b;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #f5fbff;
}

.hero-title span {
  color: #37e37b;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #9bb3c2;
  max-width: 680px;
  margin: 0 auto 0.8rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

/* BUTTONS */
.btn-primary,
.btn-ghost {
  padding: 1rem 2.4rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, #37e37b, #22b455);
  color: #f5f7f6;
  box-shadow: 0 12px 40px rgba(55,227,123,0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(55,227,123,0.6);
}

.btn-ghost {
  background: transparent;
  color: #f5fbff;
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  border-color: #37e37b;
  color: #37e37b;
  background: rgba(55,227,123,0.1);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
  width: 100%;
}

.stat-card {
  background: linear-gradient(145deg, rgba(5,60,40,0.96), rgba(0,25,20,0.98));
  border: 1px solid rgba(55,227,123,0.25);
  border-radius: 20px;
  padding: 1.8rem 2rem;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 80px rgba(55,227,123,0.25);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: #37e37b;
  display: block;
  margin-bottom: 0.4rem;
}

.stat-label {
  color: #9bb3c2;
  font-size: 0.95rem;
  font-weight: 500;
}

/* SECTIONS */
.section {
  padding: 5rem 6vw;
  position: relative;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #37e37b, transparent);
  opacity: 0.6;
}

.section:last-of-type::after {
  display: none;
}

.section-alt {
  background:
    radial-gradient(circle at top, rgba(0,60,40,0.5), transparent 60%),
    radial-gradient(circle at bottom, rgba(0,20,15,0.7), transparent 60%);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #f5fbff;
}

.section p {
  color: #9bb3c2;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

/* INTRO BOX */
.intro-box {
  background: linear-gradient(145deg, rgba(5,80,50,0.95), rgba(0,30,25,0.98));
  border: 2px solid rgba(55,227,123,0.4);
  border-radius: 14px;
  padding: 1.2rem 2rem;
  margin: 1.5rem auto 2rem;
  max-width: 550px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.intro-box p {
  margin: 0;
  color: #37e37b;
  font-weight: 700;
  font-size: 1.05rem;
}

/* GOALS HIGHLIGHT IMAGES */
.goals-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0 3rem;
}

.goals-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(55,227,123,0.25);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
  transition: all 0.4s ease;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}

.goals-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.goals-img-wrap:hover {
  border-color: #37e37b;
  box-shadow: 0 30px 70px rgba(55,227,123,0.35);
  transform: translateY(-8px);
}

.goals-img-wrap:hover img {
  transform: scale(1.06);
}

/* IMAGE OVERLAY */
.img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
  transition: background 0.3s ease;
  z-index: 2;
}

.goals-img-wrap:hover .img-overlay {
  background: rgba(0,0,0,0.45);
}

.fullscreen-icon {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  background: rgba(55,227,123,0.85);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.goals-img-wrap:hover .fullscreen-icon {
  opacity: 1;
  transform: translateY(0);
}

/* VIDEO WRAP */
.goals-video-wrap {
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(55,227,123,0.5);
  box-shadow: 0 20px 50px rgba(55,227,123,0.25);
  aspect-ratio: 16 / 10;
  position: relative;
  cursor: default;
}

.goals-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.9);
  border: 2px solid rgba(55,227,123,0.3);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(55,227,123,0.4);
}

/* GRID */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

/* CARDS */
.card {
  position: relative;
  background: rgba(0, 35, 28, 0.95);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: left;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #37e37b, transparent);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(55,227,123,0.4);
  box-shadow: 0 40px 90px rgba(55,227,123,0.2);
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #f5fbff;
}

/* LAW LIST */
.law-list {
  background: rgba(0,25,20,0.6);
  border-left: 4px solid #37e37b;
  padding: 1.5rem 2rem;
  margin: 1.5rem auto;
  max-width: 700px;
  text-align: left;
  border-radius: 0 12px 12px 0;
  list-style: none;
}

.law-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: #9bb3c2;
  font-size: 1.05rem;
  position: relative;
}

.law-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #37e37b;
}

.law-note {
  background: rgba(55,227,123,0.12);
  border: 1px solid rgba(55,227,123,0.3);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  margin: 2rem auto 0;
  color: #37e37b;
  font-weight: 600;
  font-size: 1.05rem;
  max-width: 700px;
}

/* FLOATING FACEBOOK */
.fb-float {
  position: fixed;
  bottom: 6.5rem;        /* sits above Telegram */
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1877F2, #1455b0);
  color: white;
  text-decoration: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(24,119,242,0.5);
  transition: all 0.3s ease;
}

.fb-float:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 16px 40px rgba(24,119,242,0.7);
}

.fb-icon {
  width: 26px;
  height: 26px;
}

/* FLOATING TELEGRAM */
.tg-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2AABEE, #1a8ecf);
  color: white;
  text-decoration: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(42,171,238,0.5);
  transition: all 0.3s ease;
}

.tg-float:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 16px 40px rgba(42,171,238,0.7);
}

.tg-icon {
  width: 28px;
  height: 28px;
}

/* FOOTER */
.footer {
  padding: 2.5rem 6vw;
  text-align: center;
  background: rgba(0,20,12,0.96);
  border-top: 1px solid var(--border-subtle);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer p {
  color: #9bb3c2;
  font-size: 0.9rem;
  margin: 0;
}

/* FOOTER BUTTON GROUP */
.footer-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* FOOTER FACEBOOK BUTTON */
.footer-fb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #1877F2, #1455b0);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(24,119,242,0.4);
}

.footer-fb:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(24,119,242,0.6);
}

/* FOOTER TELEGRAM BUTTON */
.footer-tg {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #2AABEE, #1a8ecf);
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(42,171,238,0.4);
}

.footer-tg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(42,171,238,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .hero {
    padding: 3rem 2rem;
  }

  .hero-logo {
    width: 260px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .goals-images {
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  /* Align floating buttons nicely on mobile */
  .fb-float {
    bottom: 6.5rem;
    right: 1.2rem;
  }

  .tg-float {
    bottom: 2rem;
    right: 1.2rem;
  }
}
