/* ============================================================
   VerdantLeaf — Nature-Inspired Organic Design System
   Growing Smarter Systems. Rooted in Precision.
   ============================================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  /* Primary greens */
  --green-900: #1a3a22;
  --green-800: #214d2e;
  --green-700: #2a6b3a;
  --green-600: #348a48;
  --green-500: #3ea857;
  --green-400: #5bc075;
  --green-300: #81d496;
  --green-200: #ace5ba;
  --green-100: #cef2d6;
  --green-50: #eaf9ee;

  /* Accent — fresh leaf */
  --leaf: #4caf50;
  --leaf-light: #81c784;
  --leaf-dark: #388e3c;

  /* Neutrals */
  --white: #ffffff;
  --cream: #f6faf3;
  --warm-white: #fafcf7;
  --stone-50: #f5f7f4;
  --stone-100: #e8ede5;
  --stone-200: #d2dbce;
  --stone-300: #b0bfaa;
  --stone-400: #8a9c83;
  --stone-500: #6b7d64;
  --stone-600: #54634e;
  --stone-700: #3e4a3a;
  --stone-800: #2a3327;
  --stone-900: #1a1f18;

  /* Semantic */
  --text-primary: #1a2a1a;
  --text-secondary: #3a4f3a;
  --text-muted: #5f7560;
  --bg-body: #f8fbf6;
  --bg-card: #ffffff;
  --border: #dce8d9;
  --border-light: #edf4ea;

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(30, 60, 30, 0.06), 0 1px 2px rgba(30, 60, 30, 0.04);
  --shadow-md: 0 4px 16px rgba(30, 60, 30, 0.07), 0 2px 6px rgba(30, 60, 30, 0.04);
  --shadow-lg: 0 8px 32px rgba(30, 60, 30, 0.08), 0 3px 10px rgba(30, 60, 30, 0.04);
  --shadow-xl: 0 16px 48px rgba(30, 60, 30, 0.10), 0 4px 16px rgba(30, 60, 30, 0.05);
  --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.12);

  /* Typography */
  --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --section-gap: 7rem;
  --container-pad: 2rem;

  /* Border radius — organic, rounded */
  --radius-sm: 0.625rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 180ms;
  --duration-base: 280ms;
  --duration-slow: 400ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--green-600);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

a:hover {
  color: var(--green-500);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); letter-spacing: -0.01em; }
h4 { font-size: 1.15rem; }

/* --- Utility --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons — pill-shaped, organic --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(52, 138, 72, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  box-shadow: 0 6px 24px rgba(52, 138, 72, 0.35);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-600);
  border: 2px solid var(--green-300);
}

.btn-secondary:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  transform: translateY(-2px);
  color: var(--green-700);
}

.btn-ghost {
  background: transparent;
  color: var(--green-600);
  padding: 0.625rem 1.25rem;
}

.btn-ghost:hover {
  background: var(--green-50);
  color: var(--green-700);
}

/* --- Glassmorphism Card --- */
.glass-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* --- Section dividers — curved organic waves --- */
.section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

.section-divider.flip svg {
  transform: rotate(180deg);
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  transition: all var(--duration-base) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(30, 60, 30, 0.06);
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--green-800);
  letter-spacing: -0.02em;
  z-index: 1001;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  border-radius: var(--radius-full);
  background: var(--green-400);
  transition: width var(--duration-base) var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green-600);
}

.nav-cta {
  background: var(--green-600);
  color: var(--white) !important;
  padding: 0.625rem 1.5rem !important;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: all var(--duration-base) var(--ease-out) !important;
}

.nav-cta:hover {
  background: var(--green-700) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 138, 72, 0.3);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================================
   HERO — Asymmetric organic layout with leaf motif
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(165deg, #f2faf3 0%, #e8f5e9 30%, #f8fbf6 60%, #f0f7f1 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(129, 212, 150, 0.18) 0%, rgba(206, 242, 214, 0.08) 50%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -8%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 168, 87, 0.10) 0%, rgba(172, 229, 186, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--green-700);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.75rem;
  border: 1px solid var(--green-100);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--green-900);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 500px;
}

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

/* Hero visual — overlapping organic shapes */
.hero-visual {
  position: relative;
  height: 520px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-main {
  width: 380px;
  height: 380px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.9), rgba(76, 175, 80, 0.12));
  border: 1px solid rgba(76, 175, 80, 0.18);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.hero-orb-secondary {
  width: 180px;
  height: 180px;
  top: 5%;
  right: 10%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.7), rgba(129, 212, 150, 0.18));
  border: 1px solid rgba(129, 212, 150, 0.3);
  box-shadow: var(--shadow-md);
}

.hero-orb-tertiary {
  width: 120px;
  height: 120px;
  bottom: 8%;
  left: 5%;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.7), rgba(62, 168, 87, 0.15));
  border: 1px solid rgba(62, 168, 87, 0.25);
  box-shadow: var(--shadow-md);
}

/* Leaf icon inside hero orb */
.hero-leaf-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  opacity: 0.9;
}

/* Hero floating cards */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.hero-float-card .icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card.card-1 {
  top: 12%;
  left: 0;
  animation: float-card 5s ease-in-out infinite;
}

.hero-float-card.card-1 .icon-circle {
  background: var(--green-100);
  color: var(--green-700);
}

.hero-float-card.card-2 {
  bottom: 18%;
  right: 0;
  animation: float-card 5s ease-in-out 1.5s infinite;
}

.hero-float-card.card-2 .icon-circle {
  background: #e8f0fe;
  color: #2a6b8a;
}

.hero-float-card.card-3 {
  top: 45%;
  right: 8%;
  animation: float-card 5s ease-in-out 3s infinite;
}

.hero-float-card.card-3 .icon-circle {
  background: #fef3e8;
  color: #8a5c2a;
}

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

/* Hero wave divider */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   SECTIONS — General
   ============================================================ */
.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-500);
  background: var(--green-50);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--green-900);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Section backgrounds --- */
.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--cream);
}

.section-green-tint {
  background: linear-gradient(180deg, #f2faf3 0%, #eaf7ed 100%);
}

/* ============================================================
   ABOUT — Asymmetric staggered layout
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-primary {
  width: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #e8f5e9, #c8e6c9, #a5d6a7);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.about-img-primary svg {
  width: 120px;
  height: 120px;
  opacity: 0.3;
}

.about-img-secondary {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 65%;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: 3;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-stat {
  text-align: center;
  padding: 0.75rem;
}

.about-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.1;
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.about-text h2 {
  margin-bottom: 1.25rem;
}

.about-text .lead {
  font-size: 1.15rem;
  color: var(--green-700);
  font-weight: 600;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.5rem;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-50);
  color: var(--green-800);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--green-100);
}

.value-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES — Staggered Z-pattern organic cards
   ============================================================ */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.service-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all var(--duration-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--green-200);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--green-400), var(--green-600));
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.service-card:nth-child(even) {
  grid-template-columns: 2fr 1fr;
}

.service-card:nth-child(even) .service-icon-wrapper {
  order: 2;
}

.service-card:nth-child(even)::before {
  left: auto;
  right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  position: relative;
}

.service-icon-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed var(--green-200);
  opacity: 0.6;
}

.service-icon-circle svg {
  width: 48px;
  height: 48px;
  color: var(--green-600);
}

.service-info h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--green-900);
}

.service-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--stone-100);
  color: var(--stone-700);
}

/* ============================================================
   INDUSTRIES — Horizontal scrollable pill cards
   ============================================================ */
.industries-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--duration-base) var(--ease-out);
}

.industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-200);
}

.industry-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--green-600);
}

.industry-icon svg {
  width: 30px;
  height: 30px;
}

.industry-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--green-900);
}

.industry-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS — Vertical organic timeline
   ============================================================ */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--green-200), var(--green-500), var(--green-200));
  border-radius: var(--radius-full);
  transform: translateX(-50%);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-step:nth-child(odd) .process-content {
  order: 1;
  text-align: right;
}

.process-step:nth-child(odd) .process-marker {
  order: 2;
  justify-content: flex-start;
}

.process-step:nth-child(even) .process-content {
  order: 2;
  text-align: left;
}

.process-step:nth-child(even) .process-marker {
  order: 1;
  justify-content: flex-end;
}

.process-marker {
  display: flex;
  align-items: center;
}

.marker-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--green-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-700);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.process-content {
  background: var(--white);
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.process-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--green-900);
}

.process-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================================
   CONTACT — Overlapping form section
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  padding: 2.5rem;
  background: var(--green-900);
  border-radius: var(--radius-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #c5d4c5;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-300);
}

.contact-detail-text span {
  display: block;
  font-size: 0.8rem;
  color: #8da68d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-detail-text strong {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.contact-form-wrap h3 {
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--stone-50);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  margin-top: 0.5rem;
}

.form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--green-900);
}

.cta-inner p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--green-900);
  color: #c5d4c5;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #99b099;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
}

.footer-logo svg {
  width: 30px;
  height: 30px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  color: #99b099;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition: color var(--duration-fast);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #99b099;
  text-decoration: none;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ============================================================
   LEGAL PAGES (Privacy & Terms)
   ============================================================ */
.legal-page {
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--green-800);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--green-700);
}

.legal-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.legal-content li {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

.legal-content address {
  font-style: normal;
  color: var(--text-secondary);
  line-height: 1.8;
}

.legal-content strong {
  color: var(--text-primary);
}

.legal-content a {
  color: var(--green-600);
  text-decoration: underline;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --section-gap: 5rem;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 1;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    height: 350px;
    order: 0;
  }

  .hero-orb-main {
    width: 260px;
    height: 260px;
  }

  .hero-orb-secondary {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
  }

  .hero-orb-tertiary {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 15%;
  }

  .hero-leaf-svg {
    width: 100px;
    height: 100px;
  }

  .hero-float-card {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-secondary {
    display: none;
  }

  .service-card,
  .service-card:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .service-card:nth-child(even) .service-icon-wrapper {
    order: -1;
  }

  .service-card::before,
  .service-card:nth-child(even)::before {
    width: 100%;
    height: 5px;
    top: 0;
    left: 0;
    right: auto;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }

  .service-icon-circle {
    margin: 0 auto;
  }

  .industries-scroll {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .process-step,
  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step:nth-child(odd) .process-content,
  .process-step:nth-child(even) .process-content {
    text-align: left;
    order: 2;
  }

  .process-step:nth-child(odd) .process-marker,
  .process-step:nth-child(even) .process-marker {
    order: 1;
    justify-content: center;
  }

  .process-timeline::before {
    left: 28px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 4rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: var(--white);
    padding: 6rem 2rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--duration-base) var(--ease-out);
    gap: 1.5rem;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-visual {
    height: 280px;
  }

  .hero-orb-main {
    width: 200px;
    height: 200px;
  }

  .hero-orb-secondary {
    width: 90px;
    height: 90px;
  }

  .hero-orb-tertiary {
    width: 60px;
    height: 60px;
  }

  .hero-leaf-svg {
    width: 80px;
    height: 80px;
  }

  .industries-scroll {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    display: none;
  }

  .marker-circle {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
}
