/* ═══════════════════════════════════════
   MUSKDEV — STYLESHEET
   Fonts: Playfair Display (headings) + Rajdhani (body)
═══════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:        #0d1520;
  --navy2:       #152032;
  --white:       #ffffff;
  --off:         #f8f9fb;
  --off2:        #f0f2f5;
  --blue:        #2563eb;
  --blue-hover:  #1d4ed8;
  --text:        #1e293b;
  --muted:       #64748b;
  --border:      #e4e8ef;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Rajdhani', sans-serif;
  --radius:      12px;
  --shadow-sm:   0 2px 12px rgba(15, 22, 35, 0.07);
  --shadow-md:   0 8px 32px rgba(15, 22, 35, 0.12);
  --shadow-lg:   0 20px 60px rgba(15, 22, 35, 0.15);
  --transition:  0.28s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── UTILITIES ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-pad {
  padding: 108px 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

.body-text {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 16px;
}

.section-header.centered {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  padding: 14px 32px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.28);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 14px 32px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  text-decoration: none;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }
.d5 { transition-delay: 0.50s; }

/* ── FADE IN (hero only) ── */
.fade-in-1 { animation: fadeUp 0.7s 0.15s both; }
.fade-in-2 { animation: fadeUp 0.7s 0.30s both; }
.fade-in-3 { animation: fadeUp 0.7s 0.50s both; }
.fade-in-4 { animation: fadeUp 0.7s 0.68s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--blue-hover) !important;
  transform: translateY(-1px);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* mobile menu */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 290;
}

.mob-overlay.open { display: block; }

.mob-menu {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 300;
  padding: 80px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-lg);
}

.mob-menu.open { transform: translateX(0); }

.mob-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mob-nav a {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.mob-nav a:hover { color: var(--blue); }

.mob-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color var(--transition);
}

.mob-close:hover { color: var(--navy); }

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 18, 32, 0.82) 0%,
    rgba(10, 18, 32, 0.55) 55%,
    rgba(10, 18, 32, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 0 40px;
  padding-top: 72px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.8vw, 52px);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  white-space: nowrap;
}

.hero-title em {
  font-style: italic;
  color: #93c5fd;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 0.15; }
}

/* ════════════════════════════════
   STATS BAND
════════════════════════════════ */
.stats-band {
  background: var(--navy);
  padding: 48px 0;
}

.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
}

.stat-item strong {
  display: inline;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.stat-item sup {
  font-family: var(--font-head);
  font-size: 28px;
  color: #93c5fd;
  vertical-align: super;
}

.stat-item span {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-top: 6px;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about {
  background: var(--off);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}

.about-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--blue);
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.badge-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.badge-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 2px;
}

.about-copy {
  padding-left: 12px;
}

.about-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.feat strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.feat p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: transparent;
}

.svc-card:hover::after {
  transform: scaleX(1);
}

.svc-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.svc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-image img {
  transform: scale(1.05);
}

.svc-body {
  padding: 28px 28px 32px;
}

.svc-body h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.svc-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 20px;
  font-weight: 300;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 4px 11px;
  border-radius: 20px;
}

/* CTA card inside services grid */
.svc-cta {
  background: linear-gradient(140deg, #16305a 0%, var(--navy) 100%);
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-cta::after { display: none; }
.svc-cta:hover { transform: translateY(-5px); }

.svc-cta-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-cta-inner h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.2px;
}

/* ════════════════════════════════
   PROCESS
════════════════════════════════ */
.process {
  background: var(--off);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}

.pstep {
  text-align: center;
}

.pstep-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  margin: 0 auto 20px;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.pstep:hover .pstep-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.pstep h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.pstep p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}

.pstep-connector {
  margin-top: 28px;
  height: 2px;
  background: var(--border);
  width: 100%;
  align-self: flex-start;
}

/* ════════════════════════════════
   TESTIMONIALS
════════════════════════════════ */
.testimonials {
  background: var(--navy);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: background var(--transition), transform var(--transition);
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testi-card blockquote {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.78;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 28px;
  border: none;
  padding: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #93c5fd;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 12px;
  color: #64748b;
}

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-band-image {
  position: absolute;
  inset: 0;
}

.cta-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 21, 32, 0.90) 0%,
    rgba(13, 21, 32, 0.70) 100%
  );
}

.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  max-width: 600px;
  padding-left: 40px;
}

.cta-band-content h2 {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-band-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.contact {
  background: var(--off);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-left { padding-top: 8px; }

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cd-item {}

.cd-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
}

.cd-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
}

.cd-value:hover { color: var(--blue); }

/* form card */
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.field-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.field-group input,
.field-group textarea,
.field-group select {
  border: 1px solid var(--border);
  background: var(--off);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  resize: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

.field-group select option { background: var(--white); }

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #9aa5b4;
  font-weight: 300;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 36px;
}

.footer-brand p {
  font-size: 14px;
  color: #475569;
  line-height: 1.75;
  max-width: 280px;
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  transition: all var(--transition);
}

.footer-socials a:hover {
  border-color: var(--blue);
  color: #fff;
  background: rgba(37, 99, 235, 0.18);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: #475569;
  font-weight: 300;
  transition: color var(--transition);
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 13px;
  color: #475569;
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {
  .container,
  .nav-inner,
  .hero-content,
  .stats-inner,
  .cta-band-content {
    padding-left: 28px;
    padding-right: 28px;
  }

  .about-grid        { grid-template-columns: 1fr; gap: 60px; }
  .about-images      { max-width: 520px; }
  .about-copy        { padding-left: 0; }
  .services-grid     { grid-template-columns: 1fr 1fr; }
  .process-steps     {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .pstep-connector   { display: none; }
  .testi-grid        { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 52px; }
  .footer-top        { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links         { display: none; }
  .hamburger         { display: flex; }
  .stat-divider      { display: none; }
  .stats-inner       { justify-content: center; gap: 40px; }
}

@media (max-width: 640px) {
  .section-pad { padding: 72px 0; }

  .container,
  .nav-inner,
  .stats-inner,
  .cta-band-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
  }

  .hero-title {
    white-space: normal;
    font-size: clamp(24px, 7vw, 36px);
  }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 28px 22px; }
  .footer-top    { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-img-secondary { display: none; }
  .about-badge { left: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline-light { width: 100%; justify-content: center; }
}