/* ===== BALVANT MANVAR — Fresh Design v2 ===== */
/* Design: Emerald + Coral, DM Sans, Glassmorphism + Mesh Gradients */

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

:root {
  --emerald: #059669;
  --emerald-light: #34d399;
  --emerald-dark: #047857;
  --emerald-muted: #d1fae5;
  --coral: #f97066;
  --coral-light: #fca5a1;
  --coral-dark: #dc4a41;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --bg: #fafbfd;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 0 40px rgba(5, 150, 105, 0.12);
  --radius-full: 9999px;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.35s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--slate-800);
  line-height: 1.7;
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: var(--emerald); transition: var(--transition); }
a:hover { color: var(--emerald-dark); }

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.8);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 12px 12px 12px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.3px;
}

.brand .dot {
  color: var(--emerald);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--slate-600);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--emerald-dark);
  background: var(--emerald-muted);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta .phone-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  background: var(--emerald);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.header-cta .cta-btn:hover {
  background: var(--emerald-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: var(--emerald);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg .mesh-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.08), transparent 65%);
  filter: blur(40px);
}

.hero-bg .mesh-2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 112, 102, 0.06), transparent 65%);
  filter: blur(40px);
}

.hero-bg .mesh-3 {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.04), transparent 60%);
  filter: blur(30px);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: 8px 16px 8px 10px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.hero-chip .chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald);
  animation: pulse 2s infinite;
}

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

.hero h1 {
  font-size: clamp(3rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2.5px;
  color: var(--slate-900);
  margin-bottom: 22px;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--slate-500);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.2);
}

.btn-primary:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(5, 150, 105, 0.3);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--slate-800);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--slate-200);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--emerald);
  color: var(--emerald-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.hero-counters {
  display: flex;
  gap: 40px;
}

.hero-counters .counter {
  position: relative;
  padding-left: 16px;
}

.hero-counters .counter::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--emerald), var(--emerald-light));
}

.hero-counters .counter strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -1px;
  line-height: 1.2;
}

.hero-counters .counter span {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ===== SECTIONS SHARED ===== */
.section {
  padding: 110px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--emerald);
  background: var(--emerald-muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -1.2px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1rem;
  color: var(--slate-500);
  max-width: 520px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-area {
  position: relative;
}

.about-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.03), transparent);
  opacity: 0;
  transition: var(--transition);
}

.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--emerald-muted);
}

.about-stat-card:hover::before { opacity: 1; }

.about-stat-card .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--emerald);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.about-stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
}

.about-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 14px;
}

.about-text p {
  color: var(--slate-600);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.9;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: var(--transition);
}

.pill:hover {
  background: var(--emerald-muted);
  border-color: var(--emerald-light);
  color: var(--emerald-dark);
}

.pill i {
  font-size: 0.9rem;
  color: var(--emerald);
}

/* ===== SERVICES ===== */
.services-bg {
  background: var(--white);
  border-top: 1px solid var(--slate-100);
  border-bottom: 1px solid var(--slate-100);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.svc-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.svc-card:hover {
  background: var(--white);
  border-color: rgba(5, 150, 105, 0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--emerald-muted), rgba(5, 150, 105, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--emerald);
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}

.svc-card p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.8;
}

/* ===== PROCESS ===== */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.process-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--emerald);
  transition: var(--transition);
}

.process-card:hover .process-num {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
}

.process-card h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.process-card p {
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.7;
}

.process-connector {
  position: absolute;
  top: 46px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--slate-200);
}

.process-card:last-child .process-connector { display: none; }

/* ===== TEAM ===== */
.team-bg {
  background: var(--white);
  border-top: 1px solid var(--slate-100);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.team-card {
  text-align: center;
  padding: 36px 20px;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.team-pic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--emerald), var(--emerald-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--white);
}

.team-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.team-card span {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--emerald-muted);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #fbbf24;
  font-size: 0.85rem;
}

.review-card blockquote {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: normal;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
}

.reviewer-info strong {
  font-size: 0.84rem;
  color: var(--slate-900);
  display: block;
}

.reviewer-info span {
  font-size: 0.74rem;
  color: var(--slate-500);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(145deg, var(--slate-900), var(--slate-800));
  border-radius: var(--radius-xl);
  padding: 64px;
  text-align: center;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.15), transparent 60%);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 112, 102, 0.08), transparent 60%);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}

.cta-banner p {
  font-size: 1rem;
  color: var(--slate-400);
  max-width: 460px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 2;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  margin-top: 48px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.c-card:hover {
  border-color: var(--emerald-muted);
  box-shadow: var(--shadow-sm);
}

.c-card .c-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--emerald-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
  font-size: 1.1rem;
}

.c-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.c-card p,
.c-card a {
  font-size: 0.84rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-row a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.contact-form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 24px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: var(--slate-50);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: var(--slate-800);
  transition: var(--transition);
  outline: none;
}

.form-field:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.08);
  background: var(--white);
}

.form-field::placeholder { color: var(--slate-400); }

textarea.form-field {
  resize: vertical;
  min-height: 110px;
  margin-bottom: 14px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--emerald);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-btn:hover {
  background: var(--emerald-dark);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
  transform: translateY(-1px);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate-900);
  padding: 72px 0 0;
  margin-top: 110px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand {
  color: var(--white);
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--slate-400);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 18px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info span,
.footer-info a {
  font-size: 0.8rem;
  color: var(--slate-500);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-info a:hover { color: var(--emerald-light); }
.footer-info i { margin-top: 3px; }

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--slate-500);
  padding: 5px 0;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--emerald-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: var(--slate-500);
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--white);
  border: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
  z-index: 999;
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--emerald-dark);
  transform: translateY(-3px);
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .site-header {
    width: calc(100% - 32px);
    padding: 10px 10px 10px 20px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-connector { display: none; }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-banner {
    padding: 48px 32px;
  }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: var(--radius-lg);
    padding: 10px 10px 10px 18px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 28px;
    gap: 6px;
    box-shadow: var(--shadow-lg);
    transition: 0.4s var(--ease);
    z-index: 999;
    border-radius: 0;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 120px 0 64px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.6rem;
    letter-spacing: -1.5px;
  }

  .hero-desc { font-size: 1rem; }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-counters {
    gap: 24px;
    flex-wrap: wrap;
  }

  .hero-counters .counter strong { font-size: 1.5rem; }

  .section {
    padding: 72px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-row {
    grid-template-columns: 1fr 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .testimonials-row {
    grid-template-columns: 1fr;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cta-banner {
    margin: 0 16px;
    padding: 40px 24px;
    border-radius: var(--radius-lg);
  }

  .cta-banner h2 { font-size: 1.6rem; }
}

/* ===== RESPONSIVE — SMALL MOBILE ===== */
@media (max-width: 480px) {
  .wrap { padding: 0 16px; }

  .hero h1 { font-size: 2.1rem; }
  .section-heading { font-size: 1.7rem; }

  .team-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: 1fr; }
  .about-card-stack { grid-template-columns: 1fr; }

  .hero-counters {
    flex-direction: column;
    gap: 14px;
  }

  .contact-form { padding: 24px; }
  .svc-card { padding: 28px; }
}
