/* ============================================================
   BRAND TOKENS
   ============================================================ */
:root {
  --burgundy:      #6B1A2A;
  --burgundy-dark: #4A1019;
  --burgundy-mid:  #8B2336;
  --rust:          #A0452A;
  --gold:          #C9973A;
  --gold-light:    #E8C17A;
  --cream:         #FAF6F1;
  --beige:         #F2EDE6;
  --white:         #FFFFFF;
  --text-dark:     #1C1008;
  --text-mid:      #4A3728;
  --text-muted:    #8B7560;
  --border:        rgba(107, 26, 42, 0.12);
  --shadow-sm:     0 2px 12px rgba(107, 26, 42, 0.08);
  --shadow-md:     0 6px 28px rgba(107, 26, 42, 0.14);
  --shadow-lg:     0 16px 56px rgba(107, 26, 42, 0.18);
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 17px;
  direction: rtl;
}

body.ltr {
  direction: ltr;
  font-family: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--burgundy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 151, 58, 0.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--burgundy-dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.section { padding: 90px 0; }
.section--alt { background: var(--beige); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(107, 26, 42, 0.35);
}
.btn-primary:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 6px 24px rgba(107, 26, 42, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
  background: #1ebd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.btn .fa-brands,
.btn .fa-solid { font-size: 1.15rem; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--burgundy);
  background: rgba(107, 26, 42, 0.06);
}

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

.lang-btn {
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
}
.lang-btn:hover { background: var(--burgundy-dark); transform: scale(1.04); }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, var(--burgundy-dark) 0%, var(--burgundy) 45%, var(--burgundy-mid) 75%, var(--rust) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.025) 40px,
      rgba(255,255,255,0.025) 41px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.025) 40px,
      rgba(255,255,255,0.025) 41px
    );
}

.hero-ornament {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-ornament--top {
  width: 500px;
  height: 500px;
  top: -180px;
  left: -120px;
  background: radial-gradient(circle, rgba(201,151,58,0.18) 0%, transparent 70%);
}
.hero-ornament--bottom {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -80px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 151, 58, 0.2);
  border: 1px solid rgba(201, 151, 58, 0.4);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-text {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.82);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

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

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

body.ltr .about-grid { grid-template-columns: 1.4fr 1fr; }

.about-visual {
  position: relative;
}

.about-visual-inner {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.about-visual-inner::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(201,151,58,0.12);
}

.about-icon-big {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: var(--gold-light);
}

.about-stamp {
  background: rgba(201,151,58,0.2);
  border: 1px solid rgba(201,151,58,0.4);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: inline-block;
}
.about-stamp span { display: block; font-size: 0.85rem; color: var(--gold-light); }
.about-stamp strong { font-size: 2.2rem; font-weight: 800; color: var(--gold-light); }

.about-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
}
.about-dot--1 { width: 16px; height: 16px; bottom: -8px; left: 30%; }
.about-dot--2 { width: 10px; height: 10px; top: 20px; right: -5px; }

.about-text p {
  color: var(--text-mid);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  color: var(--burgundy);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(107, 26, 42, 0.12);
  line-height: 1;
  flex-shrink: 0;
  font-family: 'Playfair Display', Georgia, serif;
}

.why-body h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 8px;
}
.why-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  padding: 0 10px;
}

.step-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(107, 26, 42, 0.35);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.step-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  font-family: 'Playfair Display', serif;
}

.step-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--burgundy-dark);
  margin-bottom: 8px;
}
.step-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  flex: 0 0 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  margin-top: 30px;
  align-self: flex-start;
  opacity: 0.4;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 60%, var(--rust) 100%);
  padding: 70px 0;
}

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

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card--featured {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  color: var(--white);
  border-color: transparent;
}

.contact-icon {
  font-size: 2.4rem;
  color: var(--burgundy);
}
.contact-card--featured .contact-icon { color: var(--white); }

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--burgundy-dark);
}
.contact-card p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-mid);
  direction: ltr;
}

.contact-card--featured h4,
.contact-card--featured p {
  color: var(--white);
}

.contact-available {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: rgba(107, 26, 42, 0.06);
  padding: 6px 14px;
  border-radius: 50px;
}
.contact-card--featured .contact-available {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--burgundy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 60px;
}

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

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h5,
.footer-contact-info h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links ul li + li { margin-top: 10px; }
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
  opacity: 0.75;
}
.footer-links a:hover { color: var(--gold-light); opacity: 1; }

.footer-contact-info p {
  font-size: 0.9rem;
  margin-bottom: 10px;
  direction: ltr;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}
.footer-contact-info p i {
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}
body.ltr .footer-contact-info p { text-align: left; justify-content: flex-start; }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
}

body.ltr .wa-float {
  left: auto;
  right: 28px;
}

.wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  position: relative;
  color: var(--white);
  font-size: 1.75rem;
}
.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 380px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .about-grid {
    gap: 28px;
  }

  .about-text {
    order: 1;
    text-align: center;
  }

  .about-text .section-eyebrow {
    margin-inline: auto;
  }

  .about-text .section-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    margin-bottom: 14px;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 22px;
    text-align: start;
  }

  .about-text .btn {
    width: 100%;
    justify-content: center;
  }

  .about-visual {
    order: 2;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  .about-visual-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 24px 22px;
  }

  .about-icon-big {
    font-size: 2.6rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .about-stamp {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
  }

  .about-stamp strong {
    font-size: 1.75rem;
  }

  .about-dot { display: none; }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    top: 76px;
    background: rgba(28, 16, 8, 0.4);
    z-index: 750;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav {
    position: fixed;
    top: 76px;
    inset-inline: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 800;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-block: 0;
    padding-inline: 20px;
    transition:
      max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.25s ease,
      visibility 0.4s ease,
      padding 0.4s ease;
  }

  .nav.open {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-block: 16px 20px;
  }

  .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-link { padding: 12px 16px; font-size: 1rem; }
  .menu-btn { display: flex; }

  .services-grid,
  .why-grid,
  .contact-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .steps .section-header { margin-bottom: 36px; }

  .steps-track {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    padding-inline-end: 8px;
  }

  .steps-track::before {
    content: '';
    position: absolute;
    top: 36px;
    bottom: 36px;
    inset-inline-start: 45px;
    width: 2px;
    background: linear-gradient(180deg, var(--burgundy) 0%, var(--gold) 100%);
    opacity: 0.25;
    border-radius: 2px;
  }

  .step-connector { display: none; }

  .step-item {
    position: relative;
    z-index: 1;
    flex: none;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    text-align: start;
    gap: 16px;
    padding-block: 18px;
    padding-inline: 20px 16px;
    margin-bottom: 14px;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
  }

  .step-item:last-child { margin-bottom: 0; }

  .step-bubble {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 14px rgba(107, 26, 42, 0.28);
  }

  .step-num { font-size: 1.15rem; }

  .step-info {
    flex: 1;
    min-width: 0;
    padding-top: 2px;
  }

  .step-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    line-height: 1.45;
  }

  .step-info p {
    font-size: 0.88rem;
    line-height: 1.7;
  }

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

  .hero-content { padding: 40px 0; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .about-visual-inner {
    flex-direction: column;
    gap: 14px;
    padding: 22px 18px;
    text-align: center;
  }

  .about-icon-big { font-size: 2.2rem; }

  .about-stamp {
    width: 100%;
    max-width: 220px;
  }

  .about-stamp span { font-size: 0.8rem; }
  .about-stamp strong { font-size: 1.6rem; }

  .about-text p { font-size: 0.92rem; }

  .steps-track {
    max-width: 100%;
    padding-inline-end: 0;
  }

  .steps-track::before {
    inset-inline-start: 36px;
    top: 32px;
    bottom: 32px;
  }

  .step-item {
    padding-block: 16px;
    padding-inline: 14px;
    gap: 14px;
    margin-bottom: 12px;
  }

  .step-bubble {
    width: 46px;
    height: 46px;
  }

  .step-num { font-size: 1.05rem; }

  .step-info h4 { font-size: 0.95rem; }
  .step-info p { font-size: 0.84rem; }

  .wa-float { bottom: 20px; left: 16px; }
  body.ltr .wa-float { left: auto; right: 16px; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
