:root {
  --bg: #f3f8ff;
  --surface: #ffffff;
  --surface-soft: #e8f2ff;
  --text: #0d2342;
  --muted: #476484;
  --primary: #0f64e2;
  --primary-dark: #0a449f;
  --accent: #0ea884;
  --line: #cfdeef;
  --danger: #b5261e;
  --success: #0f8a5e;
  --shadow-lg: 0 22px 58px rgba(8, 34, 75, 0.16);
  --shadow-md: 0 12px 34px rgba(9, 42, 86, 0.12);
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background:
    radial-gradient(980px 500px at 118% -12%, rgba(15, 100, 226, 0.13), transparent 62%),
    radial-gradient(840px 430px at -14% 132%, rgba(14, 168, 132, 0.11), transparent 64%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: -35% -20%;
  background:
    radial-gradient(42% 38% at 18% 28%, rgba(27, 99, 224, 0.22), transparent 70%),
    radial-gradient(36% 34% at 84% 24%, rgba(16, 169, 135, 0.2), transparent 72%),
    radial-gradient(40% 36% at 52% 86%, rgba(9, 76, 186, 0.18), transparent 74%);
  filter: blur(58px) saturate(1.12);
  animation: aura-shift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -2;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(500px 220px at 8% 18%, rgba(29, 79, 255, 0.12), transparent 70%),
    radial-gradient(420px 200px at 90% 86%, rgba(30, 199, 200, 0.1), transparent 72%);
  pointer-events: none;
  z-index: -1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform-origin: 0 50%;
  transform: scaleX(var(--scroll-progress, 0));
  background: linear-gradient(90deg, #1d4fff, #1ec7c8);
  z-index: 120;
}

html[dir="rtl"] body {
  font-family: "Cairo", "Plus Jakarta Sans", sans-serif;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -44px;
  background: var(--text);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  top: 14px;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(12px);
  background: rgba(245, 248, 252, 0.84);
  border-bottom: 1px solid rgba(203, 216, 231, 0.75);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(192, 215, 238, 0.8);
  box-shadow: 0 10px 24px rgba(15, 55, 101, 0.12);
}

.brand-mark img {
  width: 34px;
  height: 34px;
}

.brand-text strong {
  display: block;
  font-size: 17px;
}

.brand-text small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.2px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.main-nav a {
  color: #1a3458;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  background: #eaf0f8;
  border: 1px solid #d5e1ee;
  border-radius: 999px;
  padding: 4px;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #2a466c;
  width: 40px;
  height: 34px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.lang-btn.active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(27, 99, 224, 0.2);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #cad7e7;
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #29496f;
}

.hero {
  padding: 82px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #195fbf;
  margin: 0 0 14px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.45rem);
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero-logo {
  width: clamp(220px, 40vw, 420px);
  margin: 0 0 14px;
  filter: drop-shadow(0 14px 30px rgba(18, 54, 98, 0.18));
}

.lead {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 100, 226, 0.3);
}

.btn-primary:hover {
  color: #fff;
  filter: brightness(1.06) saturate(1.05);
}

.btn-ghost {
  background: #fff;
  color: #18416e;
  border-color: #ccd9e8;
}

.hero-trust {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust span {
  font-size: 13px;
  color: #355578;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dae6f4;
  border-radius: 999px;
  padding: 8px 12px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 34px;
  padding: 0;
  box-shadow: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 58, 0.04), rgba(7, 30, 58, 0.34));
  pointer-events: none;
  z-index: 2;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -14% -10%;
  background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.28), transparent 46%);
  z-index: 1;
  pointer-events: none;
}

.hero-illustration {
  width: 100%;
  height: min(62vh, 560px);
  min-height: 340px;
  object-fit: cover;
  border-radius: 34px;
  clip-path: polygon(0 5%, 95% 0, 100% 94%, 4% 100%);
  position: relative;
  z-index: 0;
}

.hero-badge {
  position: absolute;
  display: grid;
  gap: 2px;
  background: rgba(15, 37, 65, 0.92);
  color: #e7f0ff;
  border: 1px solid rgba(149, 177, 215, 0.35);
  border-radius: 14px;
  padding: 10px 12px;
  min-width: 106px;
  box-shadow: 0 14px 30px rgba(10, 35, 64, 0.24);
}

.hero-badge strong {
  font-size: 20px;
  line-height: 1;
}

.hero-badge span {
  font-size: 11px;
  color: #d2e1f8;
}

.badge-one {
  top: 28px;
  inset-inline-start: 22px;
}

.badge-two {
  bottom: 24px;
  inset-inline-end: 24px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  margin: 22px calc(50% - 50vw) 26px;
  padding-inline: clamp(10px, 2.5vw, 28px);
}

.showcase-card {
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.showcase-card img,
.showcase-card video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.portrait-media {
  object-fit: contain !important;
  background: linear-gradient(180deg, rgba(5, 18, 34, 0.96), rgba(4, 14, 28, 0.96));
}

.cinematic-grid .media-tile {
  position: relative;
  isolation: isolate;
  min-height: clamp(250px, 34vw, 480px);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease;
}

.cinematic-grid .media-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 28, 52, 0.06), rgba(6, 26, 49, 0.36));
  pointer-events: none;
  z-index: 2;
}

.cinematic-grid .media-tile::before {
  content: attr(data-label);
  position: absolute;
  bottom: 22px;
  inset-inline-start: 22px;
  z-index: 3;
  color: #e8f1ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.cinematic-grid .media-tile:hover {
  transform: translateY(-8px) scale(1.015);
  z-index: 4;
}

.cinematic-grid .media-tile:has(video)::after {
  background: linear-gradient(180deg, rgba(8, 28, 52, 0.03), rgba(6, 26, 49, 0.48));
}

.hr-reel {
  margin: 10px calc(50% - 50vw) 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.hr-reel video {
  width: 100%;
  height: clamp(220px, 27vw, 380px);
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
}

.hr-reel video:first-child {
  clip-path: polygon(0 0, 97% 0, 90% 100%, 0 100%);
}

.hr-reel video:last-child {
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.cinematic-grid .media-tile > img,
.cinematic-grid .media-tile > video {
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cinematic-grid .media-tile:hover > img,
.cinematic-grid .media-tile:hover > video {
  transform: scale(1.07);
}

.strip-left {
  grid-column: 1 / span 4;
  clip-path: polygon(0 0, 97% 0, 88% 100%, 0 100%);
}

.strip-center {
  grid-column: 4 / span 5;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.strip-right {
  grid-column: 9 / span 4;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.stats {
  padding: 12px 0 44px;
}

.standards {
  padding-top: 20px;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: center;
}

.standards-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.35rem);
  line-height: 1.2;
}

.standards-copy p {
  margin: 0;
  color: var(--muted);
}

.standards-list {
  display: grid;
  gap: 10px;
}

.standards-list span {
  background: linear-gradient(180deg, #fff, #f6fbff);
  border: 1px solid #d5e5f5;
  color: #23496f;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(11, 46, 82, 0.08);
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #123f74;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 74px 0;
}

main > section {
  transform: translate3d(var(--flow-x, 0px), var(--flow-y, 0px), 0) scale(var(--flow-s, 1));
  opacity: var(--flow-o, 1);
  transition: transform 0.22s linear, opacity 0.22s linear;
  will-change: transform, opacity;
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 860px;
}

.section.alt {
  background: linear-gradient(180deg, #f0f6ff, #edf6f4);
  border-top: 1px solid #deebf9;
  border-bottom: 1px solid #deebf9;
}

.section-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 1.3rem + 1.3vw, 2.5rem);
  line-height: 1.2;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #b9d0e8;
  box-shadow: 0 18px 36px rgba(11, 40, 73, 0.12);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbe9ff, #d9f6ee);
  color: #15497f;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.tool-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.tool-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #c9daec;
  background: #fff;
  color: #21466f;
  font-size: 13px;
  font-weight: 600;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  background: #fff;
  border: 1px solid #d3e2f1;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.process-card p {
  margin: 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: start;
}

.check-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-inline-start: 28px;
  color: #254767;
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 4px rgba(44, 103, 194, 0.16);
}

.about-panel {
  background: linear-gradient(160deg, #0f2644, #1f5287);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}

.about-panel h3 {
  margin-top: 0;
  font-size: 22px;
}

.about-panel p {
  color: #d8e6f8;
}

.about-panel .btn-primary {
  width: 100%;
  margin-top: 8px;
}

.contact {
  background: #f2f7ff;
  border-top: 1px solid #dbe7f4;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.contact-channels {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.contact-channels a {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 1px solid #cfe0f2;
  padding: 12px 14px;
  border-radius: 12px;
  color: #173f67;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-channels a:hover {
  border-color: rgba(15, 100, 226, 0.42);
  box-shadow: 0 8px 20px rgba(12, 70, 145, 0.14);
  transform: translateY(-1px);
}

.contact-channel-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 100, 226, 0.16), rgba(14, 168, 132, 0.18));
  color: #0e4f9b;
  flex: 0 0 28px;
}

.contact-channel-icon svg {
  width: 16px;
  fill: currentColor;
}

.owner-links {
  display: grid;
  gap: 10px;
}

.contact-form {
  background: #fff;
  border: 1px solid #d4e2f1;
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.form-row {
  margin-bottom: 14px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #24496f;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #ccdaea;
  border-radius: 10px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  color: #173556;
  background: #fcfeff;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.form-optional {
  border: 1px dashed #c9d9eb;
  border-radius: 12px;
  padding: 10px 12px 2px;
  margin-bottom: 14px;
  background: #f8fcff;
}

.form-optional summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #29527d;
  margin-bottom: 10px;
}

.form-trust {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: #4b6a8d;
}

.quick-cta {
  padding-top: 28px;
  padding-bottom: 28px;
}

.quick-cta-inner {
  text-align: center;
  background: linear-gradient(140deg, #0f2a4b 0%, #184c83 54%, #1b7f8f 100%);
  color: #e9f5ff;
  border-radius: 22px;
  padding: 28px 20px;
  box-shadow: 0 20px 42px rgba(8, 37, 68, 0.24);
}

.quick-cta-inner h2 {
  margin: 4px auto 14px;
  max-width: 780px;
  font-size: clamp(1.35rem, 1.15rem + 1.1vw, 2rem);
  line-height: 1.25;
}

.quick-cta-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #cfe5ff;
}

.quick-cta .btn {
  background: linear-gradient(180deg, #38a8ff, #1c6dd6);
  border-color: rgba(196, 225, 255, 0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.lang-btn:focus,
.menu-toggle:focus,
.btn:focus {
  outline: none;
  border-color: #2f78e9;
  box-shadow: 0 0 0 3px rgba(47, 120, 233, 0.2);
}

.form-state {
  margin: 0 0 10px;
  font-size: 13px;
  min-height: 20px;
}

.form-state.error {
  color: var(--danger);
}

.form-state.success {
  color: var(--success);
}

.submit-btn[aria-busy="true"] {
  opacity: 0.8;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid #d9e5f2;
  background: #fff;
  padding: 20px 0 100px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
  color: #375879;
}

.footer-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-actions a {
  font-weight: 700;
}

.footer-credit {
  margin-top: 10px;
  text-align: center;
  color: #5f7390;
  font-size: 13px;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 126px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #25d366, #11a74d);
  box-shadow: 0 12px 22px rgba(16, 141, 65, 0.3);
  color: #fff;
  z-index: 70;
}

html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 18px;
}

.whatsapp-float svg {
  width: 28px;
  fill: currentColor;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 31, 56, 0.96);
  border-top: 1px solid rgba(149, 176, 207, 0.3);
  backdrop-filter: blur(8px);
  padding: 10px 14px;
  z-index: 65;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
  color: #dbe8fa;
}

.sticky-cta p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.sticky-cta .btn {
  min-width: 180px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease var(--reveal-delay, 0ms), transform 0.55s ease var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-media {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.media-float {
  animation: float-y 6s ease-in-out infinite;
}

.media-tile.reveal.visible {
  animation: cinematic-in 0.95s cubic-bezier(0.18, 0.7, 0.2, 1) both;
}

@keyframes cinematic-in {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes aura-shift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  50% {
    transform: translate3d(2%, -3%, 0) scale(1.05);
  }

  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.03);
  }
}

html[dir="rtl"] .main-nav a::after {
  transform-origin: right;
}

@media (max-width: 1100px) {
  .hero-grid,
  .standards-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .process-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    margin-inline: 0;
    gap: 14px;
    padding-inline: 0;
  }

  .strip-left,
  .strip-center,
  .strip-right {
    grid-column: auto;
    clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
  }

  .hr-reel {
    margin-inline: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hr-reel video,
  .hr-reel video:first-child,
  .hr-reel video:last-child {
    clip-path: polygon(0 0, 100% 0, 97% 100%, 0 100%);
  }
}

@media (max-width: 820px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #d7e3f0;
    padding: 14px 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav.open {
    display: flex;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 54px 0 38px;
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    flex-direction: column;
    padding: 10px 12px;
    gap: 8px;
  }

  .sticky-cta p {
    font-size: 12.5px;
  }

  .btn {
    min-height: 48px;
    padding: 0 18px;
  }

  .lang-btn {
    width: 42px;
    height: 36px;
  }

  .contact-channels a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .whatsapp-float {
    bottom: 132px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .service-grid,
  .process-grid,
  .stats-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    min-width: 92px;
    padding: 8px 10px;
  }

  .hero-badge strong {
    font-size: 17px;
  }

  .showcase-card img,
  .showcase-card video {
    min-height: 220px;
  }

  .hero-illustration {
    min-height: 280px;
    height: 52vh;
    clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  }

  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .lead {
    font-size: 16px;
  }

  .brand-text small {
    display: none;
  }

  .lang-btn {
    width: 40px;
  }

  .quick-cta-inner {
    padding: 24px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .parallax-media {
    transform: none !important;
  }

  body::after {
    animation: none !important;
  }

  main > section {
    transform: none !important;
    opacity: 1 !important;
  }
}
