:root {
  --black: #050505; /* Deeper black */
  --white: #f5f4f0;
  --green: #b8e04a;
  --green-dark: #8fb832;
  --gray: #121212; /* Darker gray for more contrast */
  --gray-mid: #1f1f1f;
  --gray-light: #999;
  --gray-subtle: #2a2a2a;
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(5, 5, 5, 0.7);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

/* ── SR ONLY (Accessibility) ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ── REVEAL ANIMATION (Scroll) ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

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

/* ── NAV ── */
.main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s ease;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  z-index: 101;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--gray-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
}

.nav-cta {
  background: var(--green) !important;
  color: var(--black) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover { 
  background: var(--green-dark) !important; 
  transform: scale(1.02);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ── MOBILE NAV ── */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 5px;
}

.mobile-menu-btn .bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}

.mobile-menu-btn.active .bar:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 5%;
  margin-bottom: 20px;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 28px 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.mobile-nav.active .mobile-nav-links li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-links a.mobile-link {
  font-size: 28px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-nav-links a.mobile-link:hover {
  color: var(--green);
}

.mobile-nav-links a.nav-cta {
  font-size: 16px !important;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,224,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 28px;
}

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

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 28px;
}

h1 .accent { color: var(--green); }

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.btn-primary:hover { 
  background: var(--green-dark); 
  transform: translateY(-2px); 
  box-shadow: 0 4px 12px rgba(184,224,74,0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.stat-item {
  transition: transform 0.3s ease;
  text-align: center;
}

.stat-item:hover {
  transform: translateY(-4px);
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray-light);
  margin-top: 3px;
}

/* ── LOGOS ── */
.logos-section {
  padding: 60px 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-label {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 36px;
  text-align: center;
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 40px;
}

.client-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* ── SECTION SHARED ── */
section { padding: 100px 5%; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}

h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

p { color: var(--white); line-height: 1.7; font-weight: 400; font-size: 16px; }

/* ── FLORIDA MARKET ── */
.market-section {
  background: var(--gray);
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.market-body p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #aaa;
  font-weight: 300;
  line-height: 1.75;
}

.market-body p strong { color: var(--white); font-weight: 500; }

.market-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.market-stat-box {
  background: var(--gray-mid);
  padding: 32px 24px;
  transition: background 0.3s;
}

.market-stat-box:hover {
  background: #252525;
}

.market-stat-box:first-child { border-radius: 8px 0 0 0; }
.market-stat-box:nth-child(2) { border-radius: 0 8px 0 0; }
.market-stat-box:nth-child(3) { border-radius: 0 0 0 8px; }
.market-stat-box:last-child { border-radius: 0 0 8px 0; }

.stat-big {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(32px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label { font-size: 15px; color: var(--white); line-height: 1.4; font-weight: 400; }

/* ── SERVICES ── */
.services-section { background: var(--black); }

.services-intro {
  max-width: 600px;
  margin-bottom: 60px;
}

.services-intro p { font-size: 17px; font-weight: 300; }

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

.service-card {
  background: var(--gray);
  padding: 40px 32px;
  border-radius: 0;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.service-card:hover { 
  background: var(--gray-mid); 
  z-index: 2;
  transform: scale(1.01);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.service-card:first-child { border-radius: 8px 0 0 0; }
.service-card:nth-child(3) { border-radius: 0 8px 0 0; }
.service-card:nth-child(4) { border-radius: 0 0 0 8px; }
.service-card:last-child { border-radius: 0 0 8px 0; }

.service-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-weight: 600;
}

.service-card h3 { font-size: 18px; margin-bottom: 12px; }
.service-card p:not(.service-num) { font-size: 16px; color: var(--white); line-height: 1.6; flex-grow: 1; }

.service-arrow {
  margin-top: 24px;
  font-size: 20px;
  color: var(--green);
  display: inline-block;
  transition: transform 0.2s;
}

.service-card:hover .service-arrow { transform: translateX(6px); }

/* ── CASE STUDY ── */
.case-section { background: var(--gray); }

.case-inner {
  background: var(--gray-mid);
  border-radius: 12px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.case-tag {
  display: inline-block;
  background: rgba(184,224,74,0.12);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
  border: 1px solid rgba(184,224,74,0.2);
}

.case-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  border-left: 3px solid var(--green);
  padding-left: 20px;
}

.case-body p { font-size: 15px; margin-bottom: 16px; }

.case-btn {
  display: inline-flex;
  margin-top: 28px;
}

.case-results {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.result-row {
  background: var(--gray);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: background 0.3s;
}

.result-row:hover { background: #181818; }
.result-row:first-child { border-radius: 8px 8px 0 0; }
.result-row:last-child { border-radius: 0 0 8px 8px; }

.result-label { font-size: 15px; color: var(--white); font-weight: 500; }

.result-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

/* ── CITIES ── */
.cities-section { background: var(--black); }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.city-card {
  background: var(--gray);
  padding: 36px 28px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  display: block;
}

.city-card:hover { 
  background: var(--gray-mid); 
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}
.city-card:first-child { border-radius: 8px 0 0 8px; }
.city-card:last-child { border-radius: 0 8px 8px 0; }

.city-name {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.city-stat { font-size: 11px; color: var(--green); margin-bottom: 12px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -0.02em; }
.city-desc { font-size: 16px; color: var(--white); line-height: 1.6; }

/* ── CREDENTIALS ── */
.creds-section { background: var(--black); }

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

.cred-card {
  background: var(--gray);
  padding: 40px 32px;
  border-radius: 0;
  transition: background 0.3s;
}

.cred-card:hover { background: var(--gray-mid); }
.cred-card:first-child { border-radius: 8px 0 0 8px; }
.cred-card:last-child { border-radius: 0 8px 8px 0; }

.cred-icon {
  width: 44px;
  height: 44px;
  background: rgba(184,224,74,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(184,224,74,0.15);
  transition: transform 0.3s, background 0.3s;
}

.cred-card:hover .cred-icon {
  transform: scale(1.05);
  background: rgba(184,224,74,0.15);
}

.cred-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; }

.cred-title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.cred-desc { font-size: 16px; color: var(--white); line-height: 1.6; }

/* ── FAQ ── */
.faq-section { background: var(--gray); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.faq-item {
  background: var(--gray-mid);
  padding: 36px 32px;
  transition: background 0.3s;
}

.faq-item:hover { background: #252525; }
.faq-item:first-child { border-radius: 8px 0 0 0; }
.faq-item:nth-child(2) { border-radius: 0 8px 0 0; }
.faq-item:nth-child(5) { border-radius: 0 0 0 8px; }
.faq-item:last-child { border-radius: 0 0 8px 0; }

.faq-q {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.faq-a { font-size: 16px; color: var(--white); line-height: 1.6; font-weight: 400; }

/* ── CTA ── */
.cta-section {
  background: var(--green);
  text-align: center;
  padding: 120px 5%;
}

.cta-section h2 { color: var(--black); font-size: clamp(32px, 4vw, 52px); max-width: 700px; margin: 0 auto 20px; }
.cta-section p { color: rgba(10,10,10,0.7); font-size: 18px; max-width: 480px; margin: 0 auto 40px; font-weight: 500; }

.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 540px;
  margin: 0 auto 20px;
}

.cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: rgba(10,10,10,0.1);
  color: var(--black);
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: background 0.3s, border-color 0.3s;
}

.cta-form input::placeholder { color: rgba(10,10,10,0.5); }
.cta-form input:focus { 
  background: rgba(10,10,10,0.05);
  border-color: rgba(10,10,10,0.3);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.btn-dark:hover { 
  background: #1c1c1c; 
  transform: translateY(-2px);
}

.cta-note { font-size: 13px; color: rgba(10,10,10,0.6); margin-top: 16px; }
.cta-note a { color: var(--black); font-weight: 600; text-decoration: none; }
.cta-note a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.main-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 5% 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray-light);
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.social-link {
  color: var(--white);
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  color: var(--green);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--gray-light); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 13px; color: var(--gray-light); }
.footer-bottom a { color: var(--gray-light); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

.mbe-badge-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: grayscale(100%) brightness(200%);
  transition: opacity 0.3s, filter 0.3s;
}

.mbe-badge-img:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(100%);
}

.mbe-logo-result {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.mbe-hero-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  margin-bottom: 0px;
  filter: grayscale(100%) brightness(200%);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .market-grid { gap: 40px; }
  .case-inner { gap: 40px; padding: 40px; }
}

@media (max-width: 900px) {
  .market-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .case-inner { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  
  .service-card:first-child { border-radius: 8px 0 0 0; }
  .service-card:nth-child(2) { border-radius: 0 8px 0 0; }
  .service-card:nth-child(3), .service-card:nth-child(4), .service-card:nth-child(5) { border-radius: 0; }
  .service-card:nth-child(6) { border-radius: 0 0 8px 8px; }

  .faq-item:first-child { border-radius: 8px 8px 0 0; }
  .faq-item:nth-child(2), .faq-item:nth-child(5) { border-radius: 0; }
  .faq-item:last-child { border-radius: 0 0 8px 8px; }

  .cred-card:first-child { border-radius: 8px 8px 0 0; }
  .cred-card:last-child { border-radius: 0 0 8px 8px; }
}

@media (max-width: 768px) {
  .nav-links-wrapper { display: none; }
  .mobile-menu-btn { display: block; }
  
  .hero { padding-top: 140px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  section { padding: 80px 5%; }
  .navbar { padding: 16px 5%; }
  
  .logos-grid { gap: 12px 16px; }
  .client-logo { height: 36px; }
  
  .services-grid { grid-template-columns: 1fr; }
  
  .service-card:first-child { border-radius: 8px 8px 0 0; }
  .service-card:nth-child(2) { border-radius: 0; }
  
  .cities-grid { grid-template-columns: 1fr; }
  .city-card:first-child { border-radius: 8px 8px 0 0; }
  .city-card:last-child { border-radius: 0 0 8px 8px; }
  
  .hero-stats { gap: 24px; justify-content: space-between; }
  .stat-item { width: 45%; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .market-stats { grid-template-columns: 1fr; }
  
  .market-stat-box:first-child { border-radius: 8px 8px 0 0; }
  .market-stat-box:nth-child(2), .market-stat-box:nth-child(3) { border-radius: 0; }
  .market-stat-box:last-child { border-radius: 0 0 8px 8px; }

  .case-inner { padding: 32px 24px; }
  .result-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
