/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #0D0D0D;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.gold { color: #D4AF37; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0, 0, 0.2, 1), transform 0.8s cubic-bezier(0, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(13, 13, 13, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav-logo-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.nav-logo-text {
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 14px;
}

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

.nav-link {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #9ca3af;
  transition: color 0.3s;
  font-weight: 400;
}

.nav-link:hover {
  color: #D4AF37;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: #D4AF37;
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== LANGUAGE SELECTOR ===== */
.lang-selector {
  position: relative;
  margin-left: 16px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  padding: 6px 12px;
  color: #D4AF37;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Montserrat', sans-serif;
}

.lang-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  overflow: hidden;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s;
  z-index: 200;
}

.lang-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-option:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
}

.lang-option.active {
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.08);
}

/* ===== RTL SUPPORT ===== */
html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .lang-selector {
  margin-left: 0;
  margin-right: 16px;
}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

html[dir="rtl"] .lang-option {
  text-align: right;
}

html[dir="rtl"] .service-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .service-row.reverse {
  flex-direction: row;
}

html[dir="rtl"] .case-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .case-row.reverse {
  flex-direction: row;
}

html[dir="rtl"] .about-grid {
  direction: rtl;
}

html[dir="rtl"] .founder-card {
  flex-direction: row-reverse;
}

html[dir="rtl"] .contact-info-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .pillar-header {
  flex-direction: row-reverse;
  text-align: right;
}

html[dir="rtl"] .case-result {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-cta {
  flex-direction: row-reverse;
}

html[dir="rtl"] .section-header {
  text-align: center;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.7), rgba(13,13,13,0.5), #0D0D0D);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-logo {
  height: 96px;
  width: 96px;
  margin: 0 auto 32px;
  object-fit: contain;
}

.hero-tagline {
  color: #D4AF37;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}

.hero-desc {
  color: #9ca3af;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: #D4AF37;
  color: #0D0D0D;
}

.btn-gold:hover {
  background: #C5A028;
}

.btn-outline {
  background: transparent;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

.arrow {
  font-size: 16px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(212, 175, 55, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTIONS COMMON ===== */
.section-label {
  color: #D4AF37;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-line {
  width: 80px;
  height: 1px;
  background: #D4AF37;
}

.section-header {
  margin-bottom: 80px;
}

/* ===== GLOBAL EXPANSION ===== */
.expansion {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
}

.expansion-bg {
  position: absolute;
  inset: 0;
}

.expansion-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expansion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #0D0D0D, rgba(13,13,13,0.85), rgba(13,13,13,0.85), #0D0D0D);
}

.expansion-content {
  position: relative;
  z-index: 10;
}

.expansion-intro {
  color: #9ca3af;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.7;
  text-align: center;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.pillar-card {
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 32px;
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s;
}

.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(13, 13, 13, 0.8);
}

.pillar-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.05);
}

.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
}

.pillar-subtitle {
  color: #D4AF37;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.pillar-desc {
  color: #9ca3af;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.expansion-quote {
  text-align: center;
  color: #D4AF37;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding-top: 32px;
}

/* ===== SERVICES ===== */
.services {
  padding: 128px 0;
  background: #0D0D0D;
}

.service-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 384px;
  object-fit: cover;
  transition: transform 0.7s;
}

.service-image:hover img {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.6), transparent);
}

.service-image-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.5), transparent);
}

.service-text {
  flex: 1;
}

.service-icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(212,175,55,0.3), transparent);
}

.service-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 16px;
}

.service-desc {
  color: #9ca3af;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.usp {
  padding: 128px 0;
  background: #0A0A0A;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.usp-card {
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 40px 24px;
  text-align: center;
  background: rgba(13, 13, 13, 0.3);
  transition: all 0.5s;
}

.usp-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.usp-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  background: rgba(212, 175, 55, 0.05);
}

.usp-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.usp-desc {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== CASE STUDIES ===== */
.case-studies {
  padding: 128px 0;
  background: #0A0A0A;
}

.case-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: stretch;
  margin-bottom: 80px;
}

.case-row:last-child {
  margin-bottom: 0;
}

.case-row.reverse {
  flex-direction: row-reverse;
}

.case-image {
  flex: 0 0 42%;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s;
}

.case-image:hover img {
  transform: scale(1.05);
}

.case-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.7), transparent);
}

.case-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.9);
  color: #0D0D0D;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-region {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 24px;
}

.case-block {
  margin-bottom: 20px;
}

.case-block:last-child {
  margin-bottom: 0;
}

.case-block-label {
  color: #D4AF37;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.case-block-text {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

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

.case-result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.case-result svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.case-result span {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 300;
}

/* ===== ABOUT ===== */
.about {
  padding: 128px 0;
  background: #0D0D0D;
}

.about-grid {
  display: flex;
  gap: 64px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-desc {
  color: #9ca3af;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
}

.founder-card {
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 24px;
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.founder-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.05);
  flex-shrink: 0;
}

.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
}

.founder-role {
  color: #D4AF37;
  font-size: 14px;
  margin-top: 2px;
}

.about-stats {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 32px;
  text-align: center;
  background: rgba(13, 13, 13, 0.3);
  transition: border-color 0.5s;
}

.stat-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 8px;
}

.stat-label {
  color: #6b7280;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 128px 0;
  background: #0A0A0A;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cta-desc {
  color: #9ca3af;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
  padding: 128px 0;
  background: #0D0D0D;
}

.contact-info-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  max-width: 700px;
  margin: 64px auto 0;
}

.offices-header {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 32px;
}

.offices-label {
  color: #D4AF37;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.office-card {
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 28px 16px;
  text-align: center;
  background: rgba(10, 10, 10, 0.5);
  transition: all 0.5s;
}

.office-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.office-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background 0.5s;
}

.office-card:hover .office-icon {
  background: rgba(212, 175, 55, 0.05);
}

.office-city {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.office-country {
  color: #9ca3af;
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 8px;
}

.office-type {
  color: #D4AF37;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-card {
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 32px;
  text-align: center;
  background: rgba(10, 10, 10, 0.5);
  transition: all 0.5s;
  display: block;
}

.contact-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.5s;
}

.contact-card:hover .contact-icon {
  background: rgba(212, 175, 55, 0.05);
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-value {
  color: #9ca3af;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-logo-img {
  height: 32px;
  width: 32px;
  object-fit: contain;
}

.footer-logo-text {
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 14px;
}

.footer-copy,
.footer-reg {
  color: #4b5563;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .case-row,
  .case-row.reverse {
    flex-direction: column;
  }

  .case-image {
    min-height: 240px;
  }

  .about-grid {
    flex-direction: column;
  }

  .offices-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .contact-info-row {
    flex-direction: column;
    align-items: center;
    max-width: 400px;
  }

  .contact-info-row .contact-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-direction: column;
    padding: 24px 0;
  }

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

  .nav-link {
    padding: 12px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .lang-selector {
    margin-left: auto;
    margin-right: 12px;
  }

  .nav-logo-text {
    display: none;
  }

  .hero-logo {
    height: 72px;
    width: 72px;
  }

  .expansion,
  .services,
  .case-studies,
  .usp,
  .about,
  .cta-section,
  .contact {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .service-row {
    margin-bottom: 64px;
  }

  .service-image img {
    height: 280px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .offices-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}
