*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #3fa84a;
  --teal: #1e9e82;
  --blue: #2872c8;
  --dark: #0e0f0e;
  --dark-2: #161917;
  --dark-3: #1e2320;
  --dark-4: #252b27;
  --text: #e8ede9;
  --text-muted: #8a9e8e;
  --text-dim: #4a5e4e;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  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.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14,15,14,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-logo img { height: 36px; display: block; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--text); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--text); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(14,15,14,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--text); }

.mobile-menu .mobile-cta {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white !important;
  padding: 0.85rem 2.5rem;
  border-radius: 8px;
  font-size: 1.2rem !important;
}

.mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mobile-social a {
  font-size: 0.9rem !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 400 !important;
  color: var(--text-dim) !important;
  letter-spacing: 0.02em !important;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 500 !important;
  font-size: 14px !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; color: white !important; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(30,158,130,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(40,114,200,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 60% 20%, rgba(63,168,74,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.5rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(30,158,130,0.25);
  border-radius: 100px;
  background: rgba(30,158,130,0.07);
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

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

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

h1 .accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 50%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}

.btn-primary:hover { transform: translateY(-1px); opacity: 0.9; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 400;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid var(--border-hover);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

/* ── HERO VISUAL ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.arch-diagram {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.arch-diagram-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.arch-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arch-layer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 400;
  transition: border-color 0.3s;
}

.arch-layer:hover { border-color: var(--border-hover); }

.arch-layer-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.layer-1 { background: rgba(63,168,74,0.07); }
.layer-1 .arch-layer-dot { background: var(--green); }
.layer-2 { background: rgba(30,158,130,0.07); }
.layer-2 .arch-layer-dot { background: var(--teal); }
.layer-3 { background: rgba(40,114,200,0.07); }
.layer-3 .arch-layer-dot { background: var(--blue); }
.layer-4 { background: rgba(63,168,74,0.04); }
.layer-4 .arch-layer-dot { background: rgba(63,168,74,0.5); }

.arch-layer-name { color: var(--text); flex: 1; }
.arch-layer-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-muted);
  background: var(--dark-4);
}

.floating-stat {
  position: absolute;
  background: var(--dark-3);
  border: 1px solid var(--border-hover);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  z-index: 3;
}

.floating-stat-1 { top: -20px; right: -20px; }
.floating-stat-2 { bottom: -20px; left: -20px; }

.floating-stat-label {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.floating-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION BASE ── */
section {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

/* ── LOGOS / CREDIBILITY ── */
.credibility {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
}

.credibility .section-inner {
  padding: 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.cred-label {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.cred-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.cred-item {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.cred-item:hover { color: var(--text-muted); }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-top: 4rem;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
}

.service-card {
  background: var(--dark-2);
  padding: 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--green), var(--teal)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--teal), var(--blue)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blue), var(--green)); }
.service-card:nth-child(4)::before { background: linear-gradient(90deg, var(--green), var(--blue)); }
.service-card:nth-child(5)::before { background: linear-gradient(90deg, var(--teal), var(--green)); }
.service-card:nth-child(6)::before { background: linear-gradient(90deg, var(--blue), var(--teal)); }

.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 20px;
}

.icon-green { background: rgba(63,168,74,0.12); }
.icon-teal { background: rgba(30,158,130,0.12); }
.icon-blue { background: rgba(40,114,200,0.12); }

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── INDUSTRIES ── */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.industry-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: border-color 0.2s;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.industry-card:hover { border-color: var(--border-hover); }

.industry-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.industry-icon.mining { background: rgba(63,168,74,0.1); }
.industry-icon.government { background: rgba(40,114,200,0.1); }
.industry-icon.finance { background: rgba(30,158,130,0.1); }
.industry-icon.education { background: rgba(63,168,74,0.1); }
.industry-icon.hospitality { background: rgba(30,158,130,0.1); }
.industry-icon.transport { background: rgba(40,114,200,0.1); }

.industry-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── ABOUT / EXPERTISE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1rem;
}

.expertise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--dark-2);
  transition: background 0.2s;
  border-bottom: 1px solid var(--border);
}

.expertise-item:last-child { border-bottom: none; }
.expertise-item:hover { background: var(--dark-3); }

.expertise-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
  color: white;
}

.expertise-item span {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

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

.stat-box {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.stat-box:hover { border-color: var(--border-hover); }

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--green), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 300;
}

.quote-box {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.quote-box p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  font-style: italic;
}

.quote-attribution {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 1rem;
  font-weight: 500;
}

/* ── PROCESS ── */
.process-section { background: var(--dark-2); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 4rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--blue));
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  border: 1px solid var(--border-hover);
  background: var(--dark);
  color: var(--text-muted);
  transition: all 0.3s;
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  border-color: transparent;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ── CTA ── */
.cta-section {
  padding: 0 2.5rem 6rem;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 100%, rgba(30,158,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner h2 { margin-bottom: 1.25rem; }

.cta-inner p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

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

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: var(--dark-2);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo img { height: 28px; display: block; }

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text-muted); }

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.7s ease both;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

.hero-visual {
  animation: fadeUp 0.9s 0.3s ease both;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 1rem;
}

.contact-info h2 { margin-bottom: 1.25rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 1.25rem;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  text-decoration: none;
  transition: border-color 0.2s;
}

.contact-detail:hover { border-color: var(--border-hover); }

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-text { font-size: 14px; color: var(--text-muted); }
.contact-detail-label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }

.form-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

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

.form-group { margin-bottom: 1rem; }
.form-group:last-of-type { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus {
  border-color: var(--teal);
  background: var(--dark-4);
}

.form-input::placeholder { color: var(--text-dim); }

textarea.form-input {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

select.form-input { cursor: pointer; }

.captcha-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 1.25rem 0;
  transition: border-color 0.2s;
}

.captcha-box:hover { border-color: var(--border-hover); }

.captcha-checkbox {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--text-dim);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: var(--dark-4);
}

.captcha-checkbox.checked {
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-color: transparent;
}

.captcha-checkbox.checked::after {
  content: '✓';
  color: white;
  font-size: 13px;
  font-weight: 600;
}

.captcha-label { font-size: 14px; color: var(--text-muted); font-weight: 300; flex: 1; }
.captcha-logo { font-size: 10px; color: var(--text-dim); text-align: right; line-height: 1.3; }

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: white;
  padding: 0.9rem 1.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  opacity: 0.5;
  pointer-events: none;
}

.form-submit.enabled {
  opacity: 1;
  pointer-events: all;
}

.form-submit.enabled:hover { opacity: 0.9; transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 1.25rem;
}

.form-success h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-success p { font-size: 14px; color: var(--text-muted); font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .cta-inner { padding: 3rem 2rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .section-inner { padding: 4rem 1.5rem; }
}

/* ── HONEYPOT ── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
