/* ============================================================
   MarketMind Solutions — Shared Stylesheet
   mmsolutionsmobile.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary:    #0D1B2A;
  --bg-secondary:  #152235;
  --teal:          #00B4A0;
  --gold:          #F4A940;
  --text-light:    #EDF4F8;
  --text-slate:    #7A93AC;
  --bg-light:      #F8FAFB;
  --border-dark:   rgba(255,255,255,0.07);
  --border-light:  rgba(0,0,0,0.09);
  --radius:        14px;
  --ease:          0.25s ease;
  --shadow-card:   0 4px 24px rgba(0,0,0,0.25);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   TOP GRADIENT BAR
   ============================================================ */
.top-bar {
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--gold), var(--teal));
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: var(--teal);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.nav-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.nav-logo-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  color: var(--text-slate);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-slate);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 3px;
}

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

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.btn-nav {
  background: var(--teal);
  color: var(--bg-primary);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity var(--ease), transform var(--ease);
  white-space: nowrap;
}

.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

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

.nav-mobile {
  display: none;
  position: fixed;
  top: 71px; left: 0; right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-dark);
  z-index: 999;
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1rem;
  color: var(--text-slate);
  transition: color var(--ease);
}

.nav-mobile a:hover, .nav-mobile a.active { color: var(--text-light); }

.nav-mobile .btn-nav { width: fit-content; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.page-top { padding-top: 71px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad   { padding: 6rem 0; }
.section-pad-sm { padding: 3.5rem 0; }

/* Sections */
.section-dark     { background: var(--bg-primary); position: relative; overflow: hidden; }
.section-dark-alt { background: var(--bg-secondary); position: relative; overflow: hidden; }
.section-light    { background: var(--bg-light); color: var(--bg-primary); position: relative; }

/* Grid texture on dark sections */
.grid-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

.grid-texture > * { position: relative; z-index: 1; }

/* Glow blob */
.glow {
  position: absolute;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(0,180,160,0.11) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.glow-tr { top: -120px; right: -120px; }
.glow-tl { top: -120px; left: -120px; }
.glow-br { bottom: -120px; right: -120px; }

/* Text utilities */
.text-center { text-align: center; }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-slate  { color: var(--text-slate); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--teal);
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}

.section-light .section-title { color: var(--bg-primary); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-slate);
  max-width: 580px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.section-light .section-intro { color: #5a6e82; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0,180,160,0.13);
  color: var(--teal);
  border: 1px solid rgba(0,180,160,0.28);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

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

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

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.78rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform var(--ease), opacity var(--ease), border-color var(--ease), color var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--bg-primary);
}

.btn-primary:hover { opacity: 0.88; }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.22);
  color: var(--text-light);
}

.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline-dark {
  background: transparent;
  border: 2px solid rgba(13,27,42,0.2);
  color: var(--bg-primary);
}

.btn-outline-dark:hover { border-color: var(--teal); color: var(--teal); }

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--ease), border-color var(--ease);
}

.card:hover { transform: translateY(-3px); border-color: var(--teal); }

.card-light {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.card-light:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.card-icon {
  width: 46px; height: 46px;
  background: rgba(0,180,160,0.13);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-light .card-title { color: var(--bg-primary); }

.card-desc {
  font-size: 0.875rem;
  color: var(--text-slate);
  line-height: 1.65;
}

.card-light .card-desc { color: #5a6e82; }

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }

/* ============================================================
   HERO — SHARED
   ============================================================ */
.hero {
  padding: 7rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow { margin-bottom: 1.25rem; }

.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  max-width: 720px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-slate);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ============================================================
   HOME — STATS BAR
   ============================================================ */
.stats-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border-dark);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-slate);
  font-family: 'IBM Plex Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   HOME — HOW IT WORKS
   ============================================================ */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
  margin-top: 3rem;
}

.steps-connector {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--gold));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  border: 3px solid;
}

.step-circle.teal {
  background: rgba(0,180,160,0.12);
  border-color: var(--teal);
  color: var(--teal);
}

.step-circle.gold {
  background: rgba(244,169,64,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.825rem;
  color: #5a6e82;
  line-height: 1.6;
}

/* ============================================================
   HOME — HIRING CTA BANNER
   ============================================================ */
.cta-banner {
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-secondary);
  box-shadow: 0 0 40px rgba(0,180,160,0.1);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,180,160,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-left .badge { margin-bottom: 0.85rem; }

.cta-banner-headline {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-banner-desc {
  font-size: 0.9rem;
  color: var(--text-slate);
  max-width: 420px;
  line-height: 1.65;
}

.cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT — MISSION CARDS
   ============================================================ */
.mission-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
}

.mission-stat-card:last-child { margin-bottom: 0; }

.mission-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.mission-stat-desc {
  font-size: 0.85rem;
  color: var(--text-slate);
}

/* ============================================================
   ABOUT — VALUES
   ============================================================ */
.value-block {
  text-align: center;
  padding: 1.5rem 1rem;
}

.value-emoji {
  font-size: 2rem;
  margin-bottom: 0.85rem;
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.value-desc {
  font-size: 0.85rem;
  color: var(--text-slate);
  line-height: 1.65;
}

/* ============================================================
   SERVICES — ALTERNATING LAYOUT
   ============================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.service-block:last-child { border-bottom: none; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-icon-large {
  width: 64px; height: 64px;
  background: rgba(0,180,160,0.13);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-points li {
  font-size: 0.875rem;
  color: var(--text-slate);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-points li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-visual {
  border-radius: var(--radius);
  height: 300px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-visual:hover img {
  transform: scale(1.03);
}

/* ============================================================
   SERVICES — STANDARDS BAR
   ============================================================ */
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

.standard-block {
  padding: 2rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.standard-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.standard-desc {
  font-size: 0.875rem;
  color: #5a6e82;
  line-height: 1.65;
}

/* ============================================================
   CAREERS — REQUIREMENTS CARD
   ============================================================ */
.requirements-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  padding: 2rem;
}

.requirements-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.requirements-card li {
  font-size: 0.875rem;
  color: var(--text-slate);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.requirements-card li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   CAREERS — WHAT YOU'LL DO
   ============================================================ */
.role-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--ease), border-color var(--ease);
}

.role-card:hover { transform: translateY(-3px); border-color: var(--teal); }

.role-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.role-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.role-desc {
  font-size: 0.875rem;
  color: var(--text-slate);
  line-height: 1.65;
}

/* ============================================================
   CAREERS — WHAT WE OFFER
   ============================================================ */
.offer-block {
  text-align: center;
  padding: 1.5rem 1rem;
}

.offer-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.offer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.offer-desc {
  font-size: 0.875rem;
  color: var(--text-slate);
  line-height: 1.65;
}

/* ============================================================
   CAREERS — HOW TO APPLY
   ============================================================ */
.apply-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}

.apply-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.apply-icon { font-size: 2rem; margin-bottom: 1rem; }

.apply-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-primary);
  margin-bottom: 0.65rem;
}

.apply-contact {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.apply-desc {
  font-size: 0.875rem;
  color: #5a6e82;
  line-height: 1.65;
}

.apply-note {
  margin-top: 2rem;
  padding: 1.25rem 1.75rem;
  background: rgba(0,180,160,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(0,180,160,0.15);
  font-size: 0.85rem;
  color: #5a6e82;
  text-align: center;
  line-height: 1.65;
}

/* ============================================================
   CAREERS — FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border-dark);
  padding: 1.5rem 0;
}

.faq-item:first-child { border-top: 1px solid var(--border-dark); }

.faq-q {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.faq-a {
  font-size: 0.875rem;
  color: var(--text-slate);
  line-height: 1.7;
}

/* ============================================================
   CONTACT — OPTIONS
   ============================================================ */
.contact-option-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: transform var(--ease), border-color var(--ease);
}

.contact-option-card:hover { transform: translateY(-3px); border-color: var(--teal); }

.contact-option-icon { font-size: 2rem; margin-bottom: 1rem; }

.contact-option-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.65rem;
}

.contact-option-email {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
  word-break: break-all;
}

.contact-option-desc {
  font-size: 0.875rem;
  color: var(--text-slate);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.contact-option-note {
  font-size: 0.8rem;
  color: var(--text-slate);
  font-style: italic;
}

/* ============================================================
   CONTACT — FORM
   ============================================================ */
.contact-form-wrapper {
  max-width: 640px;
  margin: 0 auto;
}

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

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bg-primary);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: 'IBM Plex Mono', monospace;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--bg-primary);
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,160,0.12);
}

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

.form-row select { cursor: pointer; }

.form-btn { width: 100%; justify-content: center; padding: 0.95rem; font-size: 1rem; }

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: #7a8fa0;
  margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-dark);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-dark);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-icon {
  width: 32px; height: 32px;
  background: var(--teal);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-slate);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
  transition: opacity var(--ease);
}

.footer-email:hover { opacity: 0.8; }

.footer-col-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-slate);
  transition: color var(--ease);
}

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

.footer-contact-blurb {
  font-size: 0.85rem;
  color: var(--text-slate);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-slate);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-dark); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: none; }
  .steps-wrapper { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .steps-connector { display: none; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .cta-banner { flex-direction: column; text-align: center; padding: 2.5rem; }
  .cta-banner-right { flex-direction: row; justify-content: center; }
}

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

  .hero-headline { font-size: 2.2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps-wrapper { grid-template-columns: 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.35rem; text-align: center; }
  .section-pad { padding: 4rem 0; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .cta-banner { padding: 2rem; }
  .cta-banner-right { flex-direction: column; }
}
