/* ════════════════════════════════════════
   GREENPILL — MAIN STYLESHEET
   ════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:    #1a5c1a;
  --green:         #2d7a2d;
  --green-mid:     #3d9e3d;
  --green-light:   #4caf50;
  --green-pale:    #e8f5e9;
  --green-pale2:   #c8e6c9;

  --dark:          #0d1a0d;
  --dark2:         #1a2a1a;
  --body-bg:       #ffffff;
  --text:          #2c3e2c;
  --text-light:    #5a7a5a;
  --text-muted:    #8aa08a;
  --border:        #d4e8d4;

  --white:         #ffffff;
  --off-white:     #f7fbf7;

  --shadow-sm:     0 2px 8px rgba(45,122,45,.10);
  --shadow-md:     0 8px 32px rgba(45,122,45,.14);
  --shadow-lg:     0 20px 60px rgba(45,122,45,.18);

  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;

  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --container:     1240px;
  --header-h:      80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--body-bg);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section { padding: 100px 0; }

/* ── Typography ────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--dark);
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header.centered { text-align: center; }
.section-header.centered .section-eyebrow { justify-content: center; }
.section-header.centered .section-eyebrow::before { display: none; }
.section-header.centered .section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
}
.section-header.centered .section-desc { margin: 0 auto; }
.section-header { margin-bottom: 60px; }

.text-green { color: var(--green-light); }
.text-green-light { color: #a5d6a7; }

/* ── Buttons ───────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-light);
  color: white;
  border-color: var(--green-light);
}
.btn-primary:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,175,80,.35);
}

.btn-white {
  background: white;
  color: var(--green);
  border-color: white;
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-text {
  background: none;
  border: none;
  color: var(--green-light);
  padding: 0;
  font-weight: 600;
  font-size: 14px;
}
.btn-text:hover { color: var(--green); gap: 12px; }

.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Topbar ────────────────────────────── */
.topbar {
  background: var(--dark2);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.topbar-social:hover { background: var(--green-light); color: white; }

/* ── Header ────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 40px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
}
.logo-tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.nav { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--green-light); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
}

.header-cta { margin-left: 16px; padding: 10px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ──────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #0d2a0d 0%, #1a5c1a 40%, #2d7a2d 70%, #1a3a1a 100%);
}

/* Animated grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76,175,80,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

/* Radial glow */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,26,13,0.7) 0%, transparent 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,175,80,0.2);
  border: 1px solid rgba(76,175,80,0.4);
  color: #a5d6a7;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}

.hero-actions { display: flex; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  width: fit-content;
}
.hero-stat { text-align: center; padding: 0 32px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }
.hero-stat-number {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding: 6px;
}
.scroll-dot {
  width: 4px;
  height: 10px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ── Features Strip ────────────────────── */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.features-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.feature-strip-item:last-child { border-right: none; }
.feature-strip-item:hover { background: var(--off-white); }
.fsi-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.feature-strip-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 2px; color: var(--dark); }
.feature-strip-item p { font-size: 12px; color: var(--text-muted); }

/* ── About ─────────────────────────────── */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-main { position: relative; }
.about-img-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}
.about-img-placeholder.main-img {
  height: 420px;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-pale2) 100%);
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
}
.about-img-placeholder.secondary-img {
  height: 160px;
  background: var(--green);
  color: rgba(255,255,255,0.7);
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder.secondary-img svg { stroke: rgba(255,255,255,0.7); }

.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--green-light);
  color: white;
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 100px;
}
.exp-number {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.exp-label { font-size: 12px; line-height: 1.3; opacity: 0.9; }

.about-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.6;
}
.about-text {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.af-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--green-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-actions { display: flex; align-items: center; gap: 24px; }

/* ── Stats ─────────────────────────────── */
.stats-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.stat-item { text-align: center; color: white; }
.stat-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #a5d6a7;
  border: 1px solid rgba(255,255,255,0.12);
}
.stat-number {
  font-family: 'Manrope', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1;
  display: inline-block;
}
.stat-unit {
  font-family: 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green-pale2);
  display: inline-block;
  vertical-align: top;
  margin-top: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Services ──────────────────────────── */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.service-card.featured .service-title { color: white; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.75); }
.service-card.featured .service-icon { background: rgba(255,255,255,0.15); color: #a5d6a7; }
.service-card.featured .service-number { color: rgba(255,255,255,0.3); }
.service-card.featured .service-link { color: #a5d6a7; }
.service-card.featured::before { background: #a5d6a7; }

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--green-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: all var(--transition);
}
.service-card:not(.featured):hover .service-icon {
  background: var(--green-light);
  color: white;
}
.service-number {
  font-family: 'Manrope', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--border);
}
.service-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.service-card.featured .service-desc { color: rgba(255,255,255,0.75); }

/* ── Process ───────────────────────────── */
.process { position: relative; background: var(--off-white); overflow: hidden; }
.process-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(76,175,80,0.06) 0%, transparent 70%);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}
.process-line {
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--green-light), var(--green-pale2));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ps-icon {
  width: 72px;
  height: 72px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 8px var(--green-pale);
  transition: all var(--transition);
}
.process-step:hover .ps-icon {
  background: var(--green-light);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px var(--green-pale2);
}
.ps-number {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-light);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.process-step h4 { font-size: 17px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ── Projects ──────────────────────────── */
.projects { background: var(--white); }
.projects-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Inter', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-light);
  color: white;
  border-color: var(--green-light);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  background: var(--white);
  border: 1px solid var(--border);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.project-img { position: relative; overflow: hidden; height: 220px; }
.project-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-pale2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.project-card:hover .project-img-placeholder { transform: scale(1.05); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,42,13,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-view {
  background: var(--green-light);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform var(--transition);
}
.project-card:hover .project-view { transform: translateY(0); }
.project-info { padding: 20px 24px; }
.project-category {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-light);
  margin-bottom: 8px;
  display: block;
}
.project-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.project-info p { font-size: 13px; color: var(--text-muted); }
.section-cta { text-align: center; margin-top: 56px; }

/* ── Testimonials ──────────────────────── */
.testimonials { position: relative; overflow: hidden; background: var(--off-white); }
.testimonials-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(76,175,80,0.06) 0%, transparent 60%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote { margin-bottom: 20px; }
.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--text-muted); }
.testimonial-stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ── CTA Banner ────────────────────────── */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 60%, #2d6a2d 100%);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-banner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: white;
  margin-bottom: 10px;
}
.cta-banner-content p { color: rgba(255,255,255,0.7); font-size: 16px; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Blog ──────────────────────────────── */
.blog { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--white);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.blog-img {
  position: relative;
  overflow: hidden;
}
.featured-blog .blog-img { height: 260px; }
.blog-card:not(.featured-blog) .blog-img { height: 180px; }
.blog-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--green-pale2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.blog-card:hover .blog-img-placeholder { transform: scale(1.05); }
.blog-category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-light);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-content { padding: 24px; }
.blog-meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-card:not(.featured-blog) .blog-title { font-size: 15px; }
.blog-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }

/* ── Contact ───────────────────────────── */
.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-title { font-size: 32px; margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; gap: 16px; align-items: flex-start; }
.cd-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.cd-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 4px; }
.cd-value { font-size: 14px; color: var(--text); line-height: 1.5; }
.cd-value a { color: var(--green); transition: color var(--transition); }
.cd-value a:hover { color: var(--green-light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(76,175,80,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; }

/* ── Map ───────────────────────────────── */
.map-section { height: 400px; overflow: hidden; }
.map-section iframe { display: block; width: 100%; height: 100%; filter: saturate(0.8); }

/* ── Footer ────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 80px 0 60px; }
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 60px;
}
.footer-logo .logo-name { color: white; }
.footer-about { font-size: 14px; line-height: 1.7; margin: 20px 0 24px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social-link:hover { background: var(--green-light); color: white; }
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 1px; color: var(--green-light); }
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--green-light); }
.heart { color: var(--green-light); }

/* ── Back to Top ───────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green-light);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(76,175,80,0.4);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green); transform: translateY(-4px); }

/* ── Animations ────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ────────────────────────── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 500px; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .featured-blog { grid-column: span 2; }
}

@media (max-width: 900px) {
  .features-strip-grid { grid-template-columns: 1fr 1fr; }
  .feature-strip-item:nth-child(2) { border-right: none; }
  .feature-strip-item:nth-child(3) { border-top: 1px solid var(--border); }
  .feature-strip-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-line { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .hero-stat-divider { width: 100%; height: 1px; }
  .hero-stat { padding: 0; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  .section { padding: 70px 0; }

  .topbar-left { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar-right { display: none; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { width: 100%; padding: 12px 16px; border-radius: var(--radius-sm); }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 100px 0 80px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-blog { grid-column: auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-content { text-align: center; flex-direction: column; }
  .cta-banner-actions { justify-content: center; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .about-img-secondary { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
  .about-img-placeholder.secondary-img { height: 120px; }
  .about-experience-badge { top: 10px; left: 10px; }
  .hero-stats { width: 100%; }
}

@media (max-width: 480px) {
  .features-strip-grid { grid-template-columns: 1fr; }
  .feature-strip-item { border-right: none; border-top: 1px solid var(--border); }
  .feature-strip-item:first-child { border-top: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .projects-filter { gap: 6px; }
}

/* ══════════════════════════════════════
   NEW SECTIONS — GREENPILL UPDATES
══════════════════════════════════════ */

/* ── Logo Image ─────────────────────── */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ── Hero Slider ───────────────────── */
.hero-slider { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
  position: relative;
}

.hero-bg-1 {
  background: linear-gradient(135deg, #0d2a0d 0%, #1a5c1a 40%, #2d7a2d 70%, #1a3a1a 100%);
}
.hero-bg-2 {
  background: linear-gradient(135deg, #0d1a2a 0%, #1a3a5c 40%, #2d5a7a 70%, #0d2a3a 100%);
}
.hero-bg-3 {
  background: linear-gradient(135deg, #1a1a0d 0%, #3a4a1a 40%, #4a6a2d 70%, #2a3a1a 100%);
}

/* shared hero-bg grid & glow effects apply to all bg divs */
.hero-bg-1::before, .hero-bg-2::before, .hero-bg-3::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(76,175,80,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76,175,80,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
.hero-bg-1::after, .hero-bg-2::after, .hero-bg-3::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(76,175,80,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero-slider-controls {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}
.slider-btn {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.slider-btn:hover { background: var(--green-light); border-color: var(--green-light); }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--green-light);
}

/* ── Video + CTA Section ────────────── */
.video-cta-section { background: var(--off-white); }
.video-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.video-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-cta-content .section-title { margin-bottom: 16px; }
.video-cta-content > p { color: var(--text-light); margin-bottom: 32px; font-size: 15px; line-height: 1.7; }
.video-cta-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.vcf-item { display: flex; gap: 16px; align-items: flex-start; }
.vcf-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}
.vcf-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.vcf-item p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ── FAQ Section ───────────────────── */
.faq-section { position: relative; background: var(--white); overflow: hidden; }
.faq-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 50%, rgba(76,175,80,0.04) 0%, transparent 70%);
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-light); }
.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--green-light);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }
.faq-answer p { font-size: 15px; color: var(--text-light); line-height: 1.75; }

/* ── Team Section ──────────────────── */
.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale2);
}
.team-avatar {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.team-info { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; }
.team-name { font-size: 15px; font-weight: 700; color: var(--dark); text-align: center; line-height: 1.3; }
.team-role {
  font-size: 12px;
  font-weight: 500;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  transition: all var(--transition);
  margin-top: 4px;
}
.team-linkedin:hover { background: #0077b5; color: white; }

/* ── Contact Badges ─────────────────── */
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.contact-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--green-pale2);
}

/* ── Process 3-step override ─────────── */
.process-steps-3 {
  grid-template-columns: repeat(3, 1fr);
}
.process-steps-3 .process-line {
  left: 16%;
  right: 16%;
}

/* ── Responsive additions ────────────── */
@media (max-width: 1100px) {
  .video-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .process-steps-3 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .video-cta-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-slider-controls { bottom: 60px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-img { height: 52px; }
  .footer-logo-img { height: 36px; }
  .faq-question { font-size: 15px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .team-card { padding: 20px 16px; }
  .hero-slider-controls { gap: 10px; }
}
