:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #161616;
  --orange: #f57c00;
  --orange-lt: #ff9800;
  --teal: #4dd0c4;
  --white: #f5f5f0;
  --muted: #888880;
  --border: rgba(255, 255, 255, 0.07);
  --glow-o: rgba(245, 124, 0, 0.35);
  --glow-t: rgba(77, 208, 196, 0.25);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

/* Ensure anchored homepage sections are visible under the fixed header */
#services, #why, #sectors, #team, #news, #contact {
  scroll-margin-top: 100px;
}

body {
  font-family:"Poppins",sans-serif;
  background:var(--bg);
  color:var(--white);
  overflow-x:hidden;
  line-height:1.65;
}

body::after {
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(77,208,196,0.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(77,208,196,0.06) 1px,transparent 1px);
  background-size:60px 60px;
}

.topo-bg {
  position:fixed;
  inset:0;
  z-index:0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 20%,rgba(245,124,0,0.07) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%,rgba(77,208,196,0.06) 0%,transparent 60%);
  pointer-events:none;
}

/* ── NAV ── */
nav {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,10,10,0.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-inner {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0.85rem 1.5rem;
}
.nav-logo img { height:38px; display:block; }
.nav-links { list-style:none; display:flex; gap:0.3rem; }
.nav-links a {
  font-size:0.75rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--muted);
  text-decoration:none;
  padding:0.45rem 0.9rem;
  border-radius:4px;
  transition:color 0.2s,background 0.2s;
}
.nav-links a:hover { color:var(--teal); background:rgba(77,208,196,0.07); }
.nav-cta {
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  background:var(--orange);
  color:#000;
  border:none;
  padding:0.55rem 1.3rem;
  border-radius:4px;
  cursor:pointer;
  font-weight:700;
  transition:background 0.2s,box-shadow 0.2s;
  text-decoration:none;
}
.nav-cta:hover { background:var(--orange-lt); box-shadow:0 0 20px var(--glow-o); }

/* ── HERO ── */
#home {
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:6rem 1.5rem 3.5rem;
  overflow:hidden;
}

.hero-video-bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-video-bg video {
  width:100%; height:100%;
  object-fit:cover;
  opacity:0.6;
  filter:saturate(0.8) brightness(0.6);
}
.hero-video-bg::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(10,10,10,0.2) 0%,rgba(10,10,10,0.1) 45%,rgba(10,10,10,0.65) 100%);
}

.hero-grid {
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(77,208,196,0.14) 1px,transparent 1px),
    linear-gradient(90deg,rgba(77,208,196,0.14) 1px,transparent 1px);
  background-size:60px 60px;
}

.hero-orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; z-index:1; }
.hero-orb-1 { width:500px; height:500px; background:rgba(245,124,0,0.25); top:-10%; right:-5%; }
.hero-orb-2 { width:400px; height:400px; background:rgba(77,208,196,0.18); bottom:0; left:-5%; }

.hero-eyebrow {
  font-size:0.75rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--teal);
  border:1px solid rgba(77,208,196,0.4);
  background:rgba(77,208,196,0.1);
  padding:6px 18px;
  border-radius:30px;
  margin-bottom:1.6rem;
  position:relative;
  z-index:2;
  opacity:0;
  animation:fadeUp 0.8s 0.2s forwards;
}

.hero-sub {
  font-size:clamp(1rem,2vw,1.2rem);
  color:rgba(245,245,240,0.9);
  max-width:620px;
  margin:0 auto 2rem;
  position:relative;
  z-index:2;
  opacity:0;
  animation:fadeUp 0.8s 0.4s forwards;
  font-weight:300;
  text-shadow:0 1px 10px rgba(0,0,0,0.7);
}

.hero-btns {
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  justify-content:center;
  position:relative;
  z-index:2;
  opacity:0;
  animation:fadeUp 0.8s 0.6s forwards;
}

/* ── HERO STATS with rotating circular icons ── */
.hero-stats {
  display:flex;
  align-items:center;
  gap:0;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:4rem;
  width:100%;
  max-width:820px;
  position:relative;
  z-index:2;
  border-top:1px solid rgba(255,255,255,0.12);
  padding-top:2.5rem;
  opacity:0;
  animation:fadeUp 0.8s 0.8s forwards;
}

.stat {
  text-align:center;
  flex:1;
  min-width:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.5rem;
  padding:0 1rem;
}

/* vertical dividers between stats */
.stat-divider {
  width:1px;
  height:70px;
  background:rgba(255,255,255,0.1);
  flex-shrink:0;
}

/* rotating circular icon */
.stat-icon-wrap {
  position:relative;
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.stat-ring {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  animation:spin-slow 10s linear infinite;
}

.stat-icon-inner {
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(245,124,0,0.12);
  border:1px solid rgba(245,124,0,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  font-size:1.15rem;
  position:relative;
  z-index:1;
  transition:background 0.3s,box-shadow 0.3s;
}

.stat-icon-teal {
  background:rgba(77,208,196,0.1);
  border-color:rgba(77,208,196,0.3);
  color:var(--teal);
}

.stat:hover .stat-icon-inner {
  background:rgba(245,124,0,0.2);
  box-shadow:0 0 20px rgba(245,124,0,0.3);
}
.stat:hover .stat-icon-teal {
  background:rgba(77,208,196,0.18);
  box-shadow:0 0 20px rgba(77,208,196,0.25);
}

.stat-num {
  font-size:1.9rem;
  font-weight:800;
  background:linear-gradient(135deg,var(--orange),var(--teal));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 0 10px rgba(245,124,0,0.4));
  line-height:1;
}

.stat-label {
  font-size:0.78rem;
  color:rgba(245,245,240,0.7);
  letter-spacing:0.05em;
  text-shadow:0 1px 6px rgba(0,0,0,0.6);
}

@keyframes spin-slow {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── FEATURES STRIP ── */
.features-strip {
  position:relative;
  z-index:1;
  background:var(--bg-card);
  border-bottom:1px solid var(--border);
  padding:2.5rem 1.5rem;
}
.features-strip-inner {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  gap:0;
  align-items:center;
}

.feature-divider {
  width:1px;
  height:70px;
  background:var(--border);
  margin:0 2rem;
}

.feature-item {
  display:flex;
  align-items:center;
  gap:1.2rem;
  padding:0.5rem 1rem;
}

/* rotating circular icon for features strip */
.feature-icon-wrap {
  position:relative;
  width:72px;
  height:72px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-ring {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  animation:spin-slow 12s linear infinite;
}

.feature-item:nth-child(3n+1) .feature-ring { animation-direction:normal; }
.feature-item:nth-child(3n+3) .feature-ring { animation-direction:reverse; }

.feature-icon-inner {
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(245,124,0,0.1);
  border:1px solid rgba(245,124,0,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  font-size:1.2rem;
  position:relative;
  z-index:1;
  transition:background 0.3s,box-shadow 0.3s;
}

.feature-icon-teal {
  background:rgba(77,208,196,0.08);
  border-color:rgba(77,208,196,0.3);
  color:var(--teal);
}

.feature-item:hover .feature-icon-inner {
  background:rgba(245,124,0,0.2);
  box-shadow:0 0 22px rgba(245,124,0,0.3);
}
.feature-item:hover .feature-icon-teal {
  background:rgba(77,208,196,0.18);
  box-shadow:0 0 22px rgba(77,208,196,0.25);
}

.feature-text h4 {
  font-size:0.97rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:0.3rem;
}
.feature-text p {
  font-size:0.84rem;
  color:var(--muted);
  line-height:1.65;
}

/* ── PRESENCE STRIP ── */
.presence-strip {
  position:relative;
  z-index:1;
  border-bottom:1px solid var(--border);
  background:rgba(245,124,0,0.02);
  padding:0.9rem 1.5rem;
}
.presence-strip-inner {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2rem;
  flex-wrap:wrap;
}
.presence-label {
  font-size:0.67rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--muted);
}
.presence-countries { display:flex; gap:1.4rem; flex-wrap:wrap; justify-content:center; }
.country-pill { display:flex; align-items:center; gap:0.4rem; font-size:0.78rem; font-weight:600; color:var(--white); }
.country-pill i { color:var(--teal); font-size:0.58rem; }

/* ── SECTION COMMONS ── */
.section {
  position:relative;
  z-index:1;
  padding:3.5rem 1.5rem;
  max-width:1200px;
  margin:0 auto;
}
.section-label {
  font-size:0.72rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:0.7rem;
  display:block;
}
.section-title {
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:800;
  line-height:1.1;
  margin-bottom:0.9rem;
}
.section-title em { font-style:normal; color:var(--teal); }
.section-divider { border:none; border-top:1px solid var(--border); max-width:1200px; margin:0 auto; }

/* ── BUTTONS ── */
.btn-main {
  font-size:0.8rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  background:var(--orange); color:#000; padding:0.9rem 2.2rem; border-radius:4px;
  text-decoration:none; box-shadow:0 0 30px var(--glow-o); transition:all 0.25s;
}
.btn-main:hover { background:var(--orange-lt); transform:translateY(-2px); box-shadow:0 6px 40px var(--glow-o); }
.btn-sub-main {
  font-size:0.8rem; font-weight:700; letter-spacing:0.08em;
  background:var(--orange); color:#000; padding:0.9rem 2.2rem; border-radius:4px;
  text-decoration:none; box-shadow:0 0 30px var(--glow-o); transition:all 0.25s;
}
.btn-ghost {
  font-size:0.8rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  background:transparent; color:var(--white); padding:0.9rem 2.2rem; border-radius:4px;
  text-decoration:none; border:1px solid rgba(255,255,255,0.2); transition:all 0.25s;
}
.btn-ghost:hover { border-color:var(--teal); color:var(--teal); transform:translateY(-2px); }

/* ── SERVICES ── */
.services-header { margin-bottom:2rem; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:580px){ .services-grid{ grid-template-columns:1fr; } }

.service-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s;
}
.service-card:hover {
  transform:translateY(-5px);
  box-shadow:0 16px 48px rgba(0,0,0,0.45);
  border-color:rgba(245,124,0,0.35);
}
.service-img {
  width:100%; height:200px; overflow:hidden;
  position:relative; background:var(--bg-card2); flex-shrink:0;
}
.service-img img {
  width:100%; height:100%; object-fit:cover; object-position:center;
  display:block; transition:transform 0.5s ease;
}
.service-card:hover .service-img img { transform:scale(1.06); }
.service-img::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:60px;
  background:linear-gradient(to bottom,transparent,var(--bg-card));
  pointer-events:none; transition:background 0.3s;
}
.service-card:hover .service-img::after { background:linear-gradient(to bottom,transparent,var(--bg-card2)); }
.service-body {
  padding:1.5rem 1.6rem 1.8rem;
  display:flex; flex-direction:column; align-items:center; text-align:center; flex:1;
}
.service-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:0.6rem; color:var(--white); }
.service-card p { font-size:0.875rem; color:var(--muted); line-height:1.75; }
.service-tag {
  display:inline-block; margin-top:1rem;
  font-size:0.67rem; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--teal); border:1px solid rgba(77,208,196,0.25);
  padding:3px 10px; border-radius:3px;
}
.service-link { text-decoration:none; color:inherit; display:block; }
.service-link .service-card { height:100%; }

/* ── WHY DALI ── */
#why { max-width:1200px; margin:0 auto; padding:3rem 1.5rem; position:relative; z-index:1; }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center; margin-top:0.8rem; }
.why-left .big-statement { font-size:clamp(1.65rem,3.5vw,2.5rem); font-weight:800; line-height:1.15; }
.why-left .big-statement span { color:var(--orange); }
.why-left p { color:var(--muted); margin-top:1.1rem; font-size:0.93rem; }
.why-pillars { display:flex; flex-direction:column; gap:0.8rem; }
.pillar {
  background:var(--bg-card); border:1px solid var(--border); border-radius:8px;
  padding:1rem 1.2rem; display:flex; align-items:flex-start; gap:0.9rem;
  transition:border-color 0.3s,transform 0.3s;
}
.pillar:hover { border-color:var(--orange); transform:translateX(4px); }
.pillar-icon { color:var(--teal); font-size:0.95rem; margin-top:3px; flex-shrink:0; }
.pillar h4 { font-size:0.9rem; font-weight:700; margin-bottom:0.2rem; }
.pillar p { font-size:0.82rem; color:var(--muted); }

/* ── SECTORS ── */
#sectors { max-width:1200px; margin:0 auto; padding:3.5rem 1.5rem; position:relative; z-index:1; }
.sectors-wrap {
  margin-top:1.8rem;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:0.8rem;
}
.sector-chip {
  background:var(--bg-card); border:1px solid var(--border); border-radius:8px;
  padding:1.4rem 1rem 1.2rem; text-align:center;
  transition:border-color 0.3s,transform 0.3s,background 0.3s; cursor:default;
}
.sector-chip:hover { border-color:var(--teal); background:var(--bg-card2); transform:translateY(-4px); }
.sector-chip i { font-size:1.45rem; color:var(--teal); margin-bottom:0.55rem; display:block; }
.sector-chip span { font-size:0.77rem; font-weight:500; letter-spacing:0.03em; }
.sector-desc { font-size:0.74rem; color:var(--muted); line-height:1.6; margin-top:0.5rem; text-align:center; }

/* ── TEAM ── */
#team {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
  position: relative;
  z-index: 1;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 270px 1fr;
  margin-top: 1.8rem;
  min-height: 390px;
}
.team-img-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    rgba(245, 124, 0, 0.15),
    rgba(77, 208, 196, 0.1)
  );
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(110%);
  display: block;
  min-height: 360px;
  transition: opacity 0.4s ease;
}
.team-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--bg-card));
  pointer-events: none;
}
.team-content {
  padding: 2rem 2.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team-info {
  flex: 1;
}
.team-tag {
  font-size: 0.67rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.45rem;
  display: block;
}
.team-name {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.team-role {
  font-size: 0.83rem;
  color: var(--orange);
  margin-bottom: 0.9rem;
}
.team-bio {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.75;
}
.team-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.team-source {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.team-source i {
  width: 1.1rem;
  display: inline-flex;
  justify-content: center;
}
.team-source:hover {
  border-color: var(--teal);
  background: rgba(77, 208, 196, 0.12);
  transform: translateY(-1px);
}
.team-thumbs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.team-thumb {
  width: 50px;
  height: 50px;
  border-radius: 7px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  flex-shrink: 0;
  background: var(--bg-card2);
  position: relative;
}
.team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.team-thumb:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 5px 18px rgba(77, 208, 196, 0.2);
}
.team-thumb.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.25);
}
.team-thumb .initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(
    135deg,
    rgba(245, 124, 0, 0.4),
    rgba(77, 208, 196, 0.3)
  );
}
.team-thumb img.hidden {
  display: none;
}


/* no-image left panel: show gradient placeholder instead of broken img */
#team-main-img[src=""] {
  display: none !important;
}

/* keep left panel visible with gradient when no photo */
.team-img-wrap:not(:has(img[style*="block"])) {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* quote mark accent behind bio text */
.team-info {
  position: relative;
}
.team-info::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem;
  left: -0.3rem;
  font-size: 6rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.08;
  font-family: Georgia, serif;
  pointer-events: none;
  z-index: 0;
}

/* disable text selection while dragging */
#testimonial-card {
  user-select: none;
  -webkit-user-select: none;
}

/* ── TESTIMONIALS ── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:1.8rem; }
.testi-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  padding:1.8rem; display:flex; flex-direction:column; gap:1rem;
  transition:border-color 0.3s,transform 0.3s,box-shadow 0.3s;
}
.testi-card:hover { border-color:rgba(245,124,0,0.35); transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,0.4); }
.testi-stars { color:var(--orange); font-size:0.85rem; display:flex; gap:3px; }
.testi-text { font-size:0.9rem; color:rgba(245,245,240,0.85); line-height:1.75; flex:1; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:0.9rem; padding-top:1rem; border-top:1px solid var(--border); }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,rgba(245,124,0,0.4),rgba(77,208,196,0.3));
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:700; color:var(--white); flex-shrink:0;
}
.testi-name { font-size:0.88rem; font-weight:700; color:var(--white); }
.testi-org { font-size:0.78rem; color:var(--teal); margin-top:2px; }
@media(max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

/* ── CTA BAND ── */
.cta-band {
  position:relative; z-index:1; margin:0; padding:4.5rem 1.5rem;
  background:linear-gradient(135deg,rgba(245,124,0,0.08) 0%,rgba(77,208,196,0.06) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border); text-align:center;
}
.cta-band h2 { font-size:clamp(1.9rem,5vw,3rem); font-weight:800; margin-bottom:0.8rem; }
.cta-band h2 span { color:var(--orange); }
.cta-band p { color:var(--muted); max-width:500px; margin:0 auto 1.8rem; }

/* ── FOOTER ── */
footer { position:relative; z-index:1; background:#050505; border-top:1px solid var(--border); padding:3rem 1.5rem 1.8rem; }
.footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:2.5rem; }
.footer-brand img { height:34px; margin-bottom:1rem; display:block; }
.footer-brand p { font-size:0.84rem; color:var(--muted); line-height:1.7; }
.footer-col h4 { font-size:0.71rem; text-transform:uppercase; letter-spacing:0.15em; color:var(--orange); margin-bottom:1rem; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:0.5rem; }
.footer-col a { font-size:0.865rem; color:var(--muted); text-decoration:none; transition:color 0.2s; }
.footer-col a:hover { color:var(--teal); }
.footer-bottom {
  max-width:1200px; margin:2.2rem auto 0; padding-top:1.3rem;
  border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-bottom p { font-size:0.77rem; color:var(--muted); }
.social-links { display:flex; gap:0.9rem; }
.social-links a {
  width:34px; height:34px; border-radius:6px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:0.88rem; text-decoration:none;
  transition:color 0.2s,border-color 0.2s,background 0.2s;
}
.social-links a:hover { color:var(--teal); border-color:var(--teal); background:rgba(77,208,196,0.07); }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1000px){
  .features-strip-inner { grid-template-columns:1fr; gap:1.5rem; }
  .feature-divider { display:none; }
  .feature-item { padding:0.75rem 0; border-bottom:1px solid var(--border); }
  .feature-item:last-child { border-bottom:none; }
}
@media(max-width:900px){
  .why-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-inner { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .nav-links { display:none; }
  .footer-inner { grid-template-columns:1fr; }
  .presence-countries { gap:0.9rem; }
  .hero-stats { gap:1rem; }
  .stat-divider { display:none; }
  .stat { min-width:120px; }
}:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #161616;
  --orange: #f57c00;
  --orange-lt: #ff9800;
  --teal: #4dd0c4;
  --white: #f5f5f0;
  --muted: #888880;
  --border: rgba(255, 255, 255, 0.07);
  --glow-o: rgba(245, 124, 0, 0.35);
  --glow-t: rgba(77, 208, 196, 0.25);
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

/* Ensure anchored homepage sections are visible under the fixed header */
#services, #why, #sectors, #team, #news, #contact {
  scroll-margin-top: 100px;
}

body {
  font-family:"Poppins",sans-serif;
  background:var(--bg);
  color:var(--white);
  overflow-x:hidden;
  line-height:1.65;
}

body::after {
  content:"";
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(77,208,196,0.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(77,208,196,0.06) 1px,transparent 1px);
  background-size:60px 60px;
}

.topo-bg {
  position:fixed;
  inset:0;
  z-index:0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 20%,rgba(245,124,0,0.07) 0%,transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%,rgba(77,208,196,0.06) 0%,transparent 60%);
  pointer-events:none;
}

/* ── NAV ── */
nav {
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(10,10,10,0.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}
.nav-inner {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0.85rem 1.5rem;
}
.nav-logo img { height:38px; display:block; }
.nav-links { list-style:none; display:flex; gap:0.3rem; }
.nav-links a {
  font-size:0.75rem;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:var(--muted);
  text-decoration:none;
  padding:0.45rem 0.9rem;
  border-radius:4px;
  transition:color 0.2s,background 0.2s;
}
.nav-links a:hover { color:var(--teal); background:rgba(77,208,196,0.07); }
.nav-cta {
  font-size:0.75rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  background:var(--orange);
  color:#000;
  border:none;
  padding:0.55rem 1.3rem;
  border-radius:4px;
  cursor:pointer;
  font-weight:700;
  transition:background 0.2s,box-shadow 0.2s;
  text-decoration:none;
}
.nav-cta:hover { background:var(--orange-lt); box-shadow:0 0 20px var(--glow-o); }

/* ── HERO ── */
#home {
  position:relative;
  z-index:1;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:6rem 1.5rem 3.5rem;
  overflow:hidden;
}

.hero-video-bg { position:absolute; inset:0; z-index:0; overflow:hidden; }
.hero-video-bg video {
  width:100%; height:100%;
  object-fit:cover;
  opacity:0.6;
  filter:saturate(0.8) brightness(0.6);
}
.hero-video-bg::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(10,10,10,0.2) 0%,rgba(10,10,10,0.1) 45%,rgba(10,10,10,0.65) 100%);
}

.hero-grid {
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(77,208,196,0.14) 1px,transparent 1px),
    linear-gradient(90deg,rgba(77,208,196,0.14) 1px,transparent 1px);
  background-size:60px 60px;
}

.hero-orb { position:absolute; border-radius:50%; filter:blur(90px); pointer-events:none; z-index:1; }
.hero-orb-1 { width:500px; height:500px; background:rgba(245,124,0,0.25); top:-10%; right:-5%; }
.hero-orb-2 { width:400px; height:400px; background:rgba(77,208,196,0.18); bottom:0; left:-5%; }

.hero-eyebrow {
  font-size:0.75rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--teal);
  border:1px solid rgba(77,208,196,0.4);
  background:rgba(77,208,196,0.1);
  padding:6px 18px;
  border-radius:30px;
  margin-bottom:1.6rem;
  position:relative;
  z-index:2;
  opacity:0;
  animation:fadeUp 0.8s 0.2s forwards;
}

.hero-sub {
  font-size:clamp(1rem,2vw,1.2rem);
  color:rgba(245,245,240,0.9);
  max-width:620px;
  margin:0 auto 2rem;
  position:relative;
  z-index:2;
  opacity:0;
  animation:fadeUp 0.8s 0.4s forwards;
  font-weight:300;
  text-shadow:0 1px 10px rgba(0,0,0,0.7);
}

.hero-btns {
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
  justify-content:center;
  position:relative;
  z-index:2;
  opacity:0;
  animation:fadeUp 0.8s 0.6s forwards;
}

/* ── HERO STATS with rotating circular icons ── */
.hero-stats {
  display:flex;
  align-items:center;
  gap:0;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:4rem;
  width:100%;
  max-width:820px;
  position:relative;
  z-index:2;
  border-top:1px solid rgba(255,255,255,0.12);
  padding-top:2.5rem;
  opacity:0;
  animation:fadeUp 0.8s 0.8s forwards;
}

.stat {
  text-align:center;
  flex:1;
  min-width:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.5rem;
  padding:0 1rem;
}

/* vertical dividers between stats */
.stat-divider {
  width:1px;
  height:70px;
  background:rgba(255,255,255,0.1);
  flex-shrink:0;
}

/* rotating circular icon */
.stat-icon-wrap {
  position:relative;
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.stat-ring {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  animation:spin-slow 10s linear infinite;
}

.stat-icon-inner {
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(245,124,0,0.12);
  border:1px solid rgba(245,124,0,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  font-size:1.15rem;
  position:relative;
  z-index:1;
  transition:background 0.3s,box-shadow 0.3s;
}

.stat-icon-teal {
  background:rgba(77,208,196,0.1);
  border-color:rgba(77,208,196,0.3);
  color:var(--teal);
}

.stat:hover .stat-icon-inner {
  background:rgba(245,124,0,0.2);
  box-shadow:0 0 20px rgba(245,124,0,0.3);
}
.stat:hover .stat-icon-teal {
  background:rgba(77,208,196,0.18);
  box-shadow:0 0 20px rgba(77,208,196,0.25);
}

.stat-num {
  font-size:1.9rem;
  font-weight:800;
  background:linear-gradient(135deg,var(--orange),var(--teal));
  background-clip:text;
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  filter:drop-shadow(0 0 10px rgba(245,124,0,0.4));
  line-height:1;
}

.stat-label {
  font-size:0.78rem;
  color:rgba(245,245,240,0.7);
  letter-spacing:0.05em;
  text-shadow:0 1px 6px rgba(0,0,0,0.6);
}

@keyframes spin-slow {
  from { transform:rotate(0deg); }
  to   { transform:rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── FEATURES STRIP ── */
.features-strip {
  position:relative;
  z-index:1;
  background:var(--bg-card);
  border-bottom:1px solid var(--border);
  padding:2.5rem 1.5rem;
}
.features-strip-inner {
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  gap:0;
  align-items:center;
}

.feature-divider {
  width:1px;
  height:70px;
  background:var(--border);
  margin:0 2rem;
}

.feature-item {
  display:flex;
  align-items:center;
  gap:1.2rem;
  padding:0.5rem 1rem;
}

/* rotating circular icon for features strip */
.feature-icon-wrap {
  position:relative;
  width:72px;
  height:72px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-ring {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  animation:spin-slow 12s linear infinite;
}

.feature-item:nth-child(3n+1) .feature-ring { animation-direction:normal; }
.feature-item:nth-child(3n+3) .feature-ring { animation-direction:reverse; }

.feature-icon-inner {
  width:50px;
  height:50px;
  border-radius:50%;
  background:rgba(245,124,0,0.1);
  border:1px solid rgba(245,124,0,0.3);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--orange);
  font-size:1.2rem;
  position:relative;
  z-index:1;
  transition:background 0.3s,box-shadow 0.3s;
}

.feature-icon-teal {
  background:rgba(77,208,196,0.08);
  border-color:rgba(77,208,196,0.3);
  color:var(--teal);
}

.feature-item:hover .feature-icon-inner {
  background:rgba(245,124,0,0.2);
  box-shadow:0 0 22px rgba(245,124,0,0.3);
}
.feature-item:hover .feature-icon-teal {
  background:rgba(77,208,196,0.18);
  box-shadow:0 0 22px rgba(77,208,196,0.25);
}

.feature-text h4 {
  font-size:0.97rem;
  font-weight:700;
  color:var(--white);
  margin-bottom:0.3rem;
}
.feature-text p {
  font-size:0.84rem;
  color:var(--muted);
  line-height:1.65;
}

/* ── PRESENCE STRIP ── */
.presence-strip {
  position:relative;
  z-index:1;
  border-bottom:1px solid var(--border);
  background:rgba(245,124,0,0.02);
  padding:0.9rem 1.5rem;
}
.presence-strip-inner {
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:2rem;
  flex-wrap:wrap;
}
.presence-label {
  font-size:0.67rem;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--muted);
}
.presence-countries { display:flex; gap:1.4rem; flex-wrap:wrap; justify-content:center; }
.country-pill { display:flex; align-items:center; gap:0.4rem; font-size:0.78rem; font-weight:600; color:var(--white); }
.country-pill i { color:var(--teal); font-size:0.58rem; }

/* ── SECTION COMMONS ── */
.section {
  position:relative;
  z-index:1;
  padding:3.5rem 1.5rem;
  max-width:1200px;
  margin:0 auto;
}
.section-label {
  font-size:0.72rem;
  letter-spacing:0.2em;
  text-transform:uppercase;
  color:var(--orange);
  margin-bottom:0.7rem;
  display:block;
}
.section-title {
  font-size:clamp(1.8rem,4vw,2.8rem);
  font-weight:800;
  line-height:1.1;
  margin-bottom:0.9rem;
}
.section-title em { font-style:normal; color:var(--teal); }
.section-divider { border:none; border-top:1px solid var(--border); max-width:1200px; margin:0 auto; }

/* ── BUTTONS ── */
.btn-main {
  font-size:0.8rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  background:var(--orange); color:#000; padding:0.9rem 2.2rem; border-radius:4px;
  text-decoration:none; box-shadow:0 0 30px var(--glow-o); transition:all 0.25s;
}
.btn-main:hover { background:var(--orange-lt); transform:translateY(-2px); box-shadow:0 6px 40px var(--glow-o); }
.btn-sub-main {
  font-size:0.8rem; font-weight:700; letter-spacing:0.08em;
  background:var(--orange); color:#000; padding:0.9rem 2.2rem; border-radius:4px;
  text-decoration:none; box-shadow:0 0 30px var(--glow-o); transition:all 0.25s;
}
.btn-ghost {
  font-size:0.8rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  background:transparent; color:var(--white); padding:0.9rem 2.2rem; border-radius:4px;
  text-decoration:none; border:1px solid rgba(255,255,255,0.2); transition:all 0.25s;
}
.btn-ghost:hover { border-color:var(--teal); color:var(--teal); transform:translateY(-2px); }

/* ── SERVICES ── */
.services-header { margin-bottom:2rem; }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media(max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media(max-width:580px){ .services-grid{ grid-template-columns:1fr; } }

.service-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s;
}
.service-card:hover {
  transform:translateY(-5px);
  box-shadow:0 16px 48px rgba(0,0,0,0.45);
  border-color:rgba(245,124,0,0.35);
}
.service-img {
  width:100%; height:200px; overflow:hidden;
  position:relative; background:var(--bg-card2); flex-shrink:0;
}
.service-img img {
  width:100%; height:100%; object-fit:cover; object-position:center;
  display:block; transition:transform 0.5s ease;
}
.service-card:hover .service-img img { transform:scale(1.06); }
.service-img::after {
  content:""; position:absolute; bottom:0; left:0; right:0; height:60px;
  background:linear-gradient(to bottom,transparent,var(--bg-card));
  pointer-events:none; transition:background 0.3s;
}
.service-card:hover .service-img::after { background:linear-gradient(to bottom,transparent,var(--bg-card2)); }
.service-body {
  padding:1.5rem 1.6rem 1.8rem;
  display:flex; flex-direction:column; align-items:center; text-align:center; flex:1;
}
.service-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:0.6rem; color:var(--white); }
.service-card p { font-size:0.875rem; color:var(--muted); line-height:1.75; }
.service-tag {
  display:inline-block; margin-top:1rem;
  font-size:0.67rem; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--teal); border:1px solid rgba(77,208,196,0.25);
  padding:3px 10px; border-radius:3px;
}
.service-link { text-decoration:none; color:inherit; display:block; }
.service-link .service-card { height:100%; }

/* ── WHY DALI ── */
#why { max-width:1200px; margin:0 auto; padding:3rem 1.5rem; position:relative; z-index:1; }
.why-grid { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:center; margin-top:0.8rem; }
.why-left .big-statement { font-size:clamp(1.65rem,3.5vw,2.5rem); font-weight:800; line-height:1.15; }
.why-left .big-statement span { color:var(--orange); }
.why-left p { color:var(--muted); margin-top:1.1rem; font-size:0.93rem; }
.why-pillars { display:flex; flex-direction:column; gap:0.8rem; }
.pillar {
  background:var(--bg-card); border:1px solid var(--border); border-radius:8px;
  padding:1rem 1.2rem; display:flex; align-items:flex-start; gap:0.9rem;
  transition:border-color 0.3s,transform 0.3s;
}
.pillar:hover { border-color:var(--orange); transform:translateX(4px); }
.pillar-icon { color:var(--teal); font-size:0.95rem; margin-top:3px; flex-shrink:0; }
.pillar h4 { font-size:0.9rem; font-weight:700; margin-bottom:0.2rem; }
.pillar p { font-size:0.82rem; color:var(--muted); }

/* ── SECTORS ── */
#sectors { max-width:1200px; margin:0 auto; padding:3.5rem 1.5rem; position:relative; z-index:1; }
.sectors-wrap {
  margin-top:1.8rem;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:0.8rem;
}
.sector-chip {
  background:var(--bg-card); border:1px solid var(--border); border-radius:8px;
  padding:1.4rem 1rem 1.2rem; text-align:center;
  transition:border-color 0.3s,transform 0.3s,background 0.3s; cursor:default;
}
.sector-chip:hover { border-color:var(--teal); background:var(--bg-card2); transform:translateY(-4px); }
.sector-chip i { font-size:1.45rem; color:var(--teal); margin-bottom:0.55rem; display:block; }
.sector-chip span { font-size:0.77rem; font-weight:500; letter-spacing:0.03em; }
.sector-desc { font-size:0.74rem; color:var(--muted); line-height:1.6; margin-top:0.5rem; text-align:center; }

/* ── TEAM ── */
#team { max-width:1200px; margin:0 auto; padding:3.5rem 1.5rem; position:relative; z-index:1; }

.team-slider { position:relative; margin-top:1.8rem; overflow:hidden; }
.team-slides { position:relative; min-height:390px; }
.team-slide {
  position:absolute; inset:0;
  display:grid; grid-template-columns:270px 1fr;
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  overflow:hidden; opacity:0; transform:translateX(40px);
  transition:opacity 0.55s ease,transform 0.55s ease; pointer-events:none;
}
.team-slide.active { opacity:1; transform:translateX(0); pointer-events:auto; position:relative; }
.team-slide .team-img-wrap {
  position:relative; overflow:hidden;
  background:linear-gradient(160deg,rgba(245,124,0,0.15),rgba(77,208,196,0.1));
}
.team-slide .team-img-wrap img {
  width:100%; height:100%; object-fit:cover; object-position:top center;
  filter:grayscale(15%) contrast(110%); display:block; min-height:360px;
}
.team-slide .team-img-wrap::after {
  content:""; position:absolute; inset:0;
  background:linear-gradient(to right,transparent 60%,var(--bg-card)); pointer-events:none;
}
.team-slide .team-img-wrap.no-img { display:flex; align-items:center; justify-content:center; }
.team-initials {
  font-size:3rem; font-weight:800;
  background:linear-gradient(135deg,var(--orange),var(--teal));
  background-clip:text; -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.team-slide .team-content { padding:2rem 2.2rem 2rem 1.8rem; display:flex; flex-direction:column; justify-content:center; }
.team-tag { font-size:0.67rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--teal); margin-bottom:0.45rem; display:block; }
.team-name { font-size:1.85rem; font-weight:800; margin-bottom:0.2rem; }
.team-role { font-size:0.83rem; color:var(--orange); margin-bottom:0.9rem; }
.team-bio { color:var(--muted); font-size:0.875rem; line-height:1.75; }

.team-arrow {
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border-radius:50%;
  border:1px solid var(--border); background:rgba(10,10,10,0.8);
  color:var(--white); font-size:0.85rem; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  z-index:10; transition:border-color 0.2s,background 0.2s,color 0.2s;
}
.team-arrow:hover { border-color:var(--orange); background:var(--orange); color:#000; }
.team-prev { left:12px; }
.team-next { right:12px; }

.team-dots { display:flex; justify-content:center; flex-wrap:wrap; gap:0.75rem; margin-top:1.4rem; }
.team-dot {
  min-width:48px; height:48px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--bg-card);
  color:var(--white);
  font-size:0.95rem;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 0.25s, border-color 0.25s, transform 0.25s, color 0.25s;
  padding:0;
}
.team-dot:hover { background:rgba(245,124,0,0.15); border-color:rgba(245,124,0,0.3); }
.team-dot.active {
  background:linear-gradient(135deg,var(--orange),var(--teal));
  color:#000;
  transform:translateY(-2px);
  border-color:rgba(245,124,0,0.5);
}

@media(max-width:900px){
  .team-slide { grid-template-columns:1fr; }
  .team-slide .team-img-wrap img { min-height:200px; max-height:220px; }
}

/* ── TESTIMONIALS ── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:1.8rem; }
.testi-card {
  background:var(--bg-card); border:1px solid var(--border); border-radius:12px;
  padding:1.8rem; display:flex; flex-direction:column; gap:1rem;
  transition:border-color 0.3s,transform 0.3s,box-shadow 0.3s;
}
.testi-card:hover { border-color:rgba(245,124,0,0.35); transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,0,0,0.4); }
.testi-stars { color:var(--orange); font-size:0.85rem; display:flex; gap:3px; }
.testi-text { font-size:0.9rem; color:rgba(245,245,240,0.85); line-height:1.75; flex:1; font-style:italic; }
.testi-author { display:flex; align-items:center; gap:0.9rem; padding-top:1rem; border-top:1px solid var(--border); }
.testi-avatar {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,rgba(245,124,0,0.4),rgba(77,208,196,0.3));
  display:flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:700; color:var(--white); flex-shrink:0;
}
.testi-name { font-size:0.88rem; font-weight:700; color:var(--white); }
.testi-org { font-size:0.78rem; color:var(--teal); margin-top:2px; }
@media(max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

.partner-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:1.5rem;
  margin-top:1.8rem;
}
.partner-card {
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.partner-card:hover {
  transform:translateY(-4px);
  border-color:rgba(77,208,196,0.35);
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}
.partner-logo {
  max-width:140px;
  max-height:80px;
  width:auto;
  height:auto;
  object-fit:contain;
  display:block;
}

@media(max-width:900px){ .testi-grid{ grid-template-columns:1fr; } }

@media(max-width:900px){
  .partner-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}

@media(max-width:640px){
  .partner-grid { grid-template-columns:1fr; }
}

/* ── NEWS CAROUSEL ── */
#news { max-width:1200px; margin:0 auto; padding:3.5rem 1.5rem; position:relative; z-index:1; }

.news-intro {
  font-size:0.93rem;
  color:var(--muted);
  max-width:640px;
  margin-bottom:2rem;
  line-height:1.75;
}

/* Outer wrapper — holds arrows + track */
.news-carousel-outer {
  position:relative;
  padding:0 0 1.5rem;
}

/* Arrow buttons */
.news-arrow {
  position:absolute;
  top:38%;
  transform:translateY(-50%);
  z-index:10;
  width:40px; height:40px;
  border-radius:50%;
  border:1px solid var(--border);
  background:rgba(10,10,10,0.85);
  color:var(--white);
  font-size:0.85rem;
  cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:border-color 0.2s,background 0.2s,color 0.2s;
}
.news-arrow:hover { border-color:var(--orange); background:var(--orange); color:#000; }
.news-prev { left:-20px; }
.news-next { right:-20px; }

/* Clipping window */
.news-track-wrap {
  overflow:hidden;
  width:100%;
}

/* Scrolling track */
.news-track {
  display:flex;
  gap:24px;
  will-change:transform;
}

/* Individual card */
.news-card {
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
  flex-shrink:0;
  transition:transform 0.3s,box-shadow 0.3s,border-color 0.3s;
}
.news-card:hover {
  transform:translateY(-5px);
  box-shadow:0 16px 48px rgba(0,0,0,0.45);
  border-color:rgba(245,124,0,0.35);
}

/* Card image */
.news-img {
  position:relative;
  width:100%; height:200px;
  overflow:hidden;
  background:var(--bg-card2);
  flex-shrink:0;
}
.news-img img {
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  display:block;
  transition:transform 0.5s ease;
}
.news-card:hover .news-img img { transform:scale(1.06); }
.news-img::after {
  content:"";
  position:absolute; bottom:0; left:0; right:0; height:60px;
  background:linear-gradient(to bottom,transparent,var(--bg-card));
  pointer-events:none;
}

/* Badge on image */
.news-badge {
  position:absolute;
  top:12px; left:12px;
  font-size:0.65rem;
  letter-spacing:0.1em;
  text-transform:uppercase;
  font-weight:700;
  padding:4px 10px;
  border-radius:3px;
  background:rgba(245,124,0,0.92);
  color:#000;
  z-index:2;
}
.news-badge-featured { background:var(--orange); }

/* Card body */
.news-body {
  padding:1.4rem 1.5rem 1.6rem;
  display:flex;
  flex-direction:column;
  flex:1;
}

/* Meta line */
.news-meta {
  display:flex; align-items:center; gap:0.4rem;
  margin-bottom:0.7rem;
}
.news-category {
  font-size:0.67rem; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--teal); font-weight:600;
}
.news-dot { color:var(--muted); font-size:0.75rem; }
.news-date {
  font-size:0.72rem; color:var(--muted);
  display:flex; align-items:center; gap:4px;
}
.news-date i { font-size:0.68rem; color:var(--orange); }

/* Title */
.news-title {
  font-size:0.97rem; font-weight:700;
  color:var(--white); line-height:1.4;
  margin-bottom:0.65rem;
}

/* Excerpt */
.news-excerpt {
  font-size:0.84rem; color:var(--muted); line-height:1.7;
  flex:1; margin-bottom:1rem;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* Read more */
.news-readmore {
  font-size:0.75rem; font-weight:700;
  letter-spacing:0.08em; text-transform:uppercase;
  color:var(--orange);
  display:flex; align-items:center; gap:6px;
  transition:gap 0.2s,color 0.2s;
}
.news-card:hover .news-readmore { gap:10px; color:var(--orange-lt); }
.news-readmore i { font-size:0.68rem; }

/* Dots */
.news-dots {
  display:flex; justify-content:center;
  gap:0.5rem; margin-top:1.4rem;
}
.news-dot {
  width:8px; height:8px; border-radius:50%; border:none;
  background:var(--border); cursor:pointer; padding:0;
  transition:background 0.3s,transform 0.3s;
}
.news-dot.active { background:var(--orange); transform:scale(1.35); }

/* Footer CTA */
.news-footer {
  margin-top:1.8rem;
  display:flex;
  justify-content:center;
}

/* Responsive arrows inset on small screens */
@media(max-width:760px){
  .news-prev { left:-8px; }
  .news-next { right:-8px; }
}
@media(max-width:580px){
  .news-arrow { display:none; }
}

/* ── CTA BAND ── */
.cta-band {
  position:relative; z-index:1; margin:0; padding:4.5rem 1.5rem;
  background:linear-gradient(135deg,rgba(245,124,0,0.08) 0%,rgba(77,208,196,0.06) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border); text-align:center;
}
.cta-band h2 { font-size:clamp(1.9rem,5vw,3rem); font-weight:800; margin-bottom:0.8rem; }
.cta-band h2 span { color:var(--orange); }
.cta-band p { color:var(--muted); max-width:500px; margin:0 auto 1.8rem; }

/* ── FOOTER ── */
footer { position:relative; z-index:1; background:#050505; border-top:1px solid var(--border); padding:3rem 1.5rem 1.8rem; }
.footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:2.5rem; }
.footer-brand img { height:34px; margin-bottom:1rem; display:block; }
.footer-brand p { font-size:0.84rem; color:var(--muted); line-height:1.7; }
.footer-col h4 { font-size:0.71rem; text-transform:uppercase; letter-spacing:0.15em; color:var(--orange); margin-bottom:1rem; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:0.5rem; }
.footer-col a { font-size:0.865rem; color:var(--muted); text-decoration:none; transition:color 0.2s; }
.footer-col a:hover { color:var(--teal); }
.footer-bottom {
  max-width:1200px; margin:2.2rem auto 0; padding-top:1.3rem;
  border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem;
}
.footer-bottom p { font-size:0.77rem; color:var(--muted); }
.social-links { display:flex; gap:0.9rem; }
.social-links a {
  width:34px; height:34px; border-radius:6px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:0.88rem; text-decoration:none;
  transition:color 0.2s,border-color 0.2s,background 0.2s;
}
.social-links a:hover { color:var(--teal); border-color:var(--teal); background:rgba(77,208,196,0.07); }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1000px){
  .features-strip-inner { grid-template-columns:1fr; gap:1.5rem; }
  .feature-divider { display:none; }
  .feature-item { padding:0.75rem 0; border-bottom:1px solid var(--border); }
  .feature-item:last-child { border-bottom:none; }
}
@media(max-width:900px){
  .why-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-inner { grid-template-columns:1fr 1fr; }
}
@media(max-width:640px){
  .nav-links { display:none; }
  .footer-inner { grid-template-columns:1fr; }
  .presence-countries { gap:0.9rem; }
  .hero-stats { gap:1rem; }
  .stat-divider { display:none; }
  .stat { min-width:120px; }
}


