*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #4A8C4F;
  --green-deep:   #2D5E32;
  --green-light:  rgba(74,140,79,0.15);
  --bg:           #141416;
  --bg-card:      rgba(255,255,255,0.05);
  --bg-section:   #1C1C1F;
  --off-white:    #111113;
  --text:         #EDEDED;
  --muted:        #8A8A8A;
  --border:       rgba(255,255,255,0.07);
  --glass:        rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(20,20,22,0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-name span { color: var(--green); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }

.nav-links a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  font-weight: 500 !important;
}

.nav-cta:hover { background: var(--green-deep) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(20,20,22,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-mobile.open { opacity: 1; pointer-events: all; }

.nav-mobile a {
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--green); }

.nav-mobile .mob-cta {
  background: var(--green);
  color: #fff !important;
  padding: 0.75rem 2.5rem;
  border-radius: 4px;
  font-size: 1.1rem !important;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 8vw;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1600&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.6);
  z-index: 0;
}

#signal-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.hero-left { text-align: left; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(255,255,255,0.07);
}

.hero-logo-wrap {
  width: 80px;
  height: 80px;
  margin: 0 0 1.5rem;
  position: relative;
}

.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,140,79,0.35) 0%, transparent 70%);
  animation: pulse 2.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-logo-wrap img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}

h1 em { font-style: normal; color: #6fcf76; }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2.5rem;
  width: 100%;
  max-width: 340px;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.hero-stat-item { text-align: center; }

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #6fcf76;
  display: block;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

/* ── STATS BAR ── */
#stats {
  background: var(--green);
  padding: 2.5rem 5vw;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── SECTION COMMONS ── */
section { padding: 6rem 5vw; }

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ── SERVICES ── */
#services { background: var(--off-white); }

.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(74,140,79,0.12);
}

.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
  transition: filter 0.3s;
}

.service-card:hover .service-card-img { filter: saturate(1.1); }

.service-card-body { padding: 1.75rem; }

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green);
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.service-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ── PHOTO CAROUSEL ── */
#photos {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: #111;
  padding: 0;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.88);
}

.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.carousel-btn:hover { background: rgba(255,255,255,0.28); }
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
}

.carousel-dot.active { background: #fff; transform: scale(1.3); }

/* ── WHY US ── */
#why-wrap {
  position: relative;
  padding: 6rem 5vw;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.12) saturate(0.5);
  z-index: 0;
}

#why {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

#why .section-heading,
#why .section-eyebrow { color: #fff; }
#why .section-sub { color: rgba(255,255,255,0.65); }

.why-glass {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 2.5rem;
}

.why-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.why-item { display: flex; gap: 1rem; align-items: flex-start; }

.why-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.why-item-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.3rem;
}

.why-item-desc { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.orbit-container { position: relative; width: 280px; height: 280px; }

.orbit-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(74,140,79,0.4);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(74,140,79,0.5);
}

.orbit-ring:nth-child(2) { inset: -30px; animation: spin 18s linear infinite; }
.orbit-ring:nth-child(3) { inset: -70px; animation: spin 28s linear infinite reverse; }

@keyframes spin { to { transform: rotate(360deg); } }

.orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #6fcf76;
  top: -5px; left: 50%;
  margin-left: -5px;
}

.orbit-label {
  position: absolute;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── PROCESS ── */
#process { background: var(--off-white); }

.process-header { text-align: center; margin-bottom: 4rem; }

.process-steps {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -0.5rem;
  top: 1.2rem;
  color: var(--green);
  font-size: 1.2rem;
}

.process-step:last-child::after { display: none; }

.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  margin: 0 auto 1.25rem;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ── WHO TRUSTS US ── */
#trust {
  background: var(--bg);
  padding: 4rem 5vw;
  overflow: hidden;
}

.trust-header { text-align: center; margin-bottom: 3rem; }

.logo-track-wrap {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
  display: flex;
  gap: 4rem;
  align-items: center;
  animation: scroll-logos 18s linear infinite;
  width: max-content;
}

.logo-track:hover { animation-play-state: paused; }

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  height: 52px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-item img {
  height: 100%;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  transition: opacity 0.3s;
  opacity: 0.9;
}

.logo-item img:hover { opacity: 1; }

/* ── CONTACT ── */
#contact {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(0.12) saturate(0.4);
  z-index: 0;
}

.contact-inner {
  position: relative;
  z-index: 1;
  padding: 6rem 5vw;
}

.contact-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 600px;
  margin: 0 auto 1.25rem;
  line-height: 1.1;
}

.contact-sub {
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-info a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6fcf76;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-info a:hover { color: #fff; }
.contact-info svg { flex-shrink: 0; }

.contact-form {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--green); }

.contact-form textarea { resize: vertical; min-height: 120px; }

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.4); }

.contact-form button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-form button:hover { background: var(--green-deep); }

/* ── FOOTER ── */
footer {
  padding: 3rem 5vw;
  background: #0C0C0E;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.footer-brand img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.footer-brand span { color: var(--green); }

.footer-contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--green); }

footer small { color: rgba(255,255,255,0.3); font-size: 0.8rem; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-left { text-align: center; }
  .hero-logo-wrap { margin: 0 auto 1.5rem; }
  .hero-actions { justify-content: center; }
  .hero-right { display: none; }
  #why { grid-template-columns: 1fr; gap: 2.5rem; }
  #photos { height: 320px; }
  #stats { gap: 2rem; }
  .process-step::after { display: none; }
  #why-wrap { padding: 4rem 5vw; }
  .orbit-container { width: 220px; height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !
