/* ============================================
   TradeConnect — styles.css
   Aesthetic: Refined organic — earthy greens,
   warm whites, Cormorant display + DM Sans body
============================================ */

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

:root {
  --green-950: #0f3d22;
  --green-900: #1a5c32;
  --green-700: #2d7a45;
  --green-500: #3d9b5a;
  --green-300: #7ec99a;
  --green-100: #d1f0dc;
  --green-50:  #f0faf4;
  --amber-100: #fef3c7;
  --amber-700: #92400e;
  --neutral-950: #0a0f0d;
  --neutral-900: #111827;
  --neutral-700: #374151;
  --neutral-500: #6b7280;
  --neutral-300: #d1d5db;
  --neutral-100: #f3f4f6;
  --neutral-50:  #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.13);
  --shadow-green: 0 4px 20px rgba(45,122,69,0.25);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--neutral-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--neutral-900);
  line-height: 1.15;
}
h3, h4 {
  font-family: 'DM Sans', sans-serif;
  color: var(--neutral-900);
  line-height: 1.3;
  font-weight: 600;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-300);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-900);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.02em;
}
.logo-icon {
  font-size: 1.4rem;
  color: var(--green-700);
  line-height: 1;
}
.logo-accent { color: var(--green-700); }
.logo-white { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
  transition: color var(--transition);
  letter-spacing: -0.01em;
}
.nav-links a:hover { color: var(--green-700); }

.btn-nav {
  background: var(--green-700) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--green-900) !important; color: var(--white) !important; }
.btn-nav.active { color: var(--white) !important; }

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

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
  background: var(--green-700);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
}
.btn-sm:hover { background: var(--green-900); transform: translateY(-1px); }
.btn-outline-green {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-300);
  padding: 9px 18px;
  font-size: 0.85rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.btn-outline-green:hover {
  background: var(--green-50);
  border-color: var(--green-500);
}
.btn-full { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-950) 0%, #162b1e 45%, #0e2217 100%);
  padding-top: 68px;
  overflow: hidden;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,155,90,0.18) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,122,69,0.12) 0%, transparent 70%);
  bottom: 0; right: -50px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 60px 24px 90px;
  max-width: 820px;
  animation: heroFadeIn 0.9s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: rgba(126,201,154,0.12);
  color: var(--green-300);
  border: 1px solid rgba(126,201,154,0.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.65);
  max-width: 640px;
  margin: 0 auto 38px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  font-weight: 400;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
}
.hero-trust svg { color: var(--green-300); flex-shrink: 0; }

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 1.5px solid rgba(255,255,255,0.25);
  border-bottom: 1.5px solid rgba(255,255,255,0.25);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
  50% { transform: rotate(45deg) translateY(5px); opacity: 0.7; }
}

/* ---------- HONEST INTRO BAR ---------- */
.intro-bar {
  background: var(--green-950);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.intro-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-bar-text {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 760px;
}
.intro-bar-text strong { color: rgba(255,255,255,0.8); }

/* ---------- SECTIONS ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--neutral-50); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-100);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--neutral-500);
  font-size: 1rem;
  line-height: 1.75;
}

/* ---------- SERVICES GRID ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--green-50);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--neutral-500); line-height: 1.65; }

/* ---------- TRANSPARENCY BOX ---------- */
.transparency-box {
  background: linear-gradient(135deg, #fffbeb, var(--amber-100));
  border: 1px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.transparency-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: #fcd34d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-700);
}
.transparency-icon svg { width: 18px; height: 18px; }
.transparency-text strong { display: block; color: var(--amber-700); font-size: 0.9rem; margin-bottom: 5px; }
.transparency-text p { font-size: 0.875rem; color: #78350f; line-height: 1.65; }

/* ---------- PRODUCTS ---------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.product-card.featured { border-color: var(--green-500); border-width: 2px; }
.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--green-700);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}
.product-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.product-img.moringa {
  background: linear-gradient(135deg, #1a5c32, #2d7a45, #3d9b5a);
}
.product-img.other-products {
  background: linear-gradient(135deg, #374151, #4b5563, #6b7280);
  font-size: 2.5rem;
}
.product-img.other-products::after { content: '🌾'; }
.product-img.moringa::after { content: '🌿'; }

.product-body { padding: 26px; }
.product-body h3 { font-size: 1.1rem; margin-bottom: 5px; }
.product-tagline { font-size: 0.8rem; color: var(--green-700); font-weight: 500; margin-bottom: 18px; }

.product-specs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin-bottom: 20px;
}
.product-specs tr { border-bottom: 1px solid var(--neutral-100); }
.product-specs tr:last-child { border-bottom: none; }
.product-specs td { padding: 7px 0; vertical-align: top; }
.product-specs td:first-child {
  color: var(--neutral-500);
  font-weight: 500;
  width: 42%;
  padding-right: 10px;
}

.secondary-desc {
  font-size: 0.875rem;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 18px;
}

.possible-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.possible-products span {
  background: var(--neutral-100);
  color: var(--neutral-700);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--neutral-300);
}

.coa-highlight {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-left: 4px solid var(--green-500);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.coa-icon { font-size: 1.8rem; flex-shrink: 0; }
.coa-content strong { display: block; color: var(--green-900); font-size: 0.9rem; margin-bottom: 5px; }
.coa-content p { font-size: 0.85rem; color: var(--green-900); opacity: 0.75; line-height: 1.65; }

/* ---------- HOW IT WORKS ---------- */
.steps-container {
  display: flex;
  flex-direction: column;
  max-width: 760px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}
.step-connector {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, var(--green-300), var(--green-100));
  margin-left: 26px;
}
.step-number {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--green-50);
  border: 2px solid var(--green-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: 0.04em;
  font-family: 'DM Sans', sans-serif;
}
.step-content {
  padding-top: 6px;
  padding-bottom: 4px;
  flex: 1;
}
.step-content h3 { font-size: 1rem; margin-bottom: 5px; }
.step-content p { font-size: 0.875rem; color: var(--neutral-500); line-height: 1.65; }
.step-content em { color: var(--green-700); font-style: normal; font-weight: 500; font-size: 0.82rem; }

/* ---------- WHY US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.why-card {
  background: var(--white);
  padding: 34px 30px;
  border-right: 1px solid var(--neutral-300);
  border-bottom: 1px solid var(--neutral-300);
  transition: background var(--transition);
}
.why-card:hover { background: var(--green-50); }
.why-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}
.why-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--neutral-500); line-height: 1.65; }

/* ---------- ABOUT / FOUNDER ---------- */
.about-section { background: var(--green-950); }
.about-section .section-tag {
  background: rgba(126,201,154,0.1);
  color: var(--green-300);
  border-color: rgba(126,201,154,0.2);
}
.about-section h2 { color: var(--white); }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-left h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-left p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-left p:last-of-type { margin-bottom: 28px; }

.founder-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
}
.founder-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.founder-card strong { display: block; color: var(--white); font-size: 0.95rem; }
.founder-card span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.founder-location { margin-top: 2px; }

.about-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 8px;
}
.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  padding: 10px 14px;
  border-radius: var(--radius);
}
.about-point svg { flex-shrink: 0; }
.about-point.yes {
  background: rgba(126,201,154,0.07);
  color: rgba(255,255,255,0.8);
}
.about-point.yes svg { color: #4ade80; }
.about-point.no {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.4);
}
.about-point.no svg { color: rgba(255,255,255,0.2); }

/* ---------- CONTACT ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.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.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--neutral-700); }
.req { color: var(--green-700); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--neutral-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(61,155,90,0.08);
}
.form-group textarea { resize: vertical; min-height: 108px; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.8rem;
  color: var(--neutral-500);
  line-height: 1.55;
}
.form-consent input[type="checkbox"] {
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--green-700);
}
.form-success {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--green-900);
  font-size: 0.875rem;
}
.form-success svg { width: 20px; height: 20px; color: var(--green-700); flex-shrink: 0; }

/* Contact Sidebar */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--neutral-300);
  border-radius: var(--radius-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info-card h3 { font-size: 1.05rem; }
.contact-note { font-size: 0.82rem; color: var(--neutral-500); line-height: 1.55; margin-top: -6px; }

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.875rem;
}
.contact-detail svg { width: 17px; height: 17px; color: var(--green-700); flex-shrink: 0; }
.contact-detail a { color: var(--neutral-700); transition: color var(--transition); }
.contact-detail a:hover { color: var(--green-700); }
.contact-detail span { color: var(--neutral-500); }

.response-note {
  background: var(--neutral-100);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 0.8rem;
  color: var(--neutral-500);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.55;
}
.response-note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 1px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--neutral-950);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .footer-logo { margin-bottom: 14px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 270px; }
.footer-founder { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 8px !important; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-col h4 {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: 'DM Sans', sans-serif;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 9px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green-300); }

.footer-bottom { padding: 18px 0; }
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  text-align: center;
  line-height: 1.6;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 14px;
    border-bottom: 1px solid var(--neutral-300);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .transparency-box { flex-direction: column; }
  .contact-form-wrap { padding: 24px; }
  .step { gap: 16px; }
  .step-number { width: 44px; height: 44px; font-size: 0.8rem; }
  .step-connector { margin-left: 22px; }
  .intro-bar-text { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .hero-trust { flex-direction: column; gap: 10px; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
  .coa-highlight { flex-direction: column; }
}

/* ---------- SCROLL ANIMATIONS ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}