@font-face { font-family: "Cairo"; src: url("../fonts/cairo-arabic-400-normal.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Cairo"; src: url("../fonts/cairo-arabic-500-normal.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "Cairo"; src: url("../fonts/cairo-arabic-600-normal.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Cairo"; src: url("../fonts/cairo-arabic-700-normal.woff2") format("woff2"); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: "Cairo"; src: url("../fonts/cairo-arabic-800-normal.woff2") format("woff2"); font-weight: 800; font-style: normal; font-display: swap; }

:root {
  --sky: #36bff2;
  --sky-dark: #1398cc;
  --sky-soft: #eaf8fe;
  --ink: #102232;
  --muted: #667684;
  --line: #dce8ee;
  --warm: #f5f7f8;
  --white: #ffffff;
  --navy: #082337;
  --shadow: 0 22px 60px rgba(16, 34, 50, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--white); }
body { margin: 0; background: var(--white); color: var(--ink); font-family: "Cairo", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
.site-shell { min-height: 100vh; overflow: hidden; }

.site-header {
  position: sticky; top: 0; z-index: 50; height: 90px; padding: 0 clamp(24px, 5vw, 76px);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  background: rgba(255, 255, 255, 0.94); border-bottom: 1px solid rgba(220, 232, 238, 0.85); backdrop-filter: blur(18px);
}
.logo-link { justify-self: start; }
.brand-lockup { display: inline-flex; align-items: center; gap: 12px; direction: ltr; }
.brand-lockup img { width: 44px; height: 44px; object-fit: contain; }
.brand-lockup span { display: flex; flex-direction: column; line-height: 1.2; }
.brand-lockup strong { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; }
.brand-lockup small { color: var(--muted); font-size: 12px; font-weight: 600; direction: rtl; margin-top: 4px; }
.brand-lockup--light strong, .brand-lockup--light small { color: var(--white); }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.desktop-nav a { position: relative; padding: 32px 0 27px; white-space: nowrap; font-size: 15px; font-weight: 600; color: #3e4b55; }
.desktop-nav a::after { content: ""; position: absolute; inset-inline-start: 50%; bottom: 23px; width: 0; height: 3px; background: var(--sky); border-radius: 9px; transition: .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { inset-inline-start: 0; width: 100%; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 14px; }
.language-switch { min-width: 62px; height: 42px; display: grid; place-items: center; padding: 0 15px; border: 1px solid var(--sky); border-radius: 11px; color: var(--ink); font-size: 14px; font-weight: 700; transition: .2s ease; }
.language-switch:hover { background: var(--sky); color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 10px; background: var(--sky-soft); padding: 11px; }
.menu-toggle i { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s ease; }

.hero-section { min-height: 690px; display: grid; grid-template-columns: 48% 52%; align-items: stretch; padding: 58px clamp(24px, 5vw, 76px) 72px; gap: clamp(36px, 5vw, 86px); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-block: 30px; }
.eyebrow { margin: 0 0 22px; display: flex; align-items: center; gap: 13px; color: var(--sky-dark); font-size: 14px; font-weight: 700; }
.eyebrow > span { display: inline-block; width: 42px; height: 2px; background: var(--sky); }
.hero-copy h1 { max-width: 680px; margin: 0; font-size: clamp(42px, 4.6vw, 76px); line-height: 1.28; letter-spacing: -0.045em; font-weight: 800; }
.lead { max-width: 610px; margin: 28px 0 0; color: var(--muted); font-size: clamp(17px, 1.35vw, 21px); line-height: 2; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.button { min-height: 54px; display: inline-flex; justify-content: center; align-items: center; gap: 13px; padding: 0 25px; border: 0; border-radius: 13px; font-weight: 700; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button svg, .text-link svg, .round-arrow svg { width: 20px; height: 20px; }
html[dir="rtl"] .button svg, html[dir="rtl"] .text-link svg, html[dir="rtl"] .round-arrow svg { transform: rotate(180deg); }
.button--primary { background: var(--sky); color: #062537; box-shadow: 0 14px 30px rgba(54, 191, 242, .28); }
.button--primary:hover { background: #52c8f4; box-shadow: 0 18px 38px rgba(54, 191, 242, .35); }
.button--outline { border: 1px solid var(--sky); background: var(--white); color: var(--ink); }
.button--outline:hover { background: var(--sky-soft); }
.button--white { background: var(--white); color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.text-link:hover { color: var(--sky-dark); }
.hero-visual { position: relative; min-height: 560px; align-self: center; }
.hero-visual::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border-radius: 44px 10px 44px 10px; background: var(--sky-soft); }
html[dir="rtl"] .hero-visual::before { inset: -18px -18px 18px 18px; }
.hero-visual > img { position: relative; width: 100%; height: 100%; min-height: 560px; object-fit: cover; border-radius: 44px 10px 44px 10px; box-shadow: var(--shadow); }
.image-tag { position: absolute; inset-inline-start: 25px; bottom: 24px; padding: 13px 18px; display: flex; align-items: center; gap: 12px; border-radius: 12px; background: rgba(255,255,255,.92); box-shadow: 0 12px 25px rgba(0,0,0,.12); direction: ltr; font-weight: 700; }
.image-tag b { color: var(--sky-dark); }

.stats-panel { position: relative; z-index: 2; max-width: 1200px; min-height: 150px; margin: -26px auto 0; padding: 25px 35px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
.stat { position: relative; display: grid; grid-template-columns: 64px auto; grid-template-rows: 1fr 1fr; align-items: center; align-content: center; column-gap: 18px; padding: 0 clamp(18px, 3vw, 50px); }
.stat:not(:last-child) { border-inline-end: 1px solid var(--line); }
.stat-icon { grid-row: 1 / 3; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: var(--sky-soft); color: var(--sky-dark); }
.stat strong { align-self: end; font-size: clamp(30px, 3vw, 46px); line-height: 1.1; direction: ltr; justify-self: start; }
.stat small { align-self: start; color: var(--muted); font-size: 13px; font-weight: 600; }

.section { max-width: 1460px; margin-inline: auto; padding: 120px clamp(24px, 5vw, 76px); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .65fr); gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading.compact { grid-template-columns: 1fr; }
.section-heading .eyebrow { margin-bottom: 15px; }
.section-heading h2, .about-copy h2, .story-copy h2 { margin: 0; max-width: 760px; font-size: clamp(34px, 3.4vw, 54px); line-height: 1.35; letter-spacing: -.035em; font-weight: 800; }
.section-heading > p, .about-copy > p, .story-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 2; }
.factor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.factor-card { position: relative; min-height: 310px; padding: 32px 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); overflow: hidden; transition: .3s ease; }
.factor-card:hover { transform: translateY(-8px); border-color: var(--sky); box-shadow: var(--shadow); }
.factor-card::after { content: ""; position: absolute; inset-inline-end: -70px; bottom: -80px; width: 170px; height: 170px; border-radius: 50%; background: var(--sky-soft); transition: .3s ease; }
.factor-card:hover::after { transform: scale(1.18); }
.card-number { position: absolute; inset-inline-end: 22px; top: 22px; color: #c9d6dd; font-size: 12px; font-weight: 700; direction: ltr; }
.factor-icon { position: relative; z-index: 1; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px; background: var(--sky-soft); color: var(--sky-dark); }
.factor-card h3 { margin: 28px 0 12px; font-size: 20px; }
.factor-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.95; }

.about-split, .story-section { max-width: none; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(55px, 8vw, 120px); align-items: center; background: var(--warm); }
.about-split { padding-inline: max(clamp(24px, 5vw, 76px), calc((100vw - 1460px) / 2 + 76px)); }
.about-collage { position: relative; min-height: 570px; padding-inline-end: 80px; }
.about-main { width: 100%; height: 515px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.about-small { position: absolute; inset-inline-end: 0; bottom: -32px; width: 240px; height: 190px; object-fit: cover; border: 8px solid var(--warm); border-radius: 18px; }
.year-badge { position: absolute; inset-inline-start: -20px; top: 45px; min-width: 130px; padding: 18px; display: flex; flex-direction: column; border-radius: 15px; background: var(--sky); color: var(--ink); box-shadow: 0 18px 40px rgba(54,191,242,.28); }
.year-badge b { font-size: 26px; direction: ltr; }
.year-badge { font-size: 12px; font-weight: 700; }
.about-copy .eyebrow { margin-bottom: 14px; }
.about-copy > p { margin-top: 25px; }
.about-copy .button { margin-top: 30px; }

.products-section { max-width: 1460px; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { min-width: 0; }
.product-image { position: relative; height: 285px; overflow: hidden; border-radius: 20px; background: var(--warm); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-image > span { position: absolute; inset-inline-start: 14px; top: 14px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: rgba(255,255,255,.92); color: var(--sky-dark); font-size: 12px; font-weight: 800; direction: ltr; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px 0; }
.product-meta h3 { margin: 0 0 5px; font-size: 18px; }
.product-meta p { margin: 0; color: var(--muted); font-size: 13px; }
.round-arrow { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .2s ease; }
.product-card:hover .round-arrow { border-color: var(--sky); background: var(--sky); }
.center-action { margin-top: 50px; text-align: center; }

.clients-section { padding: 100px 0 110px; background: var(--sky-soft); }
.clients-section .section-heading { max-width: 1320px; margin: 0 auto 42px; padding-inline: clamp(24px, 5vw, 76px); }
.client-marquee { overflow: hidden; mask-image: none; -webkit-mask-image: none; }
.client-track { width: max-content; display: flex; gap: 24px; animation: marquee 52s linear infinite; }
.client-logo { flex: 0 0 230px; width: 230px; height: 230px; display: grid; place-items: center; padding: 0; overflow: hidden; border: 0; border-radius: 20px; background: transparent; box-shadow: none; }
.client-logo img { width: 100%; height: 100%; max-width: none; max-height: none; display: block; object-fit: contain; object-position: center; filter: none; opacity: 1; mix-blend-mode: normal; }
.clients-section .reveal { opacity: 1; transform: none; transition: none; }
@keyframes marquee { to { transform: translateX(-50%); } }
html[dir="rtl"] .client-track { animation-direction: reverse; }

.page-hero { position: relative; min-height: 520px; display: grid; grid-template-columns: 1fr 44%; gap: 60px; align-items: center; padding: 70px max(clamp(24px, 5vw, 76px), calc((100vw - 1460px) / 2 + 76px)); background: var(--warm); }
.page-hero--compact { min-height: 450px; }
.page-hero-copy h1 { max-width: 780px; margin: 0; font-size: clamp(42px, 4.7vw, 72px); line-height: 1.28; letter-spacing: -.045em; }
.page-hero-copy > p:last-child { max-width: 650px; margin: 25px 0 0; color: var(--muted); font-size: 17px; line-height: 2; }
.page-hero-image { height: 380px; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.story-section { max-width: 1460px; background: var(--white); }
.story-image { position: relative; }
.story-image > img { width: 100%; height: 530px; object-fit: cover; border-radius: 24px; }
.story-image > span { position: absolute; inset-inline-end: -25px; bottom: 38px; min-width: 150px; padding: 22px; display: flex; flex-direction: column; border-radius: 18px; background: var(--sky); font-size: 13px; font-weight: 700; box-shadow: 0 18px 40px rgba(54,191,242,.28); }
.story-image > span b { font-size: 35px; direction: ltr; align-self: flex-start; }
.story-copy > p { margin-top: 22px; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.vision-grid article { padding: 24px; border: 1px solid var(--line); border-radius: 18px; }
.vision-grid h3 { margin: 18px 0 8px; }
.vision-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; }
.timeline-section { max-width: none; background: var(--navy); color: var(--white); padding-inline: max(clamp(24px, 5vw, 76px), calc((100vw - 1460px) / 2 + 76px)); }
.timeline-section .eyebrow { color: var(--sky); }
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline-card { position: relative; padding: 29px 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.035); }
.timeline-card > strong { color: var(--sky); font-size: 31px; direction: ltr; display: inline-block; }
.timeline-card > span { display: block; width: 44px; height: 3px; margin: 19px 0; background: var(--sky); }
.timeline-card h3 { margin: 0 0 9px; font-size: 18px; }
.timeline-card p { margin: 0; color: #acc0cd; font-size: 13px; line-height: 1.9; }

.products-page { padding-top: 90px; }
.product-grid--large { grid-template-columns: repeat(2, 1fr); gap: 46px 28px; }
.product-grid--large .product-image { height: 430px; }
.product-grid--large .product-meta h3 { font-size: 23px; }
.feature-strip { margin-top: 90px; padding: 24px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 18px; background: var(--sky-soft); }
.feature-strip span { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; font-weight: 700; }
.feature-strip span:not(:last-child) { border-inline-end: 1px solid rgba(19,152,204,.2); }
.feature-strip i { font-style: normal; color: var(--sky-dark); font-size: 12px; direction: ltr; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.contact-details { display: grid; gap: 16px; }
.contact-details article { display: flex; gap: 18px; align-items: flex-start; padding: 25px; border: 1px solid var(--line); border-radius: 18px; }
.contact-details article > span { flex: 0 0 auto; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 13px; background: var(--sky-soft); color: var(--sky-dark); }
.contact-details article > div { display: flex; flex-direction: column; gap: 5px; overflow-wrap: anywhere; }
.contact-details small { color: var(--muted); margin-bottom: 4px; }
.contact-details a, .contact-details b { font-size: 15px; font-weight: 700; }
.contact-details a:hover { color: var(--sky-dark); }
.contact-form { padding: clamp(25px, 4vw, 48px); border-radius: 24px; background: var(--warm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; margin-bottom: 18px; color: #3d4d58; font-size: 13px; font-weight: 700; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: var(--white); color: var(--ink); transition: .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 4px rgba(54,191,242,.12); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.form-hint { display: block; margin-top: 12px; color: var(--muted); }
.form-status { margin-bottom: 20px; padding: 14px 16px; border-radius: 11px; font-size: 13px; font-weight: 700; }
.form-status--success { background: #e7f8ef; color: #157348; border: 1px solid #bfe8d1; }
.form-status--error { background: #fff0f0; color: #a43535; border: 1px solid #f1c4c4; }
.map-section { height: 430px; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: saturate(.75) contrast(.94); }

.cta-band { max-width: 1320px; margin: 0 auto 100px; padding: 46px 55px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-radius: 24px; background: var(--sky); color: var(--ink); box-shadow: 0 22px 50px rgba(54,191,242,.24); }
.cta-band p { margin: 0 0 6px; font-size: clamp(25px, 2.4vw, 36px); font-weight: 800; }
.cta-band span { font-size: 14px; color: #18455a; }
.site-footer { padding: 70px clamp(24px, 5vw, 76px) 28px; background: var(--navy); color: var(--white); }
.footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.7fr .65fr 1fr; gap: 80px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand p { max-width: 390px; margin: 18px 0 0; color: #a9bdca; line-height: 1.9; }
.footer-grid h3 { margin: 0 0 14px; font-size: 16px; }
.footer-grid a, .footer-grid span { color: #a9bdca; font-size: 13px; }
.footer-grid a:hover { color: var(--sky); }
.footer-bottom { max-width: 1320px; margin: 50px auto 0; padding-top: 25px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #7993a3; font-size: 12px; }
.design-credit { display: inline-flex; align-items: center; gap: 5px; }
.design-credit a { color: var(--sky); font-weight: 700; transition: color .2s ease; }
.design-credit a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { position: absolute; top: 90px; inset-inline: 0; padding: 18px 28px 26px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(16,34,50,.1); }
  .desktop-nav.is-open { display: flex; }
  .desktop-nav a { padding: 13px 0; }
  .desktop-nav a::after { bottom: 7px; }
  .menu-toggle { display: block; }
  .hero-section { min-height: auto; grid-template-columns: 1fr 1fr; padding-top: 45px; gap: 40px; }
  .hero-visual, .hero-visual > img { min-height: 470px; }
  .factor-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .about-split, .story-section { gap: 55px; }
  .timeline-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header { height: 74px; padding-inline: 18px; }
  .desktop-nav { top: 74px; }
  .brand-lockup { gap: 8px; }
  .brand-lockup img { width: 37px; height: 37px; }
  .brand-lockup strong { font-size: 13px; }
  .brand-lockup small { font-size: 9px; }
  .language-switch { min-width: 52px; height: 39px; padding-inline: 11px; }
  .hero-section { grid-template-columns: 1fr; padding: 45px 20px 70px; }
  .hero-copy h1 { font-size: clamp(39px, 11vw, 56px); }
  .lead { font-size: 16px; }
  .hero-visual { order: -1; min-height: 330px; }
  .hero-visual > img { min-height: 330px; max-height: 390px; border-radius: 28px 8px 28px 8px; }
  .hero-visual::before { inset: -10px 10px 10px -10px; border-radius: 28px 8px 28px 8px; }
  html[dir="rtl"] .hero-visual::before { inset: -10px -10px 10px 10px; }
  .image-tag { bottom: 14px; inset-inline-start: 14px; }
  .stats-panel { margin: -25px 20px 0; padding: 10px 18px; grid-template-columns: 1fr; }
  .stat { min-height: 105px; grid-template-columns: 50px auto; padding-inline: 8px; }
  .stat:not(:last-child) { border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .stat-icon { width: 46px; height: 46px; }
  .stat strong { font-size: 32px; }
  .section { padding: 80px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }
  .section-heading h2, .about-copy h2, .story-copy h2 { font-size: 36px; }
  .factor-grid, .product-grid, .timeline-grid, .vision-grid { grid-template-columns: 1fr; }
  .factor-card { min-height: 265px; }
  .about-split, .story-section { grid-template-columns: 1fr; padding-inline: 20px; }
  .about-collage { min-height: 470px; padding-inline-end: 45px; }
  .about-main { height: 420px; }
  .about-small { width: 170px; height: 140px; }
  .year-badge { inset-inline-start: 8px; top: 25px; }
  .product-image { height: 310px; }
  .clients-section { padding-block: 75px; }
  .client-track { gap: 14px; animation-duration: 44s; }
  .client-logo { flex-basis: 170px; width: 170px; height: 170px; border-radius: 16px; }
  .page-hero { grid-template-columns: 1fr; gap: 38px; padding: 55px 20px; }
  .page-hero-copy h1 { font-size: 42px; }
  .page-hero-image { height: 280px; }
  .story-image > img { height: 390px; }
  .story-image > span { inset-inline-end: 12px; bottom: 18px; }
  .product-grid--large { grid-template-columns: 1fr; gap: 42px; }
  .product-grid--large .product-image { height: 330px; }
  .feature-strip { grid-template-columns: 1fr 1fr; padding: 16px; }
  .feature-strip span { justify-content: flex-start; padding-inline: 12px; }
  .feature-strip span:not(:last-child) { border: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-section { height: 340px; }
  .cta-band { margin: 0 20px 70px; padding: 32px 25px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 45px; }
  .footer-bottom { flex-direction: column; }
}

@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; }
}
