:root {
  --green:       #16a34a;
  --green-dark:  #14532d;
  --green-light: #dcfce7;
  --yellow:      #facc15;
  --yellow-dark: #ca8a04;
  --text-dark:   #0f172a;
  --text-mid:    #475569;
  --card-bg:     #ffffff;
  --section-bg:  #f8fafc;
}

* { box-sizing: border-box; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, .display-font {
  font-family: 'Syne', sans-serif;
}

/* UTILITIES */
.btn-primary-fe {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .3px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(22,163,74,.35);
}
.btn-primary-fe:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,163,74,.45);
  color: #fff;
}
.btn-outline-fe {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50px;
  padding: 13px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-fe:hover {
  background: var(--green);
  color: #fff;
}
.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
}
.section-title span {
  color: var(--green);
}

/* HERO */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a2e1a 0%, #14532d 40%, #166534 70%, #15803d 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 70% 50%, rgba(250,204,21,.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(22,163,74,.2) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.avif');
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.sun-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,204,21,.25) 0%, rgba(250,204,21,.06) 40%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: .8; }
  50% { transform: translateY(-50%) scale(1.15); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(250,204,21,.15);
  border: 1px solid rgba(250,204,21,.4);
  color: var(--yellow);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.hero-headline .accent {
  color: var(--yellow);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat-item {
  text-align: center;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
}

/* HERO FORM */
.hero-form-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 28px;
  max-width: 440px;
}
.hero-form-card label {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
.hero-form-card .form-control {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  color: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border .2s, background .2s;
  width: 100%;
}
.hero-form-card .form-control::placeholder {
  color: rgba(255,255,255,.5);
}
.hero-form-card .form-control:focus {
  background: rgba(255,255,255,.22);
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(250,204,21,.2);
  color: #fff;
  outline: none;
}
.hero-form-card .btn-quote {
  width: 100%;
  background: var(--yellow);
  color: #0f172a;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .3px;
  transition: background .25s, transform .2s;
  margin-top: 6px;
  cursor: pointer;
}
.hero-form-card .btn-quote:hover {
  background: #fde047;
  transform: translateY(-2px);
}
.hero-form-card .form-text {
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  text-align: center;
  margin-top: 10px;
}

/* TRUST */
.trust-section {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
}
.trust-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.trust-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.trust-desc {
  font-size: .82rem;
  color: var(--text-mid);
  margin-top: 3px;
}
.trust-divider {
  width: 1px;
  height: 50px;
  background: #e2e8f0;
  margin: auto;
}

/* HOW IT WORKS */
.hiw-section {
  background: var(--section-bg);
  padding: 90px 0;
}
.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  position: relative;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(0,0,0,.04);
  height: 100%;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(22,163,74,.12);
}
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--green-light);
  z-index: 1;
  font-weight: 700;
}
.step-card h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: .9rem;
  color: var(--text-mid);
  margin: 0;
}

/* BENEFITS */
.benefits-section {
  background: #fff;
  padding: 90px 0;
}
.benefit-card {
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.benefit-card.bc-1 {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.benefit-card.bc-2 {
  background: linear-gradient(135deg, #fefce8, #fef9c3);
}
.benefit-card.bc-3 {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}
.benefit-card.bc-4 {
  background: linear-gradient(135deg, #fdf4ff, #fae8ff);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.1);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.benefit-card h5 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: .88rem;
  color: var(--text-mid);
  margin: 0;
}

/* SERVICES */
.services-section {
  background: var(--section-bg);
  padding: 90px 0;
}
.service-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  background: #fff;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(0,0,0,.13);
}
.service-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--green);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.service-body {
  padding: 24px;
}
.service-body h5 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-body p {
  font-size: .88rem;
  color: var(--text-mid);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  margin-top: 10px;
  transition: gap .2s;
}
.service-link:hover {
  gap: 10px;
  color: var(--green-dark);
}

/* TESTIMONIALS */
.testimonials-section {
  background: #fff;
  padding: 90px 0;
}
.testi-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.05);
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0,0,0,.11);
}
.testi-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--green-light);
  font-family: Georgia, serif;
  margin-bottom: 14px;
}
.testi-text {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-stars {
  color: var(--yellow);
  font-size: .9rem;
  margin-bottom: 14px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: var(--text-dark);
}
.testi-loc {
  font-size: .8rem;
  color: var(--text-mid);
}
.testimonials-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
  padding-bottom: 20px;
}
.testi-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 0;
  padding: 0 10px;
}

/* CTA BANNER */
.cta-section {
  background: linear-gradient(135deg, #14532d 0%, #166534 50%, #15803d 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(250,204,21,.12) 0%, transparent 60%),
              radial-gradient(ellipse 30% 60% at 10% 50%, rgba(22,163,74,.3) 0%, transparent 60%);
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
}
.cta-section h2 span {
  color: var(--yellow);
}
.cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  max-width: 500px;
}
.btn-cta-yellow {
  background: var(--yellow);
  color: #0f172a;
  border: none;
  border-radius: 50px;
  padding: 16px 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 6px 24px rgba(250,204,21,.35);
  text-decoration: none;
  display: inline-block;
}
.btn-cta-yellow:hover {
  background: #fde047;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(250,204,21,.45);
  color: #0f172a;
}
.btn-cta-outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50px;
  padding: 14px 38px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.btn-cta-outline-w:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 9999;
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  animation: wa-pop .4s cubic-bezier(.34,1.56,.64,1) both;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
@keyframes wa-pop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .step-arrow { display: none !important; }
  .trust-divider { display: none; }
  .testi-card { flex: 0 0 calc(50% - 16px); }
}
@media (max-width: 575px) {
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 1.4rem; }
  .testi-card { flex: 0 0 100%; }
}