:root {
  --primary: #5b2bb8;
  --primary-dark: #321672;
  --teal: #24a9a5;
  --teal-soft: #dff6f3;
  --ink: #171528;
  --muted: #68667a;
  --line: #e7e4ef;
  --surface: #ffffff;
  --surface-soft: #f7f7fb;
  --dark: #16102c;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 22px 60px rgba(44, 27, 89, .13);
  --transition: 260ms cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body[dir="rtl"] { font-family: Tahoma, Arial, sans-serif; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.skip-link { position: fixed; top: 12px; left: 12px; padding: 10px 14px; background: #fff; border-radius: 10px; transform: translateY(-150%); z-index: 9999; }
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(91,43,184,.08);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(34,18,72,.08); background: rgba(255,255,255,.95); }
.nav-wrap { height: 84px; display: flex; align-items: center; gap: 32px; }
.brand { flex: 0 0 auto; }
.brand img { width: 165px; height: 58px; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 30px; margin-inline-start: auto; }
.main-nav a { font-weight: 650; font-size: .96rem; color: #373246; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: linear-gradient(90deg,var(--teal),var(--primary)); transition: right var(--transition); }
body[dir="rtl"] .main-nav a::after { left: 100%; right: 0; transition: left var(--transition); }
.main-nav a:hover::after { right: 0; }
body[dir="rtl"] .main-nav a:hover::after { left: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switcher { position: relative; height: 42px; min-width: 86px; display: inline-flex; align-items: center; gap: 7px; padding-inline-start: 12px; border: 1px solid var(--line); background: #fff; color: var(--primary-dark); border-radius: 999px; font-weight: 850; box-shadow: 0 7px 20px rgba(50,22,114,.06); }
.language-icon { font-size: 1rem; color: var(--teal); line-height: 1; }
.language-switcher select { width: 50px; height: 40px; border: 0; outline: 0; color: var(--primary-dark); background: transparent; cursor: pointer; font: inherit; font-size: .82rem; appearance: none; -webkit-appearance: none; }
.language-switcher::after { content: "⌄"; position: absolute; inset-inline-end: 11px; top: 8px; color: var(--muted); pointer-events: none; font-size: .8rem; }
.language-switcher:focus-within { border-color: rgba(91,43,184,.45); box-shadow: 0 0 0 4px rgba(91,43,184,.08); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: var(--transition); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); }
.btn svg { width: 21px; height: 21px; fill: currentColor; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #fff; background: linear-gradient(135deg,var(--primary),#714bd1 55%,var(--teal)); box-shadow: 0 15px 32px rgba(91,43,184,.25); }
.btn-primary:hover { box-shadow: 0 20px 38px rgba(91,43,184,.32); }
.btn-small { min-height: 44px; padding: 0 19px; font-size: .9rem; }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,.7); }
.btn-ghost:hover { border-color: rgba(91,43,184,.4); }
.btn-white { color: var(--primary-dark); background: #fff; box-shadow: 0 14px 34px rgba(10,5,28,.2); }

.hero { min-height: 820px; padding-top: 170px; display: flex; align-items: center; position: relative; background: radial-gradient(circle at 10% 10%,rgba(49,178,171,.13),transparent 30%), radial-gradient(circle at 90% 20%,rgba(91,43,184,.14),transparent 32%), linear-gradient(180deg,#fff 0%,#fbfaff 100%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.hero-copy h1 { margin: 20px 0 22px; font-size: clamp(3rem,5.4vw,5.25rem); line-height: 1.03; letter-spacing: -.055em; max-width: 760px; }
body[dir="rtl"] .hero-copy h1 { letter-spacing: -.025em; }
.hero-lead { font-size: 1.16rem; color: var(--muted); max-width: 650px; margin: 0 0 30px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-weight: 850; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
body[dir="rtl"] .eyebrow { letter-spacing: 0; text-transform: none; }
.eyebrow.light { color: #ccfff9; }
.eyebrow-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 7px rgba(36,169,165,.13); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 42px; }
.hero-stats { display: flex; align-items: stretch; gap: 0; }
.hero-stats div { min-width: 134px; padding: 0 24px; border-inline-start: 1px solid var(--line); }
.hero-stats div:first-child { padding-inline-start: 0; border: 0; }
.hero-stats strong { display: block; color: var(--primary-dark); font-size: 1.58rem; line-height: 1.15; }
.hero-stats span { color: var(--muted); font-size: .85rem; }
.hero-visual { min-height: 555px; position: relative; }
.image-card { position: absolute; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); background: #eee; }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-main-image { width: 68%; height: 520px; inset-inline-end: 0; top: 0; transform: rotate(2deg); }
.hero-side-image { width: 48%; height: 290px; inset-inline-start: 0; bottom: 4px; border: 9px solid #fff; transform: rotate(-3deg); }
.experience-chip { position: absolute; inset-inline-start: 28%; top: 46px; z-index: 3; max-width: 260px; padding: 16px 18px; display: flex; gap: 12px; align-items: flex-start; background: rgba(255,255,255,.93); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.75); border-radius: 18px; box-shadow: 0 14px 40px rgba(42,23,85,.16); animation: float 5s ease-in-out infinite; }
.chip-icon { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); flex: 0 0 auto; }
.experience-chip strong, .experience-chip small { display: block; }
.experience-chip strong { font-size: .9rem; }
.experience-chip small { color: var(--muted); font-size: .72rem; line-height: 1.4; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .55; }
.orb-one { width: 230px; height: 230px; background: linear-gradient(145deg,rgba(36,169,165,.15),rgba(91,43,184,.08)); left: -90px; top: 240px; }
.orb-two { width: 350px; height: 350px; border: 1px solid rgba(91,43,184,.12); right: -150px; bottom: 50px; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.trust-strip { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 28px 20px; border-inline-start: 1px solid var(--line); }
.trust-item:first-child { border: 0; }
.trust-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 13px; background: var(--teal-soft); color: var(--teal); font-weight: 900; flex: 0 0 auto; }
.trust-item strong, .trust-item small { display: block; }
.trust-item strong { font-size: .9rem; }
.trust-item small { color: var(--muted); font-size: .76rem; line-height: 1.45; }

.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .feature-copy h2, .contact-copy h2 { font-size: clamp(2.35rem,4.4vw,4.15rem); line-height: 1.08; letter-spacing: -.045em; margin: 16px 0 18px; }
body[dir="rtl"] .section-heading h2, body[dir="rtl"] .about-copy h2, body[dir="rtl"] .feature-copy h2, body[dir="rtl"] .contact-copy h2 { letter-spacing: -.02em; }
.section-heading p { color: var(--muted); font-size: 1.04rem; }
.section-heading.split { max-width: none; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.section-heading.split p { margin: 0 0 8px; }
.services { background: var(--surface-soft); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { position: relative; min-height: 490px; display: flex; flex-direction: column; padding: 30px; border-radius: var(--radius-md); background: #fff; border: 1px solid var(--line); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card.featured { color: #fff; background: linear-gradient(145deg,var(--primary-dark),var(--primary) 60%,#366ea8); border-color: transparent; }
.service-card.featured p, .service-card.featured li { color: rgba(255,255,255,.78); }
.service-card.featured .service-footer { border-color: rgba(255,255,255,.18); }
.service-card.featured .service-book { background: #fff; color: var(--primary-dark); }
.service-number { position: absolute; top: 22px; inset-inline-end: 24px; color: #d7d1e3; font-size: .86rem; font-weight: 900; }
.featured .service-number { color: rgba(255,255,255,.45); }
.service-top { display: grid; grid-template-columns: 52px 1fr; align-items: start; gap: 16px; margin-bottom: 20px; }
.service-icon { width: 52px; height: 52px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); border-radius: 16px; font-size: 1.35rem; }
.featured .service-icon { background: rgba(255,255,255,.14); color: #fff; }
.service-media { height: 138px; border-radius: 18px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(135deg,#f5f2fb,#ece7fa); box-shadow: 0 16px 36px rgba(58,35,109,.08); }
.service-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured .service-media { border-color: rgba(255,255,255,.16); box-shadow: 0 16px 36px rgba(0,0,0,.2); }
.service-card h3 { font-size: 1.45rem; line-height: 1.25; margin: 0 0 13px; }
.service-card p { color: var(--muted); margin: 0 0 16px; }
.service-card ul { margin: 0 0 24px; padding: 0; list-style: none; }
.service-card li { position: relative; color: #4c495a; padding-inline-start: 20px; margin: 6px 0; font-size: .93rem; }
.service-card li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--teal); font-weight: 900; }
.featured li::before { color: #85f0e8; }
.service-footer { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; font-weight: 850; }
.service-book { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; transition: transform var(--transition), background var(--transition); }
.service-book:hover { transform: rotate(45deg); background: var(--primary); }
.popular { position: absolute; top: 18px; inset-inline-start: 98px; padding: 6px 11px; border-radius: 999px; background: rgba(255,255,255,.14); font-size: .7rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
body[dir="rtl"] .popular { text-transform: none; letter-spacing: 0; }
.medical-note { max-width: 780px; margin: 28px auto 0; text-align: center; color: var(--muted); font-size: .82rem; }

.feature-section { color: #fff; background: linear-gradient(135deg,#17102d,#2a155d 58%,#185e63); position: relative; overflow: hidden; }
.feature-section::before { content: ""; position: absolute; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; right: -220px; top: -130px; }
.feature-grid { display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 80px; position: relative; z-index: 1; }
.feature-image { height: 630px; position: relative; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.feature-badge { position: absolute; inset-inline-end: -30px; bottom: 40px; width: 150px; height: 150px; border-radius: 50%; display: flex; flex-direction: column; justify-content: center; align-items: center; background: #fff; color: var(--primary-dark); box-shadow: 0 20px 60px rgba(0,0,0,.25); transform: rotate(8deg); }
.feature-badge strong { font-size: .84rem; }
.feature-badge span { font-weight: 900; }
.feature-copy h2 { color: #fff; max-width: 720px; }
.feature-list { margin: 34px 0; }
.feature-list > div { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.14); }
.feature-list > div:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list > div > span { color: #8ee6df; font-weight: 900; }
.feature-list h3 { margin: 0 0 4px; font-size: 1.17rem; }
.feature-list p { margin: 0; color: rgba(255,255,255,.67); }
.text-link { display: inline-flex; gap: 15px; align-items: center; color: #fff; font-weight: 850; }
.text-link span:last-child { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); }

.about-grid { display: grid; grid-template-columns: 1.05fr .72fr 1fr; gap: 48px; align-items: start; }
.about-copy p { color: var(--muted); }
.about-role { color: var(--primary) !important; font-weight: 850; margin-top: -7px; }
.language-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.language-pills span { padding: 8px 13px; border-radius: 999px; background: var(--surface-soft); border: 1px solid var(--line); font-size: .82rem; font-weight: 800; }
.about-card { position: relative; height: 500px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-card img { width: 100%; height: 100%; object-fit: cover; }
.about-card-overlay { position: absolute; left: 15px; right: 15px; bottom: 15px; padding: 14px; text-align: center; border-radius: 16px; color: #fff; font-weight: 800; background: rgba(28,16,60,.72); backdrop-filter: blur(12px); }
.timeline { padding-top: 8px; }
.timeline-item { display: grid; grid-template-columns: 78px 1fr; gap: 18px; position: relative; padding-bottom: 28px; }
.timeline-item:not(:last-child)::before { content: ""; position: absolute; inset-inline-start: 38px; top: 30px; bottom: 0; width: 1px; background: var(--line); }
.timeline-item > span { position: relative; z-index: 1; width: 78px; height: 32px; display: grid; place-items: center; border-radius: 999px; background: var(--teal-soft); color: #167b78; font-weight: 900; font-size: .8rem; }
.timeline h3 { margin: 2px 0 3px; font-size: 1rem; }
.timeline p { margin: 0; color: var(--muted); font-size: .9rem; }

.gallery { background: var(--surface-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery-item { position: relative; grid-column: span 4; grid-row: span 1; border: 0; padding: 0; overflow: hidden; border-radius: 20px; cursor: zoom-in; background: #ddd; }
.gallery-item.wide { grid-column: span 8; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.8,.2,1), filter 700ms; }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 45%,rgba(15,9,32,.72)); opacity: .8; }
.gallery-item span { position: absolute; z-index: 1; inset-inline-start: 20px; bottom: 16px; color: #fff; font-weight: 850; }
.gallery-item:hover img { transform: scale(1.06); filter: saturate(1.08); }
.lightbox { position: fixed; inset: 0; z-index: 3000; display: grid; place-items: center; padding: 40px; background: rgba(12,7,25,.9); backdrop-filter: blur(10px); }
.lightbox[hidden] { display: none; }
.lightbox img { max-height: 86vh; max-width: min(1100px,92vw); border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.45); }
.lightbox-close { position: fixed; top: 20px; right: 24px; width: 48px; height: 48px; border: 0; border-radius: 50%; color: #fff; background: rgba(255,255,255,.12); font-size: 2rem; cursor: pointer; }
body[dir="rtl"] .lightbox-close { right: auto; left: 24px; }

.contact { background: #fff; }
.contact-shell { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(135deg,var(--primary-dark),var(--primary) 56%,#167f82); box-shadow: var(--shadow); }
.contact-copy { padding: 66px; }
.contact-copy h2 { color: #fff; }
.contact-copy p { color: rgba(255,255,255,.73); max-width: 580px; margin-bottom: 30px; }
.contact-details { padding: 55px; background: rgba(10,5,28,.22); display: flex; flex-direction: column; justify-content: center; }
.contact-detail { display: flex; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.detail-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.12); flex: 0 0 auto; }
.contact-detail small, .contact-detail strong { display: block; }
.contact-detail small { color: rgba(255,255,255,.62); font-size: .76rem; }
.contact-detail strong { font-size: .96rem; }
.social-row { display: flex; gap: 11px; margin-top: 24px; }
.social-link { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.12); transition: transform var(--transition), background var(--transition); }
.social-link:hover { transform: translateY(-4px); background: #fff; color: var(--primary-dark); }
.social-link svg { width: 22px; height: 22px; fill: currentColor; }

.site-footer { padding: 26px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 25px; align-items: center; color: var(--muted); font-size: .83rem; }
.footer-brand img { width: 120px; height: 44px; object-fit: contain; }
.made-by { justify-self: end; }
body[dir="rtl"] .made-by { justify-self: start; }
.made-by strong { color: var(--primary); }

.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 58px; height: 58px; display: grid; place-items: center; color: #fff; background: #25d366; border-radius: 50%; box-shadow: 0 14px 32px rgba(37,211,102,.34); transition: transform var(--transition); }
body[dir="rtl"] .floating-whatsapp { right: auto; left: 22px; }
.floating-whatsapp:hover { transform: translateY(-5px) scale(1.03); }
.floating-whatsapp svg { width: 30px; height: 30px; fill: currentColor; }
.toast { position: fixed; left: 50%; bottom: 28px; z-index: 4000; transform: translate(-50%,30px); padding: 12px 18px; border-radius: 12px; background: #171528; color: #fff; opacity: 0; pointer-events: none; transition: var(--transition); box-shadow: var(--shadow); font-size: .88rem; }
.toast.show { opacity: 1; transform: translate(-50%,0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }

@media (max-width: 1020px) {
  .main-nav { gap: 18px; }
  .hero-grid { gap: 38px; }
  .hero-main-image { width: 75%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { grid-template-columns: 1fr .85fr; }
  .timeline { grid-column: 1/-1; display: grid; grid-template-columns: repeat(2,1fr); gap: 0 25px; }
  .feature-grid { gap: 55px; }
}

@media (max-width: 820px) {
  .section-pad { padding: 82px 0; }
  .nav-wrap { height: 74px; }
  .brand img { width: 140px; height: 50px; }
  .menu-toggle { display: block; margin-inline-start: auto; }
  .main-nav { position: fixed; top: 74px; left: 18px; right: 18px; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: var(--transition); }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 13px 12px; border-radius: 10px; }
  .main-nav a:hover { background: var(--surface-soft); }
  .main-nav a::after { display: none; }
  .nav-actions .btn { display: none; }
  .language-switcher { min-width: 82px; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-visual { width: min(620px,100%); margin: 10px auto 0; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(3) { border-inline-start: 0; border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-image { height: 520px; width: min(520px,90%); margin-inline: auto; }
  .feature-badge { inset-inline-end: -25px; }
  .contact-shell { grid-template-columns: 1fr; }
  .contact-copy, .contact-details { padding: 48px; }
  .section-heading.split { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid { grid-auto-rows: 190px; }
  .gallery-item { grid-column: span 6; }
  .gallery-item.wide { grid-column: span 6; }
  .gallery-item.tall { grid-row: span 2; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px,1160px); }
  .section-pad { padding: 68px 0; }
  .hero { padding-top: 118px; }
  .hero-copy h1 { font-size: 2.7rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { justify-content: space-between; }
  .hero-stats div { min-width: 0; flex: 1; padding: 0 9px; }
  .hero-stats strong { font-size: 1.3rem; }
  .hero-stats span { font-size: .7rem; }
  .hero-visual { min-height: 440px; }
  .hero-main-image { height: 390px; width: 73%; }
  .hero-side-image { height: 205px; width: 48%; }
  .experience-chip { top: 24px; inset-inline-start: 3%; max-width: 220px; padding: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-inline-start: 0; border-top: 1px solid var(--line); }
  .trust-item:first-child { border-top: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-top { grid-template-columns: 48px 1fr; gap: 14px; }
  .service-media { height: 128px; }
  .section-heading h2, .about-copy h2, .feature-copy h2, .contact-copy h2 { font-size: 2.35rem; }
  .feature-image { height: 430px; width: 92%; }
  .feature-badge { width: 120px; height: 120px; bottom: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-card { height: 480px; }
  .timeline { grid-column: auto; grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .gallery-item, .gallery-item.wide { grid-column: 1; }
  .gallery-item.tall { grid-row: span 1; }
  .contact-copy, .contact-details { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-self: center; }
  .made-by, body[dir="rtl"] .made-by { justify-self: center; }
  .lightbox { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
