/* =====================================================
   1666 DESKTOP START: TOP HEADER + HEADER + HERO
===================================================== */
:root{
  --d1666-red:#c90016;
  --d1666-red-deep:#7f0012;
  --d1666-orange:#f36b22;
  --d1666-gold:#f5c746;
  --d1666-ink:#08090d;
  --d1666-white:#ffffff;
}

.d1666-top-header,
.d1666-main-header,
.d1666-top-header *,
.d1666-main-header *{
  box-sizing:border-box;
}

.d1666-header-container{
  width:min(1440px,calc(100% - 80px));
  margin-inline:auto;
}

/* =====================================================
   TOP HEADER
===================================================== */
.d1666-top-header{
  position:relative;
  z-index:1002;
  min-height:38px;
  display:flex;
  align-items:center;
  color:rgba(255,255,255,.8);
  background:linear-gradient(90deg,rgba(255,255,255,.04),transparent 28%),#78000e;
  border-bottom:1px solid rgba(255,255,255,.09);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-top-header .d1666-header-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.d1666-top-contact,
.d1666-top-side,
.d1666-mini-social{
  display:flex;
  align-items:center;
}

.d1666-top-contact{gap:18px}
.d1666-top-side{gap:14px}

.d1666-top-contact a,
.d1666-language{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:inherit;
  font-size:11px;
  font-weight:600;
  letter-spacing:.15px;
  text-decoration:none;
  transition:color .25s ease;
}

.d1666-top-contact a:hover,
.d1666-language:hover{color:#fff}

.d1666-top-contact svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-top-separator{
  width:1px;
  height:14px;
  flex:0 0 auto;
  background:rgba(255,255,255,.18);
}

.d1666-follow-label{
  color:rgba(255,255,255,.52);
  font-size:10px;
  font-weight:650;
  letter-spacing:.7px;
  text-transform:uppercase;
}

.d1666-mini-social{gap:6px}

.d1666-mini-social a{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.17);
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.055);
  font-family:Arial,sans-serif;
  font-size:10px;
  font-weight:800;
  line-height:1;
  text-decoration:none;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}

.d1666-mini-social a:hover{
  transform:translateY(-2px);
  border-color:rgba(245,199,70,.7);
  background:rgba(245,199,70,.14);
}

.d1666-language{
  color:#ffe58c;
  font-family:"Cairo",system-ui,sans-serif;
  font-size:11px;
  font-weight:700;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.d1666-main-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:84px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(15,15,20,.07);
  box-shadow:0 12px 34px rgba(57,0,8,.08);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-main-header-inner{
  height:100%;
  display:grid;
  grid-template-columns:minmax(210px,270px) 1fr minmax(180px,230px);
  align-items:center;
  gap:28px;
}

.d1666-brand{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
  text-decoration:none;
}

.d1666-brand img{
  width:auto;
  height:58px;
  max-width:250px;
  display:block;
  object-fit:contain;
}

.d1666-nav{
  height:100%;
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:clamp(18px,2vw,34px);
}

.d1666-nav a{
  position:relative;
  display:flex;
  align-items:center;
  color:#29282d;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
  text-decoration:none;
  transition:color .25s ease;
}

.d1666-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:0;
  height:3px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(90deg,var(--d1666-red),var(--d1666-orange));
  transition:left .3s ease,right .3s ease;
}

.d1666-nav a:hover,
.d1666-nav a.is-active{color:var(--d1666-red)}

.d1666-nav a:hover::after,
.d1666-nav a.is-active::after{
  left:0;
  right:0;
}

.d1666-hotline-bar{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding-left:22px;
  border-left:1px solid rgba(15,15,20,.08);
  text-decoration:none;
}

.d1666-hotline-bar img{
  width:auto;
  max-width:100%;
  height:46px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-hotline-bar:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.16));
}

.d1666-hero,
.d1666-hero *{
  box-sizing:border-box;
}

.d1666-hero{
  position:relative;
  min-height:calc(100vh - 122px);
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  color:var(--d1666-white);
  background:
    radial-gradient(circle at 78% 18%,rgba(255,222,119,.28),transparent 25%),
    radial-gradient(circle at 5% 88%,rgba(92,0,17,.48),transparent 36%),
    linear-gradient(118deg,#8c0012 0%,#c40018 43%,#e6381e 72%,#f47a25 100%);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-grid{
  position:absolute;
  inset:0;
  z-index:-3;
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.11) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.11) 1px,transparent 1px);
  background-size:70px 70px;
  mask-image:linear-gradient(90deg,#000,transparent 76%);
  -webkit-mask-image:linear-gradient(90deg,#000,transparent 76%);
}

.d1666-grid::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 0 53%,rgba(201,0,22,.15) 53% 53.2%,transparent 53.2%);
}

.d1666-glow{
  position:absolute;
  z-index:-2;
  border-radius:50%;
  filter:blur(7px);
  pointer-events:none;
}

.d1666-glow-one{
  width:430px;
  height:430px;
  right:-220px;
  top:-210px;
  background:rgba(255,213,84,.2);
}

.d1666-glow-two{
  width:330px;
  height:330px;
  left:32%;
  bottom:-270px;
  background:rgba(105,0,15,.28);
}

.d1666-hero-inner{
  position:relative;
  width:min(1440px,calc(100% - 96px));
  min-height:680px;
  margin:auto;
  display:grid;
  grid-template-columns:minmax(520px,.95fr) minmax(520px,1.05fr);
  align-items:center;
  gap:52px;
  padding:68px 0 82px;
}

.d1666-copy{
  position:relative;
  z-index:3;
  max-width:720px;
}

.d1666-copy > .d1666-smart-intro{
  width:min(100%,650px);
  min-height:82px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 1px auto;
  align-items:center;
  gap:20px;
  padding:14px 17px 14px 20px;
  margin-bottom:28px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:18px;
  background:linear-gradient(120deg,rgba(255,255,255,.14),rgba(255,255,255,.065));
  box-shadow:0 16px 36px rgba(92,0,13,.18),inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter:blur(16px) saturate(125%);
  -webkit-backdrop-filter:blur(16px) saturate(125%);
  overflow:hidden;
}

.d1666-typing-line{
  min-width:0;
  display:flex;
  align-items:center;
  gap:13px;
}

.d1666-status-dot{
  width:9px;
  height:9px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--d1666-gold);
  box-shadow:0 0 0 6px rgba(245,199,70,.12),0 0 18px rgba(255,229,140,.72);
  animation:d1666Pulse 2.2s ease-in-out infinite;
}

.d1666-smart-intro .typing-wrap{
  min-width:0;
  margin:0;
  color:#fff;
  font-size:clamp(13px,1.05vw,16px);
  font-weight:800;
  line-height:1.45;
  letter-spacing:.15px;
  white-space:nowrap;
  text-shadow:0 3px 12px rgba(75,0,10,.28);
}

.d1666-smart-intro .typing-cursor{
  display:inline-block;
  margin-left:3px;
  color:#ffe58c;
  font-weight:500;
  animation:d1666Blink .9s steps(1) infinite;
}

.d1666-intro-divider{
  width:1px;
  height:42px;
  background:linear-gradient(transparent,rgba(255,255,255,.34),transparent);
}

.d1666-copy > .d1666-smart-intro h2.powered-by{
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.67);
  font-size:10px;
  font-weight:700;
  line-height:1;
  letter-spacing:.7px;
  text-transform:none;
  white-space:nowrap;
}

.d1666-smart-intro .d1666-powered-logo{
  width:118px;
  height:43px;
  flex:0 0 118px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px 9px;
  border-radius:10px;
  background:rgba(255,255,255,.97);
  box-shadow:0 9px 22px rgba(85,0,10,.2);
}

.d1666-smart-intro .d1666-powered-logo img{
  width:100% !important;
  height:100% !important;
  max-width:100% !important;
  max-height:100% !important;
  margin:0 !important;
  padding:0 !important;
  display:block;
  object-fit:contain !important;
}

.d1666-copy h1{
  margin:0;
  max-width:760px;
  font-size:clamp(54px,5vw,82px);
  line-height:1.01;
  letter-spacing:-4px;
  font-weight:850;
  text-wrap:balance;
}

.d1666-copy h1 span{
  display:inline-block;
  margin-top:8px;
  color:transparent;
  background:linear-gradient(90deg,#ffe58c 0%,var(--d1666-gold) 48%,#fff0b1 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-copy > p{
  max-width:650px;
  margin:26px 0 0;
  color:rgba(255,255,255,.8);
  font-size:17px;
  line-height:1.85;
}

.d1666-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.d1666-btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  padding:0 23px;
  border-radius:12px;
  color:#fff;
  font-size:14px;
  font-weight:750;
  text-decoration:none;
  transition:transform .3s ease,border-color .3s ease,background .3s ease,box-shadow .3s ease;
}

.d1666-btn svg{
  width:19px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  transition:transform .3s ease;
}

.d1666-btn-primary{
  color:#17110a;
  background:linear-gradient(135deg,#fff,#ffe79a);
  box-shadow:0 15px 34px rgba(75,0,10,.25),inset 0 1px 0 rgba(255,255,255,.65);
}

.d1666-btn-ghost{
  border:1px solid rgba(255,255,255,.17);
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.d1666-btn:hover{
  transform:translateY(-3px);
}

.d1666-btn-primary:hover{
  box-shadow:0 20px 42px rgba(75,0,10,.32),inset 0 1px 0 rgba(255,255,255,.65);
}

.d1666-btn-ghost:hover{
  border-color:rgba(245,199,70,.5);
  background:rgba(255,255,255,.09);
}

.d1666-btn:hover svg{
  transform:translateX(4px);
}

.d1666-pillars{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin-top:56px;
  border-top:1px solid rgba(255,255,255,.1);
}

.d1666-pillar{
  min-width:0;
  display:flex;
  align-items:center;
  gap:13px;
  padding:22px 16px 0 0;
}

.d1666-pillar + .d1666-pillar{
  padding-left:22px;
  border-left:1px solid rgba(255,255,255,.1);
}

.d1666-pillar > span{
  color:var(--d1666-orange);
  font-size:11px;
  font-weight:800;
  letter-spacing:1px;
}

.d1666-pillar div{
  min-width:0;
}

.d1666-pillar b,
.d1666-pillar small{
  display:block;
}

.d1666-pillar b{
  margin-bottom:4px;
  font-size:15px;
}

.d1666-pillar small{
  color:rgba(255,255,255,.48);
  font-size:11px;
  white-space:nowrap;
}

.d1666-visual{
  position:relative;
  width:min(620px,44vw);
  aspect-ratio:1;
  justify-self:end;
  border-radius:50%;
}

.d1666-visual::before{
  content:"";
  position:absolute;
  inset:12%;
  border-radius:50%;
  background:
    radial-gradient(circle at 42% 38%,rgba(255,255,255,.14),transparent 16%),
    radial-gradient(circle at center,rgba(255,229,140,.17),rgba(111,0,14,.14) 46%,rgba(0,0,0,.05) 68%,transparent 70%);
  box-shadow:inset 0 0 80px rgba(255,229,140,.12),0 0 100px rgba(91,0,14,.2);
}

.d1666-visual::after{
  content:"";
  position:absolute;
  left:9%;
  right:9%;
  top:50%;
  height:1px;
  opacity:.5;
  background:linear-gradient(90deg,transparent,var(--d1666-orange),transparent);
  box-shadow:0 0 18px rgba(243,107,34,.65);
}

.d1666-orbit{
  position:absolute;
  left:50%;
  top:50%;
  border:1px solid rgba(255,255,255,.14);
  border-radius:50%;
  transform:translate(-50%,-50%);
}

.d1666-orbit::before{
  content:"";
  position:absolute;
  left:50%;
  top:-4px;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--d1666-gold);
  box-shadow:0 0 20px var(--d1666-orange);
}

.d1666-orbit-one{
  width:93%;
  height:93%;
  border-color:rgba(245,199,70,.18);
  animation:d1666Spin 22s linear infinite;
}

.d1666-orbit-two{
  width:74%;
  height:74%;
  border-style:dashed;
  animation:d1666SpinReverse 18s linear infinite;
}

.d1666-orbit-three{
  width:55%;
  height:55%;
  border-color:rgba(243,107,34,.28);
  animation:d1666Spin 13s linear infinite;
}

.d1666-core{
  position:absolute;
  left:50%;
  top:50%;
  z-index:3;
  width:49%;
  aspect-ratio:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:13px;
  transform:translate(-50%,-50%);
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.025));
  box-shadow:inset 0 0 38px rgba(255,255,255,.05),0 25px 60px rgba(0,0,0,.3);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.d1666-core-ring{
  position:absolute;
  inset:9px;
  border:1px dashed rgba(245,199,70,.25);
  border-radius:50%;
  animation:d1666Spin 30s linear infinite;
}

.d1666-logo-wrap{
  position:relative;
  z-index:2;
  width:68%;
  height:84px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:17px;
  background:rgba(255,255,255,.96);
  box-shadow:0 16px 35px rgba(0,0,0,.23);
  overflow:hidden;
}

.d1666-logo-wrap img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.d1666-core > span{
  position:relative;
  z-index:2;
  color:rgba(255,255,255,.5);
  font-size:9px;
  font-weight:700;
  letter-spacing:1.7px;
  text-transform:uppercase;
}

.d1666-node{
  position:absolute;
  z-index:4;
  width:10px;
  height:10px;
  border:2px solid rgba(255,255,255,.74);
  border-radius:50%;
  background:var(--d1666-red);
  box-shadow:0 0 0 7px rgba(201,0,22,.12),0 0 25px rgba(243,107,34,.75);
}

.d1666-node-one{left:7%;top:42%}
.d1666-node-two{right:13%;top:21%}
.d1666-node-three{right:4%;bottom:28%}
.d1666-node-four{left:24%;bottom:7%}

.d1666-float-card{
  position:absolute;
  z-index:5;
  min-width:205px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:13px 16px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:13px;
  background:rgba(82,0,12,.6);
  box-shadow:0 18px 42px rgba(0,0,0,.28);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.d1666-float-card i{
  width:9px;
  height:9px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--d1666-gold);
  box-shadow:0 0 16px var(--d1666-orange);
}

.d1666-float-card b,
.d1666-float-card small{
  display:block;
}

.d1666-float-card b{
  margin-bottom:4px;
  font-size:12px;
}

.d1666-float-card small{
  color:rgba(255,255,255,.48);
  font-size:9px;
  letter-spacing:.25px;
}

.d1666-card-top{
  top:14%;
  left:0;
  animation:d1666Float 5s ease-in-out infinite;
}

.d1666-card-bottom{
  right:-2%;
  bottom:15%;
  animation:d1666Float 5.8s 1s ease-in-out infinite;
}

.d1666-bottom-line{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:4px;
  background:rgba(255,255,255,.035);
}

.d1666-bottom-line span{
  display:block;
  width:34%;
  height:100%;
  background:linear-gradient(90deg,transparent,var(--d1666-red),var(--d1666-orange),transparent);
  animation:d1666Line 8s linear infinite;
}

@keyframes d1666Pulse{
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(.72);opacity:.62}
}

@keyframes d1666Blink{
  50%{opacity:0}
}

@keyframes d1666Spin{
  to{transform:translate(-50%,-50%) rotate(360deg)}
}

@keyframes d1666SpinReverse{
  to{transform:translate(-50%,-50%) rotate(-360deg)}
}

@keyframes d1666Float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

@keyframes d1666Line{
  from{transform:translateX(-100%)}
  to{transform:translateX(395%)}
}

@media(max-width:1180px){
  .d1666-header-container{
    width:min(100% - 48px,1120px);
  }

  .d1666-main-header-inner{
    grid-template-columns:210px 1fr 170px;
    gap:18px;
  }

  .d1666-brand img{height:50px}
  .d1666-nav{gap:18px}
  .d1666-nav a{font-size:11px}
  .d1666-hotline-bar img{height:40px}

  .d1666-hero-inner{
    width:min(100% - 54px,1100px);
    grid-template-columns:1fr .84fr;
    gap:28px;
  }

  .d1666-copy h1{
    font-size:clamp(48px,5.4vw,67px);
    letter-spacing:-3px;
  }

  .d1666-visual{
    width:min(500px,45vw);
  }

  .d1666-float-card{
    min-width:178px;
  }
}

@media(max-width:900px){
  .d1666-top-contact a:nth-of-type(3),
  .d1666-follow-label{
    display:none;
  }

  .d1666-nav{display:none}

  .d1666-main-header-inner{
    grid-template-columns:1fr auto;
  }

  .d1666-hero{
    min-height:auto;
  }

  .d1666-hero-inner{
    grid-template-columns:1fr;
    min-height:0;
    padding:70px 0 96px;
  }

  .d1666-copy{
    max-width:740px;
  }

  .d1666-visual{
    width:min(590px,78vw);
    justify-self:center;
  }
}

@media(max-width:620px){
  .d1666-smart-intro{
    grid-template-columns:1fr;
    gap:12px;
  }

  .d1666-intro-divider{
    width:100%;
    height:1px;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);
  }

  .d1666-smart-intro .powered-by{
    justify-content:space-between;
  }
}

@media(prefers-reduced-motion:reduce){
  .d1666-hero *,
  .d1666-top-header *,
  .d1666-main-header *{
    animation:none !important;
    scroll-behavior:auto !important;
  }
}

/* =====================================================
   FINAL TYPING / POWERED-BY SIZE FIX
   Keep this block at the very end of the stylesheet.
===================================================== */
.d1666-hero .d1666-copy > .d1666-smart-intro{
  width:min(100%,620px) !important;
  min-height:76px !important;
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 1px 190px !important;
  align-items:center !important;
  gap:16px !important;
  margin:0 0 28px !important;
  padding:12px 15px 12px 19px !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.24) !important;
  border-radius:16px !important;
  background:linear-gradient(120deg,rgba(255,255,255,.14),rgba(255,255,255,.065)) !important;
  box-shadow:0 16px 36px rgba(92,0,13,.18),inset 0 1px 0 rgba(255,255,255,.18) !important;
  backdrop-filter:blur(16px) saturate(125%) !important;
  -webkit-backdrop-filter:blur(16px) saturate(125%) !important;
}

.d1666-hero .d1666-typing-line{
  min-width:0 !important;
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
}

.d1666-hero .d1666-status-dot{
  width:8px !important;
  height:8px !important;
  flex:0 0 8px !important;
  display:block !important;
  border-radius:50% !important;
  background:#f5c746 !important;
  box-shadow:0 0 0 5px rgba(245,199,70,.12),0 0 16px rgba(255,229,140,.7) !important;
}

.d1666-hero .d1666-typing-line .typing-wrap{
  min-width:0 !important;
  margin:0 !important;
  padding:0 !important;
  color:#fff !important;
  font-size:15px !important;
  font-weight:800 !important;
  line-height:1.4 !important;
  letter-spacing:.2px !important;
  white-space:nowrap !important;
}

.d1666-hero .d1666-intro-divider{
  width:1px !important;
  height:40px !important;
  display:block !important;
  background:linear-gradient(transparent,rgba(255,255,255,.34),transparent) !important;
}

.d1666-hero #poweredBy{
  width:190px !important;
  max-width:190px !important;
  min-height:40px !important;
  margin:0 !important;
  padding:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:9px !important;
  color:rgba(255,255,255,.72) !important;
  font-size:10px !important;
  font-weight:700 !important;
  line-height:1 !important;
  letter-spacing:.3px !important;
  text-transform:none !important;
  white-space:nowrap !important;
}

.d1666-hero #poweredBy .d1666-powered-logo{
  width:108px !important;
  max-width:108px !important;
  height:40px !important;
  max-height:40px !important;
  flex:0 0 108px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  margin:0 !important;
  padding:6px 8px !important;
  overflow:hidden !important;
  border-radius:9px !important;
  background:#fff !important;
  box-shadow:0 8px 18px rgba(85,0,10,.18) !important;
}

.d1666-hero #poweredBy .d1666-powered-logo img{
  width:92px !important;
  max-width:92px !important;
  height:28px !important;
  max-height:28px !important;
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  object-fit:contain !important;
  object-position:center !important;
}

@media(max-width:700px){
  .d1666-hero .d1666-copy > .d1666-smart-intro{
    grid-template-columns:1fr !important;
  }

  .d1666-hero .d1666-intro-divider{
    width:100% !important;
    height:1px !important;
  }

  .d1666-hero #poweredBy{
    width:100% !important;
    max-width:none !important;
    justify-content:flex-start !important;
  }
}

/* =====================================================
   DESKTOP SMART INTRO — TYPE, EXPAND, REVEAL
   This isolated block must remain last in the stylesheet.
===================================================== */
.d1666-hero #d1666SmartIntro{
  width:390px !important;
  max-width:100% !important;
  min-height:74px !important;

  display:flex !important;
  align-items:center !important;

  margin:0 0 28px !important;
  padding:12px 18px !important;

  overflow:hidden !important;

  border:1px solid rgba(255,255,255,.24) !important;
  border-radius:16px !important;

  background:linear-gradient(
    120deg,
    rgba(255,255,255,.14),
    rgba(255,255,255,.065)
  ) !important;

  box-shadow:
    0 16px 36px rgba(92,0,13,.18),
    inset 0 1px 0 rgba(255,255,255,.18) !important;

  backdrop-filter:blur(16px) saturate(125%) !important;
  -webkit-backdrop-filter:blur(16px) saturate(125%) !important;

  transition:
    width .78s cubic-bezier(.22,.78,.25,1),
    box-shadow .78s ease,
    border-color .78s ease !important;
}

.d1666-hero #d1666SmartIntro.is-powered{
  width:650px !important;
  border-color:rgba(255,229,140,.38) !important;
  box-shadow:
    0 20px 44px rgba(92,0,13,.23),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.d1666-hero #d1666SmartIntro .d1666-typing-line{
  min-width:0 !important;
  flex:1 1 auto !important;

  display:flex !important;
  align-items:center !important;
  gap:12px !important;
}

.d1666-hero #d1666SmartIntro .d1666-status-dot{
  width:8px !important;
  height:8px !important;
  flex:0 0 8px !important;

  display:block !important;
  border-radius:50% !important;
  background:#f5c746 !important;

  box-shadow:
    0 0 0 5px rgba(245,199,70,.12),
    0 0 16px rgba(255,229,140,.7) !important;

  animation:d1666TypingPulse 1.4s ease-in-out infinite !important;
}

.d1666-hero #d1666SmartIntro.is-powered .d1666-status-dot{
  background:#fff !important;
  box-shadow:
    0 0 0 5px rgba(255,255,255,.1),
    0 0 16px rgba(255,255,255,.55) !important;
  animation:none !important;
}

.d1666-hero #d1666SmartIntro .typing-wrap{
  min-width:0 !important;
  margin:0 !important;
  padding:0 !important;

  color:#fff !important;
  font-size:15px !important;
  font-weight:800 !important;
  line-height:1.4 !important;
  letter-spacing:.2px !important;
  white-space:nowrap !important;
}

.d1666-hero #d1666SmartIntro .typing-cursor{
  display:inline-block !important;
  margin-left:3px !important;
  color:#ffe58c !important;
  animation:d1666Blink .9s steps(1) infinite !important;
  transition:opacity .3s ease !important;
}

.d1666-hero #d1666SmartIntro.is-powered .typing-cursor{
  opacity:0 !important;
  animation:none !important;
}

.d1666-hero #d1666SmartIntro .d1666-intro-divider{
  width:0 !important;
  height:40px !important;
  flex:0 0 0 !important;

  display:block !important;
  margin:0 !important;
  opacity:0 !important;
  transform:scaleY(.2) !important;

  background:linear-gradient(
    transparent,
    rgba(255,255,255,.38),
    transparent
  ) !important;

  transition:
    flex-basis .5s cubic-bezier(.22,.78,.25,1),
    margin .5s cubic-bezier(.22,.78,.25,1),
    opacity .35s ease .18s,
    transform .45s ease .14s !important;
}

.d1666-hero #d1666SmartIntro.is-powered .d1666-intro-divider{
  width:1px !important;
  flex-basis:1px !important;
  margin:0 16px !important;
  opacity:1 !important;
  transform:scaleY(1) !important;
}

.d1666-hero #d1666PoweredBy{
  width:0 !important;
  max-width:0 !important;
  min-width:0 !important;
  height:40px !important;

  flex:0 0 0 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:9px !important;

  margin:0 !important;
  padding:0 !important;
  overflow:hidden !important;

  color:rgba(255,255,255,.72) !important;
  font-size:10px !important;
  font-weight:700 !important;
  line-height:1 !important;
  letter-spacing:.3px !important;
  text-transform:none !important;
  white-space:nowrap !important;

  opacity:0 !important;
  visibility:hidden !important;
  transform:translateX(-20px) scale(.96) !important;

  transition:
    width .62s cubic-bezier(.22,.78,.25,1) .12s,
    max-width .62s cubic-bezier(.22,.78,.25,1) .12s,
    flex-basis .62s cubic-bezier(.22,.78,.25,1) .12s,
    opacity .45s ease .28s,
    transform .58s cubic-bezier(.22,.78,.25,1) .2s,
    visibility 0s linear .12s !important;
}

.d1666-hero #d1666SmartIntro.is-powered #d1666PoweredBy{
  width:190px !important;
  max-width:190px !important;
  flex-basis:190px !important;

  opacity:1 !important;
  visibility:visible !important;
  transform:translateX(0) scale(1) !important;
}

.d1666-hero #d1666PoweredBy .d1666-powered-logo{
  position:relative !important;

  width:108px !important;
  max-width:108px !important;
  height:40px !important;
  max-height:40px !important;
  flex:0 0 108px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  margin:0 !important;
  padding:6px 8px !important;
  overflow:hidden !important;

  border-radius:9px !important;
  background:#fff !important;
  box-shadow:0 8px 18px rgba(85,0,10,.18) !important;
}

.d1666-hero #d1666PoweredBy .d1666-powered-logo::after{
  content:"";
  position:absolute;
  top:-20%;
  bottom:-20%;
  left:-55%;
  width:34%;
  opacity:0;
  transform:skewX(-18deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.95),transparent);
}

.d1666-hero #d1666SmartIntro.is-powered .d1666-powered-logo::after{
  animation:d1666LogoShine .85s ease .7s 1;
}

.d1666-hero #d1666PoweredBy .d1666-powered-logo img{
  width:92px !important;
  max-width:92px !important;
  height:28px !important;
  max-height:28px !important;

  display:block !important;
  margin:0 !important;
  padding:0 !important;

  object-fit:contain !important;
  object-position:center !important;
}

@keyframes d1666TypingPulse{
  0%,100%{transform:scale(1);opacity:1}
  50%{transform:scale(.72);opacity:.58}
}

@keyframes d1666LogoShine{
  0%{left:-55%;opacity:0}
  20%{opacity:.8}
  100%{left:125%;opacity:0}
}

@media(max-width:760px){
  .d1666-hero #d1666SmartIntro,
  .d1666-hero #d1666SmartIntro.is-powered{
    width:100% !important;
  }
}

@media(prefers-reduced-motion:reduce){
  .d1666-hero #d1666SmartIntro,
  .d1666-hero #d1666SmartIntro *,
  .d1666-hero #d1666SmartIntro::before,
  .d1666-hero #d1666SmartIntro::after{
    animation:none !important;
    transition:none !important;
  }
}

/* =====================================================
   1666 DESKTOP PILLARS — FINAL FIX
   Add this block at the END of the active desktop CSS.
===================================================== */
.d1666-hero .d1666-pillars{
  width:100% !important;
  max-width:720px !important;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
  margin:48px 0 0 !important;
  padding:0 !important;
  border:0 !important;
}

.d1666-hero .d1666-pillars .d1666-pillar,
.d1666-hero .d1666-pillars .d1666-pillar + .d1666-pillar{
  position:relative !important;
  min-width:0 !important;
  min-height:124px !important;
  display:flex !important;
  align-items:center !important;
  gap:15px !important;
  padding:22px 18px !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:17px !important;
  background:linear-gradient(145deg,rgba(255,255,255,.15),rgba(93,0,15,.2)) !important;
  box-shadow:0 16px 30px rgba(82,0,13,.2),inset 0 1px 0 rgba(255,255,255,.15) !important;
  backdrop-filter:blur(14px) saturate(120%) !important;
  -webkit-backdrop-filter:blur(14px) saturate(120%) !important;
  transition:transform .35s ease,border-color .35s ease,background .35s ease,box-shadow .35s ease !important;
}

.d1666-hero .d1666-pillars .d1666-pillar::before{
  content:"" !important;
  position:absolute !important;
  top:0 !important;
  left:18px !important;
  right:18px !important;
  height:3px !important;
  border-radius:0 0 999px 999px !important;
  background:linear-gradient(90deg,transparent,#f5c746,#ff9a3d,transparent) !important;
}

.d1666-hero .d1666-pillars .d1666-pillar::after{
  content:"" !important;
  position:absolute !important;
  right:-48px !important;
  bottom:-55px !important;
  width:95px !important;
  height:95px !important;
  border-radius:50% !important;
  background:rgba(255,210,81,.17) !important;
  pointer-events:none !important;
}

.d1666-hero .d1666-pillars .d1666-pillar > span{
  position:relative !important;
  z-index:2 !important;
  width:42px !important;
  height:42px !important;
  flex:0 0 42px !important;
  display:grid !important;
  place-items:center !important;
  margin:0 !important;
  border:1px solid rgba(255,229,140,.48) !important;
  border-radius:12px !important;
  color:#fff4c8 !important;
  background:linear-gradient(145deg,rgba(245,199,70,.28),rgba(243,107,34,.14)) !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.2),0 8px 18px rgba(92,0,13,.16) !important;
  font-size:13px !important;
  font-weight:900 !important;
  line-height:1 !important;
  letter-spacing:.5px !important;
}

.d1666-hero .d1666-pillars .d1666-pillar > div{
  position:relative !important;
  z-index:2 !important;
  min-width:0 !important;
}

.d1666-hero .d1666-pillars .d1666-pillar b{
  display:block !important;
  margin:0 0 7px !important;
  color:#fff !important;
  font-size:20px !important;
  font-weight:850 !important;
  line-height:1.1 !important;
  letter-spacing:-.25px !important;
}

.d1666-hero .d1666-pillars .d1666-pillar small{
  display:block !important;
  color:rgba(255,255,255,.7) !important;
  font-size:13px !important;
  font-weight:500 !important;
  line-height:1.35 !important;
  white-space:nowrap !important;
}

.d1666-hero .d1666-pillars .d1666-pillar:hover{
  transform:translateY(-7px) !important;
  border-color:rgba(255,229,140,.5) !important;
  background:linear-gradient(145deg,rgba(255,255,255,.2),rgba(93,0,15,.24)) !important;
  box-shadow:0 24px 42px rgba(82,0,13,.27),inset 0 1px 0 rgba(255,255,255,.2) !important;
}





/* =====================================================
   GLOBAL REACH — SECTION BASE
===================================================== */
.d1666-reach-v3,
.d1666-reach-v3 *{
  box-sizing:border-box;
}

.d1666-reach-v3{
  position:relative;
  width:100%;
  padding:92px 0 110px;
  overflow:hidden;
  isolation:isolate;
  color:#1c1d22;
  background:
    linear-gradient(rgba(153,0,20,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(153,0,20,.035) 1px,transparent 1px),
    linear-gradient(180deg,#fff 0%,#fff9f7 55%,#fff 100%);
  background-size:76px 76px,76px 76px,auto;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-reach-v3::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(88%,1180px);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(201,0,22,.22),transparent);
}

.d1666-reach-v3 .d1666-reach-container{
  position:relative;
  z-index:2;
  width:min(1440px,calc(100% - 80px));
  margin-inline:auto;
}

.d1666-reach-v3 .d1666-reach-glow{
  position:absolute;
  z-index:-1;
  border-radius:50%;
  filter:blur(8px);
  pointer-events:none;
}

.d1666-reach-v3 .d1666-reach-glow-one{
  width:460px;
  height:460px;
  top:-300px;
  left:-210px;
  background:rgba(201,0,22,.07);
}

.d1666-reach-v3 .d1666-reach-glow-two{
  width:420px;
  height:420px;
  right:-250px;
  bottom:-280px;
  background:rgba(243,107,34,.08);
}

/* =====================================================
   LIGHT SECTION HEADING
===================================================== */
.d1666-reach-v3 .d1666-reach-heading{
  position:relative;
  inset:auto;
  width:100%;
  max-width:990px;
  height:auto;
  min-height:0;
  display:block;
  margin:0 auto 58px;
  padding:0;
  overflow:visible;
  border:0;
  border-radius:0;
  color:inherit;
  background:transparent;
  box-shadow:none;
  text-align:center;
  transform:none;
}

.d1666-reach-v3 .d1666-reach-heading::before,
.d1666-reach-v3 .d1666-reach-heading::after{
  content:none;
  display:none;
}

.d1666-reach-v3 .d1666-reach-title-panel{
  position:relative;
  width:100%;
  height:auto;
  margin:0;
  padding:40px 52px 38px;
  overflow:hidden;
  isolation:isolate;
  border:1px solid rgba(201,0,22,.12);
  border-radius:30px;
  background:
    radial-gradient(circle at 10% 17%,rgba(245,199,70,.18),transparent 25%),
    radial-gradient(circle at 92% 84%,rgba(243,107,34,.12),transparent 28%),
    linear-gradient(135deg,rgba(255,255,255,.99),rgba(255,247,244,.97));
  box-shadow:0 24px 60px rgba(92,0,14,.09),inset 0 1px 0 #fff;
  transform:none;
}

.d1666-reach-v3 .d1666-reach-title-panel::before{
  content:"";
  position:absolute;
  z-index:-1;
  left:9%;
  right:9%;
  top:0;
  height:3px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,transparent,#c90016 28%,#f36b22 70%,transparent);
  box-shadow:0 4px 18px rgba(201,0,22,.2);
}

.d1666-reach-v3 .d1666-reach-title-panel::after{
  content:"";
  position:absolute;
  z-index:-1;
  width:270px;
  height:270px;
  right:-132px;
  top:-158px;
  border:1px solid rgba(201,0,22,.08);
  border-radius:50%;
  box-shadow:0 0 0 32px rgba(243,107,34,.025),0 0 0 64px rgba(201,0,22,.018);
}

.d1666-reach-v3 .d1666-reach-kicker{
  position:relative;
  z-index:2;
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
  gap:11px;
  margin:0 auto 18px;
  padding:8px 14px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:999px;
  color:#a40017;
  background:rgba(255,255,255,.78);
  box-shadow:0 8px 22px rgba(91,0,13,.055);
  font-size:11px;
  font-weight:850;
  letter-spacing:2px;
  text-transform:uppercase;
}

.d1666-reach-v3 .d1666-reach-kicker > span{
  width:8px;
  height:8px;
  flex:0 0 8px;
  border-radius:50%;
  background:#c90016;
  box-shadow:0 0 0 5px rgba(201,0,22,.08),0 0 16px rgba(243,107,34,.28);
}

.d1666-reach-v3 .d1666-reach-heading h2{
  position:relative;
  z-index:2;
  max-width:900px;
  margin:0 auto;
  color:#1d1e23;
  font-size:clamp(50px,5vw,74px);
  font-weight:900;
  line-height:1.02;
  letter-spacing:-4px;
  text-wrap:balance;
}

.d1666-reach-v3 .d1666-reach-heading h2 span{
  color:transparent;
  background:linear-gradient(90deg,#ba0019 0%,#db1823 45%,#f36b22 100%);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-reach-v3 .d1666-reach-heading > p{
  position:relative;
  inset:auto;
  width:auto;
  max-width:720px;
  height:auto;
  display:block;
  margin:24px auto 0;
  padding:0;
  color:#707178;
  font-size:16px;
  font-weight:400;
  line-height:1.8;
  opacity:1;
  transform:none;
}

/* =====================================================
   NETWORK BOARD
===================================================== */
.d1666-reach-v3 .d1666-reach-board{
  position:relative;
  inset:auto;
  width:100%;
  max-width:none;
  display:grid;
  grid-template-columns:minmax(280px,1fr) minmax(380px,440px) minmax(280px,1fr);
  align-items:center;
  gap:40px;
  margin:0;
  padding:0;
  transform:none;
}

.d1666-reach-v3 .d1666-reach-stack{
  position:relative;
  z-index:3;
  display:grid;
  gap:24px;
}

/* =====================================================
   MARKET CARDS
===================================================== */
.d1666-reach-v3 .d1666-region-card{
  position:relative;
  min-width:0;
  min-height:132px;
  display:grid;
  grid-template-columns:38px 66px minmax(0,1fr) 38px;
  align-items:center;
  gap:15px;
  padding:20px 20px 20px 18px;
  overflow:hidden;
  border:1px solid rgba(120,0,16,.1);
  border-radius:20px;
  color:#1c1d22;
  background:rgba(255,255,255,.9);
  box-shadow:0 18px 44px rgba(77,0,11,.075),inset 0 1px 0 #fff;
  backdrop-filter:blur(15px) saturate(125%);
  -webkit-backdrop-filter:blur(15px) saturate(125%);
  text-decoration:none;
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease,background .35s ease;
}

.d1666-reach-v3 .d1666-region-card::before{
  content:"";
  position:absolute;
  left:0;
  top:18px;
  bottom:18px;
  width:3px;
  border-radius:0 999px 999px 0;
  background:linear-gradient(#c90016,#f36b22);
  opacity:.8;
}

.d1666-reach-v3 .d1666-region-number{
  color:#bd0019;
  font-size:11px;
  font-weight:900;
  letter-spacing:1px;
}

.d1666-reach-v3 .d1666-region-icon{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  padding:12px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:18px;
  background:linear-gradient(145deg,#fff,#fff3ef);
  box-shadow:0 12px 25px rgba(88,0,13,.08);
  transition:transform .35s ease,box-shadow .35s ease;
}

.d1666-reach-v3 .d1666-region-icon img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.d1666-reach-v3 .d1666-region-copy{
  min-width:0;
}

.d1666-reach-v3 .d1666-region-copy b,
.d1666-reach-v3 .d1666-region-copy small{
  display:block;
}

.d1666-reach-v3 .d1666-region-copy b{
  margin-bottom:7px;
  color:#202126;
  font-size:20px;
  font-weight:850;
  line-height:1.1;
  letter-spacing:-.35px;
}

.d1666-reach-v3 .d1666-region-copy small{
  color:#7b7c82;
  font-size:12px;
  font-weight:550;
  line-height:1.35;
}

.d1666-reach-v3 .d1666-region-arrow{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(201,0,22,.12);
  border-radius:50%;
  color:#b00018;
  background:#fff7f4;
  transition:transform .35s ease,color .35s ease,background .35s ease;
}

.d1666-reach-v3 .d1666-region-arrow svg{
  width:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-reach-v3 .d1666-region-card:hover{
  transform:translateY(-7px);
  border-color:rgba(201,0,22,.22);
  background:#fff;
  box-shadow:0 26px 58px rgba(77,0,11,.13),inset 0 1px 0 #fff;
}

.d1666-reach-v3 .d1666-region-card:hover .d1666-region-icon{
  transform:translateY(-3px) rotate(-3deg);
  box-shadow:0 17px 32px rgba(88,0,13,.13);
}

.d1666-reach-v3 .d1666-region-card:hover .d1666-region-arrow{
  transform:translateX(4px);
  color:#fff;
  background:linear-gradient(135deg,#bc0019,#f36b22);
}

.d1666-reach-v3 .d1666-region-card.is-highlighted{
  border-color:rgba(230,153,32,.32);
  background:linear-gradient(145deg,#fff,#fff9e9);
}

.d1666-reach-v3 .d1666-region-card.is-highlighted::before{
  background:linear-gradient(#f5c746,#f36b22);
}

/* =====================================================
   ANIMATED EARTH
===================================================== */
.d1666-reach-v3 .d1666-reach-core{
  position:relative;
  width:100%;
  aspect-ratio:1;
  display:grid;
  place-items:center;
}

.d1666-reach-v3 .d1666-reach-core::before{
  content:"";
  position:absolute;
  inset:7%;
  z-index:-1;
  border-radius:50%;
  background:radial-gradient(circle,rgba(243,107,34,.15),rgba(201,0,22,.065) 48%,transparent 72%);
  filter:blur(9px);
  pointer-events:none;
}

.d1666-reach-v3 .d1666-reach-core::after{
  content:none;
  display:none;
}

.d1666-reach-v3 .d1666-reach-earth-stage{
  position:relative;
  width:92%;
  aspect-ratio:1;
  display:grid;
  place-items:center;
  overflow:visible;
  border-radius:50%;
  background:transparent;
  filter:drop-shadow(0 28px 42px rgba(96,0,14,.12));
}

.d1666-reach-v3 .d1666-reach-earth-stage::before{
  content:none;
  display:none;
}

.d1666-reach-v3 #d1666ReachGlobe{
  position:absolute;
  inset:0;
  z-index:1;
  width:100%;
  height:100%;
  display:block;
  background:transparent;
}

.d1666-reach-v3 .d1666-reach-core-label{
  position:relative;
  z-index:3;
  min-width:160px;
  padding:18px 22px;
  text-align:center;
  border:1px solid rgba(255,255,255,.68);
  border-radius:19px;
  color:#fff;
  background:linear-gradient(135deg,rgba(163,0,20,.94),rgba(232,45,32,.91));
  box-shadow:0 20px 42px rgba(111,0,16,.28),inset 0 1px 0 rgba(255,255,255,.25);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.d1666-reach-v3 .d1666-reach-core-label strong,
.d1666-reach-v3 .d1666-reach-core-label span{
  display:block;
}

.d1666-reach-v3 .d1666-reach-core-label strong{
  margin-bottom:5px;
  font-size:31px;
  font-weight:900;
  letter-spacing:1px;
}

.d1666-reach-v3 .d1666-reach-core-label span{
  color:rgba(255,255,255,.75);
  font-size:9px;
  font-weight:750;
  letter-spacing:1.3px;
  text-transform:uppercase;
}

.d1666-reach-v3 .d1666-network-status{
  position:absolute;
  z-index:5;
  left:50%;
  bottom:0;
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 15px;
  transform:translateX(-50%);
  border:1px solid rgba(201,0,22,.1);
  border-radius:999px;
  color:#7c0012;
  background:rgba(255,255,255,.95);
  box-shadow:0 14px 30px rgba(83,0,12,.11);
  font-size:9px;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-reach-v3 .d1666-network-status i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#25b469;
  box-shadow:0 0 0 5px rgba(37,180,105,.1);
  animation:d1666ReachStatusV3 1.8s ease-in-out infinite;
}

@keyframes d1666ReachStatusV3{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.55;transform:scale(.72)}
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1180px){
  .d1666-reach-v3 .d1666-reach-container{
    width:min(100% - 48px,1120px);
  }

  .d1666-reach-v3 .d1666-reach-board{
    grid-template-columns:minmax(250px,1fr) 340px minmax(250px,1fr);
    gap:26px;
  }

  .d1666-reach-v3 .d1666-region-card{
    grid-template-columns:28px 56px minmax(0,1fr) 34px;
    gap:11px;
    min-height:116px;
    padding:17px 14px;
  }

  .d1666-reach-v3 .d1666-region-icon{
    width:56px;
    height:56px;
  }

  .d1666-reach-v3 .d1666-region-copy b{font-size:17px}
  .d1666-reach-v3 .d1666-region-copy small{font-size:10.5px}
}

@media(max-width:920px){
  .d1666-reach-v3{
    padding:76px 0 92px;
  }

  .d1666-reach-v3 .d1666-reach-heading{
    margin-bottom:48px;
  }

  .d1666-reach-v3 .d1666-reach-title-panel{
    padding:34px 30px;
  }

  .d1666-reach-v3 .d1666-reach-heading h2{
    font-size:clamp(43px,7vw,60px);
  }

  .d1666-reach-v3 .d1666-reach-board{
    grid-template-columns:1fr 1fr;
  }

  .d1666-reach-v3 .d1666-reach-core{
    grid-column:1/-1;
    grid-row:1;
    width:min(420px,76vw);
    justify-self:center;
    margin-bottom:22px;
  }

  .d1666-reach-v3 .d1666-reach-stack-left,
  .d1666-reach-v3 .d1666-reach-stack-right{
    grid-row:2;
  }
}

@media(max-width:680px){
  .d1666-reach-v3 .d1666-reach-container{
    width:min(100% - 28px,620px);
  }

  .d1666-reach-v3 .d1666-reach-title-panel{
    padding:30px 18px;
    border-radius:24px;
  }

  .d1666-reach-v3 .d1666-reach-heading h2{
    font-size:clamp(36px,11vw,50px);
    letter-spacing:-2.5px;
  }

  .d1666-reach-v3 .d1666-reach-heading > p{
    font-size:14px;
  }

  .d1666-reach-v3 .d1666-reach-board{
    grid-template-columns:1fr;
  }

  .d1666-reach-v3 .d1666-reach-core{
    grid-column:1;
    grid-row:1;
    width:min(390px,92vw);
  }

  .d1666-reach-v3 .d1666-reach-stack-left{
    grid-column:1;
    grid-row:2;
  }

  .d1666-reach-v3 .d1666-reach-stack-right{
    grid-column:1;
    grid-row:3;
  }
}

@media(prefers-reduced-motion:reduce){
  .d1666-reach-v3 *,
  .d1666-reach-v3 *::before,
  .d1666-reach-v3 *::after{
    animation:none !important;
    transition:none !important;
  }
}

.d1666-reach-v3 .d1666-reach-heading{
  max-width:1200px;
}

.d1666-reach-v3 .d1666-reach-heading h2{
  font-size:clamp(46px,4.4vw,66px);
  letter-spacing:-3.4px;
  white-space:nowrap;
}



.d1666-social-card,
.d1666-social-card:hover,
.d1666-social-card:focus,
.d1666-social-card:active,
.d1666-social-card *{
  text-decoration:none !important;
}




.d1666-resources,
.d1666-resources *{
  box-sizing:border-box;
}

.d1666-resources{
  --r-red:#c90016;
  --r-red-dark:#850014;
  --r-orange:#f36b22;
  --r-gold:#f5c746;
  position:relative;
  width:100%;
  padding:104px 0 116px;
  overflow:hidden;
  isolation:isolate;
  color:#1d1e23;
  background:
    linear-gradient(rgba(145,0,20,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(145,0,20,.03) 1px,transparent 1px),
    linear-gradient(180deg,#fff 0%,#fff8f5 54%,#fff 100%) !important;
  background-size:78px 78px,78px 78px,auto !important;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-resources::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(88%,1180px);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(201,0,22,.22),transparent);
}

.d1666-resources::after{
  content:"";
  position:absolute;
  z-index:-1;
  width:540px;
  height:540px;
  right:-285px;
  bottom:-330px;
  border-radius:50%;
  background:rgba(243,107,34,.075);
  filter:blur(9px);
}

.d1666-resources-wrap{
  position:relative;
  z-index:2;
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
}

/* ================= SECTION INTRO ================= */
.d1666-resources-intro{
  width:100%;
  max-width:900px;
  display:block;
  margin:0 auto 54px;
  padding:0;
  border:0;
  color:inherit;
  background:transparent !important;
  box-shadow:none;
  text-align:center;
}

.d1666-resources-kicker{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  padding:8px 14px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:999px;
  color:#a50018;
  background:rgba(255,255,255,.84);
  box-shadow:0 9px 24px rgba(85,0,13,.055);
  font-size:10px;
  font-weight:850;
  letter-spacing:2px;
  text-transform:uppercase;
}

.d1666-resources-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--r-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.08),0 0 16px rgba(243,107,34,.28);
}

.d1666-resources-intro h2{
  margin:0;
  color:#1d1e23;
  font-size:clamp(48px,4.7vw,68px);
  font-weight:900;
  line-height:1.03;
  letter-spacing:-3.8px;
}

.d1666-resources-intro h2 span{
  color:transparent;
  background:linear-gradient(90deg,#b5001a,#d91525 46%,#f36b22);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-resources-intro p{
  max-width:720px;
  margin:21px auto 0;
  color:#73747b;
  font-size:15px;
  line-height:1.8;
}

/* ================= MAIN LAYOUT ================= */
.d1666-resources-layout{
  display:grid;
  grid-template-columns:minmax(350px,.72fr) minmax(620px,1.28fr);
  align-items:stretch;
  gap:22px;
}

/* ================= DIRECTORIES COLUMN ================= */
.d1666-directory-column{
  display:grid;
  grid-template-rows:repeat(2,minmax(0,1fr));
  gap:18px;
}

.d1666-directory-card,
.d1666-directory-card:hover,
.d1666-directory-card:focus,
.d1666-directory-card:active,
.d1666-directory-card *{
  text-decoration:none !important;
}

.d1666-directory-card{
  --guide-color:#c90016;
  --guide-rgb:201,0,22;
  position:relative;
  min-width:0;
  min-height:260px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
  padding:25px 26px 23px;
  overflow:hidden;
  border:1px solid rgba(var(--guide-rgb),.12);
  border-radius:27px;
  color:#25262b;
  background:rgba(255,255,255,.9);
  box-shadow:0 18px 48px rgba(77,0,11,.075),inset 0 1px 0 #fff;
  backdrop-filter:blur(16px) saturate(120%);
  -webkit-backdrop-filter:blur(16px) saturate(120%);
  transition:transform .38s cubic-bezier(.22,.78,.25,1),border-color .35s ease,box-shadow .35s ease,background .35s ease;
}

.d1666-directory-card::before{
  content:"";
  position:absolute;
  right:-75px;
  top:-75px;
  width:205px;
  height:205px;
  border-radius:50%;
  background:rgba(var(--guide-rgb),.055);
  box-shadow:0 0 0 38px rgba(var(--guide-rgb),.018);
  transition:transform .45s ease,background .35s ease;
}

.d1666-directory-card::after{
  content:"";
  position:absolute;
  left:22px;
  right:22px;
  top:0;
  height:3px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,transparent,var(--guide-color),transparent);
  opacity:.78;
}

.d1666-guide-140{
  --guide-color:#d79b18;
  --guide-rgb:215,155,24;
}

.d1666-guide-099{
  --guide-color:#c90016;
  --guide-rgb:201,0,22;
}

.d1666-directory-badge{
  position:relative;
  z-index:2;
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 11px;
  border:1px solid rgba(var(--guide-rgb),.12);
  border-radius:999px;
  color:var(--guide-color);
  background:rgba(var(--guide-rgb),.065);
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
}

.d1666-directory-badge i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--guide-color);
  box-shadow:0 0 0 4px rgba(var(--guide-rgb),.09);
}

.d1666-directory-logo{
  position:relative;
  z-index:2;
  width:100%;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px 20px;
}

.d1666-directory-logo img{
  width:auto;
  max-width:100%;
  height:auto;
  max-height:82px;
  display:block;
  object-fit:contain;
  filter:drop-shadow(0 10px 18px rgba(74,0,11,.1));
  transition:transform .38s ease,filter .35s ease;
}

.d1666-directory-action{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  padding-top:17px;
  border-top:1px solid rgba(var(--guide-rgb),.09);
}

.d1666-directory-action span{
  color:#303137;
  font-size:12px;
  font-weight:800;
}

.d1666-directory-arrow{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(var(--guide-rgb),.14);
  border-radius:50%;
  color:var(--guide-color);
  background:rgba(var(--guide-rgb),.055);
  transition:transform .35s ease,color .35s ease,background .35s ease;
}

.d1666-directory-arrow svg{
  width:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-directory-card:hover{
  transform:translateY(-7px);
  border-color:rgba(var(--guide-rgb),.26);
  background:linear-gradient(145deg,#fff,rgba(var(--guide-rgb),.04));
  box-shadow:0 29px 65px rgba(77,0,11,.12),inset 0 1px 0 #fff;
}

.d1666-directory-card:hover::before{
  transform:scale(1.18);
  background:rgba(var(--guide-rgb),.085);
}

.d1666-directory-card:hover .d1666-directory-logo img{
  transform:translateY(-3px) scale(1.025);
  filter:drop-shadow(0 15px 23px rgba(74,0,11,.15));
}

.d1666-directory-card:hover .d1666-directory-arrow{
  transform:translateX(4px);
  color:#fff;
  background:var(--guide-color);
}

/* ================= VIDEO BOARD ================= */
.d1666-video-board{
  position:relative;
  min-width:0;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(113,0,16,.11);
  border-radius:30px;
  background:rgba(255,255,255,.86);
  box-shadow:0 30px 80px rgba(78,0,12,.1),inset 0 1px 0 #fff;
  backdrop-filter:blur(18px) saturate(125%);
  -webkit-backdrop-filter:blur(18px) saturate(125%);
}

.d1666-video-board::before{
  content:"";
  position:absolute;
  z-index:4;
  left:10%;
  right:10%;
  top:0;
  height:3px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,transparent,var(--r-red) 30%,var(--r-orange) 70%,transparent);
}

.d1666-video-top{
  min-height:91px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:20px 24px;
  border-bottom:1px solid rgba(113,0,16,.085);
  background:linear-gradient(120deg,rgba(255,255,255,.94),rgba(255,247,244,.76));
}

.d1666-video-brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:14px;
}

.d1666-video-mark{
  width:52px;
  height:52px;
  flex:0 0 52px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,#a90018,#df2426 58%,#f36b22);
  box-shadow:0 12px 27px rgba(151,0,20,.2),inset 0 1px 0 rgba(255,255,255,.25);
  font-size:10px;
  font-weight:900;
  letter-spacing:.6px;
}

.d1666-video-brand-copy b,
.d1666-video-brand-copy small{
  display:block;
}

.d1666-video-brand-copy b{
  margin-bottom:6px;
  color:#25262b;
  font-size:16px;
  font-weight:880;
}

.d1666-video-brand-copy small{
  color:#7d7e85;
  font-size:10.5px;
}

.d1666-video-label{
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:999px;
  color:#a50018;
  background:rgba(201,0,22,.055);
  font-size:9px;
  font-weight:850;
  letter-spacing:.9px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-video-label i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--r-red);
  box-shadow:0 0 0 4px rgba(201,0,22,.09);
}

.d1666-video-frame{
  position:relative;
  width:100%;
  flex:1 1 auto;
  min-height:0;
  padding:18px;
}

.d1666-video-frame-inner{
  position:relative;
  width:100%;
  height:100%;
  min-height:390px;
  overflow:hidden;
  border-radius:22px;
  background:#170307;
  box-shadow:0 18px 42px rgba(54,0,8,.16);
}

.d1666-video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  display:block;
  border:0;
}

.d1666-video-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0 24px 23px;
}

.d1666-video-bottom-copy b,
.d1666-video-bottom-copy small{
  display:block;
}

.d1666-video-bottom-copy b{
  margin-bottom:5px;
  color:#27282d;
  font-size:14px;
  font-weight:850;
}

.d1666-video-bottom-copy small{
  color:#818289;
  font-size:10.5px;
}

.d1666-video-signature{
  color:transparent;
  background:linear-gradient(90deg,#bb001a,#f36b22);
  -webkit-background-clip:text;
  background-clip:text;
  font-size:12px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
  white-space:nowrap;
}

/* ================= RESPONSIVE ================= */
@media(max-width:1120px){
  .d1666-resources-wrap{
    width:min(100% - 48px,1040px);
  }

  .d1666-resources-layout{
    grid-template-columns:1fr;
  }

  .d1666-directory-column{
    grid-template-columns:repeat(2,minmax(0,1fr));
    grid-template-rows:auto;
  }

  .d1666-directory-card{
    min-height:245px;
  }

  .d1666-video-frame-inner{
    aspect-ratio:16/9;
    height:auto;
    min-height:0;
  }
}

@media(max-width:680px){
  .d1666-resources{
    padding:78px 0 90px;
  }

  .d1666-resources-wrap{
    width:min(100% - 28px,620px);
  }

  .d1666-resources-intro h2{
    font-size:clamp(39px,11vw,52px);
    letter-spacing:-2.6px;
  }

  .d1666-resources-intro p{
    font-size:14px;
  }

  .d1666-directory-column{
    grid-template-columns:1fr;
  }

  .d1666-directory-card{
    min-height:230px;
  }

  .d1666-video-board{
    border-radius:25px;
  }

  .d1666-video-top{
    align-items:flex-start;
    flex-direction:column;
  }

  .d1666-video-frame{
    padding:13px;
  }

  .d1666-video-frame-inner{
    border-radius:17px;
  }

  .d1666-video-bottom{
    align-items:flex-start;
    flex-direction:column;
    padding:5px 18px 20px;
  }
}

@media(prefers-reduced-motion:reduce){
  .d1666-resources *,
  .d1666-resources *::before,
  .d1666-resources *::after{
    animation:none !important;
    transition:none !important;
  }
}


.d1666-social,
.d1666-social *{
  box-sizing:border-box;
}

.d1666-social{
  --s-red:#c90016;
  --s-orange:#f36b22;
  --s-gold:#f5c746;
  position:relative;
  width:100%;
  padding:105px 0 112px;
  overflow:hidden;
  isolation:isolate;
  color:#1d1e23;
  background:
    linear-gradient(rgba(145,0,20,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(145,0,20,.03) 1px,transparent 1px),
    linear-gradient(180deg,#fff 0%,#fff8f5 54%,#fff 100%) !important;
  background-size:78px 78px,78px 78px,auto !important;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-social::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(88%,1180px);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(201,0,22,.22),transparent);
}

.d1666-social::after{
  content:"";
  position:absolute;
  z-index:-1;
  left:-270px;
  bottom:-340px;
  width:560px;
  height:560px;
  border-radius:50%;
  background:rgba(201,0,22,.075);
  filter:blur(9px);
}

.d1666-social-wrap{
  position:relative;
  z-index:2;
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(380px,.78fr) minmax(620px,1.22fr);
  align-items:center;
  gap:78px;
}

/* ================= INTRO ================= */
.d1666-social-intro{
  position:relative;
  width:100%;
  max-width:560px;
  display:block;
  margin:0;
  padding:0;
  border:0;
  color:inherit;
  background:transparent !important;
  box-shadow:none;
}

.d1666-social-kicker{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  padding:8px 14px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:999px;
  color:#a50018;
  background:rgba(255,255,255,.84);
  box-shadow:0 9px 24px rgba(85,0,13,.055);
  font-size:10px;
  font-weight:850;
  letter-spacing:2px;
  text-transform:uppercase;
}

.d1666-social-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--s-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.08),0 0 16px rgba(243,107,34,.28);
}

.d1666-social-intro h2{
  margin:0;
  color:#1d1e23;
  font-size:clamp(51px,4.8vw,72px);
  font-weight:900;
  line-height:1.02;
  letter-spacing:-4px;
}

.d1666-social-intro h2 span{
  color:transparent;
  background:linear-gradient(90deg,#b5001a,#d91525 46%,#f36b22);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-social-intro p{
  max-width:520px;
  margin:23px 0 0;
  color:#73747b;
  font-size:15px;
  line-height:1.85;
}

.d1666-social-live{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
  gap:13px;
  margin-top:31px;
  padding:13px 16px;
  border:1px solid rgba(201,0,22,.09);
  border-radius:15px;
  color:#3b3c42;
  background:rgba(255,255,255,.8);
  box-shadow:0 13px 32px rgba(79,0,12,.065);
  font-size:11px;
  font-weight:750;
}

.d1666-social-live > span{
  position:relative;
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:rgba(37,180,105,.085);
}

.d1666-social-live > span::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:#25b469;
  box-shadow:0 0 0 5px rgba(37,180,105,.1);
  animation:d1666SocialPulse 1.8s ease-in-out infinite;
}

/* ================= SOCIAL BOARD ================= */
.d1666-social-board{
  position:relative;
  padding:20px;
  overflow:hidden;
  border:1px solid rgba(113,0,16,.11);
  border-radius:31px;
  background:rgba(255,255,255,.76);
  box-shadow:0 30px 80px rgba(78,0,12,.1),inset 0 1px 0 #fff;
  backdrop-filter:blur(18px) saturate(125%);
  -webkit-backdrop-filter:blur(18px) saturate(125%);
}

.d1666-social-board::before{
  content:"";
  position:absolute;
  z-index:3;
  left:12%;
  right:12%;
  top:0;
  height:3px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,transparent,var(--s-red) 30%,var(--s-orange) 70%,transparent);
}

.d1666-social-board::after{
  content:"@";
  position:absolute;
  right:-34px;
  bottom:-94px;
  color:rgba(201,0,22,.025);
  font-size:300px;
  font-weight:950;
  line-height:1;
  pointer-events:none;
}

.d1666-social-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

/* ================= PLATFORM CARD ================= */
.d1666-social-card{
  --platform:#c90016;
  --platform-rgb:201,0,22;
  position:relative;
  min-width:0;
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:25px;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(var(--platform-rgb),.1);
  border-radius:22px;
  color:#24252a;
  background:rgba(255,255,255,.91);
  box-shadow:0 14px 34px rgba(72,0,11,.055),inset 0 1px 0 #fff;
  text-decoration:none;
  transition:transform .38s cubic-bezier(.22,.78,.25,1),border-color .35s ease,box-shadow .35s ease,background .35s ease;
}

.d1666-social-card::before{
  content:"";
  position:absolute;
  right:-55px;
  top:-55px;
  width:145px;
  height:145px;
  border-radius:50%;
  background:rgba(var(--platform-rgb),.055);
  transition:transform .45s ease,background .35s ease;
}

.d1666-social-card-top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.d1666-social-icon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  padding:12px;
  border:1px solid rgba(var(--platform-rgb),.12);
  border-radius:17px;
  background:linear-gradient(145deg,#fff,rgba(var(--platform-rgb),.065));
  box-shadow:0 11px 25px rgba(var(--platform-rgb),.085);
  transition:transform .35s ease,box-shadow .35s ease;
}

.d1666-social-icon img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.d1666-social-arrow{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(var(--platform-rgb),.14);
  border-radius:50%;
  color:var(--platform);
  background:rgba(var(--platform-rgb),.05);
  transition:transform .35s ease,color .35s ease,background .35s ease;
}

.d1666-social-arrow svg{
  width:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-social-card-copy{
  position:relative;
  z-index:2;
}

.d1666-social-card-copy small,
.d1666-social-card-copy b,
.d1666-social-card-copy span{
  display:block;
}

.d1666-social-card-copy small{
  margin-bottom:7px;
  color:var(--platform);
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
}

.d1666-social-card-copy b{
  margin-bottom:6px;
  color:#232429;
  font-size:20px;
  font-weight:880;
  line-height:1.1;
  letter-spacing:-.35px;
}

.d1666-social-card-copy span{
  color:#818289;
  font-size:11.5px;
  font-weight:520;
}

.d1666-social-card:hover{
  transform:translateY(-7px);
  border-color:rgba(var(--platform-rgb),.23);
  background:linear-gradient(145deg,#fff,rgba(var(--platform-rgb),.04));
  box-shadow:0 25px 54px rgba(72,0,11,.11),inset 0 1px 0 #fff;
}

.d1666-social-card:hover::before{
  transform:scale(1.25);
  background:rgba(var(--platform-rgb),.085);
}

.d1666-social-card:hover .d1666-social-icon{
  transform:translateY(-3px) rotate(-4deg);
  box-shadow:0 17px 32px rgba(var(--platform-rgb),.14);
}

.d1666-social-card:hover .d1666-social-arrow{
  transform:translateX(4px);
  color:#fff;
  background:var(--platform);
}

/* Platform colors */
.d1666-social-linkedin{
  --platform:#0a66c2;
  --platform-rgb:10,102,194;
}

.d1666-social-facebook{
  --platform:#1877f2;
  --platform-rgb:24,119,242;
}

.d1666-social-tiktok{
  --platform:#e73555;
  --platform-rgb:231,53,85;
}

.d1666-social-youtube{
  --platform:#ff0000;
  --platform-rgb:255,0,0;
}

@keyframes d1666SocialPulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.55;transform:scale(.72)}
}

@media(max-width:1120px){
  .d1666-social-wrap{
    width:min(100% - 48px,1040px);
    grid-template-columns:1fr;
    gap:48px;
  }

  .d1666-social-intro{
    max-width:820px;
    margin-inline:auto;
    text-align:center;
  }

  .d1666-social-intro p{
    margin-inline:auto;
  }

  .d1666-social-live{
    margin-inline:auto;
  }
}

@media(max-width:680px){
  .d1666-social{
    padding:78px 0 90px;
  }

  .d1666-social-wrap{
    width:min(100% - 28px,620px);
  }

  .d1666-social-intro h2{
    font-size:clamp(40px,12vw,54px);
    letter-spacing:-2.7px;
  }

  .d1666-social-intro p{
    font-size:14px;
  }

  .d1666-social-board{
    padding:14px;
    border-radius:25px;
  }

  .d1666-social-grid{
    grid-template-columns:1fr;
  }

  .d1666-social-card{
    min-height:172px;
  }
}

@media(prefers-reduced-motion:reduce){
  .d1666-social *,
  .d1666-social *::before,
  .d1666-social *::after{
    animation:none !important;
    transition:none !important;
  }
}


/* =====================================================
   1666 MODERN DESKTOP FOOTER
===================================================== */
.d1666-footer,
.d1666-footer *{
  box-sizing:border-box;
}

.d1666-footer{
  position:relative;
  width:100%;
  padding:34px 0;
  overflow:hidden;
  color:#26272c;
  background:
    linear-gradient(rgba(145,0,20,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(145,0,20,.025) 1px,transparent 1px),
    linear-gradient(135deg,#fff,#fff7f4);
  background-size:64px 64px,64px 64px,auto;
  border-top:1px solid rgba(201,0,22,.1);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(760px,70%);
  height:3px;
  transform:translateX(-50%);
  border-radius:0 0 999px 999px;
  background:linear-gradient(
    90deg,
    transparent,
    #c90016 30%,
    #f36b22 70%,
    transparent
  );
}

.d1666-footer-inner{
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:35px;
}

/* Copyright */
.d1666-footer-copy b,
.d1666-footer-copy span,
.d1666-footer-tagline b,
.d1666-footer-tagline span{
  display:block;
}

.d1666-footer-copy b{
  margin-bottom:6px;
  color:#292a2f;
  font-size:13px;
  font-weight:850;
}

.d1666-footer-copy span{
  color:#83848a;
  font-size:10px;
}

/* Powered by */
.d1666-footer-powered{
  min-width:245px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:12px 20px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:17px;
  background:rgba(255,255,255,.9);
  box-shadow:
    0 14px 34px rgba(78,0,12,.08),
    inset 0 1px 0 #fff;
}

.d166-powered-label,
.d1666-powered-label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8f0015;
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-powered-label i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#c90016;
  box-shadow:0 0 0 5px rgba(201,0,22,.08);
}

.d1666-footer-powered a{
  display:flex;
  align-items:center;
  text-decoration:none !important;
}

.d1666-footer-powered img{
  width:auto;
  height:35px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-footer-powered a:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.13));
}

/* Tagline */
.d1666-footer-tagline{
  text-align:right;
}

.d1666-footer-tagline b{
  margin-bottom:6px;
  color:transparent;
  background:linear-gradient(90deg,#b5001a,#f36b22);
  -webkit-background-clip:text;
  background-clip:text;
  font-size:13px;
  font-weight:900;
}

.d1666-footer-tagline span{
  color:#83848a;
  font-size:10px;
  letter-spacing:.2px;
}

/* Responsive */
@media(max-width:760px){
  .d1666-footer{
    padding:30px 0;
  }

  .d1666-footer-inner{
    width:min(100% - 28px,600px);
    grid-template-columns:1fr;
    justify-items:center;
    gap:20px;
    text-align:center;
  }

  .d1666-footer-tagline{
    text-align:center;
  }
}

.d1666-footer{
  height:auto !important;
  min-height:95px !important;
  max-height:none !important;
  padding:18px 0 !important;
  overflow:hidden !important;
}

.d1666-footer-inner{
  min-height:18px !important;
  align-items:center !important;
}

.d1666-footer-copy,
.d1666-footer-powered,
.d1666-footer-tagline{
  position:relative !important;
  top:auto !important;
  bottom:auto !important;
  margin:0 !important;
  transform:none !important;
}

 
/* ================= BACK TO TOP ================= */
.d1666-back-top{
  --scroll-progress:0deg;

  position:fixed !important;
  right:28px !important;
  bottom:28px !important;
  z-index:9998 !important;

  width:56px !important;
  height:56px !important;
  display:grid !important;
  place-items:center !important;
  padding:0 !important;

  border:0 !important;
  border-radius:50% !important;
  background:conic-gradient(
    #c90016 var(--scroll-progress),
    rgba(201,0,22,.1) 0
  ) !important;

  box-shadow:0 15px 35px rgba(103,0,15,.2) !important;
  cursor:pointer !important;

  opacity:0;
  visibility:hidden;
  transform:translateY(18px) scale(.85);

  transition:
    opacity .3s ease,
    visibility .3s ease,
    transform .35s ease !important;
}

.d1666-back-top::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:linear-gradient(145deg,#fff,#fff3ef);
}

.d1666-back-top span{
  position:relative;
  z-index:2;

  width:42px;
  height:42px;
  display:grid;
  place-items:center;

  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#ad0018,#dc2026 60%,#f36b22);
}

.d1666-back-top svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .3s ease;
}

.d1666-back-top.is-visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

.d1666-back-top:hover{
  transform:translateY(-5px) scale(1.04) !important;
}

.d1666-back-top:hover svg{
  transform:translateY(-2px);
}

@media(max-width:680px){
  .d1666-back-top{
    right:17px !important;
    bottom:20px !important;
    width:50px !important;
    height:50px !important;
  }

  .d1666-back-top span{
    width:37px;
    height:37px;
  }
}


/* ============================
   BACK TO TOP INSIDE FOOTER
============================ */
.d1666-footer-inner{
  grid-template-columns:1fr auto 1fr 56px !important;
}

.d1666-footer .d1666-back-top{
  position:relative !important;
  right:auto !important;
  bottom:auto !important;
  top:auto !important;
  left:auto !important;

  align-self:center !important;
  justify-self:end !important;

  margin:0 !important;

  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
}

.d1666-footer .d1666-back-top:hover{
  transform:translateY(-5px) scale(1.04) !important;
}

@media(max-width:900px){
  .d1666-footer-inner{
    grid-template-columns:1fr auto 1fr 52px !important;
    gap:20px !important;
  }
}

@media(max-width:760px){
  .d1666-footer-inner{
    grid-template-columns:1fr !important;
  }

  .d1666-footer .d1666-back-top{
    justify-self:center !important;
    margin-top:4px !important;
  }
}


.d1666-channels,.d1666-channels *{box-sizing:border-box}

.d1666-channels{
  position:relative;
  padding:88px 0 100px;
  overflow:hidden;
  color:#202126;
  background:linear-gradient(180deg,#fff,#fff8f5 55%,#fff);
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-channels::before{
  content:"";
  position:absolute;
  top:0;left:50%;
  width:min(88%,1180px);height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(201,0,22,.2),transparent);
}

.d1666-channels-wrap{width:min(1280px,calc(100% - 80px));margin:auto}

.d1666-channels-heading{
  max-width:850px;
  margin:0 auto 46px;
  text-align:center;
  background:transparent!important;
}

.d1666-channels-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:16px;
  color:#16884a;
  font-size:10px;
  font-weight:850;
  letter-spacing:1.8px;
}

.d1666-channels-kicker i{
  width:8px;height:8px;
  border-radius:50%;
  background:#25b469;
  box-shadow:0 0 0 5px rgba(37,180,105,.1);
}

.d1666-channels-heading h2{
  margin:0;
  color:#1d1e23;
  font-size:clamp(44px,4.2vw,62px);
  font-weight:900;
  line-height:1.04;
  letter-spacing:-3.3px;
}

.d1666-channels-heading h2 span{
  color:transparent;
  background:linear-gradient(90deg,#16914d,#25b469);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-channels-heading p{
  max-width:680px;
  margin:19px auto 0;
  color:#74757c;
  font-size:14px;
  line-height:1.75;
}

.d1666-channels-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.d1666-channels-grid::before{
  content:"";
  position:absolute;
  left:48%;right:48%;top:50%;
  height:1px;
  background:#25b469;
}

.d1666-channel-card,.d1666-channel-card:hover,.d1666-channel-card *{text-decoration:none!important}

.d1666-channel-card{
  position:relative;
  min-height:190px;
  display:grid;
  grid-template-columns:74px minmax(0,1fr) auto;
  align-items:center;
  gap:20px;
  padding:28px;
  overflow:hidden;
  border:1px solid rgba(37,180,105,.16);
  border-radius:25px;
  color:#222329;
  background:rgba(255,255,255,.94);
  box-shadow:0 20px 52px rgba(32,88,55,.09),inset 0 1px 0 #fff;
  transition:transform .35s ease,border-color .35s ease,box-shadow .35s ease;
}

.d1666-channel-card::before{
  content:"";
  position:absolute;
  left:20px;right:20px;top:0;
  height:3px;
  border-radius:0 0 99px 99px;
  background:linear-gradient(90deg,transparent,#25b469,transparent);
}

.d1666-channel-street::before{background:linear-gradient(90deg,transparent,#f36b22,transparent)}

.d1666-channel-icon{
  position:relative;
  z-index:2;
  width:74px;height:74px;
  display:grid;
  place-items:center;
  padding:16px;
  border:1px solid rgba(37,180,105,.15);
  border-radius:21px;
  background:rgba(37,180,105,.075);
  transition:transform .35s ease;
}

.d1666-channel-icon img{width:100%;height:100%;display:block;object-fit:contain}

.d1666-channel-copy{position:relative;z-index:2;min-width:0}
.d1666-channel-copy small,.d1666-channel-copy b,.d1666-channel-copy em{display:block}
.d1666-channel-copy small{margin-bottom:8px;color:#16884a;font-size:9px;font-weight:850;letter-spacing:1px;text-transform:uppercase}
.d1666-channel-copy b{margin-bottom:7px;color:#222329;font-size:22px;font-weight:880;letter-spacing:-.4px}
.d1666-channel-copy em{color:#7d7e85;font-size:12px;font-style:normal;line-height:1.5}

.d1666-channel-action{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  gap:9px;
  padding:11px 14px;
  border-radius:999px;
  color:#fff;
  background:#20a85a;
  font-size:10px;
  font-weight:800;
  white-space:nowrap;
}

.d1666-channel-action svg{width:16px;fill:none;stroke:currentColor;stroke-width:1.8}

.d1666-channel-card:hover{
  transform:translateY(-7px);
  border-color:rgba(37,180,105,.32);
  box-shadow:0 29px 65px rgba(32,88,55,.14),inset 0 1px 0 #fff;
}

.d1666-channel-card:hover .d1666-channel-icon{transform:translateY(-3px) rotate(-3deg)}

@media(max-width:900px){
  .d1666-channels-wrap{width:min(100% - 40px,820px)}
  .d1666-channels-grid{grid-template-columns:1fr}
  .d1666-channels-grid::before{display:none}
}

@media(max-width:600px){
  .d1666-channel-card{grid-template-columns:60px 1fr;padding:22px}
  .d1666-channel-icon{width:60px;height:60px;padding:13px}
  .d1666-channel-action{grid-column:1/-1;width:max-content}
}



.d1666-connect-v2,
.d1666-connect-v2 *{
  box-sizing:border-box;
}

.d1666-connect-v2{
  --c-red:#c90016;
  --c-red-dark:#870014;
  --c-orange:#f36b22;
  --c-gold:#f5c746;
  position:relative;
  width:100%;
  padding:100px 0 116px;
  overflow:hidden;
  isolation:isolate;
  color:#1d1e23;
  background:
    linear-gradient(rgba(145,0,20,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(145,0,20,.03) 1px,transparent 1px),
    linear-gradient(180deg,#fff 0%,#fff9f7 52%,#fff 100%) !important;
  background-size:78px 78px,78px 78px,auto !important;
  font-family:"Inter",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-connect-v2::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(88%,1180px);
  height:1px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,rgba(201,0,22,.22),transparent);
}

.d1666-connect-v2::after{
  content:"";
  position:absolute;
  z-index:-1;
  width:560px;
  height:560px;
  right:-310px;
  top:-330px;
  border-radius:50%;
  background:rgba(243,107,34,.08);
  filter:blur(8px);
}

.d1666-connect-wrap{
  position:relative;
  z-index:2;
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
}

/* ================= INTRO ================= */
.d1666-connect-intro{
  width:100%;
  max-width:880px;
  display:block;
  margin:0 auto 54px;
  padding:0;
  border:0;
  color:inherit;
  background:transparent !important;
  box-shadow:none;
  text-align:center;
}

.d1666-connect-kicker{
  width:max-content;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:17px;
  padding:8px 14px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:999px;
  color:#a50018;
  background:rgba(255,255,255,.84);
  box-shadow:0 9px 24px rgba(85,0,13,.055);
  font-size:10px;
  font-weight:850;
  letter-spacing:2px;
  text-transform:uppercase;
}

.d1666-connect-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--c-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.08),0 0 16px rgba(243,107,34,.28);
}

.d1666-connect-intro h2{
  margin:0;
  color:#1d1e23;
  font-size:clamp(48px,4.7vw,68px);
  font-weight:900;
  line-height:1.04;
  letter-spacing:-3.8px;
}

.d1666-connect-intro h2 span{
  color:transparent;
  background:linear-gradient(90deg,#b5001a,#d91525 46%,#f36b22);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-connect-intro p{
  max-width:720px;
  margin:21px auto 0;
  color:#73747b;
  font-size:15px;
  line-height:1.8;
}

/* ================= MAIN DASHBOARD ================= */
.d1666-connect-board{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(113,0,16,.11);
  border-radius:32px;
  background:rgba(255,255,255,.8);
  box-shadow:0 30px 80px rgba(78,0,12,.1),inset 0 1px 0 #fff;
  backdrop-filter:blur(18px) saturate(125%);
  -webkit-backdrop-filter:blur(18px) saturate(125%);
}

.d1666-connect-board::before{
  content:"";
  position:absolute;
  z-index:3;
  left:8%;
  right:8%;
  top:0;
  height:3px;
  border-radius:0 0 999px 999px;
  background:linear-gradient(90deg,transparent,var(--c-red) 30%,var(--c-orange) 70%,transparent);
}

/* ================= DASHBOARD TOP BAR ================= */
.d1666-connect-board-top{
  min-height:126px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:26px 32px;
  border-bottom:1px solid rgba(112,0,16,.085);
  background:
    radial-gradient(circle at 6% 20%,rgba(245,199,70,.12),transparent 25%),
    linear-gradient(120deg,rgba(255,255,255,.92),rgba(255,247,244,.72));
}

.d1666-connect-brand{
  min-width:0;
  display:flex;
  align-items:center;
  gap:18px;
}

.d1666-connect-brand-number{
  width:86px;
  height:70px;
  flex:0 0 86px;
  display:grid;
  place-items:center;
  border-radius:19px;
  color:#fff;
  background:linear-gradient(135deg,#a90018,#df2426 58%,#f36b22);
  box-shadow:0 16px 34px rgba(151,0,20,.21),inset 0 1px 0 rgba(255,255,255,.25);
  font-size:25px;
  font-weight:950;
  letter-spacing:.5px;
}

.d1666-connect-brand-copy b,
.d1666-connect-brand-copy small{
  display:block;
}

.d1666-connect-brand-copy b{
  margin-bottom:7px;
  color:#222329;
  font-size:19px;
  font-weight:880;
  letter-spacing:-.3px;
}

.d1666-connect-brand-copy small{
  color:#7d7e85;
  font-size:12px;
  line-height:1.5;
}

.d1666-connect-online{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 15px;
  border:1px solid rgba(37,180,105,.13);
  border-radius:999px;
  color:#147b42;
  background:rgba(37,180,105,.075);
  font-size:10px;
  font-weight:850;
  letter-spacing:.8px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-connect-online i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#25b469;
  box-shadow:0 0 0 5px rgba(37,180,105,.1);
  animation:d1666ConnectPulse 1.8s ease-in-out infinite;
}

/* ================= CONTACT TILES ================= */
.d1666-connect-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:1px;
  background:rgba(112,0,16,.085);
}

.d1666-connect-item{
  --item-color:#c90016;
  --item-rgb:201,0,22;
  position:relative;
  min-width:0;
  min-height:184px;
  display:grid;
  grid-template-columns:66px minmax(0,1fr) 38px;
  align-items:center;
  gap:17px;
  padding:30px 28px;
  overflow:hidden;
  color:#232429;
  background:rgba(255,255,255,.94);
  text-decoration:none;
  transition:background .35s ease,box-shadow .35s ease;
}

.d1666-connect-item::before{
  content:"";
  position:absolute;
  left:0;
  top:22px;
  bottom:22px;
  width:3px;
  border-radius:0 999px 999px 0;
  background:var(--item-color);
  opacity:0;
  transform:scaleY(.35);
  transition:opacity .3s ease,transform .35s ease;
}

.d1666-connect-item::after{
  content:attr(data-index);
  position:absolute;
  right:17px;
  bottom:-19px;
  color:rgba(var(--item-rgb),.045);
  font-size:84px;
  font-weight:950;
  line-height:1;
  letter-spacing:-7px;
  pointer-events:none;
  transition:transform .35s ease,color .35s ease;
}

.d1666-connect-icon{
  position:relative;
  z-index:2;
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  padding:14px;
  border:1px solid rgba(var(--item-rgb),.12);
  border-radius:19px;
  background:linear-gradient(145deg,#fff,rgba(var(--item-rgb),.065));
  box-shadow:0 11px 25px rgba(var(--item-rgb),.085);
  transition:transform .35s ease,box-shadow .35s ease;
}

.d1666-connect-icon img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
}

.d1666-connect-copy{
  position:relative;
  z-index:2;
  min-width:0;
}

.d1666-connect-copy b,
.d1666-connect-copy small,
.d1666-connect-copy em{
  display:block;
}

.d1666-connect-copy small{
  margin-bottom:8px;
  color:var(--item-color);
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  line-height:1.3;
  text-transform:uppercase;
}

.d1666-connect-copy b{
  margin-bottom:7px;
  color:#232429;
  font-size:19px;
  font-weight:880;
  line-height:1.12;
  letter-spacing:-.35px;
}

.d1666-connect-copy em{
  color:#818289;
  font-size:11.5px;
  font-style:normal;
  font-weight:520;
}

.d1666-connect-arrow{
  position:relative;
  z-index:3;
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border:1px solid rgba(var(--item-rgb),.14);
  border-radius:50%;
  color:var(--item-color);
  background:rgba(var(--item-rgb),.05);
  transition:transform .35s ease,color .35s ease,background .35s ease;
}

.d1666-connect-arrow svg{
  width:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-connect-item:hover{
  background:linear-gradient(145deg,#fff,rgba(var(--item-rgb),.045));
  box-shadow:inset 0 0 0 1px rgba(var(--item-rgb),.13),0 18px 38px rgba(82,0,13,.07);
}

.d1666-connect-item:hover::before{
  opacity:1;
  transform:scaleY(1);
}

.d1666-connect-item:hover::after{
  color:rgba(var(--item-rgb),.075);
  transform:translateY(-5px);
}

.d1666-connect-item:hover .d1666-connect-icon{
  transform:translateY(-4px) rotate(-3deg);
  box-shadow:0 17px 32px rgba(var(--item-rgb),.14);
}

.d1666-connect-item:hover .d1666-connect-arrow{
  transform:translateX(4px);
  color:#fff;
  background:var(--item-color);
}

/* Individual accent colors */
.d1666-connect-whatsapp,
.d1666-connect-channel{
  --item-color:#20a85a;
  --item-rgb:32,168,90;
}

.d1666-connect-support{
  --item-color:#c90016;
  --item-rgb:201,0,22;
}

.d1666-connect-website{
  --item-color:#e85d1d;
  --item-rgb:232,93,29;
}

.d1666-connect-profile{
  --item-color:#8d1230;
  --item-rgb:141,18,48;
}

.d1666-connect-gallery{
  --item-color:#d99816;
  --item-rgb:217,152,22;
}

@keyframes d1666ConnectPulse{
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.55;transform:scale(.72)}
}

@media(max-width:1120px){
  .d1666-connect-wrap{
    width:min(100% - 48px,1040px);
  }

  .d1666-connect-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:720px){
  .d1666-connect-v2{
    padding:78px 0 90px;
  }

  .d1666-connect-wrap{
    width:min(100% - 28px,620px);
  }

  .d1666-connect-intro h2{
    font-size:clamp(39px,11vw,52px);
    letter-spacing:-2.6px;
  }

  .d1666-connect-intro p{
    font-size:14px;
  }

  .d1666-connect-board{
    border-radius:25px;
  }

  .d1666-connect-board-top{
    min-height:0;
    align-items:flex-start;
    flex-direction:column;
    padding:23px 20px;
  }

  .d1666-connect-grid{
    grid-template-columns:1fr;
  }

  .d1666-connect-item{
    min-height:154px;
    padding:24px 20px;
  }
}

@media(prefers-reduced-motion:reduce){
  .d1666-connect-v2 *,
  .d1666-connect-v2 *::before,
  .d1666-connect-v2 *::after{
    animation:none !important;
    transition:none !important;
  }
}


/* Top Header — Size Update */
.d1666-top-header .d1666-header-container{
  min-height:46px;
  padding-top:8px;
  padding-bottom:8px;
}

.d1666-top-contact,
.d1666-top-side{
  gap:13px;
}

.d1666-top-contact a,
.d1666-follow-label,
.d1666-language{
  font-size:14px;
  font-weight:600;
}

.d1666-top-contact a{
  gap:7px;
}

.d1666-top-contact a > svg{
  width:18px;
  height:18px;
}

.d1666-top-separator{
  height:20px;
}

.d1666-mini-social{
  gap:7px;
}

.d1666-mini-social a{
  width:29px;
  height:29px;
  font-size:13px;
}

.d1666-language{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:6px 10px;
  border-radius:9px;
  color:#ffffff;
  text-decoration:none;
  transition:background-color .25s ease, transform .25s ease;
}

.d1666-language svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-language:hover{
  color:#c90020;
  background:rgba(201,0,32,.08);
  text-decoration:none;
  transform:translateY(-1px);
}

/* Remove underline from Contact Hub cards */
.d1666-connect-item,
.d1666-connect-item:hover,
.d1666-connect-item:focus,
.d1666-connect-item:active,
.d1666-connect-item *{
  text-decoration:none !important;
}


/* Cairo font for Arabic page */
html[lang="ar"] body,
html[lang="ar"] body :where(div, h1, h2, h3, h4, h5, h6, p, a, span, b, small, em, button){
  font-family:"Cairo", sans-serif !important;
}

/* Full Screen Desktop Fix */
html,
body{
  width:100%;
  min-height:100%;
  margin:0 !important;
  padding:0 !important;
  overflow-x:hidden;
}

@media (min-width:1400px){

  .d1666-header-container,
  .d1666-hero-inner,
  .d1666-reach-v3 .d1666-reach-container,
  .d1666-connect-wrap,
  .d1666-social-wrap,
  .d1666-resources-wrap,
  .d1666-channels-wrap,
  .d1666-footer-inner{
    width:min(1680px,calc(100% - 64px)) !important;
  }

  .d1666-main-header{
    height:94px;
  }

  .d1666-brand img{
    height:66px;
  }

  .d1666-hotline-bar img{
    height:54px;
  }

  .d1666-nav{
    gap:clamp(24px,2vw,42px);
  }

  .d1666-nav a{
    font-size:14px;
  }

  .d1666-hero{
    min-height:calc(100vh - 140px);
  }

  .d1666-hero-inner{
    min-height:760px;
    grid-template-columns:minmax(600px,.95fr) minmax(600px,1.05fr);
    gap:70px;
    padding:72px 0 90px;
  }

  .d1666-copy{
    max-width:820px;
  }

  .d1666-copy > .d1666-smart-intro{
    width:min(100%,760px);
    min-height:94px;
  }

  .d1666-copy h1{
    max-width:860px;
    font-size:clamp(70px,5vw,96px);
  }

  html[lang="ar"] .d1666-copy h1{
    letter-spacing:0;
  }

  .d1666-copy > p{
    max-width:760px;
    font-size:19px;
  }

  .d1666-btn{
    min-height:58px;
    padding-inline:27px;
    font-size:16px;
  }

  .d1666-visual{
    width:min(700px,43vw);
  }
}

/* Arabic Social Heading Fix */
html[lang="ar"] .d1666-social-intro{
  max-width:680px;
}

html[lang="ar"] .d1666-social-intro h2{
  font-size:clamp(52px,4vw,66px);
  line-height:1.25;
  letter-spacing:0;
  text-align:right;
}

html[lang="ar"] .d1666-social-intro h2 span{
  display:inline-block;
  white-space:nowrap;
}

@media (min-width:1200px){
  html[lang="ar"] .d1666-social-wrap{
    grid-template-columns:minmax(620px,.95fr) minmax(650px,1.05fr);
    gap:70px;
  }
}














@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap");

.d1666-egypt-clients,
.d1666-egypt-clients *{box-sizing:border-box}

.d1666-egypt-clients{
  --eg-red:#c90020;
  --eg-deep:#770012;
  --eg-orange:#f36b22;
  --eg-gold:#f5c746;
  --eg-ink:#202127;
  --eg-muted:#777981;
  position:relative;
  direction:rtl;
  overflow:hidden;
  color:var(--eg-ink);
  background:
    linear-gradient(rgba(131,0,18,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(131,0,18,.045) 1px,transparent 1px),
    #fcfaf9;
  background-size:78px 78px;
  font-family:"Cairo",sans-serif;
}

.d1666-eg-shell{
  width:min(1680px,calc(100% - 64px));
  margin-inline:auto;
}

/* ================= PAGE HEADER ================= */
.d1666-eg-head-shell{
  width:min(1680px,calc(100% - 64px));
  margin-inline:auto;
}

.d1666-eg-top-header{
  position:relative;
  z-index:30;
  color:#fff;
  background:linear-gradient(90deg,#790011,#a50019);
}

.d1666-eg-top-inner{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.d1666-eg-top-contact,
.d1666-eg-top-side,
.d1666-eg-mini-social{
  display:flex;
  align-items:center;
}

.d1666-eg-top-contact,
.d1666-eg-top-side{gap:15px}

.d1666-eg-top-header a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:700;
  text-decoration:none !important;
  transition:color .2s ease;
}

.d1666-eg-top-header a:hover{color:#fff}

.d1666-eg-top-header svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
}

.d1666-eg-top-separator{
  width:1px;
  height:22px;
  background:rgba(255,255,255,.18);
}

.d1666-eg-follow-label{
  color:rgba(255,255,255,.58);
  font-size:11px;
  font-weight:700;
}

.d1666-eg-mini-social{gap:7px}

.d1666-eg-mini-social a{
  width:29px;
  height:29px;
  justify-content:center;
  border:1px solid rgba(255,255,255,.19);
  border-radius:50%;
  color:#fff;
  font-family:Arial,sans-serif;
  font-size:11px;
}

.d1666-eg-mini-social a:hover{
  border-color:rgba(255,255,255,.5);
  background:rgba(255,255,255,.12);
}

.d1666-eg-language svg{width:18px;height:18px}

.d1666-eg-main-header{
  position:relative;
  z-index:25;
  border-bottom:1px solid rgba(104,0,15,.08);
  background:rgba(255,255,255,.96);
  box-shadow:0 10px 35px rgba(68,0,10,.045);
}

.d1666-eg-main-inner{
  min-height:104px;
  display:grid;
  grid-template-columns:250px minmax(0,1fr) 150px;
  align-items:center;
  gap:34px;
}

.d1666-eg-brand,
.d1666-eg-hotline-bar{display:block;text-decoration:none !important}

.d1666-eg-brand img{
  width:auto !important;
  height:auto !important;
  max-width:230px !important;
  max-height:70px !important;
  display:block;
  object-fit:contain;
}

.d1666-eg-nav{
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:38px;
  align-self:stretch;
}

.d1666-eg-nav a{
  position:relative;
  display:flex;
  align-items:center;
  color:#2d2e34;
  font-size:13px;
  font-weight:800;
  text-decoration:none !important;
  white-space:nowrap;
}

.d1666-eg-nav a::after{
  content:"";
  position:absolute;
  right:50%;
  bottom:0;
  width:0;
  height:3px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(90deg,var(--eg-red),var(--eg-orange));
  transform:translateX(50%);
  transition:width .25s ease;
}

.d1666-eg-nav a:hover,
.d1666-eg-nav a.is-active{color:var(--eg-red)}

.d1666-eg-nav a:hover::after,
.d1666-eg-nav a.is-active::after{width:100%}

.d1666-eg-hotline-bar img{
  width:100% !important;
  height:auto !important;
  max-height:48px !important;
  display:block;
  object-fit:contain;
}

.d1666-eg-breadcrumb-bar{
  border-bottom:1px solid rgba(104,0,15,.07);
  background:#fff;
}

.d1666-eg-breadcrumb{
  min-height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#8a8b91;
  font-size:11px;
  font-weight:700;
}

.d1666-eg-breadcrumb a{
  color:inherit;
  text-decoration:none !important;
  transition:color .2s ease;
}

.d1666-eg-breadcrumb a:hover{color:var(--eg-red)}
.d1666-eg-breadcrumb span{color:var(--eg-red)}

/* ================= HERO ================= */
.d1666-eg-hero{
  position:relative;
  isolation:isolate;
  padding:38px 0 54px;
  overflow:hidden;
  color:#fff;
  background:
    radial-gradient(circle at 15% 15%,rgba(245,199,70,.25),transparent 24%),
    radial-gradient(circle at 92% 85%,rgba(90,0,14,.44),transparent 32%),
    linear-gradient(118deg,#790011 0%,#c90020 48%,#f36b22 100%);
}

.d1666-eg-hero::before,
.d1666-eg-hero::after{
  content:"";
  position:absolute;
  z-index:-1;
  border:1px solid rgba(255,255,255,.11);
  border-radius:50%;
}

.d1666-eg-hero::before{
  width:560px;
  height:560px;
  left:-190px;
  top:-310px;
}

.d1666-eg-hero::after{
  width:360px;
  height:360px;
  right:-160px;
  bottom:-240px;
}

.d1666-eg-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(360px,.75fr);
  align-items:center;
  gap:80px;
}

.d1666-eg-kicker{
  width:max-content;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:19px;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,.2);
  border-radius:999px;
  color:#fff3c6;
  background:rgba(255,255,255,.09);
  font-size:11px;
  font-weight:850;
  letter-spacing:.7px;
}

.d1666-eg-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--eg-gold);
  box-shadow:0 0 0 6px rgba(245,199,70,.13),0 0 18px rgba(245,199,70,.58);
}

.d1666-eg-copy h1{
  max-width:900px;
  margin:0;
  font-size:clamp(50px,5vw,82px);
  font-weight:900;
  line-height:1.18;
  letter-spacing:0;
}

.d1666-eg-copy h1 span{
  display:block;
  color:transparent;
  background:linear-gradient(90deg,#fff0a8,#f5c746);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-eg-copy p{
  max-width:780px;
  margin:22px 0 0;
  color:rgba(255,255,255,.8);
  font-size:17px;
  line-height:1.95;
}

.d1666-eg-egypt-visual{
  position:relative;
  min-height:280px;
  display:grid;
  place-items:center;
  padding:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.2);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.15),rgba(255,255,255,.06));
  box-shadow:0 28px 70px rgba(76,0,12,.25),inset 0 1px 0 rgba(255,255,255,.19);
  backdrop-filter:blur(17px);
}

.d1666-eg-egypt-visual::before,
.d1666-eg-egypt-visual::after{
  content:"";
  position:absolute;
  border:1px solid rgba(255,229,140,.2);
  border-radius:50%;
}

.d1666-eg-egypt-visual::before{
  width:340px;
  height:340px;
}

.d1666-eg-egypt-visual::after{
  width:235px;
  height:235px;
  border-style:dashed;
  animation:d1666EgSpin 20s linear infinite;
}

.d1666-eg-egypt-card{
  position:relative;
  z-index:2;
  min-width:250px;
  display:flex;
  align-items:center;
  gap:17px;
  padding:19px 22px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:22px;
  background:rgba(117,0,17,.33);
  box-shadow:0 18px 40px rgba(77,0,12,.2);
  backdrop-filter:blur(12px);
}

.d1666-eg-egypt-icon{
  width:76px;
  height:76px;
  flex:0 0 76px;
  display:grid;
  place-items:center;
  border-radius:19px;
  background:#fff;
  box-shadow:0 12px 32px rgba(59,0,9,.18);
}

.d1666-eg-egypt-icon img{
  width:auto !important;
  height:auto !important;
  max-width:58px !important;
  max-height:58px !important;
  display:block;
  object-fit:contain;
}

.d1666-eg-egypt-copy{
  display:flex;
  flex-direction:column;
  gap:4px;
  text-align:center;
}

.d1666-eg-egypt-copy strong{
  display:block;
  color:#fff;
  font-size:19px;
  font-weight:850;
}

.d1666-eg-egypt-copy span{
  display:block;
  color:#ffe9a1;
  font-size:11px;
  font-weight:700;
}

.d1666-eg-visual-dot{
  position:absolute;
  z-index:3;
  width:10px;
  height:10px;
  border:2px solid #fff;
  border-radius:50%;
  background:var(--eg-orange);
  box-shadow:0 0 0 6px rgba(255,255,255,.08);
}

.d1666-eg-visual-dot-one{top:31px;right:22%}
.d1666-eg-visual-dot-two{bottom:34px;left:21%}
.d1666-eg-visual-dot-three{top:46%;left:27px;background:var(--eg-gold)}

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

/* ================= DIRECTORY ================= */
.d1666-eg-directory{padding:58px 0 88px}

.d1666-eg-toolbar{
  position:relative;
  z-index:5;
  width:min(100%,820px);
  margin-inline:auto;
  margin-bottom:26px;
  padding:18px;
  border:1px solid rgba(104,0,15,.08);
  border-radius:22px;
  background:rgba(255,255,255,.9);
  box-shadow:0 18px 55px rgba(78,0,12,.075);
  backdrop-filter:blur(14px);
}

.d1666-eg-search{
  position:relative;
  display:flex;
  align-items:center;
}

.d1666-eg-search svg{
  position:absolute;
  right:19px;
  width:20px;
  height:20px;
  fill:none;
  stroke:var(--eg-red);
  stroke-width:1.8;
  pointer-events:none;
}

.d1666-eg-search input{
  width:100%;
  height:54px;
  padding:0 53px 0 20px;
  border:1px solid rgba(104,0,15,.1);
  border-radius:15px;
  outline:none;
  color:var(--eg-ink);
  background:#fcfaf9;
  font:650 14px "Cairo",sans-serif;
  transition:border-color .25s ease,box-shadow .25s ease,background .25s ease;
}

.d1666-eg-search input:focus{
  border-color:rgba(201,0,32,.42);
  background:#fff;
  box-shadow:0 0 0 4px rgba(201,0,32,.07);
}

.d1666-eg-search input::placeholder{color:#9a9ba1}

.d1666-eg-results-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:21px;
  padding-inline:4px;
}

.d1666-eg-results-bar b{
  color:#33343a;
  font-size:14px;
}

.d1666-eg-results-bar span{
  color:var(--eg-muted);
  font-size:12px;
}

.d1666-eg-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
  gap:16px;
}

.d1666-eg-client{
  position:relative;
  min-width:0;
  min-height:275px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  padding:16px;
  overflow:hidden;
  border:1px solid rgba(104,0,15,.075);
  border-radius:20px;
  color:var(--eg-ink);
  background:rgba(255,255,255,.94);
  box-shadow:0 13px 34px rgba(73,0,11,.055);
  text-decoration:none !important;
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease;
}

.d1666-eg-client::before{
  content:"";
  position:absolute;
  right:0;
  top:28px;
  width:3px;
  height:36px;
  border-radius:3px 0 0 3px;
  background:linear-gradient(var(--eg-red),var(--eg-orange));
  opacity:.55;
  transition:height .32s ease,opacity .32s ease;
}

.d1666-eg-client:hover{
  z-index:2;
  transform:translateY(-7px);
  border-color:rgba(201,0,32,.2);
  box-shadow:0 24px 50px rgba(79,0,12,.12);
  text-decoration:none !important;
}

.d1666-eg-client:hover::before{
  height:68px;
  opacity:1;
}

.d1666-eg-client[hidden]{display:none !important}

.d1666-eg-logo{
  position:relative;
  height:168px;
  display:grid;
  place-items:center;
  padding:15px;
  overflow:hidden;
  border:1px solid rgba(104,0,15,.065);
  border-radius:15px;
  background:
    radial-gradient(circle at center,rgba(245,199,70,.07),transparent 55%),
    #fcfbfa;
}

.d1666-eg-logo::after{
  content:"1666";
  position:absolute;
  z-index:0;
  color:rgba(201,0,32,.055);
  font:900 34px "Inter",sans-serif;
  letter-spacing:-2px;
}

.d1666-eg-logo img{
  position:relative;
  z-index:1;
  width:auto !important;
  height:auto !important;
  max-width:100% !important;
  max-height:100% !important;
  display:block;
  object-fit:contain !important;
  filter:drop-shadow(0 7px 12px rgba(50,0,8,.07));
  transition:transform .35s ease;
}

.d1666-eg-client:hover .d1666-eg-logo img{transform:scale(1.06)}

.d1666-eg-client strong{
  display:block;
  margin-top:13px;
  overflow:hidden;
  color:#292a30;
  font:850 15px "Inter","Cairo",sans-serif;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.d1666-eg-visit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin-top:auto;
  padding-top:11px;
  color:#8d8e94;
  font-size:11px;
  font-weight:700;
  border-top:1px solid rgba(104,0,15,.06);
  transition:color .25s ease;
}

.d1666-eg-visit b{
  color:var(--eg-red);
  font:800 11px "Inter","Cairo",sans-serif;
}

.d1666-eg-client:hover .d1666-eg-visit{color:var(--eg-red)}

.d1666-eg-empty{
  display:none;
  grid-column:1/-1;
  padding:70px 24px;
  border:1px dashed rgba(201,0,32,.2);
  border-radius:22px;
  color:#777981;
  background:rgba(255,255,255,.7);
  font-size:15px;
  text-align:center;
}

.d1666-eg-empty.is-visible{display:block}

.d1666-eg-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:34px;
}

.d1666-eg-more{
  min-width:190px;
  min-height:52px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,var(--eg-deep),var(--eg-red) 58%,var(--eg-orange));
  box-shadow:0 15px 34px rgba(201,0,32,.2);
  font:800 13px "Cairo",sans-serif;
  cursor:pointer;
  transition:transform .25s ease,box-shadow .25s ease;
}

.d1666-eg-more:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 42px rgba(201,0,32,.26);
}

.d1666-eg-more[hidden]{display:none}

@media(max-width:1180px){
  .d1666-eg-shell,
  .d1666-eg-head-shell{width:min(100% - 44px,1100px)}

  .d1666-eg-main-inner{grid-template-columns:210px minmax(0,1fr) 120px;gap:20px}
  .d1666-eg-nav{gap:19px}
  .d1666-eg-nav a{font-size:11px}

  .d1666-eg-hero-grid{
    grid-template-columns:minmax(0,1fr) 340px;
    gap:44px;
  }

  .d1666-eg-copy h1{font-size:clamp(46px,5.8vw,68px)}

}

@media(max-width:820px){
  .d1666-eg-top-inner{padding-block:10px;flex-wrap:wrap;justify-content:center}
  .d1666-eg-main-inner{grid-template-columns:1fr auto;padding-block:15px}
  .d1666-eg-brand img{max-width:190px !important}
  .d1666-eg-hotline-bar{width:105px}
  .d1666-eg-nav{grid-column:1/-1;order:3;min-height:50px;gap:24px;overflow-x:auto;justify-content:flex-start}
  .d1666-eg-hero-grid{grid-template-columns:1fr}
  .d1666-eg-egypt-visual{min-height:230px}
  .d1666-eg-grid{grid-template-columns:repeat(auto-fill,minmax(165px,1fr))}
}

@media(max-width:560px){
  .d1666-eg-shell,
  .d1666-eg-head-shell{width:calc(100% - 28px)}
  .d1666-eg-top-contact{justify-content:center;flex-wrap:wrap;gap:10px}
  .d1666-eg-top-contact .d1666-eg-top-separator{display:none}
  .d1666-eg-top-side{width:100%;justify-content:center}
  .d1666-eg-main-inner{grid-template-columns:1fr}
  .d1666-eg-brand{display:flex;justify-content:center}
  .d1666-eg-hotline-bar{display:none}
  .d1666-eg-nav{grid-column:1;max-width:100%;gap:20px}
  .d1666-eg-hero{padding:25px 0 42px}
  .d1666-eg-copy h1{font-size:39px}
  .d1666-eg-copy p{font-size:14px}
  .d1666-eg-directory{padding:38px 0 62px}

  .d1666-eg-toolbar{
    padding:12px;
    border-radius:18px;
  }

  .d1666-eg-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:10px;
  }

  .d1666-eg-client{
    min-height:245px;
    padding:12px;
    border-radius:16px;
  }

  .d1666-eg-logo{height:138px}
  .d1666-eg-client strong{font-size:13px}

  .d1666-eg-egypt-card{min-width:0;width:min(100%,280px);padding:16px}
  .d1666-eg-egypt-icon{width:64px;height:64px;flex-basis:64px}
  .d1666-eg-egypt-icon img{max-width:49px !important;max-height:49px !important}
}

@media(max-width:360px){
  .d1666-eg-grid{grid-template-columns:1fr}
}

@media(prefers-reduced-motion:reduce){
  .d1666-eg-client,
  .d1666-eg-logo img,
  .d1666-eg-more{transition:none !important}

  .d1666-eg-egypt-visual::after{animation:none !important}
}










:root{
  --gulf-red:#c90016;
  --gulf-red-deep:#760010;
  --gulf-orange:#f36b22;
  --gulf-gold:#f5c746;
  --gulf-gold-soft:#fff0b8;
  --gulf-ink:#1f2025;
  --gulf-muted:#777981;
  --gulf-line:rgba(112,0,16,.09);
  --gulf-surface:#fffaf7;
  --gulf-white:#fff;
}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--gulf-ink);
  background:#fff;
}

.d1666-gulf-page,
.d1666-gulf-page *,
.d1666-gulf-back-top,
.d1666-gulf-back-top *{
  box-sizing:border-box;
}

.d1666-gulf-page{
  min-width:0;
  overflow:hidden;
  font-family:"Cairo",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-gulf-page a{text-decoration:none}

.d1666-gulf-shell,
.d1666-gulf-head-shell{
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
}

/* =====================================================
   TOP HEADER
===================================================== */
.d1666-gulf-top-header{
  position:relative;
  z-index:1002;
  min-height:40px;
  display:flex;
  align-items:center;
  color:rgba(255,255,255,.82);
  background:
    linear-gradient(90deg,rgba(255,255,255,.055),transparent 32%),
    #760010;
  border-bottom:1px solid rgba(255,255,255,.1);
  font-family:"Inter","Cairo",sans-serif;
}

.d1666-gulf-top-inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.d1666-gulf-top-contact,
.d1666-gulf-top-side,
.d1666-gulf-mini-social{
  display:flex;
  align-items:center;
}

.d1666-gulf-top-contact{gap:17px;direction:ltr}
.d1666-gulf-top-side{gap:13px}

.d1666-gulf-top-contact a,
.d1666-gulf-language{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:inherit;
  font-size:11px;
  font-weight:650;
  transition:color .25s ease;
}

.d1666-gulf-top-contact a:hover,
.d1666-gulf-language:hover{color:#fff}

.d1666-gulf-top-contact svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-gulf-top-separator{
  width:1px;
  height:14px;
  flex:0 0 auto;
  background:rgba(255,255,255,.18);
}

.d1666-gulf-follow-label{
  color:rgba(255,255,255,.55);
  font-size:10px;
  font-weight:700;
}

.d1666-gulf-mini-social{gap:6px;direction:ltr}

.d1666-gulf-mini-social a{
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.055);
  font:800 10px/1 Arial,sans-serif;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}

.d1666-gulf-mini-social a:hover{
  transform:translateY(-2px);
  border-color:rgba(245,199,70,.75);
  background:rgba(245,199,70,.15);
}

.d1666-gulf-language{
  color:#ffe792;
  font:700 10px "Inter",sans-serif;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.d1666-gulf-main-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:84px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(15,15,20,.07);
  box-shadow:0 12px 34px rgba(57,0,8,.08);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
}

.d1666-gulf-main-inner{
  height:100%;
  display:grid;
  grid-template-columns:minmax(180px,250px) minmax(0,1fr) minmax(160px,220px);
  align-items:center;
  gap:28px;
}

.d1666-gulf-brand{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
}

.d1666-gulf-brand img{
  width:auto;
  height:58px;
  max-width:235px;
  display:block;
  object-fit:contain;
}

.d1666-gulf-nav{
  height:100%;
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:clamp(20px,2vw,36px);
}

.d1666-gulf-nav a{
  position:relative;
  display:flex;
  align-items:center;
  color:#2d2e33;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
  transition:color .25s ease;
}

.d1666-gulf-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:0;
  height:3px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(90deg,var(--gulf-red),var(--gulf-orange));
  transition:left .3s ease,right .3s ease;
}

.d1666-gulf-nav a:hover,
.d1666-gulf-nav a.is-active{color:var(--gulf-red)}

.d1666-gulf-nav a:hover::after,
.d1666-gulf-nav a.is-active::after{left:0;right:0}

.d1666-gulf-hotline-bar{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-right:22px;
  border-right:1px solid rgba(15,15,20,.08);
}

.d1666-gulf-hotline-bar img{
  width:auto;
  max-width:100%;
  height:46px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-gulf-hotline-bar:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.16));
}

/* =====================================================
   BREADCRUMB
===================================================== */
.d1666-gulf-breadcrumb-bar{
  position:relative;
  z-index:8;
  background:#fff;
  border-bottom:1px solid var(--gulf-line);
}

.d1666-gulf-breadcrumb{
  min-height:43px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#8b8c91;
  font-size:10px;
  font-weight:700;
}

.d1666-gulf-breadcrumb a{color:#686a71;transition:color .2s ease}
.d1666-gulf-breadcrumb a:hover{color:var(--gulf-red)}
.d1666-gulf-breadcrumb b{color:var(--gulf-orange);font-size:17px;font-weight:500}
.d1666-gulf-breadcrumb span{color:var(--gulf-red);font-weight:850}

/* =====================================================
   HERO
===================================================== */
.d1666-gulf-hero{
  position:relative;
  min-height:610px;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  color:#fff;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),
    radial-gradient(circle at 18% 22%,rgba(245,199,70,.22),transparent 28%),
    radial-gradient(circle at 88% 80%,rgba(243,107,34,.25),transparent 33%),
    linear-gradient(122deg,#65000d 0%,#920013 42%,#c90016 72%,#e04420 100%);
  background-size:74px 74px,74px 74px,auto,auto,auto;
}

.d1666-gulf-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(105deg,transparent 0 53%,rgba(255,255,255,.08) 53% 53.15%,transparent 53.15%);
}

.d1666-gulf-hero-glow{
  position:absolute;
  z-index:-1;
  border-radius:50%;
  pointer-events:none;
  filter:blur(8px);
}

.d1666-gulf-hero-glow-one{
  width:430px;
  height:430px;
  top:-260px;
  right:-180px;
  background:rgba(245,199,70,.2);
}

.d1666-gulf-hero-glow-two{
  width:380px;
  height:380px;
  left:21%;
  bottom:-310px;
  background:rgba(88,0,14,.45);
}

.d1666-gulf-hero-grid{
  min-height:610px;
  display:grid;
  grid-template-columns:minmax(520px,1fr) minmax(440px,.86fr);
  align-items:center;
  gap:76px;
  padding:66px 0 78px;
}

.d1666-gulf-hero-copy{position:relative;z-index:2;max-width:720px}

.d1666-gulf-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:20px;
  color:#ffe9a1;
  font-size:11px;
  font-weight:850;
  letter-spacing:.4px;
}

.d1666-gulf-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gulf-gold);
  box-shadow:0 0 0 6px rgba(245,199,70,.12);
  animation:d1666GulfPulse 1.8s ease-in-out infinite;
}

.d1666-gulf-hero h1{
  max-width:710px;
  margin:0;
  font-size:clamp(48px,5.25vw,76px);
  font-weight:900;
  line-height:1.13;
  letter-spacing:-2.4px;
}

.d1666-gulf-hero h1 span{
  display:block;
  color:transparent;
  background:linear-gradient(90deg,#fff6cb,var(--gulf-gold),#ffcb7f);
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-gulf-hero-copy > p{
  max-width:660px;
  margin:25px 0 0;
  color:rgba(255,255,255,.78);
  font-size:15px;
  font-weight:500;
  line-height:2;
}

.d1666-gulf-hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:29px;
}

.d1666-gulf-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 25px;
  border-radius:13px;
  font-size:12px;
  font-weight:850;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.d1666-gulf-btn:hover{transform:translateY(-3px)}

.d1666-gulf-btn-primary{
  color:#72000f;
  background:linear-gradient(135deg,#fff6ce,var(--gulf-gold));
  box-shadow:0 14px 30px rgba(78,0,9,.2);
}

.d1666-gulf-btn-primary:hover{box-shadow:0 19px 38px rgba(78,0,9,.27)}

.d1666-gulf-btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.23);
}

.d1666-gulf-btn-secondary:hover{background:rgba(255,255,255,.12)}

.d1666-gulf-live-metrics{
  max-width:650px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:38px;
}

.d1666-gulf-metric{
  position:relative;
  min-height:116px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:16px 18px 14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.17);
  border-radius:17px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.12),rgba(88,0,13,.16)),
    rgba(75,0,11,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:transform .3s ease,border-color .3s ease,background .3s ease;
}

.d1666-gulf-metric::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  width:58%;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gulf-gold));
  opacity:.72;
}

.d1666-gulf-metric:hover{
  transform:translateY(-4px);
  border-color:rgba(255,226,126,.4);
  background:
    linear-gradient(145deg,rgba(255,255,255,.16),rgba(88,0,13,.12)),
    rgba(75,0,11,.2);
}

.d1666-gulf-metric-status{
  display:flex;
  align-items:center;
  gap:7px;
  color:rgba(255,255,255,.55);
  font:750 7px "Inter",sans-serif;
  letter-spacing:.7px;
  white-space:nowrap;
}

.d1666-gulf-metric-status i{
  width:6px;
  height:6px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--gulf-gold);
  box-shadow:0 0 0 4px rgba(245,199,70,.09),0 0 13px rgba(245,199,70,.55);
  animation:d1666GulfMetricPulse 1.8s ease-in-out infinite;
}

.d1666-gulf-metric strong{
  display:block;
  margin-top:7px;
  color:transparent;
  background:linear-gradient(180deg,#fff8cf,var(--gulf-gold));
  -webkit-background-clip:text;
  background-clip:text;
  font:900 29px/1 "Inter",sans-serif;
  letter-spacing:-1px;
}

.d1666-gulf-metric strong > span:not(.d1666-gulf-counter){
  font-size:17px;
  letter-spacing:-.4px;
}

.d1666-gulf-metric-label{
  display:block;
  margin-top:8px;
  color:rgba(255,255,255,.77);
  font-size:9px;
  font-weight:700;
  line-height:1.5;
}

.d1666-gulf-metric-live::before{
  content:"LIVE";
  position:absolute;
  top:12px;
  left:12px;
  padding:3px 6px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:999px;
  color:#fff1ba;
  background:rgba(255,255,255,.07);
  font:800 6px "Inter",sans-serif;
  letter-spacing:.7px;
}

.d1666-gulf-visual{
  position:relative;
  min-height:420px;
  display:grid;
  place-items:center;
}

.d1666-gulf-visual::before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(245,199,70,.16),transparent 69%);
}

.d1666-gulf-visual-ring{
  position:absolute;
  border:1px solid rgba(255,226,126,.2);
  border-radius:50%;
}

.d1666-gulf-visual-ring-one{
  width:360px;
  height:360px;
  animation:d1666GulfSpin 19s linear infinite;
}

.d1666-gulf-visual-ring-one::before,
.d1666-gulf-visual-ring-two::after{
  content:"";
  position:absolute;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--gulf-gold);
  box-shadow:0 0 18px rgba(245,199,70,.9);
}

.d1666-gulf-visual-ring-one::before{top:28px;left:64px}

.d1666-gulf-visual-ring-two{
  width:288px;
  height:288px;
  border-style:dashed;
  animation:d1666GulfSpinReverse 14s linear infinite;
}

.d1666-gulf-visual-ring-two::after{right:10px;bottom:76px}

.d1666-gulf-visual-dot{
  position:absolute;
  z-index:2;
  width:7px;
  height:7px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 0 5px rgba(255,255,255,.1);
}

.d1666-gulf-visual-dot-one{top:53px;right:21%}
.d1666-gulf-visual-dot-two{bottom:57px;left:18%;background:var(--gulf-gold)}
.d1666-gulf-visual-dot-three{top:52%;right:5%;background:#ff9a51}

.d1666-gulf-visual-card{
  position:relative;
  z-index:3;
  width:min(420px,90%);
  min-height:150px;
  display:grid;
  grid-template-columns:104px 1fr;
  align-items:center;
  gap:23px;
  padding:22px 25px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:25px;
  background:linear-gradient(145deg,rgba(255,255,255,.17),rgba(255,255,255,.075));
  box-shadow:0 30px 70px rgba(60,0,10,.28),inset 0 1px 0 rgba(255,255,255,.24);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.d1666-gulf-visual-icon{
  width:104px;
  height:104px;
  display:grid;
  place-items:center;
  padding:17px;
  border-radius:22px;
  background:linear-gradient(145deg,#fff,#fff2dc);
  box-shadow:0 16px 34px rgba(69,0,10,.2);
}

.d1666-gulf-visual-icon img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  display:block;
  object-fit:contain;
}

.d1666-gulf-visual-copy{min-width:0}

.d1666-gulf-visual-copy small{
  display:block;
  margin-bottom:6px;
  color:#ffe69a;
  font:800 8px "Inter",sans-serif;
  letter-spacing:1.2px;
}

.d1666-gulf-visual-copy strong{
  display:block;
  color:#fff;
  font-size:19px;
  font-weight:900;
}

.d1666-gulf-visual-copy span{
  display:block;
  margin-top:7px;
  color:rgba(255,255,255,.65);
  font-size:10px;
  font-weight:600;
}

/* =====================================================
   COMMON SECTION HEADING
===================================================== */
.d1666-gulf-section-heading{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.7fr);
  align-items:end;
  gap:70px;
  margin-bottom:38px;
}

.d1666-gulf-section-kicker{
  display:block;
  margin-bottom:9px;
  color:var(--gulf-red);
  font-size:10px;
  font-weight:900;
  letter-spacing:.45px;
}

.d1666-gulf-section-heading h2,
.d1666-gulf-video-copy h2{
  margin:0;
  color:#24252a;
  font-size:clamp(34px,3.2vw,52px);
  font-weight:900;
  line-height:1.23;
  letter-spacing:-1.6px;
}

.d1666-gulf-section-heading h2 span,
.d1666-gulf-video-copy h2 span{
  color:transparent;
  background:linear-gradient(90deg,var(--gulf-red),var(--gulf-orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-gulf-section-heading > p{
  margin:0;
  color:var(--gulf-muted);
  font-size:12px;
  font-weight:500;
  line-height:1.95;
}

/* =====================================================
   SERVICES
===================================================== */
.d1666-gulf-services{
  position:relative;
  padding:88px 0 100px;
  background:
    radial-gradient(circle at 90% 5%,rgba(245,199,70,.09),transparent 28%),
    linear-gradient(180deg,#fff,#fff9f6);
}

.d1666-gulf-service-groups{
  display:grid;
  gap:22px;
}

.d1666-gulf-service-group{
  --group-accent:var(--gulf-red);
  --group-soft:rgba(201,0,22,.07);

  position:relative;
  padding:22px;
  overflow:hidden;
  border:1px solid rgba(105,0,15,.085);
  border-radius:27px;
  background:rgba(255,255,255,.91);
  box-shadow:0 18px 48px rgba(78,0,12,.065);
}

.d1666-gulf-service-group::before{
  content:"";
  position:absolute;
  top:25px;
  right:0;
  width:4px;
  height:68px;
  border-radius:4px 0 0 4px;
  background:linear-gradient(180deg,var(--group-accent),var(--gulf-orange));
}

.d1666-gulf-service-group::after{
  content:"";
  position:absolute;
  z-index:0;
  width:220px;
  height:220px;
  left:-125px;
  top:-145px;
  border-radius:50%;
  background:var(--group-soft);
  filter:blur(2px);
  pointer-events:none;
}

.d1666-gulf-group-guides{
  --group-accent:#c48b09;
  --group-soft:rgba(245,199,70,.13);
  border-color:rgba(196,139,9,.17);
  background:
    linear-gradient(135deg,rgba(255,248,220,.58),rgba(255,255,255,.96) 43%),
    #fff;
}

.d1666-gulf-group-contact{
  --group-accent:var(--gulf-red);
  --group-soft:rgba(201,0,22,.075);
}

.d1666-gulf-group-social{
  --group-accent:var(--gulf-orange);
  --group-soft:rgba(243,107,34,.09);
  background:
    linear-gradient(135deg,rgba(255,244,238,.7),rgba(255,255,255,.96) 42%),
    #fff;
}

.d1666-gulf-group-head{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:58px minmax(0,1fr) auto;
  align-items:center;
  gap:16px;
  padding:0 4px 18px;
  border-bottom:1px solid rgba(103,0,15,.07);
}

.d1666-gulf-group-mark{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border:1px solid color-mix(in srgb,var(--group-accent) 20%,transparent);
  border-radius:18px;
  color:var(--group-accent);
  background:var(--group-soft);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
}

.d1666-gulf-group-mark svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.65;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-gulf-group-copy{min-width:0}

.d1666-gulf-group-copy small{
  display:block;
  margin-bottom:3px;
  color:var(--group-accent);
  font:800 7px "Inter",sans-serif;
  letter-spacing:1.15px;
}

.d1666-gulf-group-copy b{
  display:block;
  color:#27282d;
  font-size:17px;
  font-weight:900;
}

.d1666-gulf-group-copy em{
  display:block;
  margin-top:3px;
  color:#8c8d93;
  font-size:9px;
  font-weight:600;
  font-style:normal;
}

.d1666-gulf-group-badge{
  min-height:31px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 13px;
  border:1px solid color-mix(in srgb,var(--group-accent) 17%,transparent);
  border-radius:999px;
  color:var(--group-accent);
  background:var(--group-soft);
  font-size:8px;
  font-weight:850;
  white-space:nowrap;
}

.d1666-gulf-group-grid{
  position:relative;
  z-index:2;
  display:grid;
  gap:12px;
  margin-top:18px;
}

.d1666-gulf-group-grid-guides{grid-template-columns:repeat(3,minmax(0,1fr))}
.d1666-gulf-group-grid-contact{grid-template-columns:repeat(5,minmax(0,1fr))}
.d1666-gulf-group-grid-social{grid-template-columns:repeat(4,minmax(0,1fr))}

.d1666-gulf-service-card{
  position:relative;
  min-height:128px;
  display:grid;
  grid-template-columns:70px minmax(0,1fr);
  align-items:center;
  gap:15px;
  padding:18px 18px 18px 48px;
  overflow:hidden;
  color:var(--gulf-ink);
  border:1px solid rgba(103,0,15,.075);
  border-radius:18px;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 28px rgba(78,0,12,.04);
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}

.d1666-gulf-service-card::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  background:linear-gradient(125deg,var(--group-soft),transparent 62%);
  transition:opacity .3s ease;
}

.d1666-gulf-service-card:hover{
  transform:translateY(-6px);
  border-color:color-mix(in srgb,var(--group-accent) 27%,transparent);
  box-shadow:0 22px 46px rgba(78,0,12,.1);
}

.d1666-gulf-service-card:hover::before{opacity:1}

.d1666-gulf-service-icon{
  position:relative;
  z-index:2;
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  padding:15px;
  border:1px solid color-mix(in srgb,var(--group-accent) 13%,transparent);
  border-radius:17px;
  background:linear-gradient(145deg,#fff,var(--group-soft));
  transition:transform .3s ease;
}

.d1666-gulf-service-icon img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  display:block;
  object-fit:contain;
}

.d1666-gulf-service-icon-wide{padding:10px}

.d1666-gulf-service-card:hover .d1666-gulf-service-icon{transform:translateY(-3px) rotate(-2deg)}

.d1666-gulf-service-copy{position:relative;z-index:2;min-width:0}

.d1666-gulf-service-copy small{
  display:block;
  margin-bottom:5px;
  color:var(--group-accent);
  font-size:9px;
  font-weight:800;
}

.d1666-gulf-service-copy b{
  display:block;
  color:#28292e;
  font-size:13px;
  font-weight:850;
  line-height:1.55;
}

.d1666-gulf-service-copy em{
  display:block;
  margin-top:5px;
  overflow:hidden;
  color:#929399;
  font:600 9px "Inter","Cairo",sans-serif;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.d1666-gulf-service-arrow{
  position:absolute;
  left:14px;
  bottom:14px;
  z-index:2;
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:var(--group-accent);
  background:var(--group-soft);
  font:800 16px Arial,sans-serif;
  transition:transform .3s ease,background .3s ease,color .3s ease;
}

.d1666-gulf-service-card:hover .d1666-gulf-service-arrow{
  transform:translateX(-4px);
  color:#fff;
  background:linear-gradient(135deg,var(--group-accent),var(--gulf-orange));
}

.d1666-gulf-service-featured{
  border-color:rgba(196,139,9,.18);
  background:
    radial-gradient(circle at 8% 10%,rgba(245,199,70,.12),transparent 40%),
    #fff;
}

.d1666-gulf-group-grid-contact .d1666-gulf-service-card{
  min-height:181px;
  grid-template-columns:1fr;
  align-content:start;
  justify-items:start;
  gap:13px;
  padding:17px 17px 45px;
}

.d1666-gulf-group-grid-contact .d1666-gulf-service-icon{
  width:58px;
  height:58px;
  padding:12px;
  border-radius:15px;
}

.d1666-gulf-group-grid-contact .d1666-gulf-service-copy b{font-size:12px}
.d1666-gulf-group-grid-contact .d1666-gulf-service-copy em{font-size:8px}

.d1666-gulf-group-grid-social .d1666-gulf-service-card{
  min-height:116px;
  grid-template-columns:60px minmax(0,1fr);
  padding:16px 16px 16px 46px;
  box-shadow:
    inset 0 3px 0 var(--social-accent,var(--gulf-red)),
    0 10px 28px rgba(78,0,12,.04);
}

.d1666-gulf-group-grid-social .d1666-gulf-service-icon{
  width:60px;
  height:60px;
  padding:12px;
  border-radius:16px;
}

.d1666-gulf-group-grid-social .d1666-gulf-service-copy small{color:var(--social-accent,var(--gulf-red))}
.d1666-gulf-social-facebook{--social-accent:#1877f2}
.d1666-gulf-social-twitter{--social-accent:#111827}
.d1666-gulf-social-youtube{--social-accent:#ff0033}
.d1666-gulf-social-instagram{--social-accent:#c13584}

/* =====================================================
   CLIENTS
===================================================== */
.d1666-gulf-clients{
  position:relative;
  padding:92px 0 108px;
  background:
    linear-gradient(rgba(130,0,18,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(130,0,18,.025) 1px,transparent 1px),
    linear-gradient(180deg,#fff9f6,#fff);
  background-size:68px 68px,68px 68px,auto;
  border-top:1px solid rgba(201,0,22,.06);
}

.d1666-gulf-clients::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(720px,65%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--gulf-red),var(--gulf-orange),transparent);
}

.d1666-gulf-client-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
  padding:14px;
  border:1px solid var(--gulf-line);
  border-radius:18px;
  background:rgba(255,255,255,.88);
  box-shadow:0 12px 30px rgba(78,0,12,.045);
}

.d1666-gulf-client-search{
  width:min(450px,100%);
  min-height:49px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:0 17px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:13px;
  background:#fcfbfa;
  transition:border-color .25s ease,box-shadow .25s ease;
}

.d1666-gulf-client-search:focus-within{
  border-color:rgba(201,0,22,.32);
  box-shadow:0 0 0 4px rgba(201,0,22,.055);
}

.d1666-gulf-client-search svg{
  width:19px;
  height:19px;
  flex:0 0 auto;
  fill:none;
  stroke:var(--gulf-red);
  stroke-width:1.8;
  stroke-linecap:round;
}

.d1666-gulf-client-search input{
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  color:#292a2f;
  background:transparent;
  font:700 12px "Cairo",sans-serif;
}

.d1666-gulf-client-search input::placeholder{color:#a1a2a7}

.d1666-gulf-client-count{
  display:flex;
  align-items:center;
  gap:12px;
  color:#8d8e94;
  font-size:10px;
  font-weight:650;
}

.d1666-gulf-client-count b{
  color:#34353a;
  font-size:12px;
  font-weight:850;
}

.d1666-gulf-client-count span{
  padding:7px 11px;
  border-radius:999px;
  color:var(--gulf-red);
  background:rgba(201,0,22,.06);
  white-space:nowrap;
}

.d1666-gulf-client-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
  gap:14px;
}

.d1666-gulf-client{
  position:relative;
  min-width:0;
  min-height:258px;
  display:flex;
  flex-direction:column;
  padding:14px;
  overflow:hidden;
  color:#292a30;
  border:1px solid rgba(104,0,15,.075);
  border-radius:19px;
  background:rgba(255,255,255,.95);
  box-shadow:0 12px 28px rgba(58,0,9,.045);
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease;
}

.d1666-gulf-client::before{
  content:"";
  position:absolute;
  right:0;
  top:28px;
  width:3px;
  height:36px;
  border-radius:3px 0 0 3px;
  background:linear-gradient(var(--gulf-red),var(--gulf-orange));
  opacity:.55;
  transition:height .32s ease,opacity .32s ease;
}

.d1666-gulf-client:hover{
  z-index:2;
  transform:translateY(-7px);
  border-color:rgba(201,0,32,.2);
  box-shadow:0 24px 50px rgba(79,0,12,.12);
}

.d1666-gulf-client:hover::before{height:68px;opacity:1}
.d1666-gulf-client[hidden]{display:none!important}

.d1666-gulf-client-logo{
  position:relative;
  height:166px;
  display:grid;
  place-items:center;
  padding:15px;
  overflow:hidden;
  border:1px solid rgba(104,0,15,.065);
  border-radius:15px;
  background:
    radial-gradient(circle at center,rgba(245,199,70,.075),transparent 55%),
    #fcfbfa;
}

.d1666-gulf-client-logo::after{
  content:"GULF";
  position:absolute;
  z-index:0;
  color:rgba(201,0,32,.045);
  font:900 25px "Inter",sans-serif;
  letter-spacing:2px;
}

.d1666-gulf-client-logo img{
  position:relative;
  z-index:1;
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:100%!important;
  display:block;
  object-fit:contain!important;
  filter:drop-shadow(0 7px 12px rgba(50,0,8,.07));
  transition:transform .35s ease;
}

.d1666-gulf-client:hover .d1666-gulf-client-logo img{transform:scale(1.055)}
.d1666-gulf-client.has-missing-logo .d1666-gulf-client-logo img{display:none}

.d1666-gulf-client strong{
  display:block;
  margin-top:13px;
  overflow:hidden;
  color:#292a30;
  font:850 15px "Inter",sans-serif;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.d1666-gulf-client-visit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin-top:auto;
  padding-top:11px;
  color:#8d8e94;
  border-top:1px solid rgba(104,0,15,.06);
  font-size:10px;
  font-weight:700;
  transition:color .25s ease;
}

.d1666-gulf-client-visit b{
  color:var(--gulf-red);
  font:800 10px "Inter",sans-serif;
}

.d1666-gulf-client:hover .d1666-gulf-client-visit{color:var(--gulf-red)}

.d1666-gulf-client-empty{
  display:none;
  grid-column:1/-1;
  padding:70px 24px;
  border:1px dashed rgba(201,0,32,.2);
  border-radius:22px;
  color:#777981;
  background:rgba(255,255,255,.78);
  font-size:14px;
  text-align:center;
}

.d1666-gulf-client-empty.is-visible{display:block}

/* =====================================================
   VIDEO
===================================================== */
.d1666-gulf-video-section{
  position:relative;
  padding:92px 0 108px;
  overflow:hidden;
  background:
    radial-gradient(circle at 90% 20%,rgba(245,199,70,.11),transparent 30%),
    linear-gradient(145deg,#fff,#fff8f4);
}

.d1666-gulf-video-layout{
  display:grid;
  grid-template-columns:minmax(330px,.68fr) minmax(600px,1.18fr);
  align-items:center;
  gap:76px;
}

.d1666-gulf-video-copy p{
  margin:20px 0 0;
  color:var(--gulf-muted);
  font-size:13px;
  line-height:2;
}

.d1666-gulf-video-copy > a{
  display:inline-flex;
  align-items:center;
  min-height:45px;
  margin-top:22px;
  padding:0 20px;
  border-radius:12px;
  color:#fff;
  background:linear-gradient(135deg,var(--gulf-red-deep),var(--gulf-red),var(--gulf-orange));
  box-shadow:0 14px 30px rgba(201,0,22,.17);
  font-size:11px;
  font-weight:850;
  transition:transform .25s ease,box-shadow .25s ease;
}

.d1666-gulf-video-copy > a:hover{
  transform:translateY(-3px);
  box-shadow:0 19px 38px rgba(201,0,22,.23);
}

.d1666-gulf-video-board{
  padding:15px;
  border:1px solid rgba(104,0,15,.09);
  border-radius:24px;
  background:#fff;
  box-shadow:0 26px 60px rgba(78,0,12,.1);
}

.d1666-gulf-video-top{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:0 8px 12px;
}

.d1666-gulf-video-top b{
  color:var(--gulf-red);
  font:900 13px "Inter",sans-serif;
}

.d1666-gulf-video-top span{
  display:flex;
  align-items:center;
  gap:7px;
  color:#8d8e94;
  font-size:9px;
  font-weight:750;
}

.d1666-gulf-video-top i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gulf-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.07);
}

.d1666-gulf-video-frame{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:17px;
  background:#160005;
}

.d1666-gulf-video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* =====================================================
   FOOTER
===================================================== */
.d1666-gulf-footer{
  position:relative;
  width:100%;
  min-height:95px;
  padding:18px 0;
  overflow:hidden;
  color:#26272c;
  background:
    linear-gradient(rgba(145,0,20,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(145,0,20,.025) 1px,transparent 1px),
    linear-gradient(135deg,#fff,#fff7f4);
  background-size:64px 64px,64px 64px,auto;
  border-top:1px solid rgba(201,0,22,.1);
  font-family:"Inter",system-ui,sans-serif;
  direction:ltr;
}

.d1666-gulf-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(760px,70%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--gulf-red) 30%,var(--gulf-orange) 70%,transparent);
}

.d1666-gulf-footer-inner{
  width:min(1380px,calc(100% - 80px));
  min-height:58px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:35px;
}

.d1666-gulf-footer-copy{justify-self:start;text-align:left}
.d1666-gulf-footer-copy b,
.d1666-gulf-footer-copy span,
.d1666-gulf-footer-tagline b,
.d1666-gulf-footer-tagline span{display:block}

.d1666-gulf-footer-copy b{
  margin-bottom:6px;
  color:#292a2f;
  font-size:13px;
  font-weight:850;
}

.d1666-gulf-footer-copy span,
.d1666-gulf-footer-tagline span{color:#83848a;font-size:10px}

.d1666-gulf-footer-powered{
  min-width:245px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:12px 20px;
  border:1px solid rgba(201,0,22,.1);
  border-radius:17px;
  background:rgba(255,255,255,.9);
  box-shadow:0 14px 34px rgba(78,0,12,.08),inset 0 1px 0 #fff;
}

.d1666-gulf-powered-label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8f0015;
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-gulf-powered-label i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gulf-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.08);
}

.d1666-gulf-footer-powered a{display:flex;align-items:center}

.d1666-gulf-footer-powered img{
  width:auto;
  height:35px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-gulf-footer-powered a:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.13));
}

.d1666-gulf-footer-tagline{justify-self:end;text-align:right}

.d1666-gulf-footer-tagline b{
  margin-bottom:6px;
  color:transparent;
  background:linear-gradient(90deg,#b5001a,var(--gulf-orange));
  -webkit-background-clip:text;
  background-clip:text;
  font-size:13px;
  font-weight:900;
}

/* =====================================================
   BACK TO TOP
===================================================== */
.d1666-gulf-back-top{
  --scroll-progress:0deg;
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:9998;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:50%;
  background:conic-gradient(var(--gulf-red) var(--scroll-progress),rgba(201,0,22,.1) 0);
  box-shadow:0 15px 35px rgba(103,0,15,.2);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px) scale(.85);
  transition:opacity .3s ease,visibility .3s ease,transform .35s ease;
}

.d1666-gulf-back-top::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:linear-gradient(145deg,#fff,#fff3ef);
}

.d1666-gulf-back-top span{
  position:relative;
  z-index:2;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,#ad0018,#dc2026 60%,var(--gulf-orange));
}

.d1666-gulf-back-top svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .3s ease;
}

.d1666-gulf-back-top.is-visible{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
.d1666-gulf-back-top:hover{transform:translateY(-5px) scale(1.04)}
.d1666-gulf-back-top:hover svg{transform:translateY(-2px)}

/* =====================================================
   ANIMATION
===================================================== */
@keyframes d1666GulfPulse{
  0%,100%{opacity:.65;transform:scale(.82)}
  50%{opacity:1;transform:scale(1)}
}

@keyframes d1666GulfMetricPulse{
  0%,100%{opacity:.58;transform:scale(.78)}
  50%{opacity:1;transform:scale(1)}
}

@keyframes d1666GulfSpin{to{transform:rotate(360deg)}}
@keyframes d1666GulfSpinReverse{to{transform:rotate(-360deg)}}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1180px){
  .d1666-gulf-shell,
  .d1666-gulf-head-shell{width:min(100% - 48px,1100px)}

  .d1666-gulf-main-inner{grid-template-columns:210px minmax(0,1fr) 150px;gap:20px}
  .d1666-gulf-nav{gap:20px}
  .d1666-gulf-nav a{font-size:11px}

  .d1666-gulf-hero-grid{grid-template-columns:minmax(0,1fr) 420px;gap:45px}
  .d1666-gulf-hero h1{font-size:clamp(48px,6vw,68px)}

  .d1666-gulf-group-grid-contact{grid-template-columns:repeat(3,minmax(0,1fr))}
  .d1666-gulf-group-grid-social{grid-template-columns:repeat(2,minmax(0,1fr))}
  .d1666-gulf-video-layout{grid-template-columns:330px minmax(0,1fr);gap:45px}
}

@media(max-width:900px){
  .d1666-gulf-top-inner{padding-block:8px;flex-wrap:wrap;justify-content:center}
  .d1666-gulf-main-header{height:auto}
  .d1666-gulf-main-inner{grid-template-columns:1fr auto;padding-block:14px}
  .d1666-gulf-brand img{max-width:190px}
  .d1666-gulf-hotline-bar{width:120px}
  .d1666-gulf-nav{grid-column:1/-1;order:3;min-height:47px;justify-content:flex-start;overflow-x:auto}

  .d1666-gulf-hero-grid{grid-template-columns:1fr;padding-top:58px}
  .d1666-gulf-hero-copy{max-width:760px}
  .d1666-gulf-visual{min-height:385px}

  .d1666-gulf-section-heading{grid-template-columns:1fr;gap:15px}
  .d1666-gulf-section-heading > p{max-width:650px}

  .d1666-gulf-group-grid-guides{grid-template-columns:repeat(2,minmax(0,1fr))}
  .d1666-gulf-group-grid-guides .d1666-gulf-service-card:last-child{grid-column:1/-1}
  .d1666-gulf-group-grid-contact{grid-template-columns:repeat(2,minmax(0,1fr))}

  .d1666-gulf-video-layout{grid-template-columns:1fr}
  .d1666-gulf-video-copy{max-width:680px}
}

@media(max-width:680px){
  .d1666-gulf-shell,
  .d1666-gulf-head-shell{width:calc(100% - 28px)}

  .d1666-gulf-top-contact{justify-content:center;flex-wrap:wrap;gap:10px}
  .d1666-gulf-top-contact .d1666-gulf-top-separator{display:none}
  .d1666-gulf-top-side{width:100%;justify-content:center}

  .d1666-gulf-main-inner{grid-template-columns:1fr}
  .d1666-gulf-brand{justify-self:center}
  .d1666-gulf-hotline-bar{display:none}
  .d1666-gulf-nav{grid-column:1;max-width:100%;gap:20px}

  .d1666-gulf-breadcrumb{overflow-x:auto;white-space:nowrap}
  .d1666-gulf-hero{min-height:auto}
  .d1666-gulf-hero-grid{min-height:0;padding:46px 0 58px}
  .d1666-gulf-hero h1{font-size:41px;letter-spacing:-1.3px}
  .d1666-gulf-hero-copy > p{font-size:13px}
  .d1666-gulf-hero-actions{align-items:stretch;flex-direction:column}
  .d1666-gulf-live-metrics{gap:6px}
  .d1666-gulf-metric{min-height:103px;padding:13px 9px 12px;text-align:center}
  .d1666-gulf-metric-status{justify-content:center;font-size:0;letter-spacing:0}
  .d1666-gulf-metric strong{margin-top:8px;font-size:25px}
  .d1666-gulf-metric-label{font-size:8px}
  .d1666-gulf-metric-live::before{display:none}
  .d1666-gulf-visual{min-height:330px}
  .d1666-gulf-visual-ring-one{width:300px;height:300px}
  .d1666-gulf-visual-ring-two{width:245px;height:245px}
  .d1666-gulf-visual-card{grid-template-columns:76px 1fr;gap:16px;padding:18px}
  .d1666-gulf-visual-icon{width:76px;height:76px;padding:13px;border-radius:17px}
  .d1666-gulf-visual-copy strong{font-size:16px}

  .d1666-gulf-services,
  .d1666-gulf-clients,
  .d1666-gulf-video-section{padding:64px 0 74px}

  .d1666-gulf-section-heading h2,
  .d1666-gulf-video-copy h2{font-size:34px;letter-spacing:-1px}

  .d1666-gulf-service-group{padding:15px;border-radius:21px}
  .d1666-gulf-group-head{grid-template-columns:48px minmax(0,1fr);gap:12px;padding-bottom:15px}
  .d1666-gulf-group-mark{width:48px;height:48px;border-radius:15px}
  .d1666-gulf-group-mark svg{width:22px;height:22px}
  .d1666-gulf-group-copy b{font-size:15px}
  .d1666-gulf-group-copy em{font-size:8px}
  .d1666-gulf-group-badge{display:none}

  .d1666-gulf-group-grid-guides,
  .d1666-gulf-group-grid-contact,
  .d1666-gulf-group-grid-social{grid-template-columns:1fr}
  .d1666-gulf-group-grid-guides .d1666-gulf-service-card:last-child{grid-column:auto}

  .d1666-gulf-service-card,
  .d1666-gulf-group-grid-contact .d1666-gulf-service-card,
  .d1666-gulf-group-grid-social .d1666-gulf-service-card{
    min-height:112px;
    grid-template-columns:62px minmax(0,1fr);
    align-content:center;
    align-items:center;
    justify-items:stretch;
    gap:13px;
    padding:15px 15px 43px;
  }

  .d1666-gulf-service-icon,
  .d1666-gulf-group-grid-contact .d1666-gulf-service-icon,
  .d1666-gulf-group-grid-social .d1666-gulf-service-icon{
    width:62px;
    height:62px;
    padding:12px;
  }

  .d1666-gulf-client-toolbar{align-items:stretch;flex-direction:column}
  .d1666-gulf-client-search{width:100%}
  .d1666-gulf-client-count{justify-content:space-between}
  .d1666-gulf-client-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .d1666-gulf-client{min-height:244px;padding:11px;border-radius:16px}
  .d1666-gulf-client-logo{height:143px;padding:11px}
  .d1666-gulf-client strong{font-size:13px}
  .d1666-gulf-client-visit{font-size:9px}

  .d1666-gulf-video-board{padding:9px;border-radius:18px}
  .d1666-gulf-video-frame{border-radius:13px}

  .d1666-gulf-footer-inner{
    width:calc(100% - 28px);
    grid-template-columns:1fr;
    justify-items:center;
    gap:18px;
    text-align:center;
  }

  .d1666-gulf-footer-copy,
  .d1666-gulf-footer-tagline{justify-self:center;text-align:center}
  .d1666-gulf-footer-powered{min-width:0;width:min(100%,320px)}

  .d1666-gulf-back-top{right:17px;bottom:20px;width:50px;height:50px}
  .d1666-gulf-back-top span{width:37px;height:37px}
}

@media(max-width:380px){
  .d1666-gulf-client-grid{grid-template-columns:1fr}
  .d1666-gulf-client-logo{height:155px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .d1666-gulf-kicker i,
  .d1666-gulf-metric-status i,
  .d1666-gulf-visual-ring-one,
  .d1666-gulf-visual-ring-two{animation:none!important}
  .d1666-gulf-service-card,
  .d1666-gulf-client,
  .d1666-gulf-client-logo img,
  .d1666-gulf-back-top{transition:none!important}
}




:root{
  --eu-red:#c90016;
  --eu-red-deep:#770010;
  --eu-orange:#f36b22;
  --eu-gold:#f5c746;
  --eu-blue:#476b96;
  --eu-blue-deep:#294d78;
  --eu-blue-soft:#edf4fb;
  --eu-ink:#23252b;
  --eu-muted:#777a82;
  --eu-line:rgba(48,77,111,.1);
  --eu-white:#fff;
}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--eu-ink);
  background:#fff;
}

.d1666-eu-page,
.d1666-eu-page *,
.d1666-eu-back-top,
.d1666-eu-back-top *{
  box-sizing:border-box;
}

.d1666-eu-page{
  min-width:0;
  overflow:hidden;
  font-family:"Cairo",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-eu-page a{text-decoration:none}

.d1666-eu-shell,
.d1666-eu-head-shell{
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
}

/* =====================================================
   TOP HEADER
===================================================== */
.d1666-eu-top-header{
  position:relative;
  z-index:1002;
  min-height:40px;
  display:flex;
  align-items:center;
  color:rgba(255,255,255,.82);
  background:
    linear-gradient(90deg,rgba(255,255,255,.05),transparent 32%),
    #760010;
  border-bottom:1px solid rgba(255,255,255,.1);
  font-family:"Inter","Cairo",sans-serif;
}

.d1666-eu-top-inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.d1666-eu-top-contact,
.d1666-eu-top-side,
.d1666-eu-mini-social{
  display:flex;
  align-items:center;
}

.d1666-eu-top-contact{gap:17px;direction:ltr}
.d1666-eu-top-side{gap:13px}

.d1666-eu-top-contact a,
.d1666-eu-language{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:inherit;
  font-size:11px;
  font-weight:650;
  transition:color .25s ease;
}

.d1666-eu-top-contact a:hover,
.d1666-eu-language:hover{color:#fff}

.d1666-eu-top-contact svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-eu-top-separator{
  width:1px;
  height:14px;
  flex:0 0 auto;
  background:rgba(255,255,255,.18);
}

.d1666-eu-follow-label{
  color:rgba(255,255,255,.55);
  font-size:10px;
  font-weight:700;
}

.d1666-eu-mini-social{gap:6px;direction:ltr}

.d1666-eu-mini-social a{
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.055);
  font:800 10px/1 Arial,sans-serif;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}

.d1666-eu-mini-social a:hover{
  transform:translateY(-2px);
  border-color:rgba(245,199,70,.75);
  background:rgba(245,199,70,.15);
}

.d1666-eu-language{
  color:#ffe792;
  font:700 10px "Inter",sans-serif;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.d1666-eu-main-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:84px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(15,15,20,.07);
  box-shadow:0 12px 34px rgba(57,0,8,.08);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
}

.d1666-eu-main-inner{
  height:100%;
  display:grid;
  grid-template-columns:minmax(180px,250px) minmax(0,1fr) minmax(160px,220px);
  align-items:center;
  gap:28px;
}

.d1666-eu-brand{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
}

.d1666-eu-brand img{
  width:auto;
  height:58px;
  max-width:235px;
  display:block;
  object-fit:contain;
}

.d1666-eu-nav{
  height:100%;
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:clamp(17px,1.8vw,31px);
}

.d1666-eu-nav a{
  position:relative;
  display:flex;
  align-items:center;
  color:#2d2e33;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
  transition:color .25s ease;
}

.d1666-eu-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:0;
  height:3px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(90deg,var(--eu-red),var(--eu-orange));
  transition:left .3s ease,right .3s ease;
}

.d1666-eu-nav a:hover,
.d1666-eu-nav a.is-active{color:var(--eu-red)}

.d1666-eu-nav a:hover::after,
.d1666-eu-nav a.is-active::after{left:0;right:0}

.d1666-eu-hotline-bar{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-right:22px;
  border-right:1px solid rgba(15,15,20,.08);
}

.d1666-eu-hotline-bar img{
  width:auto;
  max-width:100%;
  height:46px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-eu-hotline-bar:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.16));
}

/* =====================================================
   BREADCRUMB
===================================================== */
.d1666-eu-breadcrumb-bar{
  position:relative;
  z-index:8;
  background:#fff;
  border-bottom:1px solid rgba(48,77,111,.09);
}

.d1666-eu-breadcrumb{
  min-height:43px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#8b8c91;
  font-size:10px;
  font-weight:700;
}

.d1666-eu-breadcrumb a{color:#686a71;transition:color .2s ease}
.d1666-eu-breadcrumb a:hover{color:var(--eu-red)}
.d1666-eu-breadcrumb b{color:var(--eu-orange);font-size:17px;font-weight:500}
.d1666-eu-breadcrumb span{color:var(--eu-red);font-weight:850}

/* =====================================================
   HERO
===================================================== */
.d1666-eu-hero{
  position:relative;
  min-height:570px;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  background:
    linear-gradient(rgba(56,89,128,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(56,89,128,.04) 1px,transparent 1px),
    radial-gradient(circle at 12% 15%,rgba(81,120,164,.15),transparent 28%),
    radial-gradient(circle at 91% 80%,rgba(243,107,34,.11),transparent 31%),
    linear-gradient(125deg,#fff 0%,#f7f9fc 56%,#fff7f3 100%);
  background-size:72px 72px,72px 72px,auto,auto,auto;
}

.d1666-eu-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(104deg,transparent 0 54%,rgba(71,107,150,.075) 54% 54.12%,transparent 54.12%);
}

.d1666-eu-hero-glow{
  position:absolute;
  z-index:-1;
  border-radius:50%;
  pointer-events:none;
  filter:blur(9px);
}

.d1666-eu-hero-glow-one{
  width:420px;
  height:420px;
  top:-270px;
  right:-185px;
  background:rgba(71,107,150,.11);
}

.d1666-eu-hero-glow-two{
  width:360px;
  height:360px;
  left:19%;
  bottom:-300px;
  background:rgba(201,0,22,.08);
}

.d1666-eu-hero-grid{
  min-height:570px;
  display:grid;
  grid-template-columns:minmax(520px,1fr) minmax(430px,.82fr);
  align-items:center;
  gap:78px;
  padding:58px 0 70px;
}

.d1666-eu-hero-copy{position:relative;z-index:2;max-width:720px}

.d1666-eu-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--eu-blue-deep);
  font-size:11px;
  font-weight:850;
}

.d1666-eu-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--eu-red);
  box-shadow:0 0 0 6px rgba(201,0,22,.075);
  animation:d1666EuPulse 1.8s ease-in-out infinite;
}

.d1666-eu-hero h1{
  max-width:720px;
  margin:0;
  color:#25272d;
  font-size:clamp(49px,5.25vw,75px);
  font-weight:900;
  line-height:1.13;
  letter-spacing:-2.4px;
}

.d1666-eu-hero h1 span{
  display:block;
  color:transparent;
  background:linear-gradient(90deg,var(--eu-red),var(--eu-orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-eu-hero-copy > p{
  max-width:650px;
  margin:23px 0 0;
  color:#6f737c;
  font-size:14px;
  font-weight:500;
  line-height:2;
}

.d1666-eu-hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
}

.d1666-eu-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:13px;
  font-size:11px;
  font-weight:850;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.d1666-eu-btn:hover{transform:translateY(-3px)}

.d1666-eu-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--eu-red-deep),var(--eu-red),var(--eu-orange));
  box-shadow:0 15px 33px rgba(201,0,22,.19);
}

.d1666-eu-btn-primary:hover{box-shadow:0 20px 40px rgba(201,0,22,.25)}

.d1666-eu-btn-secondary{
  color:var(--eu-blue-deep);
  background:rgba(255,255,255,.75);
  border:1px solid rgba(71,107,150,.17);
}

.d1666-eu-btn-secondary:hover{background:#fff;box-shadow:0 13px 28px rgba(43,73,108,.09)}

.d1666-eu-points{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:31px;
}

.d1666-eu-points > span{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 13px;
  border:1px solid rgba(71,107,150,.11);
  border-radius:999px;
  color:#596779;
  background:rgba(255,255,255,.68);
  box-shadow:0 7px 18px rgba(45,72,102,.035);
}

.d1666-eu-points i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--eu-red),var(--eu-orange));
}

.d1666-eu-points b{font-size:9px;font-weight:800}

.d1666-eu-visual{
  position:relative;
  min-height:390px;
  display:grid;
  place-items:center;
}

.d1666-eu-visual::before{
  content:"";
  position:absolute;
  width:355px;
  height:355px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(71,107,150,.115),transparent 68%);
}

.d1666-eu-orbit{
  position:absolute;
  border:1px solid rgba(71,107,150,.18);
  border-radius:50%;
}

.d1666-eu-orbit-one{
  width:355px;
  height:355px;
  animation:d1666EuSpin 20s linear infinite;
}

.d1666-eu-orbit-two{
  width:287px;
  height:287px;
  border-style:dashed;
  border-color:rgba(201,0,22,.14);
  animation:d1666EuSpinReverse 15s linear infinite;
}

.d1666-eu-orbit-one::before,
.d1666-eu-orbit-two::after{
  content:"";
  position:absolute;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--eu-red);
  box-shadow:0 0 17px rgba(201,0,22,.45);
}

.d1666-eu-orbit-one::before{top:26px;left:65px}
.d1666-eu-orbit-two::after{right:12px;bottom:72px;background:var(--eu-blue)}

.d1666-eu-node{
  position:absolute;
  z-index:2;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--eu-blue);
  box-shadow:0 0 0 5px rgba(71,107,150,.08);
}

.d1666-eu-node-one{top:42px;right:20%}
.d1666-eu-node-two{bottom:48px;left:18%;background:var(--eu-orange)}
.d1666-eu-node-three{top:52%;right:4%;background:var(--eu-red)}

.d1666-eu-visual-card{
  position:relative;
  z-index:3;
  width:min(430px,91%);
  min-height:150px;
  display:grid;
  grid-template-columns:106px minmax(0,1fr);
  align-items:center;
  gap:22px;
  padding:22px 25px;
  border:1px solid rgba(71,107,150,.14);
  border-radius:25px;
  background:rgba(255,255,255,.82);
  box-shadow:0 28px 65px rgba(48,77,111,.13),inset 0 1px 0 #fff;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.d1666-eu-visual-icon{
  width:106px;
  height:106px;
  display:grid;
  place-items:center;
  padding:17px;
  border:1px solid rgba(71,107,150,.1);
  border-radius:22px;
  background:linear-gradient(145deg,#fff,var(--eu-blue-soft));
  box-shadow:0 15px 32px rgba(48,77,111,.1);
}

.d1666-eu-visual-icon img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  display:block;
  object-fit:contain;
}

.d1666-eu-visual-copy{min-width:0}

.d1666-eu-visual-copy small{
  display:block;
  margin-bottom:6px;
  color:var(--eu-blue-deep);
  font:800 8px "Inter",sans-serif;
  letter-spacing:1.05px;
}

.d1666-eu-visual-copy strong{
  display:block;
  color:#292b31;
  font-size:19px;
  font-weight:900;
}

.d1666-eu-visual-copy span{
  display:block;
  margin-top:7px;
  color:#838790;
  font:600 9px "Inter","Cairo",sans-serif;
}

/* =====================================================
   DIRECTORY
===================================================== */
.d1666-eu-directory{
  position:relative;
  padding:88px 0 106px;
  background:
    linear-gradient(rgba(52,83,119,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(52,83,119,.025) 1px,transparent 1px),
    linear-gradient(180deg,#f8fafc,#fff 60%);
  background-size:68px 68px,68px 68px,auto;
  border-top:1px solid rgba(71,107,150,.07);
}

.d1666-eu-directory::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(720px,65%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--eu-blue),var(--eu-red),var(--eu-orange),transparent);
}

.d1666-eu-section-heading{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.7fr);
  align-items:end;
  gap:70px;
  margin-bottom:35px;
}

.d1666-eu-section-kicker{
  display:block;
  margin-bottom:9px;
  color:var(--eu-blue-deep);
  font-size:10px;
  font-weight:900;
}

.d1666-eu-section-heading h2{
  margin:0;
  color:#24262c;
  font-size:clamp(34px,3.2vw,51px);
  font-weight:900;
  line-height:1.23;
  letter-spacing:-1.6px;
}

.d1666-eu-section-heading h2 span{
  color:transparent;
  background:linear-gradient(90deg,var(--eu-red),var(--eu-orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-eu-section-heading > p{
  margin:0;
  color:var(--eu-muted);
  font-size:12px;
  font-weight:500;
  line-height:1.95;
}

.d1666-eu-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
  padding:14px;
  border:1px solid rgba(71,107,150,.1);
  border-radius:18px;
  background:rgba(255,255,255,.9);
  box-shadow:0 12px 30px rgba(48,77,111,.05);
}

.d1666-eu-search{
  width:min(450px,100%);
  min-height:49px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:0 17px;
  border:1px solid rgba(71,107,150,.12);
  border-radius:13px;
  background:#f9fbfd;
  transition:border-color .25s ease,box-shadow .25s ease;
}

.d1666-eu-search:focus-within{
  border-color:rgba(201,0,22,.28);
  box-shadow:0 0 0 4px rgba(201,0,22,.045);
}

.d1666-eu-search svg{
  width:19px;
  height:19px;
  flex:0 0 auto;
  fill:none;
  stroke:var(--eu-red);
  stroke-width:1.8;
  stroke-linecap:round;
}

.d1666-eu-search input{
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  color:#292a2f;
  background:transparent;
  font:700 12px "Cairo",sans-serif;
}

.d1666-eu-search input::placeholder{color:#a1a2a7}

.d1666-eu-results-bar{
  display:flex;
  align-items:center;
  gap:12px;
  color:#8d8e94;
  font-size:10px;
  font-weight:650;
}

.d1666-eu-results-bar b{
  color:#34353a;
  font-size:12px;
  font-weight:850;
}

.d1666-eu-results-bar span{
  padding:7px 11px;
  border-radius:999px;
  color:var(--eu-blue-deep);
  background:rgba(71,107,150,.07);
  white-space:nowrap;
}

.d1666-eu-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;
}

.d1666-eu-client{
  position:relative;
  min-width:0;
  min-height:272px;
  display:flex;
  flex-direction:column;
  padding:14px;
  overflow:hidden;
  color:#292a30;
  border:1px solid rgba(48,77,111,.085);
  border-radius:20px;
  background:rgba(255,255,255,.96);
  box-shadow:0 13px 30px rgba(48,77,111,.055);
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease;
}

.d1666-eu-client::before{
  content:"";
  position:absolute;
  right:0;
  top:29px;
  width:3px;
  height:38px;
  border-radius:3px 0 0 3px;
  background:linear-gradient(var(--eu-blue),var(--eu-red),var(--eu-orange));
  opacity:.62;
  transition:height .32s ease,opacity .32s ease;
}

.d1666-eu-client:hover{
  z-index:2;
  transform:translateY(-7px);
  border-color:rgba(201,0,22,.18);
  box-shadow:0 25px 52px rgba(48,77,111,.13);
}

.d1666-eu-client:hover::before{height:72px;opacity:1}
.d1666-eu-client[hidden]{display:none!important}

.d1666-eu-logo{
  position:relative;
  height:177px;
  display:grid;
  place-items:center;
  padding:16px;
  overflow:hidden;
  border:1px solid rgba(48,77,111,.075);
  border-radius:16px;
  background:
    radial-gradient(circle at center,rgba(71,107,150,.07),transparent 56%),
    linear-gradient(145deg,#fff,#f8fafc);
}

.d1666-eu-logo::after{
  content:"EUROPE";
  position:absolute;
  z-index:0;
  color:rgba(48,77,111,.045);
  font:900 24px "Inter",sans-serif;
  letter-spacing:2px;
}

.d1666-eu-logo img{
  position:relative;
  z-index:1;
  width:auto!important;
  height:auto!important;
  max-width:100%!important;
  max-height:100%!important;
  display:block;
  object-fit:contain!important;
  filter:drop-shadow(0 7px 12px rgba(40,58,78,.07));
  transition:transform .35s ease;
}

.d1666-eu-client:hover .d1666-eu-logo img{transform:scale(1.055)}
.d1666-eu-client.has-missing-logo .d1666-eu-logo img{display:none}

.d1666-eu-client strong{
  display:block;
  margin-top:13px;
  overflow:hidden;
  color:#292a30;
  font:850 15px "Inter",sans-serif;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.d1666-eu-visit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin-top:auto;
  padding-top:11px;
  color:#8d8e94;
  border-top:1px solid rgba(48,77,111,.07);
  font-size:10px;
  font-weight:700;
  transition:color .25s ease;
}

.d1666-eu-visit b{
  color:var(--eu-red);
  font:800 10px "Inter",sans-serif;
}

.d1666-eu-client:hover .d1666-eu-visit{color:var(--eu-red)}

.d1666-eu-empty{
  display:none;
  grid-column:1/-1;
  padding:70px 24px;
  border:1px dashed rgba(201,0,22,.2);
  border-radius:22px;
  color:#777981;
  background:rgba(255,255,255,.8);
  font-size:14px;
  text-align:center;
}

.d1666-eu-empty.is-visible{display:block}

/* =====================================================
   FOOTER
===================================================== */
.d1666-eu-footer{
  position:relative;
  width:100%;
  min-height:95px;
  padding:18px 0;
  overflow:hidden;
  color:#26272c;
  background:
    linear-gradient(rgba(71,107,150,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(71,107,150,.025) 1px,transparent 1px),
    linear-gradient(135deg,#fff,#f7f9fc);
  background-size:64px 64px,64px 64px,auto;
  border-top:1px solid rgba(71,107,150,.1);
  font-family:"Inter",system-ui,sans-serif;
  direction:ltr;
}

.d1666-eu-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(760px,70%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--eu-blue) 25%,var(--eu-red) 58%,var(--eu-orange) 78%,transparent);
}

.d1666-eu-footer-inner{
  width:min(1380px,calc(100% - 80px));
  min-height:58px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:35px;
}

.d1666-eu-footer-copy{justify-self:start;text-align:left}
.d1666-eu-footer-copy b,
.d1666-eu-footer-copy span,
.d1666-eu-footer-tagline b,
.d1666-eu-footer-tagline span{display:block}

.d1666-eu-footer-copy b{
  margin-bottom:6px;
  color:#292a2f;
  font-size:13px;
  font-weight:850;
}

.d1666-eu-footer-copy span,
.d1666-eu-footer-tagline span{color:#83848a;font-size:10px}

.d1666-eu-footer-powered{
  min-width:245px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:12px 20px;
  border:1px solid rgba(71,107,150,.1);
  border-radius:17px;
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 34px rgba(48,77,111,.08),inset 0 1px 0 #fff;
}

.d1666-eu-powered-label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8f0015;
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-eu-powered-label i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--eu-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.08);
}

.d1666-eu-footer-powered a{display:flex;align-items:center}

.d1666-eu-footer-powered img{
  width:auto;
  height:35px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-eu-footer-powered a:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.13));
}

.d1666-eu-footer-tagline{justify-self:end;text-align:right}

.d1666-eu-footer-tagline b{
  margin-bottom:6px;
  color:transparent;
  background:linear-gradient(90deg,var(--eu-blue-deep),var(--eu-red),var(--eu-orange));
  -webkit-background-clip:text;
  background-clip:text;
  font-size:13px;
  font-weight:900;
}

/* =====================================================
   BACK TO TOP
===================================================== */
.d1666-eu-back-top{
  --scroll-progress:0deg;
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:9998;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:50%;
  background:conic-gradient(var(--eu-red) var(--scroll-progress),rgba(201,0,22,.1) 0);
  box-shadow:0 15px 35px rgba(103,0,15,.2);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px) scale(.85);
  transition:opacity .3s ease,visibility .3s ease,transform .35s ease;
}

.d1666-eu-back-top::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:linear-gradient(145deg,#fff,#f2f6fb);
}

.d1666-eu-back-top span{
  position:relative;
  z-index:2;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--eu-blue-deep),var(--eu-red) 64%,var(--eu-orange));
}

.d1666-eu-back-top svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .3s ease;
}

.d1666-eu-back-top.is-visible{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
.d1666-eu-back-top:hover{transform:translateY(-5px) scale(1.04)}
.d1666-eu-back-top:hover svg{transform:translateY(-2px)}

/* =====================================================
   ANIMATION
===================================================== */
@keyframes d1666EuPulse{
  0%,100%{opacity:.65;transform:scale(.82)}
  50%{opacity:1;transform:scale(1)}
}

@keyframes d1666EuSpin{to{transform:rotate(360deg)}}
@keyframes d1666EuSpinReverse{to{transform:rotate(-360deg)}}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1180px){
  .d1666-eu-shell,
  .d1666-eu-head-shell{width:min(100% - 48px,1100px)}

  .d1666-eu-main-inner{grid-template-columns:205px minmax(0,1fr) 145px;gap:18px}
  .d1666-eu-nav{gap:17px}
  .d1666-eu-nav a{font-size:10px}

  .d1666-eu-hero-grid{grid-template-columns:minmax(0,1fr) 415px;gap:46px}
  .d1666-eu-hero h1{font-size:clamp(48px,6vw,68px)}
  .d1666-eu-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:900px){
  .d1666-eu-top-inner{padding-block:8px;flex-wrap:wrap;justify-content:center}
  .d1666-eu-main-header{height:auto}
  .d1666-eu-main-inner{grid-template-columns:1fr auto;padding-block:14px}
  .d1666-eu-brand img{max-width:190px}
  .d1666-eu-hotline-bar{width:120px}
  .d1666-eu-nav{grid-column:1/-1;order:3;min-height:47px;justify-content:flex-start;overflow-x:auto}

  .d1666-eu-hero-grid{grid-template-columns:1fr;padding-top:53px}
  .d1666-eu-hero-copy{max-width:760px}
  .d1666-eu-visual{min-height:370px}

  .d1666-eu-section-heading{grid-template-columns:1fr;gap:15px}
  .d1666-eu-section-heading > p{max-width:650px}
  .d1666-eu-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:680px){
  .d1666-eu-shell,
  .d1666-eu-head-shell{width:calc(100% - 28px)}

  .d1666-eu-top-contact{justify-content:center;flex-wrap:wrap;gap:10px}
  .d1666-eu-top-contact .d1666-eu-top-separator{display:none}
  .d1666-eu-top-side{width:100%;justify-content:center}

  .d1666-eu-main-inner{grid-template-columns:1fr}
  .d1666-eu-brand{justify-self:center}
  .d1666-eu-hotline-bar{display:none}
  .d1666-eu-nav{grid-column:1;max-width:100%;gap:20px}

  .d1666-eu-breadcrumb{overflow-x:auto;white-space:nowrap}
  .d1666-eu-hero{min-height:auto}
  .d1666-eu-hero-grid{min-height:0;padding:44px 0 58px}
  .d1666-eu-hero h1{font-size:41px;letter-spacing:-1.3px}
  .d1666-eu-hero-copy > p{font-size:13px}
  .d1666-eu-hero-actions{align-items:stretch;flex-direction:column}
  .d1666-eu-points{gap:6px}
  .d1666-eu-points > span{padding:0 10px}

  .d1666-eu-visual{min-height:320px}
  .d1666-eu-orbit-one{width:295px;height:295px}
  .d1666-eu-orbit-two{width:240px;height:240px}
  .d1666-eu-visual-card{grid-template-columns:75px minmax(0,1fr);gap:15px;padding:17px}
  .d1666-eu-visual-icon{width:75px;height:75px;padding:12px;border-radius:17px}
  .d1666-eu-visual-copy strong{font-size:16px}
  .d1666-eu-visual-copy small{font-size:6px}

  .d1666-eu-directory{padding:64px 0 74px}
  .d1666-eu-section-heading h2{font-size:34px;letter-spacing:-1px}
  .d1666-eu-toolbar{align-items:stretch;flex-direction:column}
  .d1666-eu-search{width:100%}
  .d1666-eu-results-bar{justify-content:space-between}
  .d1666-eu-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .d1666-eu-client{min-height:245px;padding:11px;border-radius:16px}
  .d1666-eu-logo{height:145px;padding:11px}
  .d1666-eu-client strong{font-size:13px}
  .d1666-eu-visit{font-size:9px}

  .d1666-eu-footer-inner{
    width:calc(100% - 28px);
    grid-template-columns:1fr;
    justify-items:center;
    gap:18px;
    text-align:center;
  }

  .d1666-eu-footer-copy,
  .d1666-eu-footer-tagline{justify-self:center;text-align:center}
  .d1666-eu-footer-powered{min-width:0;width:min(100%,320px)}

  .d1666-eu-back-top{right:17px;bottom:20px;width:50px;height:50px}
  .d1666-eu-back-top span{width:37px;height:37px}
}

@media(max-width:380px){
  .d1666-eu-grid{grid-template-columns:1fr}
  .d1666-eu-logo{height:158px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .d1666-eu-kicker i,
  .d1666-eu-orbit-one,
  .d1666-eu-orbit-two{animation:none!important}
  .d1666-eu-client,
  .d1666-eu-logo img,
  .d1666-eu-back-top{transition:none!important}
}


/* =====================================================
   EUROPE + AFRICA CLIENT LOGOS — FULL LOGO FIX
===================================================== */

/* Logo container */
.d1666-eu-client .d1666-eu-logo,
a[class*="d1666-af"][class*="client"] [class*="logo"]{
  width:100% !important;
  height:210px !important;
  min-height:210px !important;

  display:grid !important;
  place-items:center !important;

  padding:24px !important;
  overflow:hidden !important;

  background:
    radial-gradient(circle at center,rgba(201,0,22,.035),transparent 62%),
    #fcfbfa !important;
}

/* Show the complete logo */
.d1666-eu-client .d1666-eu-logo > img,
a[class*="d1666-af"][class*="client"] [class*="logo"] > img{
  position:relative !important;
  inset:auto !important;
  z-index:2 !important;

  width:100% !important;
  height:100% !important;
  min-width:0 !important;
  min-height:0 !important;
  max-width:100% !important;
  max-height:100% !important;

  display:block !important;
  margin:auto !important;

  object-fit:contain !important;
  object-position:center !important;

  transform:none !important;
}

/* Soft hover without cropping */
.d1666-eu-client:hover .d1666-eu-logo > img,
a[class*="d1666-af"][class*="client"]:hover [class*="logo"] > img{
  transform:scale(1.025) !important;
}

/* Smaller screens */
@media(max-width:680px){
  .d1666-eu-client .d1666-eu-logo,
  a[class*="d1666-af"][class*="client"] [class*="logo"]{
    height:155px !important;
    min-height:155px !important;
    padding:17px !important;
  }
}


:root{
  --af-red:#c90016;
  --af-red-deep:#770010;
  --af-orange:#f36b22;
  --af-gold:#e7b63e;
  --af-blue:#5d7a48;
  --af-blue-deep:#35553b;
  --af-blue-soft:#f0f5e9;
  --af-ink:#23252b;
  --af-muted:#777a82;
  --af-line:rgba(71,88,50,.1);
  --af-white:#fff;
}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--af-ink);
  background:#fff;
}

.d1666-af-page,
.d1666-af-page *,
.d1666-af-back-top,
.d1666-af-back-top *{
  box-sizing:border-box;
}

.d1666-af-page{
  min-width:0;
  overflow:hidden;
  font-family:"Cairo",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-af-page a{text-decoration:none}

.d1666-af-shell,
.d1666-af-head-shell{
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
}

/* =====================================================
   TOP HEADER
===================================================== */
.d1666-af-top-header{
  position:relative;
  z-index:1002;
  min-height:40px;
  display:flex;
  align-items:center;
  color:rgba(255,255,255,.82);
  background:
    linear-gradient(90deg,rgba(255,255,255,.05),transparent 32%),
    #760010;
  border-bottom:1px solid rgba(255,255,255,.1);
  font-family:"Inter","Cairo",sans-serif;
}

.d1666-af-top-inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.d1666-af-top-contact,
.d1666-af-top-side,
.d1666-af-mini-social{
  display:flex;
  align-items:center;
}

.d1666-af-top-contact{gap:17px;direction:ltr}
.d1666-af-top-side{gap:13px}

.d1666-af-top-contact a,
.d1666-af-language{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:inherit;
  font-size:11px;
  font-weight:650;
  transition:color .25s ease;
}

.d1666-af-top-contact a:hover,
.d1666-af-language:hover{color:#fff}

.d1666-af-top-contact svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-af-top-separator{
  width:1px;
  height:14px;
  flex:0 0 auto;
  background:rgba(255,255,255,.18);
}

.d1666-af-follow-label{
  color:rgba(255,255,255,.55);
  font-size:10px;
  font-weight:700;
}

.d1666-af-mini-social{gap:6px;direction:ltr}

.d1666-af-mini-social a{
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.055);
  font:800 10px/1 Arial,sans-serif;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}

.d1666-af-mini-social a:hover{
  transform:translateY(-2px);
  border-color:rgba(245,199,70,.75);
  background:rgba(245,199,70,.15);
}

.d1666-af-language{
  color:#ffe792;
  font:700 10px "Inter",sans-serif;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.d1666-af-main-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:84px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(15,15,20,.07);
  box-shadow:0 12px 34px rgba(57,0,8,.08);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
}

.d1666-af-main-inner{
  height:100%;
  display:grid;
  grid-template-columns:minmax(180px,250px) minmax(0,1fr) minmax(160px,220px);
  align-items:center;
  gap:28px;
}

.d1666-af-brand{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
}

.d1666-af-brand img{
  width:auto;
  height:58px;
  max-width:235px;
  display:block;
  object-fit:contain;
}

.d1666-af-nav{
  height:100%;
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:clamp(17px,1.8vw,31px);
}

.d1666-af-nav a{
  position:relative;
  display:flex;
  align-items:center;
  color:#2d2e33;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
  transition:color .25s ease;
}

.d1666-af-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:0;
  height:3px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(90deg,var(--af-red),var(--af-orange));
  transition:left .3s ease,right .3s ease;
}

.d1666-af-nav a:hover,
.d1666-af-nav a.is-active{color:var(--af-red)}

.d1666-af-nav a:hover::after,
.d1666-af-nav a.is-active::after{left:0;right:0}

.d1666-af-hotline-bar{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-right:22px;
  border-right:1px solid rgba(15,15,20,.08);
}

.d1666-af-hotline-bar img{
  width:auto;
  max-width:100%;
  height:46px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-af-hotline-bar:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.16));
}

/* =====================================================
   BREADCRUMB
===================================================== */
.d1666-af-breadcrumb-bar{
  position:relative;
  z-index:8;
  background:#fff;
  border-bottom:1px solid rgba(71,88,50,.09);
}

.d1666-af-breadcrumb{
  min-height:43px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#8b8c91;
  font-size:10px;
  font-weight:700;
}

.d1666-af-breadcrumb a{color:#686a71;transition:color .2s ease}
.d1666-af-breadcrumb a:hover{color:var(--af-red)}
.d1666-af-breadcrumb b{color:var(--af-orange);font-size:17px;font-weight:500}
.d1666-af-breadcrumb span{color:var(--af-red);font-weight:850}

/* =====================================================
   HERO
===================================================== */
.d1666-af-hero{
  position:relative;
  min-height:570px;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  background:
    linear-gradient(rgba(93,122,72,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(93,122,72,.045) 1px,transparent 1px),
    radial-gradient(circle at 12% 15%,rgba(231,182,62,.18),transparent 28%),
    radial-gradient(circle at 91% 80%,rgba(243,107,34,.12),transparent 31%),
    linear-gradient(125deg,#fffdf8 0%,#f7f8ef 56%,#fff7f1 100%);
  background-size:72px 72px,72px 72px,auto,auto,auto;
}

.d1666-af-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(104deg,transparent 0 54%,rgba(93,122,72,.075) 54% 54.12%,transparent 54.12%);
}

.d1666-af-hero-glow{
  position:absolute;
  z-index:-1;
  border-radius:50%;
  pointer-events:none;
  filter:blur(9px);
}

.d1666-af-hero-glow-one{
  width:420px;
  height:420px;
  top:-270px;
  right:-185px;
  background:rgba(93,122,72,.11);
}

.d1666-af-hero-glow-two{
  width:360px;
  height:360px;
  left:19%;
  bottom:-300px;
  background:rgba(201,0,22,.08);
}

.d1666-af-hero-grid{
  min-height:570px;
  display:grid;
  grid-template-columns:minmax(520px,1fr) minmax(430px,.82fr);
  align-items:center;
  gap:78px;
  padding:58px 0 70px;
}

.d1666-af-hero-copy{position:relative;z-index:2;max-width:720px}

.d1666-af-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--af-blue-deep);
  font-size:11px;
  font-weight:850;
}

.d1666-af-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--af-red);
  box-shadow:0 0 0 6px rgba(201,0,22,.075);
  animation:d1666AfPulse 1.8s ease-in-out infinite;
}

.d1666-af-hero h1{
  max-width:720px;
  margin:0;
  color:#25272d;
  font-size:clamp(49px,5.25vw,75px);
  font-weight:900;
  line-height:1.13;
  letter-spacing:-2.4px;
}

.d1666-af-hero h1 span{
  display:block;
  color:transparent;
  background:linear-gradient(90deg,var(--af-red),var(--af-orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-af-hero-copy > p{
  max-width:650px;
  margin:23px 0 0;
  color:#6f737c;
  font-size:14px;
  font-weight:500;
  line-height:2;
}

.d1666-af-hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
}

.d1666-af-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:13px;
  font-size:11px;
  font-weight:850;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.d1666-af-btn:hover{transform:translateY(-3px)}

.d1666-af-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--af-red-deep),var(--af-red),var(--af-orange));
  box-shadow:0 15px 33px rgba(201,0,22,.19);
}

.d1666-af-btn-primary:hover{box-shadow:0 20px 40px rgba(201,0,22,.25)}

.d1666-af-btn-secondary{
  color:var(--af-blue-deep);
  background:rgba(255,255,255,.75);
  border:1px solid rgba(93,122,72,.17);
}

.d1666-af-btn-secondary:hover{background:#fff;box-shadow:0 13px 28px rgba(71,88,50,.09)}

.d1666-af-points{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:31px;
}

.d1666-af-points > span{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 13px;
  border:1px solid rgba(93,122,72,.11);
  border-radius:999px;
  color:#596779;
  background:rgba(255,255,255,.68);
  box-shadow:0 7px 18px rgba(71,88,50,.035);
}

.d1666-af-points i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--af-red),var(--af-orange));
}

.d1666-af-points b{font-size:9px;font-weight:800}

.d1666-af-visual{
  position:relative;
  min-height:390px;
  display:grid;
  place-items:center;
}

.d1666-af-visual::before{
  content:"";
  position:absolute;
  width:355px;
  height:355px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(93,122,72,.115),transparent 68%);
}

.d1666-af-orbit{
  position:absolute;
  border:1px solid rgba(93,122,72,.18);
  border-radius:50%;
}

.d1666-af-orbit-one{
  width:355px;
  height:355px;
  animation:d1666AfSpin 20s linear infinite;
}

.d1666-af-orbit-two{
  width:287px;
  height:287px;
  border-style:dashed;
  border-color:rgba(201,0,22,.14);
  animation:d1666AfSpinReverse 15s linear infinite;
}

.d1666-af-orbit-one::before,
.d1666-af-orbit-two::after{
  content:"";
  position:absolute;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--af-red);
  box-shadow:0 0 17px rgba(201,0,22,.45);
}

.d1666-af-orbit-one::before{top:26px;left:65px}
.d1666-af-orbit-two::after{right:12px;bottom:72px;background:var(--af-blue)}

.d1666-af-node{
  position:absolute;
  z-index:2;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--af-blue);
  box-shadow:0 0 0 5px rgba(93,122,72,.08);
}

.d1666-af-node-one{top:42px;right:20%}
.d1666-af-node-two{bottom:48px;left:18%;background:var(--af-orange)}
.d1666-af-node-three{top:52%;right:4%;background:var(--af-red)}

.d1666-af-visual-card{
  position:relative;
  z-index:3;
  width:min(430px,91%);
  min-height:150px;
  display:grid;
  grid-template-columns:106px minmax(0,1fr);
  align-items:center;
  gap:22px;
  padding:22px 25px;
  border:1px solid rgba(93,122,72,.14);
  border-radius:25px;
  background:rgba(255,255,255,.82);
  box-shadow:0 28px 65px rgba(71,88,50,.13),inset 0 1px 0 #fff;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.d1666-af-visual-icon{
  width:106px;
  height:106px;
  display:grid;
  place-items:center;
  padding:17px;
  border:1px solid rgba(93,122,72,.1);
  border-radius:22px;
  background:linear-gradient(145deg,#fffdf8,var(--af-blue-soft));
  box-shadow:0 15px 32px rgba(71,88,50,.1);
}

.d1666-af-visual-icon img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  display:block;
  object-fit:contain;
}

.d1666-af-visual-copy{min-width:0}

.d1666-af-visual-copy small{
  display:block;
  margin-bottom:6px;
  color:var(--af-blue-deep);
  font:800 8px "Inter",sans-serif;
  letter-spacing:1.05px;
}

.d1666-af-visual-copy strong{
  display:block;
  color:#292b31;
  font-size:19px;
  font-weight:900;
}

.d1666-af-visual-copy span{
  display:block;
  margin-top:7px;
  color:#838790;
  font:600 9px "Inter","Cairo",sans-serif;
}

/* =====================================================
   DIRECTORY
===================================================== */
.d1666-af-directory{
  position:relative;
  padding:88px 0 106px;
  background:
    linear-gradient(rgba(93,122,72,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(93,122,72,.03) 1px,transparent 1px),
    linear-gradient(180deg,#faf9f1,#fff 60%);
  background-size:68px 68px,68px 68px,auto;
  border-top:1px solid rgba(93,122,72,.07);
}

.d1666-af-directory::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(720px,65%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--af-blue),var(--af-red),var(--af-orange),transparent);
}

.d1666-af-section-heading{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.7fr);
  align-items:end;
  gap:70px;
  margin-bottom:35px;
}

.d1666-af-section-kicker{
  display:block;
  margin-bottom:9px;
  color:var(--af-blue-deep);
  font-size:10px;
  font-weight:900;
}

.d1666-af-section-heading h2{
  margin:0;
  color:#24262c;
  font-size:clamp(34px,3.2vw,51px);
  font-weight:900;
  line-height:1.23;
  letter-spacing:-1.6px;
}

.d1666-af-section-heading h2 span{
  color:transparent;
  background:linear-gradient(90deg,var(--af-red),var(--af-orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-af-section-heading > p{
  margin:0;
  color:var(--af-muted);
  font-size:12px;
  font-weight:500;
  line-height:1.95;
}

.d1666-af-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
  padding:14px;
  border:1px solid rgba(93,122,72,.1);
  border-radius:18px;
  background:rgba(255,255,255,.9);
  box-shadow:0 12px 30px rgba(71,88,50,.05);
}

.d1666-af-search{
  width:min(450px,100%);
  min-height:49px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:0 17px;
  border:1px solid rgba(93,122,72,.12);
  border-radius:13px;
  background:#f9fbfd;
  transition:border-color .25s ease,box-shadow .25s ease;
}

.d1666-af-search:focus-within{
  border-color:rgba(201,0,22,.28);
  box-shadow:0 0 0 4px rgba(201,0,22,.045);
}

.d1666-af-search svg{
  width:19px;
  height:19px;
  flex:0 0 auto;
  fill:none;
  stroke:var(--af-red);
  stroke-width:1.8;
  stroke-linecap:round;
}

.d1666-af-search input{
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  color:#292a2f;
  background:transparent;
  font:700 12px "Cairo",sans-serif;
}

.d1666-af-search input::placeholder{color:#a1a2a7}

.d1666-af-results-bar{
  display:flex;
  align-items:center;
  gap:12px;
  color:#8d8e94;
  font-size:10px;
  font-weight:650;
}

.d1666-af-results-bar b{
  color:#34353a;
  font-size:12px;
  font-weight:850;
}

.d1666-af-results-bar span{
  padding:7px 11px;
  border-radius:999px;
  color:var(--af-blue-deep);
  background:rgba(93,122,72,.07);
  white-space:nowrap;
}

.d1666-af-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.d1666-af-client{
  position:relative;
  min-width:0;
  min-height:316px;
  display:flex;
  flex-direction:column;
  padding:14px;
  overflow:hidden;
  color:#292a30;
  border:1px solid rgba(71,88,50,.085);
  border-radius:20px;
  background:rgba(255,255,255,.96);
  box-shadow:0 13px 30px rgba(71,88,50,.055);
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease;
}

.d1666-af-client::before{
  content:"";
  position:absolute;
  right:0;
  top:29px;
  width:3px;
  height:38px;
  border-radius:3px 0 0 3px;
  background:linear-gradient(var(--af-blue),var(--af-red),var(--af-orange));
  opacity:.62;
  transition:height .32s ease,opacity .32s ease;
}

.d1666-af-client:hover{
  z-index:2;
  transform:translateY(-7px);
  border-color:rgba(201,0,22,.18);
  box-shadow:0 25px 52px rgba(71,88,50,.13);
}

.d1666-af-client:hover::before{height:72px;opacity:1}
.d1666-af-client[hidden]{display:none!important}

.d1666-af-logo{
  position:relative;
  width:100%;
  height:210px;
  min-height:210px;
  display:grid;
  place-items:center;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(71,88,50,.075);
  border-radius:16px;
  background:
    radial-gradient(circle at center,rgba(231,182,62,.1),transparent 58%),
    linear-gradient(145deg,#fff,#faf9f2);
}

.d1666-af-logo::after{
  content:"AFRICA";
  position:absolute;
  z-index:0;
  color:rgba(71,88,50,.045);
  font:900 24px "Inter",sans-serif;
  letter-spacing:2px;
}

.d1666-af-logo img{
  position:relative;
  z-index:1;
  inset:auto!important;
  width:100%!important;
  height:100%!important;
  min-width:0!important;
  min-height:0!important;
  max-width:100%!important;
  max-height:100%!important;
  display:block;
  object-fit:contain!important;
  filter:drop-shadow(0 7px 12px rgba(54,72,44,.07));
  transition:transform .35s ease;
}

.d1666-af-client:hover .d1666-af-logo img{transform:scale(1.025)}
.d1666-af-client.has-missing-logo .d1666-af-logo img{display:none}

.d1666-af-client strong{
  display:block;
  margin-top:13px;
  overflow:hidden;
  color:#292a30;
  font:850 15px "Inter",sans-serif;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.d1666-af-visit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin-top:auto;
  padding-top:11px;
  color:#8d8e94;
  border-top:1px solid rgba(71,88,50,.07);
  font-size:10px;
  font-weight:700;
  transition:color .25s ease;
}

.d1666-af-visit b{
  color:var(--af-red);
  font:800 10px "Inter",sans-serif;
}

.d1666-af-client:hover .d1666-af-visit{color:var(--af-red)}

.d1666-af-empty{
  display:none;
  grid-column:1/-1;
  padding:70px 24px;
  border:1px dashed rgba(201,0,22,.2);
  border-radius:22px;
  color:#777981;
  background:rgba(255,255,255,.8);
  font-size:14px;
  text-align:center;
}

.d1666-af-empty.is-visible{display:block}

/* =====================================================
   FOOTER
===================================================== */
.d1666-af-footer{
  position:relative;
  width:100%;
  min-height:95px;
  padding:18px 0;
  overflow:hidden;
  color:#26272c;
  background:
    linear-gradient(rgba(93,122,72,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(93,122,72,.025) 1px,transparent 1px),
    linear-gradient(135deg,#fffdf9,#f7f8ef);
  background-size:64px 64px,64px 64px,auto;
  border-top:1px solid rgba(93,122,72,.1);
  font-family:"Inter",system-ui,sans-serif;
  direction:ltr;
}

.d1666-af-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(760px,70%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--af-blue) 25%,var(--af-red) 58%,var(--af-orange) 78%,transparent);
}

.d1666-af-footer-inner{
  width:min(1380px,calc(100% - 80px));
  min-height:58px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:35px;
}

.d1666-af-footer-copy{justify-self:start;text-align:left}
.d1666-af-footer-copy b,
.d1666-af-footer-copy span,
.d1666-af-footer-tagline b,
.d1666-af-footer-tagline span{display:block}

.d1666-af-footer-copy b{
  margin-bottom:6px;
  color:#292a2f;
  font-size:13px;
  font-weight:850;
}

.d1666-af-footer-copy span,
.d1666-af-footer-tagline span{color:#83848a;font-size:10px}

.d1666-af-footer-powered{
  min-width:245px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:12px 20px;
  border:1px solid rgba(93,122,72,.1);
  border-radius:17px;
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 34px rgba(71,88,50,.08),inset 0 1px 0 #fff;
}

.d1666-af-powered-label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8f0015;
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-af-powered-label i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--af-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.08);
}

.d1666-af-footer-powered a{display:flex;align-items:center}

.d1666-af-footer-powered img{
  width:auto;
  height:35px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-af-footer-powered a:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.13));
}

.d1666-af-footer-tagline{justify-self:end;text-align:right}

.d1666-af-footer-tagline b{
  margin-bottom:6px;
  color:transparent;
  background:linear-gradient(90deg,var(--af-blue-deep),var(--af-red),var(--af-orange));
  -webkit-background-clip:text;
  background-clip:text;
  font-size:13px;
  font-weight:900;
}

/* =====================================================
   BACK TO TOP
===================================================== */
.d1666-af-back-top{
  --scroll-progress:0deg;
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:9998;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:50%;
  background:conic-gradient(var(--af-red) var(--scroll-progress),rgba(201,0,22,.1) 0);
  box-shadow:0 15px 35px rgba(103,0,15,.2);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px) scale(.85);
  transition:opacity .3s ease,visibility .3s ease,transform .35s ease;
}

.d1666-af-back-top::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:linear-gradient(145deg,#fffdf9,#f1f4e9);
}

.d1666-af-back-top span{
  position:relative;
  z-index:2;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--af-blue-deep),var(--af-red) 64%,var(--af-orange));
}

.d1666-af-back-top svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .3s ease;
}

.d1666-af-back-top.is-visible{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
.d1666-af-back-top:hover{transform:translateY(-5px) scale(1.04)}
.d1666-af-back-top:hover svg{transform:translateY(-2px)}

/* =====================================================
   ANIMATION
===================================================== */
@keyframes d1666AfPulse{
  0%,100%{opacity:.65;transform:scale(.82)}
  50%{opacity:1;transform:scale(1)}
}

@keyframes d1666AfSpin{to{transform:rotate(360deg)}}
@keyframes d1666AfSpinReverse{to{transform:rotate(-360deg)}}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1180px){
  .d1666-af-shell,
  .d1666-af-head-shell{width:min(100% - 48px,1100px)}

  .d1666-af-main-inner{grid-template-columns:205px minmax(0,1fr) 145px;gap:18px}
  .d1666-af-nav{gap:17px}
  .d1666-af-nav a{font-size:10px}

  .d1666-af-hero-grid{grid-template-columns:minmax(0,1fr) 415px;gap:46px}
  .d1666-af-hero h1{font-size:clamp(48px,6vw,68px)}
  .d1666-af-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:900px){
  .d1666-af-top-inner{padding-block:8px;flex-wrap:wrap;justify-content:center}
  .d1666-af-main-header{height:auto}
  .d1666-af-main-inner{grid-template-columns:1fr auto;padding-block:14px}
  .d1666-af-brand img{max-width:190px}
  .d1666-af-hotline-bar{width:120px}
  .d1666-af-nav{grid-column:1/-1;order:3;min-height:47px;justify-content:flex-start;overflow-x:auto}

  .d1666-af-hero-grid{grid-template-columns:1fr;padding-top:53px}
  .d1666-af-hero-copy{max-width:760px}
  .d1666-af-visual{min-height:370px}

  .d1666-af-section-heading{grid-template-columns:1fr;gap:15px}
  .d1666-af-section-heading > p{max-width:650px}
  .d1666-af-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:680px){
  .d1666-af-shell,
  .d1666-af-head-shell{width:calc(100% - 28px)}

  .d1666-af-top-contact{justify-content:center;flex-wrap:wrap;gap:10px}
  .d1666-af-top-contact .d1666-af-top-separator{display:none}
  .d1666-af-top-side{width:100%;justify-content:center}

  .d1666-af-main-inner{grid-template-columns:1fr}
  .d1666-af-brand{justify-self:center}
  .d1666-af-hotline-bar{display:none}
  .d1666-af-nav{grid-column:1;max-width:100%;gap:20px}

  .d1666-af-breadcrumb{overflow-x:auto;white-space:nowrap}
  .d1666-af-hero{min-height:auto}
  .d1666-af-hero-grid{min-height:0;padding:44px 0 58px}
  .d1666-af-hero h1{font-size:41px;letter-spacing:-1.3px}
  .d1666-af-hero-copy > p{font-size:13px}
  .d1666-af-hero-actions{align-items:stretch;flex-direction:column}
  .d1666-af-points{gap:6px}
  .d1666-af-points > span{padding:0 10px}

  .d1666-af-visual{min-height:320px}
  .d1666-af-orbit-one{width:295px;height:295px}
  .d1666-af-orbit-two{width:240px;height:240px}
  .d1666-af-visual-card{grid-template-columns:75px minmax(0,1fr);gap:15px;padding:17px}
  .d1666-af-visual-icon{width:75px;height:75px;padding:12px;border-radius:17px}
  .d1666-af-visual-copy strong{font-size:16px}
  .d1666-af-visual-copy small{font-size:6px}

  .d1666-af-directory{padding:64px 0 74px}
  .d1666-af-section-heading h2{font-size:34px;letter-spacing:-1px}
  .d1666-af-toolbar{align-items:stretch;flex-direction:column}
  .d1666-af-search{width:100%}
  .d1666-af-results-bar{justify-content:space-between}
  .d1666-af-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .d1666-af-client{min-height:260px;padding:11px;border-radius:16px}
  .d1666-af-logo{height:155px;min-height:155px;padding:17px}
  .d1666-af-client strong{font-size:13px}
  .d1666-af-visit{font-size:9px}

  .d1666-af-footer-inner{
    width:calc(100% - 28px);
    grid-template-columns:1fr;
    justify-items:center;
    gap:18px;
    text-align:center;
  }

  .d1666-af-footer-copy,
  .d1666-af-footer-tagline{justify-self:center;text-align:center}
  .d1666-af-footer-powered{min-width:0;width:min(100%,320px)}

  .d1666-af-back-top{right:17px;bottom:20px;width:50px;height:50px}
  .d1666-af-back-top span{width:37px;height:37px}
}

@media(max-width:380px){
  .d1666-af-grid{grid-template-columns:1fr}
  .d1666-af-logo{height:165px;min-height:165px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .d1666-af-kicker i,
  .d1666-af-orbit-one,
  .d1666-af-orbit-two{animation:none!important}
  .d1666-af-client,
  .d1666-af-logo img,
  .d1666-af-back-top{transition:none!important}
}



.d1666-af-hero-copy {
  overflow: visible;
}

.d1666-af-hero h1 {
  padding-block: .06em .1em;
  overflow: visible;
  line-height: 1.32;
}

.d1666-af-hero h1 span {
  padding: .1em .04em .18em;
  margin-inline: -.04em;
  overflow: visible;
  line-height: 1.3;
}


/* =========================================
   GLOBAL ARABIC FONT CLIPPING FIX
========================================= */

html[lang="ar"] [class*="-hero-copy"] {
  overflow: visible !important;
}

html[lang="ar"] [class*="-hero"] h1 {
  line-height: 1.38 !important;
  letter-spacing: 0 !important;
  padding-block: .08em .14em !important;
  overflow: visible !important;
}

html[lang="ar"] [class*="-hero"] h1 > span {
  display: block;
  line-height: 1.35 !important;
  padding: .08em .04em .18em !important;
  margin-inline: -.04em !important;
  overflow: visible !important;
}

/* عناوين الأقسام الداخلية */
html[lang="ar"] [class*="-section-heading"] h2 {
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  padding-block: .06em .12em !important;
  overflow: visible !important;
}

html[lang="ar"] [class*="-section-heading"] h2 > span {
  line-height: inherit !important;
  padding-block: .04em .1em !important;
}


/* إصلاح قص عنوان هيرو عملاء مصر */
.d1666-eg-copy {
  overflow: visible !important;
}

.d1666-eg-copy h1 {
  line-height: 1.38 !important;
  letter-spacing: 0 !important;
  padding: .08em 0 .14em !important;
  overflow: visible !important;
}

.d1666-eg-copy h1 span {
  display: block;
  line-height: 1.35 !important;
  padding: .08em .04em .18em !important;
  margin-inline: -.04em !important;
  overflow: visible !important;
}




:root{
  --gallery-red:#c90016;
  --gallery-red-deep:#770010;
  --gallery-orange:#f36b22;
  --gallery-gold:#f5c746;
  --gallery-blue:#476b96;
  --gallery-blue-deep:#294d78;
  --gallery-blue-soft:#edf4fb;
  --gallery-ink:#23252b;
  --gallery-muted:#777a82;
  --gallery-line:rgba(48,77,111,.1);
  --gallery-white:#fff;
}

html{scroll-behavior:smooth}

body{
  margin:0;
  color:var(--gallery-ink);
  background:#fff;
}

.d1666-gallery-page,
.d1666-gallery-page *,
.d1666-gallery-back-top,
.d1666-gallery-back-top *{
  box-sizing:border-box;
}

.d1666-gallery-page{
  min-width:0;
  overflow:hidden;
  font-family:"Cairo",system-ui,-apple-system,"Segoe UI",sans-serif;
}

.d1666-gallery-page a{text-decoration:none}

.d1666-gallery-shell,
.d1666-gallery-head-shell{
  width:min(1380px,calc(100% - 80px));
  margin-inline:auto;
}

/* =====================================================
   TOP HEADER
===================================================== */
.d1666-gallery-top-header{
  position:relative;
  z-index:1002;
  min-height:40px;
  display:flex;
  align-items:center;
  color:rgba(255,255,255,.82);
  background:
    linear-gradient(90deg,rgba(255,255,255,.05),transparent 32%),
    #760010;
  border-bottom:1px solid rgba(255,255,255,.1);
  font-family:"Inter","Cairo",sans-serif;
}

.d1666-gallery-top-inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.d1666-gallery-top-contact,
.d1666-gallery-top-side,
.d1666-gallery-mini-social{
  display:flex;
  align-items:center;
}

.d1666-gallery-top-contact{gap:17px;direction:ltr}
.d1666-gallery-top-side{gap:13px}

.d1666-gallery-top-contact a,
.d1666-gallery-language{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:inherit;
  font-size:11px;
  font-weight:650;
  transition:color .25s ease;
}

.d1666-gallery-top-contact a:hover,
.d1666-gallery-language:hover{color:#fff}

.d1666-gallery-top-contact svg{
  width:14px;
  height:14px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.d1666-gallery-top-separator{
  width:1px;
  height:14px;
  flex:0 0 auto;
  background:rgba(255,255,255,.18);
}

.d1666-gallery-follow-label{
  color:rgba(255,255,255,.55);
  font-size:10px;
  font-weight:700;
}

.d1666-gallery-mini-social{gap:6px;direction:ltr}

.d1666-gallery-mini-social a{
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.055);
  font:800 10px/1 Arial,sans-serif;
  transition:transform .25s ease,background .25s ease,border-color .25s ease;
}

.d1666-gallery-mini-social a:hover{
  transform:translateY(-2px);
  border-color:rgba(245,199,70,.75);
  background:rgba(245,199,70,.15);
}

.d1666-gallery-language{
  color:#ffe792;
  font:700 10px "Inter",sans-serif;
}

/* =====================================================
   MAIN HEADER
===================================================== */
.d1666-gallery-main-header{
  position:sticky;
  top:0;
  z-index:1000;
  height:84px;
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(15,15,20,.07);
  box-shadow:0 12px 34px rgba(57,0,8,.08);
  backdrop-filter:blur(16px) saturate(135%);
  -webkit-backdrop-filter:blur(16px) saturate(135%);
}

.d1666-gallery-main-inner{
  height:100%;
  display:grid;
  grid-template-columns:minmax(180px,250px) minmax(0,1fr) minmax(160px,220px);
  align-items:center;
  gap:28px;
}

.d1666-gallery-brand{
  width:max-content;
  max-width:100%;
  display:flex;
  align-items:center;
}

.d1666-gallery-brand img{
  width:auto;
  height:58px;
  max-width:235px;
  display:block;
  object-fit:contain;
}

.d1666-gallery-nav{
  height:100%;
  display:flex;
  align-items:stretch;
  justify-content:center;
  gap:clamp(17px,1.8vw,31px);
}

.d1666-gallery-nav a{
  position:relative;
  display:flex;
  align-items:center;
  color:#2d2e33;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
  transition:color .25s ease;
}

.d1666-gallery-nav a::after{
  content:"";
  position:absolute;
  left:50%;
  right:50%;
  bottom:0;
  height:3px;
  border-radius:4px 4px 0 0;
  background:linear-gradient(90deg,var(--gallery-red),var(--gallery-orange));
  transition:left .3s ease,right .3s ease;
}

.d1666-gallery-nav a:hover,
.d1666-gallery-nav a.is-active{color:var(--gallery-red)}

.d1666-gallery-nav a:hover::after,
.d1666-gallery-nav a.is-active::after{left:0;right:0}

.d1666-gallery-hotline-bar{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding-right:22px;
  border-right:1px solid rgba(15,15,20,.08);
}

.d1666-gallery-hotline-bar img{
  width:auto;
  max-width:100%;
  height:46px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-gallery-hotline-bar:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.16));
}

/* =====================================================
   BREADCRUMB
===================================================== */
.d1666-gallery-breadcrumb-bar{
  position:relative;
  z-index:8;
  background:#fff;
  border-bottom:1px solid rgba(48,77,111,.09);
}

.d1666-gallery-breadcrumb{
  min-height:43px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#8b8c91;
  font-size:10px;
  font-weight:700;
}

.d1666-gallery-breadcrumb a{color:#686a71;transition:color .2s ease}
.d1666-gallery-breadcrumb a:hover{color:var(--gallery-red)}
.d1666-gallery-breadcrumb b{color:var(--gallery-orange);font-size:17px;font-weight:500}
.d1666-gallery-breadcrumb span{color:var(--gallery-red);font-weight:850}

/* =====================================================
   HERO
===================================================== */
.d1666-gallery-hero{
  position:relative;
  min-height:570px;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  background:
    linear-gradient(rgba(71,107,150,.045) 1px,transparent 1px),
    linear-gradient(90deg,rgba(71,107,150,.045) 1px,transparent 1px),
    radial-gradient(circle at 12% 15%,rgba(81,120,164,.18),transparent 28%),
    radial-gradient(circle at 91% 80%,rgba(243,107,34,.12),transparent 31%),
    linear-gradient(125deg,#ffffff 0%,#f7f9fc 56%,#fff7f1 100%);
  background-size:72px 72px,72px 72px,auto,auto,auto;
}

.d1666-gallery-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(104deg,transparent 0 54%,rgba(71,107,150,.075) 54% 54.12%,transparent 54.12%);
}

.d1666-gallery-hero-glow{
  position:absolute;
  z-index:-1;
  border-radius:50%;
  pointer-events:none;
  filter:blur(9px);
}

.d1666-gallery-hero-glow-one{
  width:420px;
  height:420px;
  top:-270px;
  right:-185px;
  background:rgba(71,107,150,.11);
}

.d1666-gallery-hero-glow-two{
  width:360px;
  height:360px;
  left:19%;
  bottom:-300px;
  background:rgba(201,0,22,.08);
}

.d1666-gallery-hero-grid{
  min-height:570px;
  display:grid;
  grid-template-columns:minmax(520px,1fr) minmax(430px,.82fr);
  align-items:center;
  gap:78px;
  padding:58px 0 70px;
}

.d1666-gallery-hero-copy{
  position:relative;
  z-index:2;
  max-width:720px;
  overflow:visible;
}

.d1666-gallery-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:var(--gallery-blue-deep);
  font-size:11px;
  font-weight:850;
}

.d1666-gallery-kicker i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--gallery-red);
  box-shadow:0 0 0 6px rgba(201,0,22,.075);
  animation:d1666GalleryPulse 1.8s ease-in-out infinite;
}

.d1666-gallery-hero h1{
  max-width:720px;
  margin:0;
  padding-block:.06em .1em;
  overflow:visible;
  color:#25272d;
  font-size:clamp(49px,5.25vw,75px);
  font-weight:900;
  line-height:1.32;
  letter-spacing:0;
}

.d1666-gallery-hero h1 span{
  display:block;
  padding:.1em .04em .18em;
  margin-inline:-.04em;
  overflow:visible;
  line-height:1.3;
  color:transparent;
  background:linear-gradient(90deg,var(--gallery-red),var(--gallery-orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-gallery-hero-copy > p{
  max-width:650px;
  margin:23px 0 0;
  color:#6f737c;
  font-size:14px;
  font-weight:500;
  line-height:2;
}

.d1666-gallery-hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
}

.d1666-gallery-btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 24px;
  border-radius:13px;
  font-size:11px;
  font-weight:850;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.d1666-gallery-btn:hover{transform:translateY(-3px)}

.d1666-gallery-btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--gallery-red-deep),var(--gallery-red),var(--gallery-orange));
  box-shadow:0 15px 33px rgba(201,0,22,.19);
}

.d1666-gallery-btn-primary:hover{box-shadow:0 20px 40px rgba(201,0,22,.25)}

.d1666-gallery-btn-secondary{
  color:var(--gallery-blue-deep);
  background:rgba(255,255,255,.75);
  border:1px solid rgba(71,107,150,.17);
}

.d1666-gallery-btn-secondary:hover{background:#fff;box-shadow:0 13px 28px rgba(48,77,111,.09)}

.d1666-gallery-points{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:31px;
}

.d1666-gallery-points > span{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 13px;
  border:1px solid rgba(71,107,150,.11);
  border-radius:999px;
  color:#596779;
  background:rgba(255,255,255,.68);
  box-shadow:0 7px 18px rgba(48,77,111,.035);
}

.d1666-gallery-points i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gallery-red),var(--gallery-orange));
}

.d1666-gallery-points b{font-size:9px;font-weight:800}

.d1666-gallery-visual{
  position:relative;
  min-height:390px;
  display:grid;
  place-items:center;
}

.d1666-gallery-visual::before{
  content:"";
  position:absolute;
  width:355px;
  height:355px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(71,107,150,.115),transparent 68%);
}

.d1666-gallery-orbit{
  position:absolute;
  border:1px solid rgba(71,107,150,.18);
  border-radius:50%;
}

.d1666-gallery-orbit-one{
  width:355px;
  height:355px;
  animation:d1666GallerySpin 20s linear infinite;
}

.d1666-gallery-orbit-two{
  width:287px;
  height:287px;
  border-style:dashed;
  border-color:rgba(201,0,22,.14);
  animation:d1666GallerySpinReverse 15s linear infinite;
}

.d1666-gallery-orbit-one::before,
.d1666-gallery-orbit-two::after{
  content:"";
  position:absolute;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--gallery-red);
  box-shadow:0 0 17px rgba(201,0,22,.45);
}

.d1666-gallery-orbit-one::before{top:26px;left:65px}
.d1666-gallery-orbit-two::after{right:12px;bottom:72px;background:var(--gallery-blue)}

.d1666-gallery-node{
  position:absolute;
  z-index:2;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gallery-blue);
  box-shadow:0 0 0 5px rgba(71,107,150,.08);
}

.d1666-gallery-node-one{top:42px;right:20%}
.d1666-gallery-node-two{bottom:48px;left:18%;background:var(--gallery-orange)}
.d1666-gallery-node-three{top:52%;right:4%;background:var(--gallery-red)}

.d1666-gallery-visual-card{
  position:relative;
  z-index:3;
  width:min(430px,91%);
  min-height:150px;
  display:grid;
  grid-template-columns:106px minmax(0,1fr);
  align-items:center;
  gap:22px;
  padding:22px 25px;
  border:1px solid rgba(71,107,150,.14);
  border-radius:25px;
  background:rgba(255,255,255,.82);
  box-shadow:0 28px 65px rgba(48,77,111,.13),inset 0 1px 0 #fff;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.d1666-gallery-visual-icon{
  width:106px;
  height:106px;
  display:grid;
  place-items:center;
  padding:17px;
  border:1px solid rgba(71,107,150,.1);
  border-radius:22px;
  background:linear-gradient(145deg,#ffffff,var(--gallery-blue-soft));
  box-shadow:0 15px 32px rgba(48,77,111,.1);
}

.d1666-gallery-visual-icon img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:100%;
  display:block;
  object-fit:contain;
}

.d1666-gallery-visual-copy{min-width:0}

.d1666-gallery-visual-copy small{
  display:block;
  margin-bottom:6px;
  color:var(--gallery-blue-deep);
  font:800 8px "Inter",sans-serif;
  letter-spacing:1.05px;
}

.d1666-gallery-visual-copy strong{
  display:block;
  color:#292b31;
  font-size:19px;
  font-weight:900;
}

.d1666-gallery-visual-copy span{
  display:block;
  margin-top:7px;
  color:#838790;
  font:600 9px "Inter","Cairo",sans-serif;
}

/* =====================================================
   DIRECTORY
===================================================== */
.d1666-gallery-directory{
  position:relative;
  padding:88px 0 106px;
  background:
    linear-gradient(rgba(71,107,150,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(71,107,150,.03) 1px,transparent 1px),
    linear-gradient(180deg,#f8fafc,#fff 60%);
  background-size:68px 68px,68px 68px,auto;
  border-top:1px solid rgba(71,107,150,.07);
}

.d1666-gallery-directory::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(720px,65%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--gallery-blue),var(--gallery-red),var(--gallery-orange),transparent);
}

.d1666-gallery-section-heading{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(300px,.7fr);
  align-items:end;
  gap:70px;
  margin-bottom:35px;
}

.d1666-gallery-section-kicker{
  display:block;
  margin-bottom:9px;
  color:var(--gallery-blue-deep);
  font-size:10px;
  font-weight:900;
}

.d1666-gallery-section-heading h2{
  margin:0;
  color:#24262c;
  font-size:clamp(34px,3.2vw,51px);
  font-weight:900;
  line-height:1.23;
  letter-spacing:-1.6px;
}

.d1666-gallery-section-heading h2 span{
  color:transparent;
  background:linear-gradient(90deg,var(--gallery-red),var(--gallery-orange));
  -webkit-background-clip:text;
  background-clip:text;
}

.d1666-gallery-section-heading > p{
  margin:0;
  color:var(--gallery-muted);
  font-size:12px;
  font-weight:500;
  line-height:1.95;
}

.d1666-gallery-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:22px;
  padding:14px;
  border:1px solid rgba(71,107,150,.1);
  border-radius:18px;
  background:rgba(255,255,255,.9);
  box-shadow:0 12px 30px rgba(48,77,111,.05);
}

.d1666-gallery-search{
  width:min(450px,100%);
  min-height:49px;
  display:flex;
  align-items:center;
  gap:11px;
  padding:0 17px;
  border:1px solid rgba(71,107,150,.12);
  border-radius:13px;
  background:#f9fbfd;
  transition:border-color .25s ease,box-shadow .25s ease;
}

.d1666-gallery-search:focus-within{
  border-color:rgba(201,0,22,.28);
  box-shadow:0 0 0 4px rgba(201,0,22,.045);
}

.d1666-gallery-search svg{
  width:19px;
  height:19px;
  flex:0 0 auto;
  fill:none;
  stroke:var(--gallery-red);
  stroke-width:1.8;
  stroke-linecap:round;
}

.d1666-gallery-search input{
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  color:#292a2f;
  background:transparent;
  font:700 12px "Cairo",sans-serif;
}

.d1666-gallery-search input::placeholder{color:#a1a2a7}

.d1666-gallery-results-bar{
  display:flex;
  align-items:center;
  gap:12px;
  color:#8d8e94;
  font-size:10px;
  font-weight:650;
}

.d1666-gallery-results-bar b{
  color:#34353a;
  font-size:12px;
  font-weight:850;
}

.d1666-gallery-results-bar span{
  padding:7px 11px;
  border-radius:999px;
  color:var(--gallery-blue-deep);
  background:rgba(71,107,150,.07);
  white-space:nowrap;
}

.d1666-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.d1666-gallery-client{
  position:relative;
  min-width:0;
  min-height:316px;
  display:flex;
  flex-direction:column;
  padding:14px;
  overflow:hidden;
  color:#292a30;
  border:1px solid rgba(48,77,111,.085);
  border-radius:20px;
  background:rgba(255,255,255,.96);
  box-shadow:0 13px 30px rgba(48,77,111,.055);
  transition:transform .32s ease,border-color .32s ease,box-shadow .32s ease;
}

.d1666-gallery-client::before{
  content:"";
  position:absolute;
  right:0;
  top:29px;
  width:3px;
  height:38px;
  border-radius:3px 0 0 3px;
  background:linear-gradient(var(--gallery-blue),var(--gallery-red),var(--gallery-orange));
  opacity:.62;
  transition:height .32s ease,opacity .32s ease;
}

.d1666-gallery-client:hover{
  z-index:2;
  transform:translateY(-7px);
  border-color:rgba(201,0,22,.18);
  box-shadow:0 25px 52px rgba(48,77,111,.13);
}

.d1666-gallery-client:hover::before{height:72px;opacity:1}
.d1666-gallery-client[hidden]{display:none!important}

.d1666-gallery-logo{
  position:relative;
  width:100%;
  height:210px;
  min-height:210px;
  display:grid;
  place-items:center;
  padding:24px;
  overflow:hidden;
  border:1px solid rgba(48,77,111,.075);
  border-radius:16px;
  background:
    radial-gradient(circle at center,rgba(81,120,164,.1),transparent 58%),
    linear-gradient(145deg,#fff,#f8fafc);
}

.d1666-gallery-logo::after{
  content:"AFRICA";
  position:absolute;
  z-index:0;
  color:rgba(48,77,111,.045);
  font:900 24px "Inter",sans-serif;
  letter-spacing:2px;
}

.d1666-gallery-logo img{
  position:relative;
  z-index:1;
  inset:auto!important;
  width:100%!important;
  height:100%!important;
  min-width:0!important;
  min-height:0!important;
  max-width:100%!important;
  max-height:100%!important;
  display:block;
  object-fit:contain!important;
  filter:drop-shadow(0 7px 12px rgba(40,58,78,.07));
  transition:transform .35s ease;
}

.d1666-gallery-client:hover .d1666-gallery-logo img{transform:scale(1.025)}
.d1666-gallery-client.has-missing-logo .d1666-gallery-logo img{display:none}

.d1666-gallery-client strong{
  display:block;
  margin-top:13px;
  overflow:hidden;
  color:#292a30;
  font:850 15px "Inter",sans-serif;
  text-align:center;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.d1666-gallery-visit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  margin-top:auto;
  padding-top:11px;
  color:#8d8e94;
  border-top:1px solid rgba(48,77,111,.07);
  font-size:10px;
  font-weight:700;
  transition:color .25s ease;
}

.d1666-gallery-visit b{
  color:var(--gallery-red);
  font:800 10px "Inter",sans-serif;
}

.d1666-gallery-client:hover .d1666-gallery-visit{color:var(--gallery-red)}

.d1666-gallery-empty{
  display:none;
  grid-column:1/-1;
  padding:70px 24px;
  border:1px dashed rgba(201,0,22,.2);
  border-radius:22px;
  color:#777981;
  background:rgba(255,255,255,.8);
  font-size:14px;
  text-align:center;
}

.d1666-gallery-empty.is-visible{display:block}

/* =====================================================
   FOOTER
===================================================== */
.d1666-gallery-footer{
  position:relative;
  width:100%;
  min-height:95px;
  padding:18px 0;
  overflow:hidden;
  color:#26272c;
  background:
    linear-gradient(rgba(71,107,150,.025) 1px,transparent 1px),
    linear-gradient(90deg,rgba(71,107,150,.025) 1px,transparent 1px),
    linear-gradient(135deg,#ffffff,#f7f9fc);
  background-size:64px 64px,64px 64px,auto;
  border-top:1px solid rgba(71,107,150,.1);
  font-family:"Inter",system-ui,sans-serif;
  direction:ltr;
}

.d1666-gallery-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  width:min(760px,70%);
  height:3px;
  transform:translateX(-50%);
  background:linear-gradient(90deg,transparent,var(--gallery-blue) 25%,var(--gallery-red) 58%,var(--gallery-orange) 78%,transparent);
}

.d1666-gallery-footer-inner{
  width:min(1380px,calc(100% - 80px));
  min-height:58px;
  margin-inline:auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:35px;
}

.d1666-gallery-footer-copy{justify-self:start;text-align:left}
.d1666-gallery-footer-copy b,
.d1666-gallery-footer-copy span,
.d1666-gallery-footer-tagline b,
.d1666-gallery-footer-tagline span{display:block}

.d1666-gallery-footer-copy b{
  margin-bottom:6px;
  color:#292a2f;
  font-size:13px;
  font-weight:850;
}

.d1666-gallery-footer-copy span,
.d1666-gallery-footer-tagline span{color:#83848a;font-size:10px}

.d1666-gallery-footer-powered{
  min-width:245px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:12px 20px;
  border:1px solid rgba(71,107,150,.1);
  border-radius:17px;
  background:rgba(255,255,255,.92);
  box-shadow:0 14px 34px rgba(48,77,111,.08),inset 0 1px 0 #fff;
}

.d1666-gallery-powered-label{
  display:flex;
  align-items:center;
  gap:8px;
  color:#8f0015;
  font-size:9px;
  font-weight:850;
  letter-spacing:1px;
  text-transform:uppercase;
  white-space:nowrap;
}

.d1666-gallery-powered-label i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gallery-red);
  box-shadow:0 0 0 5px rgba(201,0,22,.08);
}

.d1666-gallery-footer-powered a{display:flex;align-items:center}

.d1666-gallery-footer-powered img{
  width:auto;
  height:35px;
  display:block;
  object-fit:contain;
  transition:transform .3s ease,filter .3s ease;
}

.d1666-gallery-footer-powered a:hover img{
  transform:translateY(-2px);
  filter:drop-shadow(0 7px 10px rgba(201,0,22,.13));
}

.d1666-gallery-footer-tagline{justify-self:end;text-align:right}

.d1666-gallery-footer-tagline b{
  margin-bottom:6px;
  color:transparent;
  background:linear-gradient(90deg,var(--gallery-blue-deep),var(--gallery-red),var(--gallery-orange));
  -webkit-background-clip:text;
  background-clip:text;
  font-size:13px;
  font-weight:900;
}

/* =====================================================
   BACK TO TOP
===================================================== */
.d1666-gallery-back-top{
  --scroll-progress:0deg;
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:9998;
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:50%;
  background:conic-gradient(var(--gallery-red) var(--scroll-progress),rgba(201,0,22,.1) 0);
  box-shadow:0 15px 35px rgba(103,0,15,.2);
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transform:translateY(18px) scale(.85);
  transition:opacity .3s ease,visibility .3s ease,transform .35s ease;
}

.d1666-gallery-back-top::before{
  content:"";
  position:absolute;
  inset:3px;
  border-radius:50%;
  background:linear-gradient(145deg,#ffffff,#f1f4e9);
}

.d1666-gallery-back-top span{
  position:relative;
  z-index:2;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--gallery-blue-deep),var(--gallery-red) 64%,var(--gallery-orange));
}

.d1666-gallery-back-top svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .3s ease;
}

.d1666-gallery-back-top.is-visible{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
.d1666-gallery-back-top:hover{transform:translateY(-5px) scale(1.04)}
.d1666-gallery-back-top:hover svg{transform:translateY(-2px)}

/* =====================================================
   ANIMATION
===================================================== */
@keyframes d1666GalleryPulse{
  0%,100%{opacity:.65;transform:scale(.82)}
  50%{opacity:1;transform:scale(1)}
}

@keyframes d1666GallerySpin{to{transform:rotate(360deg)}}
@keyframes d1666GallerySpinReverse{to{transform:rotate(-360deg)}}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:1180px){
  .d1666-gallery-shell,
  .d1666-gallery-head-shell{width:min(100% - 48px,1100px)}

  .d1666-gallery-main-inner{grid-template-columns:205px minmax(0,1fr) 145px;gap:18px}
  .d1666-gallery-nav{gap:17px}
  .d1666-gallery-nav a{font-size:10px}

  .d1666-gallery-hero-grid{grid-template-columns:minmax(0,1fr) 415px;gap:46px}
  .d1666-gallery-hero h1{font-size:clamp(48px,6vw,68px)}
  .d1666-gallery-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:900px){
  .d1666-gallery-top-inner{padding-block:8px;flex-wrap:wrap;justify-content:center}
  .d1666-gallery-main-header{height:auto}
  .d1666-gallery-main-inner{grid-template-columns:1fr auto;padding-block:14px}
  .d1666-gallery-brand img{max-width:190px}
  .d1666-gallery-hotline-bar{width:120px}
  .d1666-gallery-nav{grid-column:1/-1;order:3;min-height:47px;justify-content:flex-start;overflow-x:auto}

  .d1666-gallery-hero-grid{grid-template-columns:1fr;padding-top:53px}
  .d1666-gallery-hero-copy{max-width:760px}
  .d1666-gallery-visual{min-height:370px}

  .d1666-gallery-section-heading{grid-template-columns:1fr;gap:15px}
  .d1666-gallery-section-heading > p{max-width:650px}
  .d1666-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:680px){
  .d1666-gallery-shell,
  .d1666-gallery-head-shell{width:calc(100% - 28px)}

  .d1666-gallery-top-contact{justify-content:center;flex-wrap:wrap;gap:10px}
  .d1666-gallery-top-contact .d1666-gallery-top-separator{display:none}
  .d1666-gallery-top-side{width:100%;justify-content:center}

  .d1666-gallery-main-inner{grid-template-columns:1fr}
  .d1666-gallery-brand{justify-self:center}
  .d1666-gallery-hotline-bar{display:none}
  .d1666-gallery-nav{grid-column:1;max-width:100%;gap:20px}

  .d1666-gallery-breadcrumb{overflow-x:auto;white-space:nowrap}
  .d1666-gallery-hero{min-height:auto}
  .d1666-gallery-hero-grid{min-height:0;padding:44px 0 58px}
  .d1666-gallery-hero h1{font-size:41px;letter-spacing:-1.3px}
  .d1666-gallery-hero-copy > p{font-size:13px}
  .d1666-gallery-hero-actions{align-items:stretch;flex-direction:column}
  .d1666-gallery-points{gap:6px}
  .d1666-gallery-points > span{padding:0 10px}

  .d1666-gallery-visual{min-height:320px}
  .d1666-gallery-orbit-one{width:295px;height:295px}
  .d1666-gallery-orbit-two{width:240px;height:240px}
  .d1666-gallery-visual-card{grid-template-columns:75px minmax(0,1fr);gap:15px;padding:17px}
  .d1666-gallery-visual-icon{width:75px;height:75px;padding:12px;border-radius:17px}
  .d1666-gallery-visual-copy strong{font-size:16px}
  .d1666-gallery-visual-copy small{font-size:6px}

  .d1666-gallery-directory{padding:64px 0 74px}
  .d1666-gallery-section-heading h2{font-size:34px;letter-spacing:-1px}
  .d1666-gallery-toolbar{align-items:stretch;flex-direction:column}
  .d1666-gallery-search{width:100%}
  .d1666-gallery-results-bar{justify-content:space-between}
  .d1666-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .d1666-gallery-client{min-height:260px;padding:11px;border-radius:16px}
  .d1666-gallery-logo{height:155px;min-height:155px;padding:17px}
  .d1666-gallery-client strong{font-size:13px}
  .d1666-gallery-visit{font-size:9px}

  .d1666-gallery-footer-inner{
    width:calc(100% - 28px);
    grid-template-columns:1fr;
    justify-items:center;
    gap:18px;
    text-align:center;
  }

  .d1666-gallery-footer-copy,
  .d1666-gallery-footer-tagline{justify-self:center;text-align:center}
  .d1666-gallery-footer-powered{min-width:0;width:min(100%,320px)}

  .d1666-gallery-back-top{right:17px;bottom:20px;width:50px;height:50px}
  .d1666-gallery-back-top span{width:37px;height:37px}
}

@media(max-width:380px){
  .d1666-gallery-grid{grid-template-columns:1fr}
  .d1666-gallery-logo{height:165px;min-height:165px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .d1666-gallery-kicker i,
  .d1666-gallery-orbit-one,
  .d1666-gallery-orbit-two,
  .d1666-gallery-bar-badge > i{animation:none!important}
  .d1666-gallery-client,
  .d1666-gallery-logo img,
  .d1666-gallery-bar-badge,
  .d1666-gallery-back-top{transition:none!important}
}

/* =====================================================
   GALLERY SHOWCASE
===================================================== */
.d1666-gallery-showcase{
  position:relative;
  min-height:430px;
  isolation:isolate;
}

.d1666-gallery-showcase::before{
  content:"";
  position:absolute;
  width:390px;
  height:390px;
  inset:20px 50% auto auto;
  transform:translateX(50%);
  border:1px solid rgba(71,107,150,.15);
  border-radius:50%;
  background:radial-gradient(circle,rgba(201,0,22,.08),transparent 68%);
}

.d1666-gallery-showcase::after{
  content:"GALLERY";
  position:absolute;
  z-index:-1;
  right:50%;
  top:50%;
  transform:translate(50%,-50%) rotate(-8deg);
  color:rgba(41,77,120,.045);
  font:900 64px/1 "Inter",sans-serif;
  letter-spacing:8px;
}

.d1666-gallery-showcase-item{
  position:absolute;
  margin:0;
  overflow:hidden;
  border:8px solid rgba(255,255,255,.96);
  border-radius:22px;
  background:#fff;
  box-shadow:0 25px 58px rgba(40,58,78,.17);
}

.d1666-gallery-showcase-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.d1666-gallery-showcase-one{
  z-index:1;
  width:245px;
  height:285px;
  top:45px;
  right:5px;
  transform:rotate(7deg);
}

.d1666-gallery-showcase-two{
  z-index:2;
  width:265px;
  height:320px;
  top:12px;
  left:50%;
  transform:translateX(-50%) rotate(-2deg);
}

.d1666-gallery-showcase-three{
  z-index:1;
  width:235px;
  height:278px;
  top:67px;
  left:2px;
  transform:rotate(-8deg);
}

.d1666-gallery-showcase-badge{
  position:absolute;
  z-index:5;
  right:50%;
  bottom:15px;
  width:min(310px,72%);
  min-height:80px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  padding:14px 20px;
  transform:translateX(50%);
  border:1px solid rgba(201,0,22,.12);
  border-radius:20px;
  background:rgba(255,255,255,.94);
  box-shadow:0 18px 45px rgba(103,0,15,.14);
  backdrop-filter:blur(15px);
  -webkit-backdrop-filter:blur(15px);
}

.d1666-gallery-showcase-badge img{
  width:auto;
  height:40px;
  max-width:100%;
  display:block;
  object-fit:contain;
}

.d1666-gallery-showcase-badge span{
  color:#8a8c92;
  font:700 8px "Inter",sans-serif;
  letter-spacing:.8px;
  text-transform:uppercase;
}

/* =====================================================
   FILTERS & MASONRY
===================================================== */
.d1666-gallery-filter-wrap{
  position:sticky;
  top:96px;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  margin-bottom:28px;
  padding:13px;
  border:1px solid rgba(48,77,111,.1);
  border-radius:19px;
  background:rgba(255,255,255,.9);
  box-shadow:0 14px 36px rgba(48,77,111,.07);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.d1666-gallery-filters{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
}

.d1666-gallery-filters button{
  min-height:42px;
  padding:0 17px;
  border:1px solid transparent;
  border-radius:12px;
  color:#62656d;
  background:transparent;
  font:800 10px "Cairo",sans-serif;
  cursor:pointer;
  transition:color .25s ease,background .25s ease,border-color .25s ease,transform .25s ease;
}

.d1666-gallery-filters button:hover{
  color:var(--gallery-red);
  background:#fff7f4;
  border-color:rgba(201,0,22,.1);
  transform:translateY(-2px);
}

.d1666-gallery-filters button.is-active{
  color:#fff;
  background:linear-gradient(135deg,var(--gallery-red-deep),var(--gallery-red),var(--gallery-orange));
  box-shadow:0 11px 24px rgba(201,0,22,.18);
}

.d1666-gallery-status{
  flex:0 0 auto;
  padding:8px 12px;
  border-radius:999px;
  color:var(--gallery-blue-deep);
  background:var(--gallery-blue-soft);
  font-size:9px;
  font-weight:850;
  white-space:nowrap;
}

.d1666-gallery-masonry{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}

.d1666-gallery-work{
  position:relative;
  width:100%;
  aspect-ratio:4/5;
  display:flex;
  padding:10px;
  overflow:hidden;
  border:1px solid rgba(48,77,111,.09);
  border-radius:20px;
  background:linear-gradient(145deg,#fff,#f5f7fa);
  box-shadow:0 13px 30px rgba(48,77,111,.065);
  cursor:zoom-in;
  appearance:none;
  -webkit-appearance:none;
  transition:transform .3s ease,border-color .3s ease,box-shadow .3s ease;
}

.d1666-gallery-work::before{
  content:"";
  position:absolute;
  z-index:3;
  top:28px;
  right:0;
  width:3px;
  height:40px;
  border-radius:3px 0 0 3px;
  background:linear-gradient(var(--gallery-blue),var(--gallery-red),var(--gallery-orange));
  transition:height .3s ease;
}

.d1666-gallery-work-media{
  position:relative;
  width:100%;
  display:block;
  overflow:hidden;
  border-radius:15px;
  background:#eef1f5;
  isolation:isolate;
}

.d1666-gallery-work-media::before{
  content:"";
  position:absolute;
  z-index:1;
  inset:0;
  background:
    linear-gradient(180deg,rgba(255,255,255,.2),rgba(255,255,255,.08) 55%,rgba(255,255,255,.62)),
    radial-gradient(circle at 50% 42%,transparent 0 48%,rgba(255,255,255,.24) 100%);
}

.d1666-gallery-work-backdrop{
  position:absolute;
  z-index:0;
  inset:-10%;
  width:120%;
  height:120%;
  display:block;
  object-fit:cover;
  opacity:.45;
  filter:blur(24px) saturate(.92);
  transform:scale(1.12);
  transition:transform .55s ease,filter .4s ease,opacity .4s ease;
}

.d1666-gallery-work-image{
  position:absolute;
  z-index:2;
  top:18px;
  right:18px;
  bottom:80px;
  left:18px;
  width:calc(100% - 36px);
  height:calc(100% - 98px);
  display:block;
  border-radius:13px;
  object-fit:contain;
  filter:drop-shadow(0 13px 22px rgba(24,34,46,.18));
  transition:transform .45s ease,filter .35s ease;
}

.d1666-gallery-work-frame{
  position:absolute;
  z-index:3;
  inset:0;
  border:1px solid rgba(255,255,255,.62);
  border-radius:15px;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
  pointer-events:none;
}

.d1666-gallery-bar-badge{
  position:absolute;
  z-index:5;
  top:15px;
  left:15px;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  gap:9px;
  padding:5px;
  overflow:hidden;
  direction:ltr;
  border:1px solid rgba(255,255,255,.72);
  border-radius:13px;
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 26px rgba(40,58,78,.18);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  transition:width .35s cubic-bezier(.2,.8,.2,1),box-shadow .3s ease,transform .3s ease;
}

.d1666-gallery-bar-badge > img{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:block;
  object-fit:contain;
}

.d1666-gallery-bar-badge > span{
  min-width:88px;
  display:block;
  opacity:0;
  transform:translateX(-7px);
  transition:opacity .25s ease .06s,transform .3s ease .06s;
}

.d1666-gallery-bar-badge b,
.d1666-gallery-bar-badge small{
  display:block;
  white-space:nowrap;
  text-align:left;
}

.d1666-gallery-bar-badge b{
  color:#24262c;
  font:850 9px "Inter",sans-serif;
}

.d1666-gallery-bar-badge small{
  margin-top:3px;
  color:#858890;
  font:750 7px "Cairo",sans-serif;
  direction:rtl;
}

.d1666-gallery-bar-badge > i{
  position:absolute;
  top:5px;
  right:5px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gallery-red);
  box-shadow:0 0 0 4px rgba(201,0,22,.09);
  animation:d1666GalleryBadgePulse 1.8s ease-in-out infinite;
}

.d1666-gallery-work:hover .d1666-gallery-bar-badge,
.d1666-gallery-work:focus-visible .d1666-gallery-bar-badge{
  width:154px;
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(103,0,15,.19);
}

.d1666-gallery-work:hover .d1666-gallery-bar-badge > span,
.d1666-gallery-work:focus-visible .d1666-gallery-bar-badge > span{
  opacity:1;
  transform:translateX(0);
}

@keyframes d1666GalleryBadgePulse{
  0%,100%{opacity:.55;transform:scale(.82)}
  50%{opacity:1;transform:scale(1)}
}

.d1666-gallery-work-overlay{
  position:absolute;
  z-index:4;
  inset:auto 20px 20px;
  min-height:62px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:2px 12px;
  padding:11px 14px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:14px;
  color:#27292f;
  background:rgba(255,255,255,.88);
  box-shadow:0 12px 28px rgba(40,58,78,.15);
  opacity:1;
  transform:translateY(0);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  transition:opacity .3s ease,transform .3s ease;
}

.d1666-gallery-work-overlay small,
.d1666-gallery-work-overlay b{grid-column:1;display:block;text-align:right}
.d1666-gallery-work-overlay small{color:#81858e;font-size:8px;font-weight:700}
.d1666-gallery-work-overlay b{font-size:10px;font-weight:900}
.d1666-gallery-work-overlay i{grid-column:2;grid-row:1/3;color:var(--gallery-red);font:500 22px/1 Arial,sans-serif}

.d1666-gallery-work:hover{
  z-index:2;
  transform:translateY(-6px);
  border-color:rgba(201,0,22,.16);
  box-shadow:0 25px 52px rgba(48,77,111,.15);
}

.d1666-gallery-work:hover::before{height:72px}
.d1666-gallery-work:hover .d1666-gallery-work-backdrop{opacity:.58;transform:scale(1.2);filter:blur(21px) saturate(1.06)}
.d1666-gallery-work:hover .d1666-gallery-work-image{transform:scale(1.025);filter:drop-shadow(0 16px 26px rgba(24,34,46,.24))}
.d1666-gallery-work:hover .d1666-gallery-work-overlay,
.d1666-gallery-work:focus-visible .d1666-gallery-work-overlay{transform:translateY(-3px);box-shadow:0 16px 32px rgba(103,0,15,.17)}
.d1666-gallery-work:focus-visible{outline:3px solid rgba(201,0,22,.22);outline-offset:3px}
.d1666-gallery-work.has-image-error{display:none}

.d1666-gallery-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:38px;
}

.d1666-gallery-more{
  min-width:180px;
  min-height:50px;
  padding:0 26px;
  border:1px solid rgba(201,0,22,.14);
  border-radius:14px;
  color:var(--gallery-red);
  background:#fff;
  box-shadow:0 13px 28px rgba(103,0,15,.075);
  font:850 11px "Cairo",sans-serif;
  cursor:pointer;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.d1666-gallery-more:hover{transform:translateY(-3px);background:#fff8f5;box-shadow:0 18px 34px rgba(103,0,15,.12)}
.d1666-gallery-more[hidden]{display:none}

/* =====================================================
   LIGHTBOX
===================================================== */
body.d1666-gallery-lock{overflow:hidden}

.d1666-gallery-lightbox{
  position:fixed;
  z-index:10000;
  inset:0;
  display:grid;
  grid-template-columns:70px minmax(0,1fr) 70px;
  align-items:center;
  gap:18px;
  padding:30px;
  direction:ltr;
  background:rgba(20,13,16,.91);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}

.d1666-gallery-lightbox[hidden]{display:none}

.d1666-gallery-lightbox-stage{
  min-width:0;
  max-width:1200px;
  max-height:calc(100vh - 60px);
  margin-inline:auto;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:22px;
  background:#111;
  box-shadow:0 32px 90px rgba(0,0,0,.48);
}

.d1666-gallery-lightbox-stage > img{
  width:auto;
  max-width:100%;
  height:auto;
  max-height:calc(100vh - 145px);
  margin:auto;
  display:block;
  object-fit:contain;
}

.d1666-gallery-lightbox-meta{
  min-height:66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:12px 18px;
  direction:rtl;
  color:#fff;
  background:linear-gradient(90deg,#19191d,#2b151a);
}

.d1666-gallery-lightbox-meta span{font-size:11px;font-weight:850}
.d1666-gallery-lightbox-meta a{color:#ffd66b;font-size:9px;font-weight:800}

.d1666-gallery-lightbox-close,
.d1666-gallery-lightbox-arrow{
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.17);
  border-radius:50%;
  color:#fff;
  background:rgba(255,255,255,.08);
  cursor:pointer;
  transition:transform .25s ease,background .25s ease;
}

.d1666-gallery-lightbox-close:hover,
.d1666-gallery-lightbox-arrow:hover{transform:scale(1.08);background:var(--gallery-red)}

.d1666-gallery-lightbox-close{
  position:absolute;
  top:24px;
  right:24px;
  z-index:3;
  width:45px;
  height:45px;
  font:300 29px/1 Arial,sans-serif;
}

.d1666-gallery-lightbox-arrow{width:58px;height:58px;font:300 38px/1 Arial,sans-serif}

@media(max-width:1180px){
  .d1666-gallery-showcase-one{right:20px}
  .d1666-gallery-showcase-three{left:20px}
  .d1666-gallery-masonry{grid-template-columns:repeat(3,minmax(0,1fr))}
}

@media(max-width:900px){
  .d1666-gallery-showcase{min-height:410px;width:min(650px,100%);margin-inline:auto}
  .d1666-gallery-filter-wrap{top:135px;align-items:flex-start;flex-direction:column}
  .d1666-gallery-status{align-self:flex-end}
}

@media(max-width:680px){
  .d1666-gallery-showcase{min-height:330px}
  .d1666-gallery-showcase::before{width:280px;height:280px}
  .d1666-gallery-showcase::after{font-size:38px;letter-spacing:4px}
  .d1666-gallery-showcase-one{width:155px;height:210px;top:52px;right:4px;border-width:5px}
  .d1666-gallery-showcase-two{width:175px;height:235px;top:20px;border-width:5px}
  .d1666-gallery-showcase-three{width:150px;height:205px;top:65px;left:4px;border-width:5px}
  .d1666-gallery-showcase-badge{bottom:8px;min-height:66px;padding:10px 15px}
  .d1666-gallery-showcase-badge img{height:31px}

  .d1666-gallery-filter-wrap{position:relative;top:auto;padding:10px}
  .d1666-gallery-filters{width:100%;display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
  .d1666-gallery-filters button{padding:0 8px;font-size:9px}
  .d1666-gallery-status{align-self:center}
  .d1666-gallery-masonry{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
  .d1666-gallery-work{padding:6px;border-radius:14px}
  .d1666-gallery-work-media{border-radius:10px}
  .d1666-gallery-work-image{top:10px;right:10px;bottom:62px;left:10px;width:calc(100% - 20px);height:calc(100% - 72px)}
  .d1666-gallery-work-overlay{inset:auto 12px 12px;min-height:46px;padding:8px 9px;border-radius:10px}
  .d1666-gallery-work-overlay small{font-size:6px}
  .d1666-gallery-work-overlay b{font-size:8px}
  .d1666-gallery-work-overlay i{font-size:17px}
  .d1666-gallery-bar-badge{top:9px;left:9px;width:35px;height:35px;padding:4px;border-radius:10px}
  .d1666-gallery-bar-badge > img{width:27px;height:27px;flex-basis:27px}
  .d1666-gallery-work:hover .d1666-gallery-bar-badge,
  .d1666-gallery-work:focus-visible .d1666-gallery-bar-badge{width:35px;transform:none}

  .d1666-gallery-lightbox{grid-template-columns:42px minmax(0,1fr) 42px;gap:6px;padding:15px 7px}
  .d1666-gallery-lightbox-arrow{width:40px;height:40px;font-size:29px}
  .d1666-gallery-lightbox-close{top:12px;right:12px;width:40px;height:40px}
  .d1666-gallery-lightbox-stage{border-radius:15px}
  .d1666-gallery-lightbox-meta{align-items:flex-start;flex-direction:column;gap:5px;min-height:74px}
}

@media(max-width:390px){
  .d1666-gallery-showcase-one{right:-18px}
  .d1666-gallery-showcase-three{left:-18px}
  .d1666-gallery-masonry{grid-template-columns:1fr}
  .d1666-gallery-work{max-width:330px;margin-inline:auto}
}
