/* ==========================================================
   تساند العقارية — الصفحة الرئيسية (تصميم احترافي بالهوية)
   الهوية: كحلي عميق + ذهبي + كريمي/أبيض
   ========================================================== */

:root {
  --navy: #16263f;
  --navy-2: #1f3354;
  --navy-3: #2b4a73;
  --gold: #bf9f63;
  --gold-l: #d9be86;
  --gold-d: #a67c3e;
  --cream: #f7f3ea;
  --cream-2: #efe6d4;
  --white: #ffffff;
  --ink: #1b2538;
  --muted: #626b7b;
  --line: rgba(22, 38, 63, 0.12);
  --line-soft: rgba(22, 38, 63, 0.07);
  --green: #2e7d58;

  --grad-gold: linear-gradient(120deg, #d9be86, #bf9f63 55%, #a67c3e);
  --shadow-sm: 0 4px 16px rgba(22, 38, 63, 0.06);
  --shadow: 0 22px 50px -20px rgba(22, 38, 63, 0.25);
  --shadow-gold: 0 18px 40px -16px rgba(191, 159, 99, 0.5);

  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Cairo', 'Tajawal', system-ui, sans-serif;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -0.01em; color: var(--navy); font-weight: 800; }
[hidden] { display: none !important; }
::selection { background: var(--gold); color: #1a1410; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; font-size: 15px; font-weight: 700; border-radius: 12px;
  transition: all 0.3s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-d); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-gold { background: var(--grad-gold); color: #2a2113; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.04); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.tb-contact { display: flex; align-items: center; gap: 14px; }
.tb-contact a:hover { color: var(--gold-l); }
.tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
.tb-right { color: var(--gold-l); font-weight: 600; }
.tb-hours { color: rgba(255,255,255,0.7); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 234, 0.85);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--line-soft);
  transition: all 0.3s var(--ease);
}
.nav.scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 78px; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 70px; width: auto; transition: transform 0.3s var(--ease); }
.brand:hover .brand-logo { transform: scale(1.03); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 10px 14px; font-size: 15px; font-weight: 600;
  color: var(--ink); border-radius: 10px; transition: all 0.25s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; right: 14px; left: 14px; height: 2px;
  background: var(--grad-gold); transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-d); }

.nav-cta { padding: 11px 22px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s var(--ease); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.hero-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(191, 159, 99, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(22, 38, 63, 0.06), transparent 55%);
}
.hero-pattern::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(22,38,63,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 70%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(191,159,99,0.2); }

.hero-title { font-size: clamp(36px, 5.4vw, 62px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 22px; }
.hero-title .line { display: block; }
.hero-title .line.small { font-size: clamp(15px, 1.8vw, 20px); font-weight: 500; color: var(--muted); margin-top: 14px; letter-spacing: 0; }

.hero-sub { font-size: clamp(16px, 1.5vw, 18.5px); color: var(--muted); max-width: 560px; margin-bottom: 32px; line-height: 1.9; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; font-weight: 600; color: var(--navy); }
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; }

/* Hero visual */
.hero-visual { position: relative; }
.hv-frame {
  position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}
.hv-frame img { width: 100%; height: 100%; object-fit: cover; }
.hv-frame.hv-fallback { display: grid; place-items: center; }
.hv-mark { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; pointer-events: none; }
.hv-frame.hv-fallback .hv-mark { opacity: 0.5; }
.hv-mark img { width: 45%; filter: brightness(0) invert(1); opacity: 0.9; }

.hv-card {
  position: absolute; bottom: -22px; right: -18px; width: 270px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
  box-shadow: var(--shadow);
}
.hv-card-top { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: #d23b3b; margin-bottom: 8px; }
.hv-live { width: 9px; height: 9px; background: #e23b3b; border-radius: 50%; box-shadow: 0 0 0 4px rgba(226,59,59,0.18); animation: pulse 1.5s ease-in-out infinite; }
.hv-card-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.hv-card-row { display: flex; align-items: flex-end; justify-content: space-between; }
.hv-card-row small { display: block; font-size: 11px; color: var(--muted); }
.hv-card-row strong { font-size: 18px; color: var(--gold-d); font-weight: 900; }
.hv-card-btn { font-size: 13px; font-weight: 700; color: var(--navy); }
.hv-card-btn:hover { color: var(--gold-d); }
.hv-card { cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.hv-card:hover { transform: translateY(-3px); box-shadow: 0 28px 58px -22px rgba(22, 38, 63, 0.32); }
.hv-card:hover .hv-card-btn { color: var(--gold-d); }

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

/* ---------- Features band ---------- */
.features-band { margin-top: 10px; }
.hero-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hero-card {
  display: flex; align-items: center; gap: 16px; padding: 22px 24px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all 0.35s var(--ease);
}
.hero-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(191,159,99,0.4); }
.hc-icon {
  width: 56px; height: 56px; flex-shrink: 0; display: grid; place-items: center;
  font-size: 28px; background: var(--cream); border: 1px solid var(--line-soft); border-radius: 14px;
}
.hc-text strong { display: block; font-size: 16px; color: var(--navy); margin-bottom: 2px; }
.hc-text span { font-size: 13.5px; color: var(--muted); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; max-width: 700px; margin: 0 auto 54px; }
.eyebrow {
  display: inline-block; padding: 6px 16px; background: rgba(191,159,99,0.14);
  border: 1px solid rgba(191,159,99,0.3); border-radius: 999px;
  font-size: 12px; font-weight: 800; color: var(--gold-d); letter-spacing: 0.08em; margin-bottom: 16px;
}
.eyebrow.light { background: rgba(255,255,255,0.14); color: var(--gold-l); border-color: rgba(255,255,255,0.25); }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; margin-bottom: 14px; }
.section-head p { font-size: 17px; color: var(--muted); }

/* ---------- Stats ---------- */
.stats { padding: 36px 0; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding: 40px; background: var(--navy); border-radius: 22px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.stats-grid::before {
  content: ''; position: absolute; top: -40%; left: -10%; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(191,159,99,0.25), transparent 70%); filter: blur(20px);
}
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ''; position: absolute; right: -12px; top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.12); }
.stat-num { font-size: clamp(32px, 4vw, 48px); font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.stat-num .gradient-text, .stat-num { background: none; }
.stat-label { font-size: 14px; color: var(--gold-l); margin-top: 6px; font-weight: 600; }

/* ---------- Services ---------- */
.services { padding: 90px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.services-grid-6 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  position: relative; padding: 34px 30px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: all 0.4s var(--ease);
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: var(--grad-gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(191,159,99,0.35); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: linear-gradient(180deg, #fff, var(--cream)); border-color: rgba(191,159,99,0.4); }
.service-card.featured::before { transform: scaleX(1); }
.sc-glow { display: none; }
.sc-badge {
  position: absolute; top: 18px; left: 18px; padding: 5px 12px; background: var(--grad-gold);
  color: #2a2113; border-radius: 999px; font-size: 11px; font-weight: 800;
}
.sc-icon {
  width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--navy); border-radius: 16px; transition: all 0.4s var(--ease);
}
.sc-icon span { font-size: 30px; line-height: 1; }
.service-card:hover .sc-icon { transform: rotate(-6deg) scale(1.06); background: var(--gold-d); }
.service-card h3 { font-size: 21px; margin-bottom: 11px; }
.service-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; line-height: 1.8; }
.sc-list { display: grid; gap: 9px; margin-bottom: 22px; }
.sc-list li { position: relative; padding-right: 22px; font-size: 14px; color: var(--ink); }
.sc-list li::before { content: ''; position: absolute; right: 0; top: 8px; width: 8px; height: 8px; background: var(--grad-gold); border-radius: 2px; transform: rotate(45deg); }
.sc-link { display: inline-flex; align-items: center; gap: 5px; font-weight: 800; color: var(--gold-d); font-size: 14.5px; transition: gap 0.3s var(--ease); }
.sc-link:hover { gap: 11px; }

/* ---------- How / Steps ---------- */
.how { padding: 90px 0; background: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.steps::before { content: ''; position: absolute; top: 38px; right: 12%; left: 12%; height: 2px; background: repeating-linear-gradient(90deg, var(--gold) 0 8px, transparent 8px 16px); opacity: 0.5; }
.step { position: relative; z-index: 1; padding: 30px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); text-align: center; transition: all 0.35s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-num { width: 64px; height: 64px; margin: 0 auto 18px; display: grid; place-items: center; background: var(--navy); color: var(--gold-l); border-radius: 50%; font-size: 22px; font-weight: 900; box-shadow: var(--shadow-sm); }
.step:hover .step-num { background: var(--grad-gold); color: #2a2113; }
.step h3 { font-size: 18px; margin-bottom: 9px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- Testimonials ---------- */
.testimonials { padding: 90px 0; background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { position: relative; padding: 32px 28px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; transition: all 0.35s var(--ease); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: #fff; }
.testimonial-card::before { content: '”'; position: absolute; top: 6px; left: 22px; font-size: 80px; color: var(--gold); opacity: 0.22; font-weight: 900; line-height: 1; }
.tc-rating { font-size: 15px; letter-spacing: 2px; color: var(--gold-d); margin-bottom: 14px; }
.tc-content { font-size: 15.5px; color: var(--ink); line-height: 1.9; margin-bottom: 22px; flex: 1; }
.tc-author { display: flex; align-items: center; gap: 13px; padding-top: 18px; border-top: 1px solid var(--line); }
.tc-avatar { width: 50px; height: 50px; display: grid; place-items: center; font-size: 26px; background: #fff; border: 1px solid var(--line); border-radius: 50%; }
.tc-name { font-size: 15px; font-weight: 800; color: var(--navy); }
.tc-role { font-size: 12.5px; color: var(--gold-d); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-section { padding: 90px 0; background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: all 0.3s var(--ease); }
.faq-item.open { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; gap: 15px; padding: 20px 24px; font-size: 16px; font-weight: 700; color: var(--navy); text-align: right; }
.faq-q-icon { width: 32px; height: 32px; flex-shrink: 0; display: grid; place-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: 9px; color: var(--gold-d); font-size: 18px; font-weight: 900; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--grad-gold); color: #2a2113; border-color: transparent; }
.faq-q span:last-child { flex: 1; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 71px 22px; font-size: 15px; color: var(--muted); line-height: 1.9; }

/* ---------- CTA ---------- */
.cta { padding: 90px 0; background: var(--white); }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  padding: 70px 40px; border-radius: 28px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}
.cta-card .eyebrow { margin-bottom: 16px; }
.cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 560px; margin: 0 auto 30px; }
.cta-mark { position: absolute; top: -40px; left: -40px; width: 260px; opacity: 0.07; }
.cta-mark img { width: 100%; filter: brightness(0) invert(1); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
/* داخل البطاقة الكحلية: الزر الأساسي ذهبي ليبرز */
.cta-card .btn-primary { background: var(--grad-gold); color: #2a2113; box-shadow: var(--shadow-gold); }
.cta-card .btn-primary:hover { filter: brightness(1.05); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 22px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-mark { width: 46px; height: 46px; object-fit: contain; }
.footer-name { display: flex; flex-direction: column; line-height: 1.1; font-weight: 900; font-size: 21px; color: #fff; }
.footer-name small { font-size: 11px; font-weight: 600; color: var(--gold-l); letter-spacing: 0.15em; margin-top: 3px; }
.footer-about p { font-size: 14.5px; line-height: 1.8; max-width: 320px; }
.footer-col h4 { font-size: 14px; color: var(--gold-l); margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col a, .footer-col > p { display: block; color: rgba(255,255,255,0.7); font-size: 14.5px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-l); }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 11px; font-weight: 900; color: #fff; transition: all 0.3s var(--ease); }
.socials a:hover { background: var(--grad-gold); color: #2a2113; border-color: transparent; transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13.5px; color: rgba(255,255,255,0.55); }
.admin-link { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; font-size: 13px; font-weight: 700; color: var(--gold-l) !important; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; transition: all 0.3s var(--ease); }
.admin-link:hover { background: var(--grad-gold); color: #2a2113 !important; border-color: transparent; }

/* ---------- To top ---------- */
.to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 90;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold-l); border-radius: 50%;
  font-size: 20px; box-shadow: var(--shadow); opacity: 0; transform: translateY(20px);
  transition: all 0.35s var(--ease); pointer-events: none;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--gold-d); color: #fff; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ---------- Mobile nav ---------- */
.nav.mobile-open .nav-links {
  display: flex; position: fixed; top: 78px; right: 14px; left: 14px; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px; box-shadow: var(--shadow); z-index: 99;
}
.nav.mobile-open .nav-links a { width: 100%; text-align: center; padding: 13px; }
.nav.mobile-open .nav-links a::after { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat + .stat::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .hero-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .topbar .tb-hide { display: none; }
  .hero { padding: 40px 0 70px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .services-grid, .services-grid-6 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 26px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-card { padding: 50px 24px; }
}
@media (max-width: 420px) {
  .steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
