/* ============================================
   مؤسسة الوسامة - الملف الرئيسي للتنسيق
   ============================================ */

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

/* ---- CSS Variables ---- */
:root {
  --red:       #e8192c;
  --red-dark:  #b5121f;
  --red-glow:  rgba(232, 25, 44, 0.35);
  --gold:      #f5a623;
  --blue:      #1e6fff;
  --purple:    #7c3aed;
  --bg:        #070709;
  --bg2:       #0f0f14;
  --bg3:       #161620;
  --card:      #12121a;
  --border:    rgba(255,255,255,0.07);
  --text:      #f0f0f5;
  --muted:     #8888a0;
  --font-ar:   'Cairo', 'Tajawal', sans-serif;
  --font-en:   'Montserrat', sans-serif;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 8px 40px rgba(0,0,0,0.5);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ar);
  direction: rtl;
  overflow-x: hidden;
  min-height: 100vh;
}

body.lang-en {
  direction: ltr;
  font-family: var(--font-en);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ---- Noise Overlay ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ---- Navbar ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(7,7,9,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}

nav.scrolled {
  height: 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-brand .brand-name {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-brand .brand-sub {
  font-size: 0.7rem;
  color: var(--red);
  font-weight: 500;
  letter-spacing: 0.08em;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color .2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .2s;
}

.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

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

@media (max-width: 640px) {
  .nav-cta-text { display: none; }
  .nav-cta { padding: 9px 12px; gap: 0; }
  .btn-lang { padding: 8px 10px; font-size: 0.78rem; }
}

.btn-lang {
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all .2s;
  letter-spacing: 0.05em;
}

.btn-lang:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px var(--red-glow);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 55%;
  margin-right: 0;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(232,25,44,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(124,58,237,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 50% 80%, rgba(30,111,255,0.05) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,25,44,0.12);
  border: 1px solid rgba(232,25,44,0.3);
  color: var(--red);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 .highlight {
  color: var(--red);
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  transition: all .2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.05);
}

.hero-stats {
  display: flex;
  gap: 0;
  z-index: 2;
  margin-top: 48px;
  animation: fadeUp 0.6s 0.4s ease both;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}

body.lang-en .hero-stats {
  direction: ltr;
}

.stat-item {
  text-align: center;
  padding: 16px 32px;
  border-left: 1px solid var(--border);
}

.stat-item:last-child { border-left: none; }

body.lang-en .stat-item {
  border-left: none;
  border-right: 1px solid var(--border);
}
body.lang-en .stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--red);
  display: block;
  line-height: 1.1;
}

.stat-num span { color: var(--red); }

.stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
  display: block;
  white-space: nowrap;
}

.hero-image-float {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 45%;
  overflow: hidden;
}

body.lang-en .hero-image-float {
  left: auto;
  right: 0;
}

.hero-image-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: grayscale(30%);
}

.hero-image-float::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, transparent 0%, var(--bg) 70%);
}

body.lang-en .hero-image-float::after {
  background: linear-gradient(90deg, transparent 0%, var(--bg) 70%);
}

/* ---- Sections ---- */
section { padding: 100px 48px; position: relative; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.15;
}

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

/* ---- Why Us ---- */
.why-us {
  background: var(--bg2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s;
}

.feature-card:hover {
  border-color: rgba(232,25,44,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 44px; height: 44px;
  background: rgba(232,25,44,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.feature-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

.why-visual {
  position: relative;
  height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.why-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,9,0.7) 0%, transparent 60%);
}

.why-visual-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(7,7,9,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: center;
}

body.lang-en .why-visual-badge {
  right: auto;
  left: 24px;
}

.why-visual-badge .big-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  display: block;
}

.why-visual-badge .small-text {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
}

/* ---- Services ---- */
#services { background: var(--bg); }

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-card.color-red:hover { border-color: rgba(232,25,44,0.4); box-shadow: 0 20px 60px var(--red-glow); }
.service-card.color-blue:hover { border-color: rgba(30,111,255,0.4); box-shadow: 0 20px 60px rgba(30,111,255,0.2); }
.service-card.color-purple:hover { border-color: rgba(124,58,237,0.4); box-shadow: 0 20px 60px rgba(124,58,237,0.2); }
.service-card.color-gold:hover { border-color: rgba(245,166,35,0.4); box-shadow: 0 20px 60px rgba(245,166,35,0.2); }

.service-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
  filter: grayscale(20%);
}

.service-card:hover .service-img img { transform: scale(1.07); }

.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, var(--card) 100%);
}

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

body.lang-en .service-badge { right: auto; left: 14px; }

.color-red .service-badge { background: rgba(232,25,44,0.85); color: #fff; }
.color-blue .service-badge { background: rgba(30,111,255,0.85); color: #fff; }
.color-purple .service-badge { background: rgba(124,58,237,0.85); color: #fff; }
.color-gold .service-badge { background: rgba(245,166,35,0.85); color: #000; }

.service-body {
  padding: 24px;
}

.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.color-red .service-icon-wrap { background: rgba(232,25,44,0.12); }
.color-blue .service-icon-wrap { background: rgba(30,111,255,0.12); }
.color-purple .service-icon-wrap { background: rgba(124,58,237,0.12); }
.color-gold .service-icon-wrap { background: rgba(245,166,35,0.12); }

.service-icon-wrap svg { width: 24px; height: 24px; }
.color-red .service-icon-wrap svg { color: var(--red); }
.color-blue .service-icon-wrap svg { color: var(--blue); }
.color-purple .service-icon-wrap svg { color: var(--purple); }
.color-gold .service-icon-wrap svg { color: var(--gold); }

.service-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.service-price {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
}

.price-value {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.color-red .price-value { color: var(--red); }
.color-blue .price-value { color: var(--blue); }
.color-purple .price-value { color: var(--purple); }
.color-gold .price-value { color: var(--gold); }

.price-currency {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.8;
}

.btn-service {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.color-red .btn-service { background: rgba(232,25,44,0.12); color: var(--red); }
.color-blue .btn-service { background: rgba(30,111,255,0.12); color: var(--blue); }
.color-purple .btn-service { background: rgba(124,58,237,0.12); color: var(--purple); }
.color-gold .btn-service { background: rgba(245,166,35,0.12); color: var(--gold); }

.service-card:hover .btn-service {
  filter: brightness(1.2);
}

/* ---- Highlights Strip ---- */
.highlights {
  background: var(--red);
  padding: 50px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.highlight-item:last-child { border-right: none; }

body.lang-en .highlight-item {
  border-right: none;
  border-left: 1px solid rgba(255,255,255,0.2);
}
body.lang-en .highlight-item:last-child { border-left: none; }

.highlight-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
}

.highlight-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 6px;
  font-weight: 500;
}

/* ---- Contact ---- */
#contact {
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 20px 24px;
  border-radius: var(--radius);
  transition: all .2s;
}

.contact-item:hover {
  border-color: rgba(232,25,44,0.3);
  transform: translateX(-4px);
}

body.lang-en .contact-item:hover {
  transform: translateX(4px);
}

.contact-item-icon {
  width: 46px; height: 46px;
  background: rgba(232,25,44,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-text label {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}

.contact-item-text a:hover { color: var(--red); }

.contact-cta {
  background: linear-gradient(135deg, var(--bg3), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.contact-cta h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.contact-cta p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-whatsapp:hover {
  background: #1fb958;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

.btn-call {
  background: rgba(232,25,44,0.1);
  color: var(--red);
  border: 1px solid rgba(232,25,44,0.3);
  padding: 16px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-call:hover {
  background: rgba(232,25,44,0.2);
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Footer ---- */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand .brand-name {
  font-size: 1.1rem;
  font-weight: 900;
  color: #fff;
}

.footer-brand .brand-sub {
  font-size: 0.75rem;
  color: var(--red);
}

.footer-info {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.8;
}

.footer-cr {
  text-align: left;
  font-size: 0.78rem;
  color: var(--muted);
}

body.lang-en .footer-cr { text-align: right; }

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(7,7,9,0.98);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  section { padding: 70px 24px; }
  .hero { padding: 100px 24px 60px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: repeat(2,1fr); }
  footer { flex-direction: column; text-align: center; }
  .footer-cr { text-align: center; }
  .hero-image-float { display: none; }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; height: 64px; }
  .nav-brand .brand-name { font-size: 1rem; }
  .nav-links.open { top: 64px; }

  .hero { padding: 90px 20px 50px; min-height: auto; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 2.6rem; line-height: 1.1; }
  .hero p { font-size: 1rem; }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 1rem;
  }

  .hero-stats {
    width: 100%;
    margin-top: 36px;
  }
  .stat-item {
    flex: 1;
    padding: 14px 12px;
  }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.7rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .highlight-item { padding: 16px 12px; }
  .highlight-num { font-size: 1.8rem; }

  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-title { font-size: 1.8rem; }

  .contact-cta { padding: 32px 24px; }
  .cta-buttons { flex-direction: column; }
  .btn-whatsapp, .btn-call { width: 100%; justify-content: center; }

  footer { padding: 30px 20px; gap: 16px; }
}
