/* ═══════════════════════════════════════════════════════════════════════════
   styles.css — Vansh Enterprises B2B Manufacturing Website
   Brand: Dark Green #085B20 · Mid #0E7A2C · Accent #41E296
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  --c-green-900:  #054016;
  --c-green-800:  #085B20;
  --c-green-700:  #0E7A2C;
  --c-green-600:  #1A9A3D;
  --c-green-400:  #41E296;
  --c-green-100:  #E8F5EC;
  --c-green-50:   #F0FAF4;

  --c-gray-950:   #0A0A0A;
  --c-gray-900:   #161A15;
  --c-gray-800:   #1C1C1E;
  --c-gray-600:   #4B5563;
  --c-gray-500:   #6B7280;
  --c-gray-300:   #D1D5DB;
  --c-gray-200:   #E5E7EB;
  --c-gray-100:   #F3F4F6;
  --c-gray-50:    #FAFAF9;
  --c-white:      #FFFFFF;

  --color-primary:      var(--c-green-800);
  --color-primary-dark: var(--c-green-900);
  --color-primary-light:var(--c-green-700);
  --color-accent:       var(--c-green-400);
  --color-text:         var(--c-gray-600);
  --color-heading:      var(--c-gray-900);
  --color-muted:        var(--c-gray-500);
  --color-border:       var(--c-gray-200);
  --color-bg:           var(--c-white);
  --color-bg-light:     var(--c-gray-50);
  --color-bg-green:     var(--c-green-50);

  --font: "Inter", "Segoe UI", system-ui, Arial, sans-serif;
  --max-w: 1280px;
  --nav-h: 72px;
  --r: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --sh-sm: 0 1px 4px rgba(0,0,0,.07);
  --sh:    0 4px 14px rgba(0,0,0,.08);
  --sh-lg: 0 12px 32px rgba(0,0,0,.12);
  --ease:  200ms ease;
  --ease-md: 320ms cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul,ol{ list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }
input,select,textarea,button { font: inherit; }
:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── Layout Utilities ───────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

.section-pad   { padding-block: 5rem; }
.section-pad-sm{ padding-block: 3.5rem; }

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

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 2rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── Typography ─────────────────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--c-green-100);
  padding: .25rem .75rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--color-muted);
  margin-top: .75rem;
  max-width: 620px;
}
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin-inline: auto; }

h1 { font-size: clamp(2rem,5vw,3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -.025em; color: var(--color-heading); }
h2 { font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 700; line-height: 1.25; letter-spacing: -.02em; color: var(--color-heading); }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.35; color: var(--color-heading); }
h4 { font-size: 1rem; font-weight: 600; color: var(--color-heading); }
p  { line-height: 1.7; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.625rem;
  border-radius: var(--r);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-lg { padding: .9375rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }

.btn-primary {
  background: var(--color-primary);
  color: var(--c-white);
  border-color: var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }

.btn-accent {
  background: var(--c-green-400);
  color: var(--c-green-900);
  border-color: var(--c-green-400);
}
.btn-accent:hover { background: #32d470; border-color: #32d470; }

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--c-white); }

.btn-outline-white {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--c-white); }

.btn-white {
  background: var(--c-white);
  color: var(--color-primary);
  border-color: var(--c-white);
}
.btn-white:hover { background: var(--c-green-100); border-color: var(--c-green-100); }

/* ── Navigation ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.1); }

.nav-container {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 2rem;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo { flex-shrink: 0; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: .125rem;
  margin-right: 1rem;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .4375rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-heading);
  border-radius: var(--r);
  transition: color var(--ease), background var(--ease);
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active { color: var(--color-primary); background: var(--c-green-50); }
.nav-link svg { transition: transform var(--ease); flex-shrink: 0; }

/* Dropdown */
.nav-dropdown-wrap { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: var(--c-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: .5rem;
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  pointer-events: none;
}
.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav-dropdown-wrap:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown-item {
  display: block;
  padding: .5625rem 1rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-heading);
  border-radius: 6px;
  transition: background var(--ease), color var(--ease);
}
.nav-dropdown-item:hover { background: var(--c-green-50); color: var(--color-primary); }

.nav-cta { margin-left: .5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  border-radius: var(--r);
  transition: background var(--ease);
}
.nav-toggle:hover { background: var(--c-green-50); }
.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--color-heading);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  display: block;
}
.nav-toggle.open .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--c-white);
    padding: 1.5rem;
    gap: .5rem;
    transform: translateX(100%);
    transition: transform var(--ease-md);
    overflow-y: auto;
    margin-left: 0;
    border-top: 1px solid var(--color-border);
    z-index: 99;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; width: 100%; margin-right: 0; gap: .25rem; }
  .nav-link { font-size: 1rem; padding: .625rem .875rem; }
  .nav-dropdown-wrap { width: 100%; }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--c-green-50);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: .375rem .5rem;
    border-radius: var(--r);
    display: none;
    margin-top: .25rem;
  }
  .nav-dropdown.open { display: block; }
  .nav-dropdown-btn { width: 100%; justify-content: space-between; }
  .nav-cta { width: 100%; justify-content: center; margin-left: 0; margin-top: 1rem; }
}

/* ── Hero (Homepage) ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--c-white);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,64,22,.88) 0%, rgba(8,91,32,.75) 60%, rgba(14,122,44,.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: 5rem 3rem;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(65,226,150,.15);
  border: 1px solid rgba(65,226,150,.35);
  color: var(--c-green-400);
  padding: .375rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2rem,5vw,3.5rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem,2vw,1.1875rem);
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .875rem;
  margin-bottom: 3rem;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 580px;
}
.hero-metric {
  padding: 1rem 1.25rem;
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(8px);
}
.hero-metric-val {
  display: block;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--c-green-400);
  line-height: 1;
  margin-bottom: .25rem;
}
.hero-metric-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
@media (min-width: 768px) {
  .hero-metrics { grid-template-columns: repeat(4,1fr); max-width: 720px; }
}

/* ── Page Hero (Inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--c-green-900) 0%, var(--c-green-800) 60%, var(--c-green-700) 100%);
  color: var(--c-white);
  padding-block: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(65,226,150,.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--c-white);
  font-size: clamp(1.75rem,4vw,2.875rem);
  margin-top: .875rem;
  margin-bottom: .875rem;
}
.page-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  max-width: 680px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .375rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb li { display: flex; align-items: center; gap: .375rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; opacity: .5; }
.breadcrumb a { color: rgba(255,255,255,.75); transition: color var(--ease); }
.breadcrumb a:hover { color: var(--c-green-400); }
.breadcrumb [aria-current="page"] { color: var(--c-green-400); }

/* ── Service Cards ──────────────────────────────────────────────────────── */
.service-card {
  background: var(--c-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-3px);
  border-color: var(--c-green-100);
}
.service-card-icon {
  width: 52px;
  height: 52px;
  background: var(--c-green-50);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.service-card-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.125rem; }
.service-card p { font-size: .9375rem; color: var(--color-muted); flex: 1; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: auto;
  transition: gap var(--ease);
}
.service-card:hover .service-card-link { gap: .625rem; }

/* ── Product Category Cards ─────────────────────────────────────────────── */
.product-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--c-white);
}
.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover img { transform: scale(1.04); }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,64,22,.9) 0%, rgba(5,64,22,.3) 50%, transparent 100%);
}
.product-card-body {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
}
.product-card-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-green-400);
  margin-bottom: .5rem;
  display: block;
}
.product-card h3 { font-size: 1.375rem; color: var(--c-white); margin-bottom: .375rem; }
.product-card p  { font-size: .875rem; color: rgba(255,255,255,.75); }

/* ── Stats / Metrics ────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--c-green-50);
  border-top: 1px solid var(--c-green-100);
  border-bottom: 1px solid var(--c-green-100);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 0;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--c-green-100);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-val {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .875rem;
  color: var(--color-muted);
  margin-top: .375rem;
  display: block;
  font-weight: 500;
}

/* ── Why / Feature List ─────────────────────────────────────────────────── */
.feature-card {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  padding: 2rem;
  background: var(--c-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--ease);
}
.feature-card:hover { box-shadow: var(--sh); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--c-green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.0625rem; }
.feature-card p { font-size: .9375rem; color: var(--color-muted); }

/* ── Process Timeline ───────────────────────────────────────────────────── */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--c-green-100);
}
.process-item {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-item:last-child { padding-bottom: 0; }
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--c-white);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.process-body { padding-top: .875rem; }
.process-body h3 { font-size: 1.125rem; margin-bottom: .375rem; }
.process-body p  { font-size: .9375rem; color: var(--color-muted); }

/* ── FAQ Accordion ──────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: .625rem; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--ease);
}
.faq-question:hover { background: var(--c-green-50); }
.faq-question[aria-expanded="true"] { color: var(--color-primary); background: var(--c-green-50); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--ease), background var(--ease), transform var(--ease);
  color: var(--color-muted);
}
.faq-question[aria-expanded="true"] .faq-icon {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--c-white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-md), padding var(--ease-md);
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: .9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}
.faq-answer-inner p + p { margin-top: .75rem; }

/* ── CTA Band ───────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--c-green-900) 0%, var(--c-green-800) 100%);
  color: var(--c-white);
  text-align: center;
  padding-block: 5rem;
}
.cta-band h2 { color: var(--c-white); font-size: clamp(1.625rem,3vw,2.25rem); margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.78); font-size: 1.0625rem; max-width: 560px; margin-inline: auto; margin-bottom: 2rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ── Two-Column Layout ──────────────────────────────────────────────────── */
.split {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 768px) { .split { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .split { grid-template-columns: 55% 1fr; gap: 5rem; } }
.split.reverse-mobile > *:first-child { order: 2; }
.split.reverse-mobile > *:last-child  { order: 1; }
@media (min-width: 768px) {
  .split.reverse > *:first-child { order: 2; }
  .split.reverse > *:last-child  { order: 1; }
  .split.reverse-mobile > *:first-child { order: 0; }
  .split.reverse-mobile > *:last-child  { order: 0; }
}
.split-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/3;
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Client Logos ───────────────────────────────────────────────────────── */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.client-logo-item {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-gray-300);
  transition: color var(--ease);
  padding: .5rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--r);
}
.client-logo-item:hover { color: var(--color-primary); border-color: var(--c-green-100); }

/* ── Gallery Grid ───────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2,1fr);
}
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3,1fr); } }
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── Forms ──────────────────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 1.25rem;
}
.form-grid-2 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-heading);
}
.form-label span { color: #dc2626; margin-left: .125rem; }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--r);
  font-size: .9375rem;
  color: var(--color-heading);
  background: var(--c-white);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(8,91,32,.1);
}
.form-control::placeholder { color: var(--c-gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-check { display: flex; align-items: flex-start; gap: .625rem; }
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: .125rem;
  border: 1.5px solid var(--color-border);
  border-radius: 4px;
  accent-color: var(--color-primary);
}
.form-check-label { font-size: .875rem; color: var(--color-muted); line-height: 1.5; }
.form-check-label a { color: var(--color-primary); text-decoration: underline; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; visibility: hidden; }

.form-status {
  padding: .875rem 1.125rem;
  border-radius: var(--r);
  font-size: .9375rem;
  font-weight: 500;
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { background: var(--c-green-50); color: var(--color-primary); border: 1px solid var(--c-green-100); }
.form-status.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.form-consent { margin-top: .25rem; }
.consent-label { display: flex; align-items: flex-start; gap: .625rem; cursor: pointer; font-size: .875rem; color: var(--color-muted); line-height: 1.5; }
.consent-label input[type="checkbox"] { margin-top: .2rem; flex-shrink: 0; accent-color: var(--color-primary); width: 16px; height: 16px; }

/* ── Contact Section Layout ─────────────────────────────────────────────── */
.contact-wrap {
  display: grid;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 1024px) { .contact-wrap { grid-template-columns: 1fr 1.5fr; } }

.contact-info h2 { margin-bottom: .75rem; }
.contact-info p  { color: var(--color-muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--c-green-50);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; }
.contact-detail-label { font-size: .8125rem; font-weight: 600; color: var(--color-muted); text-transform: uppercase; letter-spacing: .06em; }
.contact-detail-val { font-size: .9375rem; color: var(--color-heading); font-weight: 500; margin-top: .125rem; }
.contact-detail-val a { color: inherit; transition: color var(--ease); }
.contact-detail-val a:hover { color: var(--color-primary); }

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  background: #25d366;
  color: var(--c-white);
  padding: .75rem 1.375rem;
  border-radius: var(--r);
  font-weight: 600;
  font-size: .9375rem;
  transition: background var(--ease);
  text-decoration: none;
}
.whatsapp-btn:hover { background: #1db254; }
.whatsapp-btn svg  { width: 20px; height: 20px; flex-shrink: 0; }

.form-card {
  background: var(--c-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-lg);
}

/* ── Related Services ───────────────────────────────────────────────────── */
.related-services { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .related-services { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px){ .related-services { grid-template-columns: repeat(3,1fr); } }
.related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--c-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  transition: box-shadow var(--ease), border-color var(--ease);
  text-decoration: none;
  color: inherit;
}
.related-card:hover { box-shadow: var(--sh); border-color: var(--c-green-100); }
.related-card-icon {
  width: 44px;
  height: 44px;
  background: var(--c-green-50);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.related-card-icon svg { width: 20px; height: 20px; }
.related-card h4 { font-size: .9375rem; margin-bottom: .125rem; }
.related-card span { font-size: .8125rem; color: var(--color-muted); }

/* ── Content Prose ──────────────────────────────────────────────────────── */
.prose h2 { font-size: 1.625rem; margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { font-size: 1.1875rem; margin-top: 2rem; margin-bottom: .75rem; }
.prose p  { margin-bottom: 1.25rem; }
.prose ul { list-style: none; display: flex; flex-direction: column; gap: .625rem; margin-bottom: 1.25rem; }
.prose ul li {
  padding-left: 1.75rem;
  position: relative;
  color: var(--color-text);
  font-size: .9375rem;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green-400);
  border: 2px solid var(--color-primary);
}

/* ── Info / Highlight Box ───────────────────────────────────────────────── */
.highlight-box {
  background: var(--c-green-50);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.highlight-box p { font-size: .9375rem; color: var(--color-heading); margin: 0; }

/* ── Table ──────────────────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.data-table th {
  background: var(--c-green-800);
  color: var(--c-white);
  padding: .75rem 1.125rem;
  text-align: left;
  font-weight: 600;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.data-table td { padding: .75rem 1.125rem; border-bottom: 1px solid var(--color-border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--c-gray-50); }

/* ── Tags / Badges ──────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: 999px;
  background: var(--c-green-100);
  color: var(--color-primary);
}

/* ── Icon list ──────────────────────────────────────────────────────────── */
.icon-list { display: flex; flex-direction: column; gap: .75rem; }
.icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  font-size: .9375rem;
}
.icon-list-item svg { width: 20px; height: 20px; color: var(--color-primary); flex-shrink: 0; margin-top: .125rem; }

/* ── Team / People ──────────────────────────────────────────────────────── */
.team-card {
  background: var(--c-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center;
  transition: box-shadow var(--ease);
}
.team-card:hover { box-shadow: var(--sh-lg); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 auto 1rem;
}
.team-card h3 { font-size: 1.0625rem; margin-bottom: .25rem; }
.team-card .team-role { font-size: .875rem; color: var(--color-primary); font-weight: 600; margin-bottom: .75rem; }
.team-card p  { font-size: .875rem; color: var(--color-muted); }
.team-card a  { font-size: .875rem; color: var(--color-primary); font-weight: 500; display: inline-block; margin-top: .5rem; }

/* ── Testimonial ────────────────────────────────────────────────────────── */
.testimonial {
  background: var(--c-white);
  border: 1px solid var(--color-border);
  border-radius: var(--r-xl);
  padding: 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--c-green-100);
  font-family: Georgia, serif;
}
.testimonial-text { font-size: 1.0625rem; color: var(--color-heading); line-height: 1.7; margin-bottom: 1.25rem; padding-top: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c-green-100); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; color: var(--color-primary); }
.testimonial-name { font-size: .9375rem; font-weight: 600; color: var(--color-heading); }
.testimonial-co   { font-size: .8125rem; color: var(--color-muted); }

/* ── Section Backgrounds ────────────────────────────────────────────────── */
.bg-white  { background: var(--c-white); }
.bg-light  { background: var(--c-gray-50); }
.bg-green  { background: var(--c-green-50); }
.bg-dark   { background: var(--c-green-900); color: var(--c-white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--c-white); }
.bg-dark p, .bg-dark .section-label { color: rgba(255,255,255,.75); }
.bg-dark .section-label { background: rgba(255,255,255,.1); color: var(--c-green-400); }

/* ── Animations ─────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-green-900);
  color: rgba(255,255,255,.75);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  margin-bottom: 3.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .footer-logo { margin-bottom: 1.25rem; }
.footer-brand .footer-logo img { height: 40px; width: auto; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-contact { display: flex; flex-direction: column; gap: .375rem; margin-top: 1.25rem; }
.footer-contact a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color var(--ease); }
.footer-contact a:hover { color: var(--c-green-400); }

.footer-heading { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.125rem; }
.site-footer ul { display: flex; flex-direction: column; gap: .5rem; }
.site-footer ul a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color var(--ease); }
.site-footer ul a:hover { color: var(--c-green-400); }
.site-footer address { font-size: .875rem; line-height: 1.8; color: rgba(255,255,255,.65); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 1.75rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}

/* ── Utility ────────────────────────────────────────────────────────────── */
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: .5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }
.visually-hidden { composes: sr-only; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.nowrap { white-space: nowrap; }

/* ── Thank-you page ─────────────────────────────────────────────────────── */
.ty-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.25rem; }
.ty-card { max-width: 560px; }
.ty-check { width: 80px; height: 80px; border-radius: 50%; background: var(--c-green-50); border: 3px solid var(--c-green-100); display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; color: var(--color-primary); }
.ty-check svg { width: 40px; height: 40px; }
.ty-card h1 { font-size: 2rem; margin-bottom: .75rem; }
.ty-card .ty-sub { font-size: 1.0625rem; color: var(--color-muted); max-width: 440px; margin: 0 auto 2rem; }
.ty-steps { text-align: left; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.ty-step { display: flex; gap: 1rem; align-items: flex-start; }
.ty-step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--c-green-100); color: var(--color-primary); font-weight: 800; font-size: .875rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ty-step p { font-size: .9375rem; color: var(--color-muted); margin-top: .25rem; }
.ty-actions { display: flex; flex-wrap: wrap; gap: .875rem; justify-content: center; }

/* Animated check for thank-you page */
.ty-check-wrap { display: flex; justify-content: center; }
.ty-check-ring {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--c-green-400));
  display: flex; align-items: center; justify-content: center;
  animation: ty-pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
}
@keyframes ty-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.ty-check-path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: ty-draw 0.4s 0.35s ease forwards;
}
@keyframes ty-draw { to { stroke-dashoffset: 0; } }

/* ── Utility extras ─────────────────────────────────────────────────────── */
.mt-10 { margin-top: 2.5rem; }

/* ── 404 page ───────────────────────────────────────────────────────────── */
.err-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 4rem 1.25rem; }
.err-page h1 { font-size: 6rem; font-weight: 800; color: var(--c-green-100); margin-bottom: .5rem; line-height: 1; }
.err-page h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.err-page p  { color: var(--color-muted); max-width: 400px; margin: 0 auto 2rem; }

/* ── Print ──────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .cta-band, .hero-actions { display: none; }
  body { font-size: 12pt; }
  h1 { font-size: 20pt; } h2 { font-size: 16pt; } h3 { font-size: 13pt; }
}
