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

:root {
  --green: #1a7a4a;
  --green-mid: #25a261;
  --green-light: #3ecf82;
  --lime: #a8f542;
  --dark: #0c1a12;
  --dark2: #112218;
  --card-bg: #111e17;
  --text: #e8f5ee;
  --muted: #7aab8f;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

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

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  backdrop-filter: blur(18px);
  background: rgba(12,26,18,0.75);
  border-bottom: 1px solid rgba(62,207,130,0.08);
  transition: all .4s ease;
}
nav.scrolled {
  padding: 12px 60px;
  background: rgba(12,26,18,0.95);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.logo-wrap {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green-light), var(--lime));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 18px; color: var(--dark);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(62,207,130,0.35);
}
.logo-img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .logo-img { height: 56px; }
}
.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--white);
  line-height: 1.15;
}
.logo-text span { color: var(--green-light); }
.logo-sub { font-size: 10px; color: var(--muted); font-weight: 400; letter-spacing: .05em; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 14px; font-weight: 500;
  position: relative; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--lime);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(62,207,130,0.16);
  background: rgba(17,34,24,0.92);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.nav-toggle:hover {
  border-color: rgba(62,207,130,0.3);
  background: rgba(17,34,24,0.98);
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white); border: none; cursor: pointer;
  padding: 10px 24px; border-radius: 8px;
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  transition: all .3s;
  box-shadow: 0 0 20px rgba(37,162,97,0.3);
  text-decoration: none;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37,162,97,0.5);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}

/* Animated orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--green-mid), transparent);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--lime), transparent);
  bottom: 0; left: 20%;
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #0aff7e, transparent);
  top: 30%; left: -80px;
  animation-delay: -5s;
}
@keyframes floatOrb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.08); }
}

/* Grid lines background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(62,207,130,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62,207,130,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(62,207,130,0.1);
  border: 1px solid rgba(62,207,130,0.25);
  border-radius: 100px; padding: 6px 16px;
  font-size: 12px; font-weight: 500; color: var(--green-light);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.8); }
}

h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  opacity: 0; animation: fadeUp .9s .4s forwards;
}
h1 .accent { color: var(--green-light); }
h1 .line2 { display: block; }

.hero-sub {
  margin-top: 24px;
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--muted); max-width: 520px;
  opacity: 0; animation: fadeUp .9s .6s forwards;
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 44px;
  opacity: 0; animation: fadeUp .9s .8s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: white; text-decoration: none;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 500; font-size: 15px;
  transition: all .3s;
  box-shadow: 0 0 30px rgba(37,162,97,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(37,162,97,0.5); }
.btn-primary svg { transition: transform .3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text); text-decoration: none;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 500; font-size: 15px;
  border: 1px solid rgba(62,207,130,0.2);
  transition: all .3s;
}
.btn-ghost:hover {
  border-color: rgba(62,207,130,0.5);
  background: rgba(62,207,130,0.07);
  color: var(--white);
}

.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px;
  border-top: 1px solid rgba(62,207,130,0.1);
  opacity: 0; animation: fadeUp .9s 1s forwards;
}
.stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 42px; font-weight: 800; color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--lime); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* hero visual */
.hero-visual {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  width: 440px; height: 440px;
  opacity: 0; animation: fadeIn 1.2s 1s forwards;
}
.hero-visual-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(62,207,130,0.15);
  animation: spinSlow 20s linear infinite;
}
.hero-visual-ring:nth-child(2) {
  inset: 40px;
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(168,245,66,0.1);
}
.hero-visual-ring:nth-child(3) { inset: 80px; animation-duration: 10s; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.hero-visual-center {
  position: absolute; inset: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(62,207,130,0.25), rgba(26,122,74,0.1));
  border: 1px solid rgba(62,207,130,0.2);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(20px);
}
.hero-icon-wrap {
  font-family: 'Poppins', sans-serif;
  font-size: 52px; font-weight: 800;
  background: linear-gradient(135deg, var(--green-light), var(--lime));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.floating-card {
  position: absolute;
  background: rgba(17,34,24,0.85);
  border: 1px solid rgba(62,207,130,0.15);
  backdrop-filter: blur(20px);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}
.floating-card:nth-child(5) { top: 30px; right: 20px; animation-delay: 0s; }
.floating-card:nth-child(6) { bottom: 60px; left: 0; animation-delay: -2s; }
.floating-card:nth-child(7) { bottom: 150px; right: -20px; animation-delay: -1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-icon {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.fc-icon.green { background: rgba(62,207,130,0.15); }
.fc-icon.lime { background: rgba(168,245,66,0.12); }
.fc-icon.blue { background: rgba(62,130,207,0.15); }
.fc-label { font-size: 11px; color: var(--muted); }
.fc-value { font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SECTION COMMON ── */
section { padding: 100px 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 20px; height: 1.5px;
  background: var(--lime);
}
h2.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; color: var(--white);
  margin-bottom: 16px;
}
h2.section-title .hi { color: var(--green-light); }
.section-desc {
  font-size: 16px; color: var(--muted);
  line-height: 1.7; max-width: 540px;
}

/* ── SERVICES ── */
.services { background: var(--dark2); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 24px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(62,207,130,0.08);
  border-radius: 20px; overflow: hidden;
  transition: all .4s ease;
  cursor: pointer;
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(62,207,130,0.04), transparent);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(62,207,130,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-img { transform: scale(1.06); }

.service-img-wrap {
  height: 200px; overflow: hidden;
  background: var(--dark);
}
.service-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
  filter: brightness(0.85) saturate(0.9);
}
.service-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  background: linear-gradient(135deg, rgba(26,122,74,0.3), rgba(12,26,18,0.5));
}
.service-body { padding: 28px 28px 32px; }
.service-tag {
  display: inline-block;
  font-size: 10px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--lime);
  background: rgba(168,245,66,0.08);
  border-radius: 100px; padding: 4px 12px;
  margin-bottom: 14px;
}
.service-name {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 12px; line-height: 1.2;
}
.service-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 13px; font-weight: 500;
  color: var(--green-light); text-decoration: none;
  transition: gap .3s;
}
.service-link:hover { gap: 10px; }

/* ── ABOUT ── */
.about { background: var(--dark); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative; height: 520px;
}
.about-img-main {
  width: 75%; height: 80%;
  border-radius: 20px; overflow: hidden;
  position: absolute; bottom: 0; right: 0;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.about-img-accent {
  width: 55%; height: 55%;
  border-radius: 16px; overflow: hidden;
  position: absolute; top: 0; left: 0;
  border: 4px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  z-index: 2;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); }
.about-badge {
  position: absolute; bottom: 60px; left: -10px; z-index: 3;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  border-radius: 16px; padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(26,122,74,0.5);
}
.about-badge-num {
  font-family: 'Poppins', sans-serif;
  font-size: 36px; font-weight: 800; color: white;
  line-height: 1;
}
.about-badge-label {
  font-size: 11px; color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.about-content {}
.about-feature {
  display: flex; gap: 18px;
  margin-top: 36px;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all .3s;
}
.about-feature:hover {
  border-color: rgba(62,207,130,0.15);
  background: rgba(62,207,130,0.04);
}
.af-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(62,207,130,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.af-title {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.af-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── PROCESS ── */
.process { background: var(--dark2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(62,207,130,0.25), transparent);
}
.process-step {
  text-align: center; padding: 0 20px;
  position: relative;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid rgba(62,207,130,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--green-light);
  position: relative; z-index: 1;
  transition: all .3s;
}
.process-step:hover .step-num {
  background: var(--green);
  border-color: var(--green-mid);
  color: white;
  box-shadow: 0 0 30px rgba(37,162,97,0.5);
  transform: scale(1.1);
}
.step-title {
  font-family: 'Poppins', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.step-desc { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 60px;
}
.testi-card {
  background: var(--card-bg);
  border: 1px solid rgba(62,207,130,0.08);
  border-radius: 20px; padding: 32px;
  position: relative;
  transition: all .4s;
}
.testi-card:hover {
  border-color: rgba(62,207,130,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.testi-quote {
  font-size: 48px; line-height: .8;
  color: var(--green-light); font-family: Georgia, serif;
  margin-bottom: 16px; opacity: 0.5;
}
.testi-text {
  font-size: 14.5px; color: var(--muted);
  line-height: 1.75; font-style: italic;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 700; color: white; font-size: 16px;
  flex-shrink: 0;
}
.testi-name {
  font-family: 'Poppins', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--white);
}
.testi-role { font-size: 12px; color: var(--muted); }
.stars { color: var(--lime); font-size: 13px; margin-bottom: 16px; }

/* ── TEAM ── */
.team { background: var(--dark2); }
.team-showcase {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}
.founder-photo-wrap {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(62,207,130,0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
}
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,26,18,0) 38%, rgba(12,26,18,.18) 58%, rgba(12,26,18,.8) 100%),
    linear-gradient(135deg, rgba(62,207,130,.18), rgba(12,26,18,0) 46%);
  pointer-events: none;
  z-index: 1;
}
.founder-photo {
  width: 100%;
  height: 100%;
  display: block;
  min-height: 600px;
  object-fit: cover;
  object-position: 68% 4%;
  filter: saturate(1.02) contrast(1.04);
}
.founder-photo-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(12,26,18,.78);
  border: 1px solid rgba(62,207,130,.16);
  backdrop-filter: blur(12px);
}
.founder-photo-badge strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
}
.founder-photo-badge span {
  font-size: 13px;
  color: var(--green-light);
}
.founder-content {
  background:
    radial-gradient(circle at top right, rgba(62,207,130,.14), transparent 34%),
    linear-gradient(180deg, rgba(17,34,24,.94), rgba(12,26,18,.96));
  border: 1px solid rgba(62,207,130,.1);
  border-radius: 28px;
  padding: 42px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.02);
  align-self: start;
}
.founder-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(62,207,130,.08);
  border: 1px solid rgba(62,207,130,.14);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.founder-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.05;
  color: var(--white);
}
.founder-role {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}
.founder-intro,
.founder-story {
  font-size: 15.5px;
  line-height: 1.8;
  color: #cbe3d3;
  margin-top: 20px;
}
.founder-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.founder-stat {
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(62,207,130,.05);
  border: 1px solid rgba(62,207,130,.1);
}
.founder-stat strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}
.founder-stat span {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.founder-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.founder-focus span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(168,245,66,.08);
  border: 1px solid rgba(168,245,66,.14);
  color: #dff5b8;
  font-size: 12.5px;
  font-weight: 500;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: linear-gradient(135deg, var(--green) 0%, #0d5c35 50%, var(--dark2) 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(168,245,66,0.08), transparent 70%);
}
.cta-strip h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 4vw, 50px); font-weight: 800;
  color: white; position: relative; z-index: 1;
  margin-bottom: 16px;
}
.cta-strip p {
  color: rgba(255,255,255,.65); font-size: 16px;
  margin-bottom: 36px; position: relative; z-index: 1;
}
.cta-strip .btn-primary { position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  background: var(--dark); border-top: 1px solid rgba(62,207,130,0.08);
  padding: 64px 60px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-wrap { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.footer-contact { margin-top: 20px; }
.footer-contact a {
  display: block; font-size: 13px; color: var(--muted);
  text-decoration: none; margin-bottom: 6px;
  transition: color .3s;
}
.footer-contact a:hover { color: var(--green-light); }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700; color: var(--white);
  margin-bottom: 18px; letter-spacing: .05em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 13.5px; color: var(--muted);
  text-decoration: none; transition: color .3s;
}
.footer-col ul a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(62,207,130,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: gap;
}
.footer-bottom p { font-size: 12.5px; color: var(--muted); }
.footer-bottom a { color: var(--green-light); text-decoration: none; }

/* floating contact buttons */
.floating-contact {
  position: fixed;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.floating-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(0,0,0,.34);
}
.floating-contact-call {
  left: 24px;
  background: linear-gradient(135deg, rgba(26,122,74,.96), rgba(37,162,97,.92));
  border: 1px solid rgba(62,207,130,.24);
}
.floating-contact-whatsapp {
  right: 24px;
  background: linear-gradient(135deg, rgba(11,95,54,.96), rgba(37,211,102,.92));
  border: 1px solid rgba(97,255,162,.24);
}
.floating-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  font-size: 16px;
  flex-shrink: 0;
}
.floating-contact-label {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.floating-contact-label small {
  font-size: 11px;
  font-weight: 500;
  opacity: .82;
}

/* scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* responsive */
@media (max-width: 1024px) {
  nav { padding: 16px 32px; }
  .hero { padding: 120px 32px 80px; }
  .hero-visual { display: none; }
  section { padding: 80px 32px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-wrap { height: 360px; }
  .team-showcase { grid-template-columns: 1fr; }
  .founder-photo { min-height: 500px; object-position: 66% 6%; }
  footer { padding: 64px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 14px 20px; }
  nav {
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav-cta {
    order: 4;
    width: 100%;
    justify-content: center;
    display: none;
  }
  .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(17,34,24,.97);
    border: 1px solid rgba(62,207,130,0.1);
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(62,207,130,0.04);
  }
  .nav-links a::after { display: none; }
  #navbar.menu-open .nav-links,
  #navbar.menu-open .nav-cta { display: flex; }
  #navbar.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  #navbar.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  #navbar.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding: 100px 20px 60px; }
  section { padding: 60px 20px; }
  .founder-content { padding: 28px 22px; }
  .founder-photo { min-height: 390px; object-position: 64% 4%; }
  .founder-highlights { grid-template-columns: 1fr; }
  .founder-photo-badge { left: 16px; right: 16px; bottom: 16px; }
  footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 60px 20px; }
  .hero-stats { gap: 28px; }
  .process-steps::before { display: none; }
  .floating-contact {
    bottom: 18px;
    padding: 12px 14px;
  }
  .floating-contact-call { left: 14px; }
  .floating-contact-whatsapp { right: 14px; }
  .floating-contact-label span { display: none; }
}
