/* ============================================================
   TRIFORGE TECH GHANA — MAIN STYLESHEET
   Brand Palette: White + Emerald Green
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Backgrounds */
  --bg-base:     #FFFFFF;       /* main page bg */
  --bg-alt:      #F5FBF7;       /* alternate section bg — faintest green tint */
  --bg-card:     #FFFFFF;       /* card background */
  --bg-dark:     #062010;       /* dark sections (CTA, footer) */
  --bg-dark-mid: #0A2E17;       /* slightly lighter dark */

  /* Greens */
  --emerald:     #16A34A;       /* primary brand green */
  --emerald-mid: #15803D;       /* darker — hover states */
  --emerald-deep:#14532D;       /* deepest green */
  --emerald-lt:  #22C55E;       /* lighter accent */
  --emerald-pale:#DCFCE7;       /* very pale green — chip backgrounds */
  --sage:        #4ADE80;       /* light accent */
  --lime:        #86EFAC;       /* highlight on dark backgrounds */

  /* Text */
  --text-primary:  #0F1F16;     /* near-black with green cast */
  --text-secondary:#374151;     /* dark gray body text */
  --text-muted:    #6B7280;     /* muted / captions */
  --text-on-dark:  #FFFFFF;
  --text-muted-dark: #A0AEC0;   /* muted on dark sections */

  /* Ghana colours */
  --gold:        #F5A623;
  --gold-light:  #FBBF24;
  --green-gh:    #006B3F;
  --red-gh:      #CE1126;

  /* Borders */
  --border:        #E5E7EB;     /* default border */
  --border-green:  rgba(22,163,74,0.25);
  --glass-border:  rgba(22,163,74,0.20);

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.09);
  --shadow-glow: 0 0 32px rgba(22,163,74,0.18);

  --radius:      16px;
  --radius-sm:   8px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-secondary);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-blue { color: var(--emerald); }
.text-gold { color: var(--gold); }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-lt) 60%, var(--sage) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(22,163,74,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22,163,74,0.50);
  background: linear-gradient(135deg, var(--emerald-lt) 0%, var(--emerald) 100%);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #E8920A 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.55);
}
.btn-outline {
  background: transparent;
  color: var(--emerald);
  border: 2px solid var(--emerald);
}
.btn-outline:hover {
  background: var(--emerald);
  color: #fff;
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ---- Section Headings ---- */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
  padding: 4px 14px;
  background: var(--emerald-pale);
  border: 1px solid rgba(22,163,74,0.20);
  border-radius: 20px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 50px;
  line-height: 1.75;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Actual logo image — replaces old TF text badge */
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  /* slight drop-shadow to make it pop on white navbar */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.10));
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text span:first-child {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--emerald);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--emerald);
  background: var(--emerald-pale);
}
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--emerald);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
}
.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav a:hover {
  color: var(--emerald);
  background: var(--emerald-pale);
  border-color: var(--border-green);
}
.mobile-nav.open { display: flex; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--bg-base);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 40%, rgba(22,163,74,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(22,163,74,0.05) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #F5FBF7 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,163,74,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,163,74,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(22,163,74,0.08);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: rgba(245,166,35,0.06);
  bottom: 100px; left: -50px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--emerald-pale);
  border: 1px solid rgba(22,163,74,0.25);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald);
}
.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-card-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.10), var(--shadow-glow);
}
.hero-card-back1 {
  position: absolute;
  top: -12px; left: 14px; right: 14px; bottom: -12px;
  background: var(--emerald-pale);
  border: 1px solid rgba(22,163,74,0.15);
  border-radius: var(--radius);
  z-index: 2;
}
.hero-card-back2 {
  position: absolute;
  top: -24px; left: 28px; right: 28px; bottom: -24px;
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.12);
  border-radius: var(--radius);
  z-index: 1;
}
.product-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.product-preview-header h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}
.product-preview-header span {
  font-size: 0.75rem;
  color: var(--emerald);
  font-weight: 600;
  background: var(--emerald-pale);
  padding: 3px 10px;
  border-radius: 20px;
}
.vote-candidate {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  transition: var(--transition);
  background: var(--bg-base);
}
.vote-candidate:hover {
  border-color: var(--border-green);
  background: var(--emerald-pale);
}
.candidate-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.candidate-info { flex: 1; }
.candidate-info h5 { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.candidate-info p { font-size: 0.75rem; color: var(--text-muted); }
.vote-bar { flex: 1; }
.vote-bar-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.vote-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--emerald-mid) 0%, var(--emerald-lt) 100%);
  animation: barGrow 2s ease forwards;
}
@keyframes barGrow {
  from { width: 0; }
}
.vote-pct { font-size: 0.8rem; font-weight: 700; color: var(--emerald); margin-top: 4px; }

.ussd-chip {
  margin-top: 16px;
  padding: 12px 16px;
  background: #FFFBEB;
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.ussd-chip .icon { font-size: 1.2rem; }
.ussd-chip strong { color: var(--gold); }

/* ---- Ghana Strip ---- */
.ghana-strip {
  background: linear-gradient(90deg, var(--red-gh) 0%, var(--red-gh) 33%, var(--gold) 33%, var(--gold) 66%, var(--green-gh) 66%);
  height: 4px;
}

/* ---- Services Section ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.service-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-lt), var(--sage));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- Product / Trivote ---- */
.product-section {
  position: relative;
  overflow: hidden;
}
.product-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(22,163,74,0.04) 0%, transparent 70%);
}
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.product-info .section-label { margin-bottom: 12px; }
.product-info .section-title { text-align: left; }
.product-info .section-subtitle { text-align: left; margin: 0 0 32px; }
.product-features { margin: 28px 0; }
.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.product-feature:last-child { border-bottom: none; }
.feature-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--emerald-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; color: var(--text-primary); }
.feature-text p { font-size: 0.85rem; color: var(--text-muted); }
.product-visual { position: relative; }
.mock-browser {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md), var(--shadow-glow);
}
.mock-browser-bar {
  background: #F9FAFB;
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.d1 { background: #FF5F57; }
.d2 { background: #FFBD2E; }
.d3 { background: #28CA41; }
.browser-url {
  flex: 1;
  background: #F3F4F6;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0 12px;
}
.mock-browser-content { padding: 24px; }
.trivote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.trivote-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--emerald);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--emerald);
  background: var(--emerald-pale);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 4px 10px;
  border-radius: 20px;
}
.live-dot {
  width: 6px; height: 6px;
  background: var(--emerald-lt);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.election-card {
  background: #F9FAFB;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 12px;
}
.election-card h5 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.election-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.election-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.tag-open { background: var(--emerald-pale); color: var(--emerald); border: 1px solid rgba(22,163,74,0.25); }
.tag-ussd { background: #FFFBEB; color: var(--gold); border: 1px solid rgba(245,166,35,0.25); }
.tag-online { background: #EFF6FF; color: #2563EB; border: 1px solid rgba(37,99,235,0.2); }
.election-progress {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.election-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--emerald-mid) 0%, var(--emerald-lt) 100%);
  border-radius: 2px;
}
.election-time { font-size: 0.72rem; color: var(--text-muted); }
.ussd-panel {
  background: #FFFBEB;
  border: 1px solid rgba(245,166,35,0.20);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 16px;
}
.ussd-panel h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ussd-code {
  font-family: 'Space Grotesk', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 2px;
}
.ussd-panel p { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

/* ---- Team ---- */
.team-section { background: var(--bg-alt); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.team-card {
  padding: 36px 28px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 18px;
  border: 3px solid rgba(22,163,74,0.25);
  color: var(--emerald);
}
.team-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}
.team-card .role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.team-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.team-contact { display: flex; flex-direction: column; gap: 8px; }
.team-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-contact a:hover {
  color: var(--emerald);
  border-color: var(--border-green);
  background: var(--emerald-pale);
}

/* ---- CTA Section (dark) ---- */
.cta-section { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-mid) 100%);
  border: 1px solid rgba(22,163,74,0.20);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(22,163,74,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.cta-inner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}
.cta-inner h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  color: #fff;
}
.cta-inner p {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ---- About Page ---- */
.about-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(22,163,74,0.07) 0%, transparent 60%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-info p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: #FFFBEB;
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius-sm);
  margin-top: 8px;
}
.reg-badge .reg-icon { font-size: 1.2rem; }
.reg-badge p { font-size: 0.83rem; color: var(--text-muted); margin: 0; }
.reg-badge strong { color: var(--gold); }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.value-card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--border-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}
.value-card .icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.value-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.value-card p { font-size: 0.83rem; color: var(--text-muted); }

/* ---- Contact Page ---- */
.contact-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  background: var(--bg-base);
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(22,163,74,0.06) 0%, transparent 60%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  margin-top: 60px;
}
.contact-info-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: fit-content;
}
.contact-info-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--emerald-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--emerald);
}
.contact-item-text h4 { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text p, .contact-item-text a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition);
}
.contact-item-text a:hover { color: var(--emerald); }
.contact-form-card {
  padding: 40px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text-primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: #FAFAFA;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--emerald);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #fff; color: var(--text-primary); }

/* ---- Services Page ---- */
.services-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-base);
}
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(22,163,74,0.07) 0%, transparent 60%);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.service-full-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-full-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald-mid), var(--emerald-lt));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-full-card:hover::after { transform: scaleX(1); }
.service-full-card:hover {
  border-color: var(--border-green);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}
.service-full-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 18px 0 10px;
  color: var(--text-primary);
}
.service-full-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--emerald-pale);
  color: var(--emerald-mid);
  border: 1px solid rgba(22,163,74,0.22);
  border-radius: 20px;
}

/* ---- Footer (dark) ---- */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(22,163,74,0.15);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  margin: 14px 0 20px;
  max-width: 260px;
}
/* Override logo text colour in footer */
.footer .logo-text span:first-child { color: #fff; }
.footer .logo-text span:last-child  { color: var(--emerald-lt); }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  color: var(--text-muted-dark);
}
.social-btn:hover {
  background: rgba(22,163,74,0.18);
  border-color: rgba(22,163,74,0.40);
  color: var(--emerald-lt);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--emerald-lt);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--emerald-lt); }
.footer-bottom {
  border-top: 1px solid rgba(22,163,74,0.10);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted-dark); }
.footer-reg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted-dark);
}
.reg-dot {
  width: 4px; height: 4px;
  background: var(--emerald-lt);
  border-radius: 50%;
}

/* ---- Animations ---- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float { animation: float 4s ease-in-out infinite; }
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .product-showcase { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { padding: 50px 28px; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 70px 0; }
}
