﻿:root{
  color-scheme: light;
  --bg:#ffffff;
  --bg-2:#f4f8fc;
  --bg-3:#e8f1fa;
  --bg-deep:#071a2e;
  --panel:#ffffff;
  --panel-2:#f0f6fc;
  --border:rgba(10,22,40,.10);
  --border-2:rgba(26,107,181,.20);
  --text:#0c1829;
  --text-strong:#050d18;
  --muted:rgba(12,24,41,.68);
  --muted-2:rgba(12,24,41,.50);
  --accent:#1a6bb5;
  --accent-2:#4d9ae8;
  --accent-3:#0e4a7a;
  --rose:#1a6bb5;
  --rose-hover:#155f9a;
  --steel:#3d5a73;
  --shadow:0 22px 60px rgba(10,22,40,.10);
  --shadow-soft:0 10px 30px rgba(10,22,40,.06);
  --radius:14px;
  --radius-sm:12px;
  --radius-btn:8px;
  --max:1180px;
  --ease:cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --space:clamp(16px, 2.2vw, 26px);
  --h1:clamp(30px, 4.6vw, 52px);
  --h2:clamp(22px, 2.6vw, 34px);
  --h3:clamp(17px, 1.9vw, 21px);
  --font-en:"IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-ar:"Cairo", "Noto Sans Arabic", system-ui, sans-serif;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  color-scheme: light;
}
body{
  margin:0;
  font-family:var(--font-en);
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(26,107,181,.06), transparent 55%),
    radial-gradient(900px 500px at 5% 0%, rgba(74,159,217,.05), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  background-attachment: fixed;
  letter-spacing:.01em;
  overflow-x:hidden;
  font-size:16px;
  line-height:1.65;
}
body.is-rtl{font-family:var(--font-ar)}

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

.container{
  width:min(var(--max), calc(100% - 2*var(--space)));
  margin-inline:auto;
}

#main{
  scroll-margin-top:calc(14px + var(--space));
}

/* Skip link: never visible until keyboard focus (avoids Samsung/RTL clipping bugs) */
.skip-link{
  position:fixed;
  left:12px;
  top:0;
  transform:translate3d(0,-140%,0);
  width:auto;
  max-width:min(92vw, 320px);
  padding:12px 16px;
  margin:0;
  overflow:visible;
  white-space:normal;
  border:1px solid rgba(26,107,181,.45);
  border-radius:10px;
  background:#ffffff;
  color:#0a1628;
  font-weight:600;
  font-size:15px;
  line-height:1.35;
  box-shadow:0 12px 40px rgba(10,22,40,.15);
  z-index:-1;
  opacity:0;
  pointer-events:none;
  clip-path:none;
  -webkit-tap-highlight-color:transparent;
}
.skip-link:focus,
.skip-link:focus-visible{
  transform:translate3d(0,12px,0);
  z-index:100901;
  opacity:1;
  pointer-events:auto;
  outline:2px solid rgba(26,107,181,.75);
  outline-offset:2px;
}
[dir="rtl"] .skip-link{
  left:auto;
  right:12px;
}

/* Top utility bar (above main header) */
.utility-bar{
  background:linear-gradient(180deg, #0a1628, #221a14);
  border-bottom:1px solid rgba(26,107,181,.20);
  color:rgba(245,236,219,.78);
  font-size:13px;
}
.utility-bar a{ color:rgba(245,236,219,.78); transition:color .2s var(--ease) }
.utility-bar a:hover{ color:var(--accent-2) }
.utility-bar__sep{
  width:1px; height:14px; background:rgba(245,236,219,.16);
  display:inline-block;
}
.utility-bar__pin{ color:var(--accent-2); font-weight:600 }
.utility-bar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:7px 0; flex-wrap:wrap;
}
.utility-bar__group{
  display:flex; align-items:center; gap:14px; flex-wrap:wrap;
}
.utility-bar a{color:rgba(245,236,219,.78); transition:color .2s var(--ease)}
.utility-bar a:hover{color:var(--accent-2)}
.utility-bar__sep{
  width:1px; height:14px; background:rgba(245,236,219,.16);
  display:inline-block;
}
.utility-bar__pin{
  color:var(--accent-2);
  font-weight:600;
}

.header{
  position:sticky; top:0; z-index:10050;
  isolation:isolate;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid var(--border);
  box-shadow:0 1px 0 rgba(26,107,181,.06), 0 8px 24px rgba(10,22,40,.04);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px; min-width:180px; flex:0 1 auto;
}
@media (max-width:820px){
  .brand{ min-width:0; flex:1 1 auto; }
}
.brand__mark{
  width:46px;
  height:46px;
  display:block;
  object-fit:contain;
  flex-shrink:0;
  filter:drop-shadow(0 6px 14px rgba(26,107,181,.30));
  transition:transform .45s var(--ease), filter .45s var(--ease);
}
.brand:hover .brand__mark{
  transform:rotate(180deg) scale(1.08);
  filter:drop-shadow(0 8px 22px rgba(26,107,181,.55));
}
.brand__name{
  font-family:var(--font-en);
  font-weight:600; letter-spacing:.02em;
}
body.is-rtl .brand__name{font-family:var(--font-ar)}
.brand__tag{
  color:var(--muted-2);
  font-size:12px; margin-top:2px;
}
.nav__links{
  display:flex; align-items:center; gap:18px;
}
.nav__links a{
  position:relative;
  color:var(--muted);
  font-size:14px;
  padding:10px 2px;
  transition:color .25s var(--ease);
}
.nav__links a::after{
  content:"";
  position:absolute; left:0; bottom:4px;
  width:0; height:2px;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  transition:width .35s var(--ease);
  border-radius:99px;
}
.nav__links a:hover{color:var(--text)}
.nav__links a:hover::after{width:100%}
.nav__links a[aria-current="page"]{
  color:var(--text);
}
.nav__links a[aria-current="page"]::after{width:100%}

.nav__actions{
  display:flex; align-items:center; gap:10px;
  position:relative;
  z-index:3;
  flex-shrink:0;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  min-height:48px;
  padding:14px 28px;
  border-radius:var(--radius-btn);
  border:1px solid var(--border);
  background:linear-gradient(180deg, #ffffff, #f0f6fc);
  color:var(--text);
  box-shadow:0 6px 18px rgba(10,22,40,.06);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease), filter .25s var(--ease);
  user-select:none;
}
.btn:hover{
  border-color:rgba(26,107,181,.35);
  box-shadow:0 10px 26px rgba(10,22,40,.08);
}
.btn:hover{
  transform:scale(1.05);
  box-shadow:var(--shadow-soft);
  border-color:rgba(10,22,40,.18);
}
.btn:active{transform:scale(1.02)}
.btn--primary{
  border-color:rgba(26,107,181,.55);
  color:#ffffff;
  background:
    radial-gradient(220px 120px at 20% 0%, rgba(232,201,138,.45), transparent 60%),
    linear-gradient(180deg, #1a6bb5, #0e4a7a);
  box-shadow:0 8px 22px rgba(26,107,181,.28);
}
.btn--primary:hover{
  filter:brightness(1.06);
  border-color:rgba(26,107,181,.75);
  box-shadow:0 14px 32px rgba(26,107,181,.36);
}
.btn--ghost{
  background:transparent;
  border-color:rgba(10,22,40,.10);
  box-shadow:none;
}
.btn--small{padding:10px 16px; border-radius:var(--radius-btn); font-size:13px; min-height:44px}

.hamburger{
  display:none;
  width:48px; height:48px; border-radius:var(--radius-btn);
  border:1px solid rgba(26,107,181,.42);
  background:linear-gradient(180deg, rgba(26,107,181,.12), rgba(74,159,217,.08));
  align-items:center; justify-content:center;
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  box-shadow:0 4px 14px rgba(26,107,181,.15);
  color:var(--text-strong);
}
.hamburger:hover{
  border-color:rgba(26,107,181,.58);
  background:linear-gradient(180deg, rgba(26,107,181,.18), rgba(232,201,138,.12));
}
.hamburger:active{ transform:scale(.97); }
.hamburger:focus-visible{
  outline:2px solid rgba(26,107,181,.75);
  outline-offset:3px;
}
.hamburger__bars{
  width:20px; height:12px; position:relative;
}
.hamburger__bars span{
  position:absolute; left:0; right:0; height:2px;
  background:linear-gradient(90deg, #4a6278, #1a6bb5);
  border-radius:99px;
  transition:transform .28s var(--ease), top .28s var(--ease), opacity .28s var(--ease);
}
.hamburger__bars span:nth-child(1){top:0}
.hamburger__bars span:nth-child(2){top:5px}
.hamburger__bars span:nth-child(3){top:10px}
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(1){top:5px; transform:rotate(45deg)}
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(2){opacity:0}
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(3){top:5px; transform:rotate(-45deg)}

.mobile-drawer{
  display:none;
  position:fixed; inset:0;
  /* Light overlay (Techline-like). Avoid black-on-mobile complaints. */
  background:rgba(248,244,236,.82);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:200000;
  opacity:0;
  pointer-events:none;
  transition:opacity .28s var(--ease);
  color-scheme:light;
}
.mobile-drawer.is-open{
  opacity:1;
  pointer-events:auto;
}
.mobile-drawer__panel{
  position:absolute;
  top:0; bottom:0;
  width:min(420px, 92vw);
  max-width:100%;
  min-height:100dvh;
  background:#ffffff;
  background:linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
  box-shadow:8px 0 40px rgba(10,22,40,.12);
  padding:0;
  transition:transform .32s var(--ease);
  border-inline-end:1px solid rgba(10,22,40,.12);
  display:flex;
  flex-direction:column;
  color:#14110e;
  color-scheme:light;
  -webkit-font-smoothing:antialiased;
}
body:not(.is-rtl) .mobile-drawer__panel{
  left:0; right:auto;
  transform:translate3d(-100%, 0, 0);
}
body:not(.is-rtl) .mobile-drawer.is-open .mobile-drawer__panel{
  transform:translate3d(0, 0, 0);
}
body.is-rtl .mobile-drawer__panel{
  right:0; left:auto;
  transform:translate3d(100%, 0, 0);
}
body.is-rtl .mobile-drawer.is-open .mobile-drawer__panel{
  transform:translate3d(0, 0, 0);
}
.mobile-drawer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:18px 18px 16px;
  border-bottom:1px solid rgba(10,22,40,.10);
  background:#ffffff;
  flex-shrink:0;
}
.mobile-drawer__top .brand__name{
  font-weight:700;
  font-size:16px;
  color:#0c0807;
  -webkit-text-fill-color:#0c0807;
  letter-spacing:.02em;
}
.mobile-drawer__close,
.mobile-drawer__top .modal__close{
  width:44px;
  height:44px;
  border-radius:10px;
  border:1px solid rgba(10,22,40,.12);
  background:#ffffff;
  color:var(--text-strong);
  font-size:20px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
  transition:background .2s ease, border-color .2s ease;
}
.mobile-drawer__close:hover,
.mobile-drawer__top .modal__close:hover{
  background:rgba(26,107,181,.08);
  border-color:rgba(26,107,181,.35);
}
.mobile-drawer__links{
  display:flex;
  flex-direction:column;
  gap:0;
  padding:8px 0 24px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  flex:1;
}
.mobile-drawer__links > a:not(.btn){
  display:block;
  text-align:start;
  padding:16px 20px;
  border-radius:0;
  border:none;
  border-bottom:1px solid rgba(10,22,40,.08);
  background:transparent;
  color:#14110e;
  -webkit-text-fill-color:#14110e;
  font-size:16px;
  font-weight:500;
  transition:background .18s ease, color .18s ease;
}
[dir="rtl"] .mobile-drawer__links > a:not(.btn){
  text-align:right;
}
.mobile-drawer__links > a:not(.btn):hover,
.mobile-drawer__links > a:not(.btn):focus-visible{
  background:rgba(26,107,181,.08);
  color:#5c3a1a;
  -webkit-text-fill-color:#5c3a1a;
}
.mobile-drawer__links > a.btn{
  margin:16px 16px 0;
  justify-content:center;
  text-align:center;
  border-radius:10px;
  border-bottom:none;
}
.mobile-drawer__links > a.btn--primary{
  border:1px solid rgba(26,107,181,.55);
  color:#ffffff;
  -webkit-text-fill-color:#ffffff;
  background:linear-gradient(180deg, #1a6bb5, #0e4a7a);
}
.mobile-drawer__links > a.btn--ghost{
  background:#f3efe6;
  border:1px solid rgba(10,22,40,.12);
  color:#14110e;
  -webkit-text-fill-color:#14110e;
}
.mobile-drawer__links a:active{transform:scale(.99)}

/* Hero: split layout, no full-bleed photo */
.hero.hero--split{
  position:relative;
  padding:48px 0 40px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 560px);
  gap:clamp(22px, 4vw, 56px);
  align-items:center;
}
.hero__copy{
  position:relative;
  z-index:1;
}
.hero__figure{
  margin:0;
  border-radius:var(--radius);
  border:1px solid rgba(26,107,181,.20);
  background:var(--panel);
  overflow:hidden;
  box-shadow:0 18px 50px rgba(10,22,40,.10), 0 0 0 1px rgba(26,107,181,.08) inset;
  position:relative;
}
.hero__figure::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(135deg, rgba(26,107,181,.04), transparent 60%);
}
.hero__img{
  width:100%;
  height:clamp(340px, 48vw, 480px);
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .6s var(--ease);
}
.hero__figure:hover .hero__img{ transform:scale(1.03); }
.hero__caption{
  margin:0;
  padding:12px 14px;
  font-size:12px;
  line-height:1.5;
  color:var(--muted);
  background:var(--bg-2);
  border-top:1px solid var(--border);
}
.hero__line-art{
  position:absolute;
  right:6%;
  top:14%;
  width:min(180px, 22vw);
  opacity:.28;
  pointer-events:none;
}
body.is-rtl .hero__line-art{
  right:auto;
  left:6%;
}
.kicker{
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; color:var(--muted);
  letter-spacing:.22em;
  text-transform:uppercase;
}
.kicker::before{
  content:"";
  width:18px; height:1px;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
}
.hero .hero__title{
  margin:14px 0 12px;
  font-size:var(--h1);
  line-height:1.12;
  font-family:var(--font-en);
  font-weight:600;
  letter-spacing:-.02em;
  overflow-wrap:break-word;
  word-wrap:break-word;
}
body.is-rtl .hero .hero__title{
  font-family:var(--font-ar);
  line-height:1.35;
  letter-spacing:0;
  word-spacing:.08em;
  font-weight:700;
  margin:18px 0 18px;
}
body.is-rtl .kicker{
  font-size:13px;
  letter-spacing:0;
  text-transform:none;
  font-weight:600;
}
body.is-rtl .hero p{
  line-height:1.95;
  font-size:clamp(15px, 1.2vw, 17px);
}
.hero p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:clamp(15px, 1.15vw, 17px);
  line-height:1.65;
  max-width:min(52ch, 100%);
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:20px}

/* Hero carousel (Instagram-like scroll) */
.hero__carousel{
  margin-top:16px;
}
.carousel{
  position:relative;
  border-radius:16px;
  border:1px solid rgba(10,22,40,.10);
  background:rgba(255,255,255,.65);
  overflow:hidden;
  box-shadow:0 14px 36px rgba(10,22,40,.08);
}
.carousel__track{
  display:flex;
  gap:12px;
  padding:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.carousel__track::-webkit-scrollbar{display:none}
.carousel__slide{
  scroll-snap-align:center;
  flex:0 0 auto;
  width:min(360px, 78vw);
  aspect-ratio: 16 / 10;
  border-radius:14px;
  overflow:hidden;
  position:relative;
  background:#f3efe6;
  border:1px solid rgba(10,22,40,.10);
}
.carousel__slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.carousel__nav{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.carousel__btn{
  pointer-events:auto;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(10,22,40,.18);
  background:rgba(255,255,255,.92);
  color:#0a1628;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 26px rgba(10,22,40,.12);
}
.carousel__btn:hover{ filter:brightness(1.02) }
.carousel__btn:active{ transform:translateY(-50%) scale(.98) }
.carousel__btn.prev{ left:10px; }
.carousel__btn.next{ right:10px; }
.carousel__dots{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  align-items:center;
  padding:12px 12px 14px;
}
.carousel__dot{
  width:10px;
  height:10px;
  min-width:10px;
  min-height:10px;
  max-width:10px;
  max-height:10px;
  padding:0;
  flex-shrink:0;
  border-radius:50%;
  border:2px solid rgba(10,22,40,.22);
  background:rgba(10,22,40,.18);
  cursor:pointer;
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.carousel__dot:hover{
  background:rgba(26,107,181,.35);
  border-color:rgba(26,107,181,.45);
}
.carousel__dot.is-active{
  background:var(--accent);
  border-color:var(--accent);
  transform:scale(1.15);
  box-shadow:0 0 0 3px rgba(26,107,181,.22);
}

@media (max-width: 820px){
  .carousel__btn{ display:none; }
}

/* Sections */
section{padding:64px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:18px; margin-bottom:22px;
}
.section-head h2{
  margin:0;
  font-size:var(--h2);
  font-family:var(--font-en);
  font-weight:600;
  letter-spacing:-.01em;
}
body.is-rtl .section-head h2{font-family:var(--font-ar)}
.section-head p{
  margin:8px 0 0; color:var(--muted);
  max-width:560px; line-height:1.65; font-size:14px;
}

.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:16px}
.grid-4{display:grid; grid-template-columns:repeat(4, 1fr); gap:16px}
.card{
  background:linear-gradient(180deg, rgba(10,22,40,.06), rgba(10,22,40,.04));
  border:1px solid rgba(10,22,40,.10);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.28);
  transition:transform .35s var(--ease), border-color .35s var(--ease);
  position:relative;
}
.card:hover{transform:translate3d(0, -2px, 0); border-color:rgba(10,22,40,.16)}
.card--padded{padding:18px}
.card__media{
  position:relative;
  max-height:200px;
  overflow:hidden;
  border-bottom:1px solid rgba(10,22,40,.06);
}
.card__media img{
  width:100%;
  height:200px;
  object-fit:cover;
  transform:scale(1.01);
  transition:transform .55s var(--ease), filter .55s var(--ease);
  filter:saturate(105%);
}
.card:hover .card__media img,
.product-card:hover .product-card__media img{transform:scale(1.06); filter:saturate(115%) contrast(105%)}
.card__overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45));
  opacity:.75;
  pointer-events:none;
  transition:opacity .35s var(--ease);
}
.card:hover .card__overlay{opacity:.9}
.card__body{padding:16px}
.card__title{margin:0 0 8px; font-size:var(--h3); font-weight:600; font-family:var(--font-en)}
body.is-rtl .card__title{font-family:var(--font-ar)}
.card__desc{margin:0; color:var(--muted); line-height:1.65; font-size:14px}
.card__meta{display:flex; gap:10px; margin-top:12px; flex-wrap:wrap}
.pill{
  font-size:12px; color:var(--text);
  padding:6px 10px; border-radius:999px;
  border:1px solid rgba(10,22,40,.10);
  background:rgba(10,22,40,.04);
}
.pill--accent{border-color:rgba(26,107,181,.40); color:var(--accent-3); background:rgba(26,107,181,.08)}
.pill--push-end{margin-inline-start:auto}

.feature{
  display:flex; gap:12px; align-items:flex-start;
  padding:16px;
  perspective:800px;
}
.feature__icon{
  width:40px; height:40px;
  border-radius:12px;
  border:1px solid rgba(10,22,40,.12);
  background:linear-gradient(180deg, rgba(10,22,40,.06), rgba(10,22,40,.04));
  display:flex; align-items:center; justify-content:center;
}
.feature__icon svg{width:20px; height:20px; opacity:.95}
.feature h3{margin:0 0 6px; font-size:16px; font-weight:600}
.feature p{margin:0; color:var(--muted); font-size:14px; line-height:1.6}

.stats{
  border-top:1px solid rgba(10,22,40,.06);
  border-bottom:1px solid rgba(10,22,40,.06);
  background:linear-gradient(90deg, rgba(10,22,40,.05), rgba(10,22,40,.03));
}
.stats__grid{
  display:grid; grid-template-columns:repeat(4, 1fr);
  gap:16px;
  padding:22px 0;
}
.stat{
  padding:14px 16px;
  border-radius:var(--radius);
  border:1px solid rgba(10,22,40,.08);
  background:rgba(10,22,40,.03);
}
.stat__value{
  font-size:34px;
  font-weight:700;
  letter-spacing:-.02em;
  font-family:var(--font-en);
}
body.is-rtl .stat__value{font-family:var(--font-ar)}
.stat__label{color:var(--muted); margin-top:6px; font-size:13px; line-height:1.4}

.testimonials{position:relative}
.testimonial{padding:18px}
.testimonial__quote{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:var(--text);
}
.testimonial__name{
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}
.slider{
  position:relative;
  overflow:hidden;
}
.slider__track{
  display:flex;
  transition:transform .75s var(--ease);
  will-change:transform;
}
.slider__slide{min-width:100%}
.slider__dots{
  display:flex; gap:8px; justify-content:center;
  margin-top:14px;
}
.dot{
  width:8px; height:8px; border-radius:99px;
  border:1px solid rgba(10,22,40,.14);
  background:rgba(10,22,40,.06);
  transition:transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}
.dot.is-active{
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  border-color:transparent;
  transform:scale(1.25);
}

.cta{padding:0 0 72px}
.cta__panel{
  padding:24px;
  border-radius:calc(var(--radius) + 2px);
  border:1px solid rgba(10,22,40,.10);
  background:
    radial-gradient(600px 200px at 20% 10%, rgba(74,159,217,.14), transparent 60%),
    radial-gradient(560px 220px at 90% 0%, rgba(125,211,252,.12), transparent 60%),
    linear-gradient(180deg, rgba(10,22,40,.06), rgba(10,22,40,.04));
  box-shadow:var(--shadow);
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; flex-wrap:wrap;
}
.cta__panel h2{
  margin:0; font-size:24px; font-family:var(--font-en);
}
body.is-rtl .cta__panel h2{font-family:var(--font-ar)}
.cta__panel p{margin:8px 0 0; color:var(--muted); max-width:620px; line-height:1.65; font-size:14px}

/* Footer */
.footer{
  border-top:1px solid var(--border);
  padding:42px 0 30px;
  background:#ffffff;
  color:var(--text);
}
.footer__grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:18px;
}
.footer h3{
  margin:0 0 10px;
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent);
}
.footer a, .footer p{
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
  margin:0;
}
.footer a:hover{color:var(--accent-2)}
.footer__bottom{
  margin-top:26px;
  padding-top:16px;
  border-top:1px solid var(--border);
  display:flex; flex-direction:column; align-items:flex-start;
  gap:6px;
  color:var(--muted-2);
  font-size:12px;
}
[dir="rtl"] .footer__bottom{ align-items:flex-end; }
.footer__credit{
  color:var(--muted-2);
  font-size:11px;
  letter-spacing:.06em;
}
.footer__credit a{
  color:var(--accent);
  text-decoration:none;
  border-bottom:1px dotted rgba(26,107,181,.35);
  transition:color .25s ease, border-color .25s ease;
}
.footer__credit a:hover{
  color:var(--accent-2);
  border-bottom-color:var(--accent-2);
}

/* Footer email + phone */
.footer__email, .footer__phone{
  display:inline-block;
  color:var(--text);
  text-decoration:none;
  transition:color .25s ease;
}
.footer__email:hover, .footer__phone:hover{ color:var(--accent); }
.footer__phone bdi{
  font-feature-settings:"tnum" 1, "lnum" 1;
  letter-spacing:.02em;
  unicode-bidi:isolate;
}

/* Footer socials icon row */
.footer__socials{
  display:flex; align-items:center; gap:10px;
  margin-top:14px;
}
.footer__socials a{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:10px;
  background:var(--bg-2);
  color:var(--accent);
  border:1px solid var(--border);
  transition:transform .35s var(--ease), background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.footer__socials a:hover{
  transform:translateY(-2px);
  background:linear-gradient(180deg, #1a6bb5, #0e4a7a);
  color:#fff;
  border-color:rgba(26,107,181,.45);
  box-shadow:0 8px 20px rgba(26,107,181,.25);
}
.footer__socials svg{ display:block; }

/* Tabular phone numbers wherever they appear inline (Arabic LTR isolation) */
[dir="rtl"] a[href^="tel:"]{
  unicode-bidi:isolate;
  direction:ltr;
  display:inline-block;
}

/* Floating actions: Call above WhatsApp, safe-area aware */
.fab-stack{
  position:fixed;
  bottom:max(18px, env(safe-area-inset-bottom, 0px));
  right:max(18px, env(safe-area-inset-right, 0px));
  left:auto;
  z-index:12050;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
  pointer-events:none;
  max-width:calc(100vw - 24px);
}
[dir="rtl"] .fab-stack{
  right:max(18px, env(safe-area-inset-right, 0px));
  left:auto;
}
.wa-fab,
.call-fab{
  position:relative;
  bottom:auto;
  right:auto;
  left:auto;
  pointer-events:auto;
  flex-shrink:0;
}
.call-fab.is-offset{ right:auto; }
[dir="rtl"] .call-fab.is-offset{ right:auto; left:auto; }
.fab-stack .call-fab a,
.fab-stack .wa-fab a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  min-width:48px;
  padding:12px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  line-height:1.2;
  white-space:nowrap;
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
  transition:transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
}
.fab-stack .call-fab a{
  background:linear-gradient(180deg, #1b6fbf, #0f4e8f);
  color:#fff;
  border:1px solid rgba(10, 54, 110, 0.45);
  box-shadow:0 10px 28px rgba(15, 78, 143, 0.28);
}
.fab-stack .wa-fab a{
  background:#25d366;
  color:#fff;
  border:1px solid rgba(20, 160, 80, 0.5);
  box-shadow:0 10px 24px rgba(37, 211, 102, 0.3);
}
[dir="rtl"] .fab-stack .wa-fab a{
  flex-direction:row-reverse;
}
.fab-stack .call-fab a:hover,
.fab-stack .wa-fab a:hover{
  transform:scale(1.04);
  filter:brightness(1.03);
}
.fab-stack .call-fab a:active,
.fab-stack .wa-fab a:active{
  transform:scale(0.98);
}
.fab-stack .call-fab svg,
.fab-stack .wa-fab svg{
  width:20px;
  height:20px;
  flex-shrink:0;
}

/* Forms */
.form{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:12px;
}
.field{display:flex; flex-direction:column; gap:8px}
.field--full{grid-column:1 / -1}
.label{color:var(--muted); font-size:13px}
input, select, textarea{
  width:100%;
  min-height:48px;
  padding:12px 14px;
  border-radius:var(--radius-btn);
  border:1px solid rgba(10,22,40,.10);
  background:rgba(10,22,40,.05);
  color:var(--text);
  outline:none;
  transition:border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
}
textarea{min-height:8rem; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color:rgba(74,159,217,.45);
  background:rgba(10,22,40,.06);
  box-shadow:0 0 0 3px rgba(74,159,217,.12);
}
select{
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  background-image:linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position:calc(100% - 18px) 22px, calc(100% - 12px) 22px;
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:36px;
  cursor:pointer;
}
body.is-rtl select, [dir="rtl"] select{
  background-position:18px 22px, 12px 22px;
  padding-right:14px;
  padding-left:36px;
}
select option, select optgroup{
  background:#ffffff;
  color:#0a1628;
  padding:10px 12px;
}
select option:checked, select option:hover, select option:focus{
  background:linear-gradient(0deg, rgba(26,107,181,.18), rgba(26,107,181,.18)) #ffffff;
  color:#0a1628;
}
.field--hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
}
.hint{color:var(--muted-2); font-size:12px; line-height:1.5}
.form-actions{display:flex; align-items:center; gap:12px; flex-wrap:wrap}
.form-note{color:var(--muted-2); font-size:12px; line-height:1.6}
.alert{
  padding:12px 14px;
  border-radius:var(--radius-btn);
  border:1px solid rgba(10,22,40,.10);
  background:rgba(10,22,40,.04);
  color:var(--text);
  display:none;
}
.alert.is-visible{display:block}
.alert--success{
  border-color:rgba(52, 211, 153, 0.35);
  background:rgba(6, 78, 59, 0.35);
  color:rgba(209, 250, 229, 0.95);
}
.alert--error{
  border-color:rgba(248, 113, 113, 0.4);
  background:rgba(127, 29, 29, 0.28);
  color:rgba(254, 226, 226, 0.95);
}

/* Products layout */
.filters{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:18px 0 18px;
}
.filters .btn{box-shadow:none}
.masonry{
  columns:3 320px;
  column-gap:16px;
}
.masonry__item{break-inside:avoid; margin-bottom:16px}
.product-card .card__body{position:relative}
.product-card__learn{
  margin-top:14px;
  display:inline-flex;
}
.product-card__media{
  max-height:180px;
}
.product-card__media img{
  height:180px;
}

/* Modal */
.modal{
  position:fixed; inset:0;
  background:rgba(0,0,0,.62);
  display:none;
  align-items:center; justify-content:center;
  z-index:2000;
  padding:18px;
}
.modal.is-open{display:flex}
.modal__panel{
  width:min(980px, 100%);
  max-height:88vh;
  overflow:auto;
  border-radius:calc(var(--radius) + 4px);
  background:linear-gradient(180deg, rgba(11,15,20,.98), rgba(7,10,14,.98));
  border:1px solid rgba(10,22,40,.10);
  box-shadow:var(--shadow);
}
.modal__head{
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:12px;
  padding:18px 18px 10px;
  border-bottom:1px solid rgba(10,22,40,.06);
}
.modal__head h3{
  margin:0;
  font-family:var(--font-en);
  font-size:20px;
}
body.is-rtl .modal__head h3{font-family:var(--font-ar)}
.modal__close{
  width:48px; height:48px;
  border-radius:var(--radius-btn);
  border:1px solid rgba(10,22,40,.10);
  background:rgba(10,22,40,.04);
  color:var(--text);
}
.modal__body{padding:18px}
[data-modal-desc]{
  margin:6px 0 0;
  font-size:13px;
}
.specs__title{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:10px;
  color:var(--muted-2);
}
.modal__cta-wrap{margin-top:14px}
.modal__fineprint{margin-top:10px}
.modal__grid{
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:16px;
}
.specs{
  border:1px solid rgba(10,22,40,.08);
  background:rgba(10,22,40,.03);
  border-radius:var(--radius);
  padding:14px;
}
.spec-row{display:flex; align-items:flex-start; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px solid rgba(10,22,40,.06)}
.spec-row:last-child{border-bottom:0}
.spec-key{color:var(--muted); font-size:13px}
.spec-val{color:var(--text); font-size:13px}
.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:10px;
}
.gallery img{
  width:100%;
  height:120px;
  object-fit:cover;
  border-radius:var(--radius-btn);
  border:1px solid rgba(10,22,40,.08);
  filter:saturate(110%);
}

/* Utilities */
.muted{color:var(--muted)}
.mt-0{margin-top:0}
.mb-0{margin-bottom:0}
.sr-only{
  position:absolute!important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* Progress bars */
.progress{margin-bottom:14px}
.progress__label{
  display:flex; justify-content:space-between; align-items:baseline;
  font-size:13px; color:var(--muted); margin-bottom:8px;
}
.progress__track{
  height:7px; border-radius:99px;
  background:rgba(10,22,40,.08);
  overflow:hidden;
  border:1px solid rgba(10,22,40,.08);
}
.progress__fill{
  height:100%;
  border-radius:99px;
  background:linear-gradient(90deg, var(--accent), var(--accent-2));
  transform:scaleX(0);
  transform-origin:left center;
}
body.is-rtl .progress__fill{transform-origin:right center}

/* Contact layout */
.layout-contact{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr;
  gap:16px;
}
.layout-contact__span-all{grid-column:1 / -1}

/* Long-form / SEO prose */
.prose{
  max-width:820px;
}
.prose--wide{
  max-width:920px;
}
.prose--block-spaced{
  margin-bottom:28px;
}
.prose h2{
  font-size:var(--h2);
  font-family:var(--font-en);
  margin:1.35em 0 0.5em;
}
body.is-rtl .prose h2{font-family:var(--font-ar)}
.prose h3{
  font-size:var(--h3);
  margin:1.15em 0 0.45em;
}
.prose p{
  color:var(--muted);
  line-height:1.78;
  font-size:15px;
  margin:0 0 1em;
}
.prose ul{
  color:var(--muted);
  line-height:1.7;
  padding-left:1.2em;
  margin:0 0 1em;
}
body.is-rtl .prose ul{padding-right:1.2em; padding-left:0}
.prose li{margin-bottom:.4em}
.prose a{color:var(--accent-2)}
.prose a:hover{text-decoration:underline}

.page-title{
  font-size:var(--h2);
  font-family:var(--font-en);
  font-weight:600;
  margin:0;
  letter-spacing:-.01em;
}
body.is-rtl .page-title{font-family:var(--font-ar)}

.map-embed{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(10,22,40,.08);
  background:rgba(10,22,40,.03);
}
.map-embed iframe,
.map-embed__frame{
  display:block;
  width:100%;
  border:0;
  min-height:360px;
}
.map-embed--xl .map-embed__frame{ min-height:520px }
.map-embed{ position:relative }
.map-embed::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(74,159,217,.18), 0 0 60px rgba(74,159,217,.06);
}

/* Spec table (used on products / about) */
.spec-table{
  width:100%;
  border-collapse:collapse;
  margin:14px 0 4px;
  font-size:14px;
}
.spec-table th, .spec-table td{
  text-align:left;
  padding:10px 12px;
  border-bottom:1px solid rgba(10,22,40,.06);
}
body.is-rtl .spec-table th, body.is-rtl .spec-table td{text-align:right}
.spec-table th{
  color:var(--muted-2);
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:11px;
  background:rgba(10,22,40,.04);
}
.spec-table td{color:var(--muted)}
.spec-table tr:hover td{background:rgba(26,107,181,.05)}

/* Big product list (hardcoded, not modal-driven) */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(290px, 1fr));
  gap:18px;
  margin-top:8px;
}
.product{
  display:flex; flex-direction:column;
  background:linear-gradient(180deg, rgba(10,22,40,.06), rgba(255,255,255,.025));
  border:1px solid rgba(10,22,40,.08);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.product:hover{
  transform:translate3d(0,-3px,0);
  border-color:rgba(74,159,217,.35);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}
.product__media{
  position:relative;
  aspect-ratio: 16/9;
  overflow:hidden;
  border-bottom:1px solid rgba(10,22,40,.06);
}
.product__media img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .55s var(--ease), filter .55s var(--ease);
}
.product:hover .product__media img{
  transform:scale(1.06);
  filter:saturate(115%);
}
.product__tag{
  position:absolute; top:10px;
  background:rgba(7,10,14,.78);
  border:1px solid rgba(74,159,217,.35);
  color:var(--accent);
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-weight:600;
}
body:not(.is-rtl) .product__tag{left:10px}
body.is-rtl .product__tag{right:10px}
.product__body{
  display:flex; flex-direction:column; gap:10px;
  padding:18px 18px 16px;
  flex:1;
}
.product__title{
  margin:0;
  font-family:var(--font-en);
  font-weight:600;
  font-size:18px;
  letter-spacing:-.005em;
}
body.is-rtl .product__title{font-family:var(--font-ar)}
.product__desc{
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.product__quick{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:6px 14px;
  margin-top:4px;
  font-size:12.5px;
  color:var(--muted-2);
}
.product__quick strong{color:var(--text); font-weight:600; margin-right:6px}
body.is-rtl .product__quick strong{margin-right:0; margin-left:6px}
.product__cta-row{
  display:flex; gap:8px; flex-wrap:wrap;
  margin-top:auto; padding-top:6px;
}

/* Industries grid */
.industries{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(220px, 1fr));
  gap:14px;
}
.industry{
  padding:18px;
  border:1px solid rgba(10,22,40,.08);
  border-radius:var(--radius);
  background:rgba(26,107,181,.05);
  transition:border-color .25s var(--ease), background .25s var(--ease);
}
.industry:hover{
  border-color:rgba(74,159,217,.35);
  background:rgba(74,159,217,.05);
}
.industry__title{
  margin:0 0 6px;
  font-size:15px; font-weight:600;
}
.industry__desc{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.55;
}

/* Process timeline */
.timeline{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(240px, 1fr));
  gap:14px;
  counter-reset:tlstep;
}
.timeline__item{
  position:relative;
  padding:18px 18px 16px;
  border:1px solid rgba(10,22,40,.08);
  border-radius:var(--radius);
  background:rgba(10,22,40,.04);
}
.timeline__num{
  display:inline-block;
  font-family:var(--font-en);
  font-weight:700;
  color:var(--accent);
  font-size:12px;
  letter-spacing:.18em;
  margin-bottom:6px;
}
.timeline__title{
  margin:0 0 6px;
  font-size:15px; font-weight:600;
}
.timeline__desc{
  margin:0; color:var(--muted); font-size:13.5px; line-height:1.55;
}

/* Definition list (specs in long-form pages) */
.dl-grid{
  display:grid;
  grid-template-columns:200px 1fr;
  gap:8px 18px;
  margin:14px 0;
  border-top:1px solid rgba(10,22,40,.06);
}
body.is-rtl .dl-grid{grid-template-columns:1fr 200px}
.dl-grid dt, .dl-grid dd{
  padding:10px 0;
  border-bottom:1px solid rgba(10,22,40,.06);
  margin:0;
}
.dl-grid dt{color:var(--muted-2); font-size:13px; font-weight:600; letter-spacing:.04em}
.dl-grid dd{color:var(--muted); font-size:14px; line-height:1.6}

/* Floating quick CTA inside cards */
.tag-row{
  display:flex; gap:6px; flex-wrap:wrap;
  margin-top:8px;
}
.tag{
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--muted-2);
  border:1px solid rgba(10,22,40,.10);
  background:rgba(26,107,181,.05);
  padding:4px 8px;
  border-radius:999px;
}

/* Product detail rows on /products page */
.product-detail{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap:36px;
  align-items:start;
  padding:36px 0;
  border-top:1px solid rgba(10,22,40,.08);
}
.product-detail--reverse{
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  direction:rtl;
}
.product-detail--reverse > *{ direction:ltr }
[dir="rtl"] .product-detail--reverse > *{ direction:rtl }

.product-detail__media{
  margin:0;
  border-radius:var(--radius-md);
  overflow:hidden;
  border:1px solid rgba(10,22,40,.10);
  background:linear-gradient(180deg, rgba(10,22,40,.03), rgba(0,0,0,.2));
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  position:sticky;
  top:90px;
}
.product-detail__media img{
  display:block;
  width:100%;
  height:auto;
  max-height:380px;
  object-fit:cover;
}
.product-detail__body h2{
  font-size:30px;
  margin:8px 0 12px;
  line-height:1.2;
}
.product-detail__body h3{
  font-size:16px;
  margin:22px 0 8px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--accent);
}
.product-detail__body ul{
  margin:0 0 6px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.7;
  font-size:14.5px;
}
[dir="rtl"] .product-detail__body ul{ padding-left:0; padding-right:18px }
.product-detail__body p{
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}
.product-detail__body .btn{ margin-top:18px }

@media (max-width: 900px){
  .product-detail{ grid-template-columns: 1fr; gap:20px; padding:24px 0 }
  .product-detail--reverse{ grid-template-columns: 1fr; direction:ltr }
  .product-detail__media{ position:static; top:auto }
  .product-detail__media img{ max-height:260px }
  .product-detail__body h2{ font-size:24px }
}

.kicker{
  display:inline-block;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  background:rgba(74,159,217,.08);
  border:1px solid rgba(74,159,217,.25);
  padding:4px 10px;
  border-radius:999px;
  margin-bottom:6px;
}

/* FAQ blocks */
.faq details{
  border:1px solid rgba(10,22,40,.10);
  border-radius:var(--radius-sm);
  background:rgba(10,22,40,.04);
  padding:12px 14px;
  margin-bottom:10px;
}
.faq summary{
  cursor:pointer;
  font-weight:600;
  font-size:15px;
}
.faq p{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.65;
}

@media (prefers-color-scheme: dark){
  :root{ color-scheme: light; }
  html{
    background-color: #f4f8fc;
    color:#0a1628;
  }
  body{
    color: #0a1628;
    -webkit-text-fill-color:#0a1628;
    background:
      radial-gradient(1200px 600px at 85% -10%, rgba(26,107,181,.06), transparent 55%),
      radial-gradient(900px 500px at 5% 0%, rgba(74,159,217,.05), transparent 55%),
      linear-gradient(180deg, #ffffff 0%, #f4f8fc 50%, #ffffff 100%);
  }
  .header{
    background: #ffffff;
    border-bottom-color: rgba(10,22,40,.10);
  }
  .card{
    background: #faf8f3;
    color: #0a1628;
    -webkit-text-fill-color:#0a1628;
    border-color:rgba(10,22,40,.12);
  }
  .card__title, .card__desc, .page-title, .label, .prose, .prose p, .faq summary{
    color:#0a1628;
    -webkit-text-fill-color:#0a1628;
  }
  input, select, textarea{
    background-color: #ffffff;
    color: #0a1628;
    -webkit-text-fill-color:#0a1628;
    border-color:rgba(10,22,40,.18);
  }
  .btn{
    background: linear-gradient(180deg, #ffffff, #f0f6fc);
    color: #0a1628;
    -webkit-text-fill-color:#0a1628;
    border-color:rgba(10,22,40,.14);
  }
  .btn--primary{
    color: #ffffff;
    -webkit-text-fill-color:#ffffff;
    background:linear-gradient(180deg, #1a6bb5, #0e4a7a);
    border-color:rgba(26,107,181,.6);
  }
  .btn--ghost{
    background:rgba(255,255,255,.85);
    color:#0a1628;
    -webkit-text-fill-color:#0a1628;
  }
  .hamburger{
    color: #0a1628;
    background:linear-gradient(180deg, rgba(26,107,181,.14), rgba(74,159,217,.10));
    border-color:rgba(26,107,181,.5);
  }
  .mobile-drawer{
    /* Keep overlay light even in device dark mode */
    background:rgba(248,244,236,.86);
    color-scheme:light;
  }
  .mobile-drawer__panel{
    background:#ffffff;
    color:#14110e;
  }
  .mobile-drawer__links > a:not(.btn){
    color:#14110e;
    -webkit-text-fill-color:#14110e;
    border-bottom-color:rgba(10,22,40,.10);
  }
  .cta__panel{
    background:rgba(255,255,255,.95);
    color:#0a1628;
  }
}

@media (forced-colors: active){
  .btn, .btn--primary, .btn--ghost, .hamburger, input, select, textarea, button{
    forced-color-adjust: none;
  }
}


.photo-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap:12px;
}
.photo-grid__item{
  margin:0;
  border-radius:var(--radius-sm);
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow:var(--shadow-soft);
  aspect-ratio:4/3;
  background:var(--bg-2);
}
.photo-grid__item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s var(--ease);
}
.photo-grid__item:hover img{ transform:scale(1.04); }
