/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a1a;
  background: #FAFAF5;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.02em; line-height: 1.1; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #10B981;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #10B981;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #064E3B;
  margin-bottom: 16px;
}
.text-green { color: #10B981; }
.section-sub { font-size: 1.1rem; color: #555; max-width: 560px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background: #064E3B;
  color: #fff;
  border-color: #064E3B;
}
.btn--primary:hover { background: #043828; border-color: #043828; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,78,59,0.3); }
.btn--outline {
  background: transparent;
  color: #064E3B;
  border-color: #064E3B;
}
.btn--outline:hover { background: #064E3B; color: #fff; transform: translateY(-2px); }
.btn--white {
  background: #fff;
  color: #064E3B;
  border-color: #fff;
}
.btn--white:hover { background: #f0fdf4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn--full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,250,245,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(6,78,59,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #064E3B;
  letter-spacing: 0.05em;
}
.nav-logo-icon { width: 36px; height: 36px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #10B981;
  transition: width 0.3s;
}
.nav-links a:hover { color: #064E3B; }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: #064E3B; padding: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #064E3B 0%, #047857 30%, #10B981 60%, #34D399 80%, #6EE7B7 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}
.hero-geo--1 {
  width: 600px; height: 600px;
  background: #fff;
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-geo--2 {
  width: 400px; height: 400px;
  background: #064E3B;
  bottom: -100px; left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-geo--3 {
  width: 200px; height: 200px;
  background: #fff;
  top: 40%; left: 10%;
  animation: float 6s ease-in-out infinite;
}
.hero-geo--4 {
  width: 120px; height: 120px;
  background: #047857;
  bottom: 20%; right: 15%;
  border-radius: 24px;
  transform: rotate(45deg);
  animation: spin 20s linear infinite;
  opacity: 0.15;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
@keyframes spin {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-accent {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  color: #d1fae5;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-actions .btn--primary { background: #fff; color: #064E3B; border-color: #fff; }
.hero-actions .btn--primary:hover { background: #f0fdf4; }
.hero-actions .btn--outline { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-actions .btn--outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.05em;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #FAFAF5;
}
.about-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.about-geo--1 { width: 500px; height: 500px; background: #10B981; top: -150px; right: -100px; }
.about-geo--2 { width: 300px; height: 300px; background: #064E3B; bottom: -80px; left: -60px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: #10B981;
  border-radius: 20px;
  z-index: -1;
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: #064E3B;
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}
.about-content { position: relative; z-index: 1; }
.about-text {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #d1fae5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-feature strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #064E3B;
  letter-spacing: 0.03em;
}
.about-feature span {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ===== PRODUCTS ===== */
.products {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #f0fdf4;
}
.products-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.products-geo--1 { width: 400px; height: 400px; background: #064E3B; top: -100px; left: -100px; }
.products-geo--2 { width: 250px; height: 250px; background: #10B981; bottom: -50px; right: -50px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(6,78,59,0.12); }
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #064E3B;
  color: #fff;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card-body { padding: 20px 24px 24px; }
.product-card-body h3 {
  font-size: 1.4rem;
  color: #064E3B;
  margin-bottom: 8px;
}
.product-card-body p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* ===== SERVICES ===== */
.services {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #FAFAF5;
}
.services-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}
.services-geo--1 { width: 600px; height: 600px; background: #10B981; top: -200px; right: -200px; }
.services-geo--2 { width: 300px; height: 300px; background: #064E3B; bottom: -100px; left: -50px; }
.services-header { text-align: center; margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(6,78,59,0.06);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(6,78,59,0.1); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #064E3B, #10B981);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #d1fae5;
  line-height: 1;
  margin-bottom: 12px;
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: #d1fae5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.5rem;
  color: #064E3B;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; color: #666; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  position: relative;
  padding: 120px 0;
  background: #064E3B;
  overflow: hidden;
}
.testimonials-geo {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #10B981;
  border-radius: 50%;
  opacity: 0.08;
  top: -150px;
  left: -100px;
}
.testimonials .section-label { color: #6EE7B7; }
.testimonials .section-label::before { background: #6EE7B7; }
.testimonials .section-title { color: #fff; }
.testimonials .section-sub { color: rgba(255,255,255,0.6); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-author strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #047857 0%, #10B981 100%);
  overflow: hidden;
}
.cta-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  background: #fff;
}
.cta-geo--1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.cta-geo--2 { width: 250px; height: 250px; bottom: -80px; left: -50px; }
.cta-geo--3 {
  width: 100px; height: 100px;
  top: 30%; left: 5%;
  border-radius: 20px;
  transform: rotate(45deg);
  opacity: 0.15;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content .section-label { color: #6EE7B7; }
.cta-content .section-label::before { background: #6EE7B7; }
.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: 120px 0;
  background: #FAFAF5;
  overflow: hidden;
}
.contact-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}
.contact-geo--1 { width: 400px; height: 400px; background: #10B981; top: -100px; right: -100px; }
.contact-geo--2 { width: 250px; height: 250px; background: #064E3B; bottom: -80px; left: -50px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-desc { font-size: 1.05rem; color: #555; margin-bottom: 32px; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: #d1fae5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #064E3B;
  letter-spacing: 0.03em;
}
.contact-detail span, .contact-detail a {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.contact-detail a:hover { color: #10B981; }
.contact-map { border-radius: 12px; overflow: hidden; }
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(6,78,59,0.06);
}
.contact-form h3 {
  font-size: 1.8rem;
  color: #064E3B;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #1a1a1a;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #FAFAF5;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  gap: 12px;
}
.form-success.show { display: flex; }
.form-success strong { font-size: 1.2rem; color: #064E3B; }
.form-success span { font-size: 0.95rem; color: #666; }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: #041f16;
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}
.footer-geo {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #10B981;
  border-radius: 50%;
  opacity: 0.04;
  top: -200px;
  right: -100px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-logo-icon { width: 36px; height: 36px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: #10B981;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover, .footer-contact a:hover { color: #10B981; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,250,245,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid rgba(6,78,59,0.08);
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .hero-inner { padding: 100px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-stat-divider { width: 40px; height: 1px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 350px; }
  .product-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-accent { font-size: 1.3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
}
