/* ═══════════════════════════════════════════
   TRUE GROWTH LAB — Design System
   Modern / Dark / Luminous Green Accent
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222;
  --surface: #111;
  --border: rgba(255,255,255,.08);
  --border-light: rgba(255,255,255,.12);
  --text: #f0efe9;
  --text-secondary: #9a9890;
  --text-muted: #6b6960;
  --accent: #b4f065;
  --accent-dim: rgba(180,240,101,.1);
  --accent-glow: rgba(180,240,101,.15);
  --warm: #f5c542;
  --heading: 'Syne', sans-serif;
  --body: 'Outfit', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); color: var(--text); background: var(--bg); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }
.grid { display: grid; }

/* ── Typography ── */
.label {
  font-family: var(--body);
  font-size: .72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.heading-xl {
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--text);
}
.heading-lg {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--text);
}
.heading-md {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}
.body-lg { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; max-width: 580px; }
.body-md { font-size: .96rem; color: var(--text-secondary); line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 60px;
  font-family: var(--body);
  font-weight: 600;
  font-size: .92rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent);
  color: var(--bg);
}
.btn-accent:hover {
  background: #c8ff78;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(180,240,101,.25);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn svg { width: 16px; height: 16px; }

/* ── Topbar ── */
.topbar {
  background: var(--accent);
  color: var(--bg);
  font-size: .78rem;
  font-weight: 600;
  padding: 9px 0;
  letter-spacing: .3px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--bg); }
.topbar a:hover { opacity: .7; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(10,10,10,.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.logo-mark::after {
  content: '↗';
  font-size: 1.2rem;
  color: var(--bg);
  font-weight: 800;
}
.logo-name {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta {
  padding: 10px 24px !important;
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-radius: 60px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #c8ff78 !important; }
.nav-cta::after { display: none !important; }

/* Mobile menu */
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; border-radius: 2px; }
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(30px);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
}

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,240,101,.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,66,.05) 0%, transparent 70%);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content .heading-xl { margin-bottom: 24px; }
.hero-content .heading-xl .highlight {
  background: linear-gradient(135deg, var(--accent), var(--warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-content .body-lg { margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero right — floating metric cards */
.hero-visual { position: relative; height: 440px; }
.float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 26px 28px;
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
.float-card:nth-child(1) { top: 0; right: 0; animation-delay: 0s; }
.float-card:nth-child(2) { top: 120px; right: 160px; animation-delay: 1.5s; }
.float-card:nth-child(3) { top: 260px; right: 30px; animation-delay: 3s; }
.float-card .fc-label { font-size: .7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-bottom: 6px; }
.float-card .fc-value { font-family: var(--heading); font-size: 1.5rem; font-weight: 700; }
.float-card .fc-accent { color: var(--accent); }
.float-card .fc-warm { color: var(--warm); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── Marquee Band ── */
.marquee-band {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: flex;
  gap: 50px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-track span::before {
  content: '◆';
  font-size: .5rem;
  color: var(--accent);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Intro / About Block ── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.intro-visual-inner {
  position: absolute;
  inset: 30px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-dim), rgba(245,197,66,.06));
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-visual-inner .ring {
  width: 160px;
  height: 160px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: .2;
  animation: pulse-ring 4s ease-in-out infinite;
  position: absolute;
}
.intro-visual-inner .ring:nth-child(2) { width: 220px; height: 220px; animation-delay: 1s; }
.intro-visual-inner .ring:nth-child(3) { width: 280px; height: 280px; animation-delay: 2s; }
@keyframes pulse-ring {
  0%, 100% { opacity: .1; transform: scale(1); }
  50% { opacity: .25; transform: scale(1.05); }
}
.intro-content .body-md { margin-bottom: 14px; }
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.stat-item .stat-num {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
}
.stat-item .stat-label {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.sc-icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.service-card h3 {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Process ── */
.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 50px;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--border);
}
.p-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.p-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  transition: all var(--transition);
}
.p-step:hover .p-num {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.p-step h4 {
  font-family: var(--heading);
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.p-step p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 160px;
  margin: 0 auto;
}

/* ── Why Choose Cards ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.why-card {
  padding: 34px 28px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--accent); }
.why-card .wc-num {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .2;
  margin-bottom: 12px;
}
.why-card h4 {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}
.why-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Testimonials ── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.t-stars { color: var(--warm); font-size: .9rem; letter-spacing: 2px; margin-bottom: 16px; }
.t-card blockquote {
  font-size: .94rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author { font-weight: 600; font-size: .88rem; color: var(--text); }
.t-role { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* ── CTA Section ── */
.cta-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section .heading-lg { margin-bottom: 14px; position: relative; z-index: 1; }
.cta-section .body-lg { margin: 0 auto 32px; position: relative; z-index: 1; text-align: center; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 { font-family: var(--heading); font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.contact-info > p { color: var(--text-secondary); font-size: .96rem; margin-bottom: 28px; }
.c-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.c-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; }
.c-text { font-size: .9rem; color: var(--text-secondary); }
.c-text strong { color: var(--text); display: block; margin-bottom: 3px; }
.c-text a { color: var(--text-secondary); }
.c-text a:hover { color: var(--accent); }
.c-text .sub { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.contact-form-card h3 { font-family: var(--heading); font-size: 1.2rem; font-weight: 600; margin-bottom: 24px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 7px; }
.fg input, .fg textarea, .fg select {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--body);
  font-size: .9rem;
  transition: border-color var(--transition);
}
.fg input:focus, .fg textarea:focus, .fg select:focus { outline: none; border-color: var(--accent); }
.fg textarea { min-height: 100px; resize: vertical; }
.fg select { appearance: none; cursor: pointer; }
.fg select option { background: var(--bg-card); color: var(--text); }
.form-note { font-size: .78rem; color: var(--text-muted); margin-top: 14px; }
.form-note a { color: var(--accent); text-decoration: underline; }

.info-box {
  margin-top: 30px;
  padding: 22px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(180,240,101,.12);
}
.info-box p { font-size: .86rem; color: var(--text-secondary); line-height: 1.7; }
.info-box strong { color: var(--accent); }

/* ── Page Header ── */
.page-hero {
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero .label { justify-content: center; }
.page-hero .heading-xl { margin-bottom: 14px; }
.page-hero .body-lg { margin: 0 auto; text-align: center; }

/* ── About Page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-content p { color: var(--text-secondary); font-size: .96rem; margin-bottom: 14px; }
.values-list { margin-top: 28px; }
.values-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .92rem;
  color: var(--text-secondary);
}
.values-list li .v-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.about-side-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.about-side-card h4 { font-family: var(--heading); font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.about-side-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Services Detail ── */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  margin-bottom: 20px;
}
.service-detail:hover { border-color: var(--border-light); }
.service-detail h3 { font-family: var(--heading); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.service-detail p { font-size: .92rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 10px; }
.service-detail .note {
  font-size: .84rem;
  color: var(--text-muted);
  padding: 10px 14px;
  background: var(--accent-dim);
  border-radius: var(--radius-xs);
  border-left: 3px solid var(--accent);
  margin-top: 6px;
}

/* ── Why Page detail ── */
.why-detail {
  padding: 30px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 18px;
  border-left: 4px solid var(--accent);
  transition: all var(--transition);
}
.why-detail:hover { border-color: var(--accent); background: var(--bg-card-hover); }
.why-detail h4 { font-family: var(--heading); font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.why-detail p { font-size: .92rem; color: var(--text-secondary); line-height: 1.75; }

/* ── Legal Pages ── */
.legal-body { background: var(--bg); padding: 70px 0; }
.legal-body .container { max-width: 800px; }
.legal-body h2 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 36px 0 12px;
}
.legal-body p, .legal-body li {
  font-size: .92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}
.legal-body ul { padding-left: 22px; margin-bottom: 16px; }
.legal-body ul li { list-style: disc; color: var(--text-secondary); }
.legal-body a { color: var(--accent); }

/* ── Footer ── */
.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p { font-size: .86rem; color: var(--text-muted); max-width: 280px; margin-top: 14px; line-height: 1.7; }
.footer h5 {
  font-family: var(--heading);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: .86rem; color: var(--text-secondary); }
.footer ul a:hover { color: var(--accent); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-visual { max-width: 100%; height: 300px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-track::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .menu-btn { display: block; }
  .nav-links { display: none; }
  .section { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { flex-direction: column; gap: 20px; }
  .service-detail { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 60px 0 70px; }
}
