/* ============================================================
   ROOT & RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #22C55E;
  --green-dark: #15803D;
  --teal:       #059669;
  --dark:       #0C2A18;
  --navy:       #071910;
  --text:       #1C2E22;
  --light-text: #4D7A5A;
  --linen:      #F0FDF4;
  --antique:    #DCFCE7;
  --white:      #fff;
  --border:     #BBF7D0;

  --green-main:    #4ADE80;
  --green-sec:    #14532D;
  --green-btn:    #DCFCE7;
  --green-dark:   #166534;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: var(--white);
  z-index: 9999;
  padding: 18px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-content { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 14px; color: #ccc; }
.cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.modal-box h3 { font-family: 'DM Serif Display', serif; font-size: 22px; margin-bottom: 20px; color: var(--dark); }
.cookie-option { margin-bottom: 16px; }
.cookie-option label { display: flex; align-items: center; gap: 10px; font-weight: 600; cursor: pointer; }
.cookie-option label input { width: 16px; height: 16px; cursor: pointer; accent-color: var(--green); }
.cookie-option p { font-size: 13px; color: var(--light-text); margin-top: 4px; padding-left: 26px; }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--green); }

.modal-subtitle {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 24px;
  line-height: 1.6;
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.request-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.request-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.request-form input,
.request-form textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--linen);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}

.btn-block {
  width: 100%;
  text-align: center;
}

.request-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
}

.request-success h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin-top: 8px;
}

.request-success p {
  font-size: 15px;
  color: var(--light-text);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}

.info-item {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--antique);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  border: 1px solid var(--border);
}

.info-item h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 400;
}

.info-item p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
}

.info-item a {
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.info-item a:hover {
  color: var(--green-dark);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.2px;
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,184,126,0.35);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

.btn-service {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: color 0.2s, gap 0.2s;
}
.btn-service:hover { color: var(--teal); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--green-sec);;
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0,0,0,0.05);
  height: 68px;
  backdrop-filter: blur(8px);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--green); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 7px;
  font-weight: 700 !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12,42,24,0.82) 0%, rgba(5,150,105,0.45) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 0 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(29,184,126,0.25);
  border: 1px solid rgba(29,184,126,0.5);
  color: #7EFFD4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
.hero-content p {
  font-size: clamp(16px, 2vw, 19px);
  margin-bottom: 40px;
  opacity: 0.88;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: 100px 0;
  background: var(--green-btn);
}
.philosophy-inner {
  max-width: 820px;
}
.philosophy-text {
  font-size: 18px;
  color: var(--light-text);
  max-width: 740px;
  line-height: 1.85;
}

/* ============================================================
   SUPPORT METHODS
   ============================================================ */
.support {
  padding: 100px 0;
  background: var(--green-sec);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.support-card {
  background: var(--green-btn);
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.support-card:hover {
  box-shadow: 0 12px 40px rgba(29,184,126,0.15);
  transform: translateY(-5px);
}
.support-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--antique);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
  border: 1px solid var(--border);
}
.support-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 400;
}
.support-card p { font-size: 15.5px; color: var(--light-text); line-height: 1.7; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}
.process .section-label { color: #5DFFC4; }
.process h2 { color: var(--white); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 18px;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  font-weight: 400;
  color: var(--green);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 400;
}
.step p { font-size: 15px; color: #8BAAB8; line-height: 1.65; }
.step-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  flex-shrink: 0;
  margin-top: 32px;
  opacity: 0.4;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 0;
  background: var(--green);
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 16px;
  opacity: 0.88;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 100px 0;
  background: var(--linen);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(29,184,126,0.18);
  transform: translateY(-5px);
}
.service-img-wrap {
  height: 210px;
  overflow: hidden;
}
.service-img-wrap img { transition: transform 0.45s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.06); }
.service-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 400;
}
.service-body p { font-size: 15px; color: var(--light-text); flex: 1; line-height: 1.7; }
.service-price {
  margin-top: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dark);
  letter-spacing: 0.3px;
}

/* ============================================================
   ABOUT IMAGE SECTION
   ============================================================ */
.about-img-section {
  padding: 100px 0;
  background: var(--white);
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 72px;
}
.about-img {
  flex: 1;
  height: 440px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 60px rgba(0,0,0,0.1);
}
.about-text { flex: 1; }
.about-text p {
  font-size: 17px;
  color: var(--light-text);
  margin-bottom: 24px;
  line-height: 1.8;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
}
.about-list li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 110px 0;
  background: var(--antique);
}
.contact-sub {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 52px;
  margin-top: -8px;
}
.registration-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  border-radius: 20px;
  padding: 52px 56px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--dark); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,
.form-group textarea {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--linen);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 14px 18px;
  background: var(--linen);
  border: 1.5px solid var(--border);
  border-radius: 10px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  cursor: pointer;
  color: var(--text);
}
.radio-label input[type="radio"] {
  width: 18px; height: 18px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.btn-large {
  padding: 17px 44px;
  font-size: 17px;
}
.form-success {
  background: var(--antique);
  color: var(--green-dark);
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: #ccc;
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); font-size: 28px; }
.footer-brand p { font-size: 14px; color: #8BAAB8; line-height: 1.75; margin-bottom: 10px; }
.footer-brand .disclaimer { font-size: 12px; color: #556677; font-style: italic; }
.footer-links h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: #8BAAB8; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  max-width: 1160px;
  margin: 0 auto;
  font-size: 13px;
  color: #556677;
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-pref-btn {
  background: none;
  border: 1px solid #2A3D50;
  color: #556677;
  padding: 6px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.cookie-pref-btn:hover { border-color: #8BAAB8; color: #aaa; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .support-grid,
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .registration-form { padding: 36px 28px; }
  .about-flex { flex-direction: column; gap: 40px; }
  .about-img { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .step-divider { width: 80px; height: 1px; margin: 0; }
}

@media (max-width: 640px) {
  .support-grid,
  .services-grid,
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: var(--linen);
    box-shadow: 0 8px 32px rgba(34,197,94,0.12);
    padding: 12px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 24px;
    font-size: 16px;
  }
  .burger { display: flex; }
  .hero-content h1 { font-size: 38px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .radio-group { gap: 14px; }
}
