:root {
  --ink: #181b20;
  --muted: #5f6570;
  --line: #e7e4dd;
  --bg: #ffffff;
  --bg-alt: #f8f6f2;
  --navy: #12161d;
  --navy-dark: #090b0f;
  --accent: #0ea472;
  --accent-dark: #087a56;
  --accent-light: #e8f5ef;
  --gold: #d99a4e;
  --whatsapp: #25d366;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(18, 22, 29, 0.07);
  --shadow-lg: 0 20px 50px rgba(18, 22, 29, 0.16);
  --max: 1140px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  line-height: 1.9;
  font-size: 18px;
}

html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4 {
  line-height: 1.35;
  font-weight: 700;
  font-family: "Noto Naskh Arabic", "Noto Sans Arabic", serif;
}

html[dir="rtl"] p, html[dir="rtl"] .lead, html[dir="rtl"] .section-lead {
  font-size: 1.05em;
  line-height: 1.9;
}

html[dir="rtl"] .eyebrow, html[dir="rtl"] .hero-badge, html[dir="rtl"] .btn,
html[dir="rtl"] .main-nav a, html[dir="rtl"] .lang-toggle-btn,
html[dir="rtl"] .credential-list b, html[dir="rtl"] .location-row b,
html[dir="rtl"] .trust-item span, html[dir="rtl"] .stat span,
html[dir="rtl"] .period, html[dir="rtl"] .tag, html[dir="rtl"] .faq-q {
  line-height: 1.5;
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}

html[dir="rtl"] .credential-list span,
html[dir="rtl"] .location-row span,
html[dir="rtl"] .case-card p,
html[dir="rtl"] .service-card p,
html[dir="rtl"] .timeline-item p,
html[dir="rtl"] .faq-a p {
  font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  line-height: 1.8;
}

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; scroll-margin-top: 90px; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em;
  line-height: 1.2;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); color: var(--navy); }
h3 { font-family: "Inter", sans-serif; font-weight: 700; }

.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 44px;
  font-size: 1.05rem;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(18, 22, 29, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}

.brand .brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.main-nav { display: flex; gap: 26px; flex-wrap: wrap; }

.main-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.75;
  position: relative;
  padding: 4px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

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

.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 8px 15px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--navy);
  transition: border-color 0.2s ease, transform 0.15s ease;
}
.lang-toggle-btn:hover { border-color: var(--accent); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 164, 114, 0.3);
}
.btn-primary:hover { box-shadow: 0 12px 28px rgba(14, 164, 114, 0.4); }

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.btn-primary:hover::after { transform: translateX(130%); }

.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { filter: brightness(1.03); }

.btn-outline { background: transparent; border-color: rgba(255,255,255,0.35); color: inherit; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); }

.location-card .btn-outline { border-color: var(--navy); color: var(--navy); }
.location-card .btn-outline:hover { background: var(--navy); color: #fff; }

.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 76px 0 64px;
}

.hero-decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.blob { position: absolute; border-radius: 50%; filter: blur(100px); animation: drift 20s ease-in-out infinite alternate; }

.blob-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(14, 164, 114, 0.55), transparent 70%);
  top: -220px; right: -160px;
}

.blob-2 {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(217, 154, 78, 0.28), transparent 70%);
  bottom: -200px; left: -120px;
  animation-delay: -10s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-50px, 40px) scale(1.18); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  margin-bottom: 14px;
  font-family: "Fraunces", Georgia, serif;
}

.hero h1 .accent-word {
  background: linear-gradient(100deg, var(--gold), #f2c98a 50%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .role {
  font-size: 1.18rem;
  color: #d7e0d9;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Fraunces", serif;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-size: 1.7rem;
  color: #fff;
  font-family: "Fraunces", serif;
  font-variant-numeric: tabular-nums;
  direction: ltr;
  unicode-bidi: isolate;
}

.hero-stats .stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.hero-photo-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.photo-glow {
  position: absolute;
  inset: -26px;
  background: conic-gradient(from 0deg, var(--accent), transparent 35%, var(--gold) 65%, transparent 90%, var(--accent));
  filter: blur(36px);
  opacity: 0.55;
  border-radius: 32px;
  animation: spin 14s linear infinite;
  z-index: 0;
}

@keyframes spin { to { transform: rotate(360deg); } }

.hero-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease);
}

.hero-photo:hover { transform: perspective(800px) rotateY(-3deg) rotateX(2deg) scale(1.01); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-photo .placeholder-icon { width: 90px; height: 90px; opacity: 0.5; }
.hero-photo .placeholder-text {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  text-align: center; font-size: 0.72rem; color: #b9cbdc;
}

/* ---------- Trust strip ---------- */
.trust-bar {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
}

.trust-bar::before, .trust-bar::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.trust-bar::before { left: 0; background: linear-gradient(90deg, var(--navy-dark), transparent); }
.trust-bar::after { right: 0; background: linear-gradient(270deg, var(--navy-dark), transparent); }

.trust-track {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marquee 26s linear infinite;
}

.trust-bar:hover .trust-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trust-set { display: flex; gap: 56px; flex-shrink: 0; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.trust-item svg { flex-shrink: 0; color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .trust-track { animation: none; }
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; }

.about-grid p { color: var(--muted); }
.about-grid p + p { margin-top: 1.1em; }

.credential-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }

.credential-list li {
  display: flex; gap: 13px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.credential-list li:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.credential-list .ic {
  color: var(--accent); flex-shrink: 0; margin-top: 2px;
  background: var(--accent-light); border-radius: 8px; padding: 6px;
}

.credential-list b { display: block; color: var(--navy); font-size: 0.92rem; }
.credential-list span { color: var(--muted); font-size: 0.85rem; }

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

.service-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(14, 164, 114, 0.14), transparent 70%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}

.service-card:hover::before { opacity: 1; }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 164, 114, 0.3);
}

.service-card .ic-wrap, .service-card h3, .service-card p { position: relative; z-index: 1; }

.service-card .ic-wrap {
  width: 50px; height: 50px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-light), #fff);
  color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .ic-wrap { transform: scale(1.08) rotate(-4deg); }
.service-card h3 { font-size: 1.08rem; color: var(--navy); }
.service-card p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* ---------- Cases ---------- */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.case-card {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.case-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(14, 164, 114, 0.1), transparent 70%);
  opacity: 0; transition: opacity 0.35s ease; pointer-events: none;
}

.case-card:hover::before { opacity: 1; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.case-card .tag, .case-card h3, .case-card p { position: relative; z-index: 1; }

.case-card .case-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0d1015;
  overflow: hidden;
}

.case-card .case-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}

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

.case-card .tag { margin-top: 20px; }
.case-card .case-photo + .tag { margin-top: 20px; }

.case-card .tag {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: 0.72rem; font-weight: 700; padding: 6px 13px;
  border-radius: 999px; margin: 20px 22px 12px;
}

.case-card h3 { font-size: 1.02rem; margin: 0 22px 8px; color: var(--navy); }
.case-card p { margin: 0 22px 22px; color: var(--muted); font-size: 0.88rem; }
.cases-note { font-size: 0.82rem; color: var(--muted); margin-top: 20px; }

/* ---------- Experience timeline ---------- */
.timeline { border-inline-start: 3px solid var(--accent-light); padding-inline-start: 30px; display: grid; gap: 34px; }
.timeline-item { position: relative; }

.timeline-item::before {
  content: "";
  position: absolute; inset-inline-start: -37px; top: 4px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--accent-light);
}

.timeline-item .period {
  font-size: 0.8rem; font-weight: 700; color: var(--accent-dark);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.timeline-item h3 { font-size: 1.08rem; color: var(--navy); margin: 5px 0 3px; }
.timeline-item .place { font-size: 0.88rem; color: var(--muted); margin-bottom: 7px; font-style: italic; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }

.location-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}

.location-row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.location-row .ic { color: var(--accent-dark); flex-shrink: 0; margin-top: 3px; background: var(--accent-light); border-radius: 8px; padding: 6px; }
.location-row b { display: block; color: var(--navy); font-size: 0.92rem; }
.location-row span { color: var(--muted); font-size: 0.88rem; }

.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 360px; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 14px; overflow: hidden; background: #fff;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: rgba(14, 164, 114, 0.35); }

.faq-q {
  width: 100%; text-align: inline-start; background: none; border: none;
  padding: 20px 24px; font-weight: 700; color: var(--navy); font-size: 0.98rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 12px; transition: background 0.2s ease;
}
.faq-q:hover { background: var(--accent-light); }
.faq-q .chev { transition: transform 0.3s var(--ease); flex-shrink: 0; color: var(--accent-dark); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); padding: 0 24px; color: var(--muted); font-size: 0.92rem; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 22px; }

/* ---------- Contact / CTA ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(175deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff; text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14, 164, 114, 0.3), transparent 70%);
  border-radius: 50%;
  top: -260px; left: 50%; transform: translateX(-50%);
  filter: blur(80px);
  animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; }
.cta-section p { color: rgba(255, 255, 255, 0.7); max-width: 560px; margin: 0 auto 30px; }
.cta-section .cta-row { justify-content: center; }

.social-row { display: flex; gap: 14px; justify-content: center; margin-top: 30px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social-row a:hover { transform: translateY(-3px); background: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.5); padding: 30px 0; font-size: 0.85rem; text-align: center; }
.site-footer a { color: rgba(255, 255, 255, 0.75); }

/* ---------- Sticky mobile call bar ---------- */
.mobile-call-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 12px 16px; gap: 10px;
}
.mobile-call-bar .btn { flex: 1; }

/* ---------- Responsive ---------- */
@media (max-width: 1120px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 24px 16px;
    gap: 2px;
    box-shadow: var(--shadow);
  }
  .main-nav.nav-open a { padding: 10px 0; opacity: 1; }
  .main-nav.nav-open a::after { display: none; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: -1; }
  .hero-photo { max-width: 230px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 70px; }
  .section { padding: 72px 0; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-stats { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero::before, .hero::after, .photo-glow, .cta-section::before { animation: none; }
  .btn, .service-card, .case-card, .credential-list li { transition: none; }
}
