/* =====================================================================
   DYNAWAVE IT DISTRIBUTION FZCO
   Premium corporate-tech design system
   Palette derived from logo: electric blue -> cyan + gold monogram
   ===================================================================== */

/* ----------  DESIGN TOKENS  ---------- */
:root {
  /* Brand blues */
  --blue-700: #0757a8;
  --blue-600: #0a6fd1;
  --blue-500: #1e86e6;
  --blue-400: #33b4e8;
  --blue-300: #6fd0f2;

  /* Navy / ink */
  --navy-900: #081426;
  --navy-800: #0c2038;
  --navy-700: #12294a;
  --ink: #0b1220;
  --slate-700: #37455c;
  --slate-500: #5f6f88;
  --slate-400: #8a99b0;

  /* Gold (luxury accent - used sparingly) */
  --gold-600: #b8860b;
  --gold-500: #cca02c;
  --gold-400: #e4ba55;
  --gold-300: #f3d98b;

  /* Neutrals */
  --bg: #ffffff;
  --surface: #f5f8fc;
  --surface-2: #eef3fa;
  --border: #e4ebf4;
  --border-strong: #d3ddea;
  --white: #ffffff;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-400) 100%);
  --grad-brand-deep: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-500) 55%, var(--blue-400) 100%);
  --grad-gold: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 45%, var(--gold-300) 100%);
  --grad-ink: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);

  /* Typography */
  --font-display: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Spacing scale (4/8) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(11, 18, 32, .06);
  --sh-sm: 0 4px 14px rgba(11, 34, 66, .07);
  --sh-md: 0 14px 40px rgba(11, 34, 66, .10);
  --sh-lg: 0 30px 70px rgba(11, 34, 66, .16);
  --sh-blue: 0 20px 50px rgba(10, 111, 209, .28);

  /* Layout */
  --container: 1200px;
  --header-h: 84px;

  --ease-out: cubic-bezier(.16, .84, .44, 1);
  --ease-in-out: cubic-bezier(.65, .05, .36, 1);
}

/* ----------  RESET  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
:focus-visible { outline: 3px solid var(--blue-400); outline-offset: 2px; border-radius: 4px; }

/* ----------  TYPOGRAPHY  ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -.02em; color: var(--navy-900); text-transform: capitalize; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
}
.grad-text {
  background: var(--grad-brand-deep);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.dot { color: var(--blue-500); }

/* ----------  LAYOUT  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--surface { background: var(--surface); }
.section--ink { background: var(--grad-ink); color: #d8e2f0; }

.section-head { max-width: 720px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-block: var(--space-3) var(--space-4); }
.section-head p { color: var(--slate-500); font-size: 1.075rem; }
.section--ink h2 { color: #fff; }
.section--ink .section-head p { color: #a9bcd6; }
.section--ink .eyebrow { color: var(--blue-300); }

/* ----------  BUTTONS  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: 15px 28px; border-radius: var(--r-pill);
  min-height: 52px;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-blue); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(10, 111, 209, .40); }
.btn--gold { background: var(--grad-gold); color: var(--navy-900); box-shadow: 0 16px 40px rgba(184, 134, 11, .3); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(184, 134, 11, .42); }
.btn--ghost { background: transparent; color: var(--navy-900); border: 1.5px solid var(--border-strong); }
.btn--ghost:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-3px); box-shadow: var(--sh-sm); }
.btn--light { background: rgba(255,255,255,.1); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn--light:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; color: var(--blue-600);
  transition: gap .3s var(--ease-out), color .3s;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.link-arrow:hover { color: var(--blue-700); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ----------  HEADER  ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease-out), background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px) saturate(1.4);
  opacity: 0; transition: opacity .35s;
}
.site-header.scrolled { height: 68px; box-shadow: var(--sh-sm); border-color: var(--border); }
.site-header.scrolled::before { opacity: 1; }
.header-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5); }

/* Logo lockup */
.logo { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.logo__img { height: 54px; width: auto; max-width: none; flex: none; display: block;
  transition: height .35s var(--ease-out), transform .4s var(--ease-out); }
.logo:hover .logo__img { transform: scale(1.03); }
.site-header.scrolled .logo__img { height: 44px; }
.logo--footer { background: #fff; padding: 12px 18px; border-radius: 14px; box-shadow: var(--sh-sm); }
.logo--footer .logo__img { height: 44px; }
@media (max-width: 760px) { .logo__img, .site-header.scrolled .logo__img { height: 46px; } }
@media (max-width: 360px) { .logo__img, .site-header.scrolled .logo__img { height: 40px; } }
.logo__mark { width: 46px; height: 46px; flex: none; transition: transform .5s var(--ease-out); }
.logo:hover .logo__mark { transform: rotate(-6deg) scale(1.05); }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -.01em;
  background: var(--grad-brand-deep); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.logo__sub { font-family: var(--font-display); font-weight: 600; font-size: .56rem; letter-spacing: .26em;
  color: var(--slate-500); margin-top: 3px; }

/* Nav */
.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav__links { display: flex; align-items: center; gap: var(--space-2); }
.nav__links a {
  position: relative; font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--slate-700); padding: 10px 16px; border-radius: var(--r-pill); transition: color .25s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px;
  background: var(--grad-brand); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover { color: var(--blue-600); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--navy-900); }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy-800); border-radius: 2px;
  transition: transform .35s var(--ease-out), opacity .25s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------  HERO  ---------- */
.hero {
  position: relative; padding-top: calc(var(--header-h) + 60px); padding-bottom: 90px;
  min-height: min(92vh, 860px); display: flex; align-items: center;
  background: radial-gradient(1200px 700px at 85% -5%, #eaf4ff 0%, rgba(234,244,255,0) 60%),
              radial-gradient(900px 600px at 5% 100%, #f3f8ff 0%, rgba(243,248,255,0) 55%),
              var(--bg);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: var(--space-8); align-items: center;
  position: relative; z-index: 2;
}
.hero h1 { font-size: clamp(2.4rem, 5.2vw, 4.15rem); line-height: 1.03; }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--slate-600); max-width: 560px; margin-top: var(--space-5); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.hero__badges { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: var(--space-6); }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 500; color: var(--slate-600); }
.hero__badge svg { width: 18px; height: 18px; color: var(--blue-500); }

/* Hero visual (glass panel + circuit) */
.hero__visual { position: relative; }
.hero-panel {
  position: relative; border-radius: var(--r-xl); padding: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(240,247,255,.7));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--sh-lg);
  backdrop-filter: blur(10px);
}
.hero-panel__glow { position: absolute; inset: -1px; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(10,111,209,.5), rgba(51,180,232,.1), rgba(228,186,85,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.stat-tile { display: flex; align-items: center; gap: 16px; padding: 18px; border-radius: var(--r-md);
  background: #fff; box-shadow: var(--sh-xs); border: 1px solid var(--border); }
.stat-tile + .stat-tile { margin-top: 14px; }
.stat-tile__icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #eaf4ff, #dfeeff); color: var(--blue-600); flex: none; }
.stat-tile__icon svg { width: 24px; height: 24px; }
.stat-tile__num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--navy-900); line-height: 1; }
.stat-tile__label { font-size: .85rem; color: var(--slate-500); margin-top: 2px; }
.hero-float { position: absolute; border-radius: var(--r-md); box-shadow: var(--sh-md);
  background: #fff; border: 1px solid var(--border); padding: 12px 16px; display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: .85rem; }
.hero-float svg { width: 20px; height: 20px; }
.hero-float--1 { top: -22px; right: 22px; color: var(--blue-600); }
.hero-float--2 { bottom: -20px; left: -18px; color: var(--gold-600); }
.floaty { animation: floaty 6s ease-in-out infinite; }
.floaty--slow { animation-duration: 8s; animation-delay: -2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Decorative circuit lines behind hero */
.hero__circuit { position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; }
.hero__circuit path, .hero__circuit line { stroke: url(#wire); stroke-width: 1.4; fill: none; }
.hero__circuit circle { fill: var(--blue-400); }

/* ---------- HERO BANNER SLIDESHOW ---------- */
/* On the home page the header sits on a solid bar above the banner */
.home .site-header::before { opacity: 1; }
.home .site-header { border-color: var(--border); box-shadow: var(--sh-sm); }

.hero-banner { position: relative; margin-top: var(--header-h); width: 100%; overflow: hidden; background: var(--navy-900); }
.slider { position: relative; width: 100%; aspect-ratio: 28 / 10; max-height: 620px; }
.slide { position: absolute; inset: 0; opacity: 0; overflow: hidden; transition: opacity .9s var(--ease-out); will-change: opacity; }
.slide.is-active { opacity: 1; }
/* Desktop: edge-to-edge cover. The blur layer sits behind and is only seen on mobile (contain). */
.slide__blur { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  filter: blur(28px) brightness(.72); transform: scale(1.14); }
.slide__fit { position: absolute; inset: 0; z-index: 1; background-size: cover; background-position: center; background-repeat: no-repeat; }
.slider__dots { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.slider__dot { width: 10px; height: 10px; padding: 0; border-radius: 50%; background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.65); cursor: pointer; transition: background .3s, width .3s, border-radius .3s; }
.slider__dot.is-active { background: #fff; width: 28px; border-radius: 6px; }
.slider__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.32); color: #fff;
  backdrop-filter: blur(6px); transition: background .3s, transform .3s; }
.slider__arrow:hover { background: rgba(255,255,255,.32); }
.slider__arrow svg { width: 22px; height: 22px; }
.slider__arrow--prev { left: 18px; }
.slider__arrow--next { right: 18px; }
.slider__arrow--prev:hover { transform: translateY(-50%) translateX(-3px); }
.slider__arrow--next:hover { transform: translateY(-50%) translateX(3px); }

/* Hero text band below slideshow */
.hero-band__inner { max-width: 900px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; }
.hero-band__inner h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.06; margin: var(--space-3) 0 var(--space-4); }
.hero-band__inner .hero__lead { margin: 0 auto; }
.hero-band__inner .hero__cta { margin-top: var(--space-6); justify-content: center; }

.hero-stats { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; margin-top: clamp(30px,4vw,46px); }
.hero-stat { position: relative; padding: 4px clamp(12px,2.2vw,28px); text-align: center; }
.hero-stat + .hero-stat::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: var(--border-strong); }
.hero-stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem,2.4vw,1.95rem);
  line-height: 1.22; padding-bottom: 3px; white-space: nowrap; background: var(--grad-brand-deep);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stat__label { font-size: clamp(.75rem,1.1vw,.85rem); color: var(--slate-500); margin-top: 6px; white-space: nowrap; }
@media (max-width: 760px) {
  .slider { aspect-ratio: auto; height: clamp(230px, 54vw, 350px); }
  .slide__fit { background-size: contain; }
  .slider__arrow { width: 40px; height: 40px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { flex: 1 0 40%; padding: 8px 10px; }
  .hero-stat + .hero-stat::before { display: none; }
}
@media (max-width: 400px) {
  .hero-stat { padding: 4px 14px; }
}

/* ---------- BRAND LOGO MARQUEE ---------- */
.marquee__track img { height: 42px; width: auto; max-width: 150px; object-fit: contain; flex: none;
  opacity: 1; transition: transform .35s; }
.marquee__track img:hover { transform: translateY(-3px) scale(1.04); }

/* ---------- SCROLL VIDEO SHOWCASE ---------- */
.vidshow { padding-block: clamp(20px, 3vw, 44px); margin-top: clamp(-72px, -5vw, -32px); }
.vidshow > .container { max-width: min(1600px, 94vw); }
.vidshow__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 1.8vw, 28px); }
.vidshow__box { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16 / 9;
  background: var(--surface-2); box-shadow: var(--sh-lg); border: 1px solid var(--border); }
.vidshow__box::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(11,34,66,.06); }
.vidshow__video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) {
  .vidshow { margin-top: 0; padding-block: clamp(24px, 5vw, 40px); }
  .vidshow > .container { max-width: 100%; }
  .vidshow__grid { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ----------  MARQUEE / BRANDS  ---------- */
.brands { border-block: 1px solid var(--border); background: var(--bg); }
.brands__head { text-align: center; padding-top: var(--space-6); }
.brands__head span { font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--slate-400); }
.marquee { --gap: 56px; position: relative; display: flex; overflow: hidden; gap: var(--gap);
  padding-block: var(--space-6); -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: var(--gap); align-items: center; flex: none; min-width: 100%;
  animation: scroll-x 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em;
  color: var(--slate-400); white-space: nowrap; transition: color .3s, transform .3s; cursor: default; }
.marquee__track span:hover { color: var(--blue-600); transform: translateY(-2px); }
@keyframes scroll-x { to { transform: translateX(calc(-100% - var(--gap))); } }

/* ----------  CARDS / GRIDS  ---------- */
.grid { display: grid; gap: var(--space-5); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--space-6); overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.card::after { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease-out); }
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card__icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: var(--space-4);
  background: linear-gradient(135deg, #eef6ff, #e2f0ff); color: var(--blue-600);
  transition: transform .4s var(--ease-out), background .4s; }
.card__icon svg { width: 28px; height: 28px; }
.card:hover .card__icon { transform: scale(1.08) rotate(-4deg); background: var(--grad-brand); color: #fff; }
.card h3 { font-size: 1.28rem; margin-bottom: var(--space-3); }
.card p { color: var(--slate-500); font-size: .98rem; }
.card__num { position: absolute; top: 20px; right: 24px; font-family: var(--font-display); font-weight: 800;
  font-size: 2.4rem; color: var(--surface-2); line-height: 1; z-index: 0; }
.card > * { position: relative; z-index: 1; }

/* Product card variant */
.product-card { display: flex; flex-direction: column; gap: 4px; }
.product-card ul { margin-top: var(--space-3); display: flex; flex-direction: column; gap: 8px; }
.product-card li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--slate-600); }
.product-card li svg { width: 15px; height: 15px; color: var(--blue-500); flex: none; }
.tag { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--blue-700); background: #eaf3ff;
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: var(--space-3); }

/* Feature list (why choose us) */
.feature { display: flex; gap: 18px; }
.feature__ico { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-700)); color: #fff; }
.feature__ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 6px; color: #fff; }
.feature p { color: #a9bcd6; font-size: .95rem; }

/* ----------  CORE ACTIVITIES (split)  ---------- */
.core-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.core-item { padding: var(--space-7) var(--space-6); background: #fff; position: relative;
  transition: background .4s; }
.core-item + .core-item { border-left: 1px solid var(--border); }
.core-item:hover { background: var(--surface); }
.core-item__k { font-family: var(--font-display); font-weight: 800; font-size: .9rem; letter-spacing: .14em;
  color: var(--blue-600); }
.core-item h3 { font-size: 1.55rem; margin: var(--space-3) 0; }
.core-item p { color: var(--slate-500); }
.core-item__ico { position: absolute; top: 28px; right: 28px; color: var(--surface-2); }
.core-item__ico svg { width: 40px; height: 40px; }
.core-item:hover .core-item__ico { color: var(--blue-300); }

/* ----------  PRESENCE / MAP  ---------- */
.presence { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: center; }
.region-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.region { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--border); transition: transform .35s var(--ease-out), box-shadow .35s; }
.region:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); }
.region__flag { width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center; flex: none;
  background: linear-gradient(135deg, #eef6ff, #e2f0ff); font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .06em; color: var(--blue-700); }
.region__hq { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-600); }
.region strong { display: block; font-family: var(--font-display); font-size: 1.02rem; color: var(--navy-900); }
.region small { color: var(--slate-500); }
.map-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md);
  border: 1px solid var(--border); aspect-ratio: 4/3; background: var(--surface-2); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(1.02); }

/* ----------  CTA BAND  ---------- */
.cta-band { position: relative; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px);
  background: var(--grad-brand-deep); color: #fff; overflow: hidden; text-align: center; }
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,.18), transparent 60%),
              radial-gradient(500px 300px at 100% 100%, rgba(228,186,85,.25), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: var(--space-4) auto var(--space-6); font-size: 1.08rem; }
.cta-band .btn-row { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; }

/* ----------  CONTACT  ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-8); align-items: start; }
.contact-cards { display: grid; gap: var(--space-4); }
.contact-card { display: flex; align-items: center; gap: 18px; padding: 20px 22px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--border); transition: transform .35s var(--ease-out), box-shadow .35s, border-color .35s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--blue-300); }
.contact-card__ico { width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center;
  background: linear-gradient(135deg, #eef6ff, #e2f0ff); color: var(--blue-600); }
.contact-card__ico svg { width: 24px; height: 24px; }
.contact-card small { color: var(--slate-400); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .72rem; }
.contact-card strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--navy-900); word-break: break-word; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--sh-md); }
.field { margin-bottom: var(--space-4); }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--navy-800); margin-bottom: 8px; }
.field label .req { color: var(--gold-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--border-strong); border-radius: var(--r-sm);
  background: var(--surface); color: var(--ink); transition: border-color .25s, box-shadow .25s, background .25s; min-height: 52px;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px rgba(30,134,230,.12); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #e0483d; box-shadow: 0 0 0 4px rgba(224,72,61,.1); }
.field .err { display: none; color: #d13a2e; font-size: .82rem; margin-top: 6px; font-weight: 500; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-success { display: none; text-align: center; padding: var(--space-6) var(--space-4); }
.form-success.show { display: block; animation: pop .5s var(--ease-out); }
.form-success__ico { width: 72px; height: 72px; margin: 0 auto var(--space-4); border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, #16a34a, #22c55e); color: #fff; box-shadow: 0 16px 40px rgba(34,197,94,.35); }
.form-success__ico svg { width: 36px; height: 36px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--slate-500); }
@keyframes pop { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

/* ----------  PAGE HERO (inner pages)  ---------- */
.page-hero { position: relative; padding-top: calc(var(--header-h) + 72px); padding-bottom: 72px;
  background: radial-gradient(900px 500px at 80% -20%, #eaf4ff 0%, rgba(234,244,255,0) 60%), var(--surface); overflow: hidden; }
.page-hero__inner { position: relative; z-index: 2; max-width: 760px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: var(--space-3) 0 var(--space-4); }
.page-hero p { color: var(--slate-600); font-size: 1.12rem; max-width: 620px; }
.crumbs { font-size: .85rem; color: var(--slate-400); font-weight: 500; }
.crumbs a:hover { color: var(--blue-600); }

/* Mission / Vision */
.mv-card { position: relative; padding: clamp(30px, 4vw, 46px); border-radius: var(--r-lg); background: #fff; border: 1px solid var(--border);
  overflow: hidden; transition: transform .4s var(--ease-out), box-shadow .4s; }
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.mv-card__badge { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; margin-bottom: var(--space-5);
  color: #fff; background: var(--grad-brand); }
.mv-card__badge svg { width: 32px; height: 32px; }
.mv-card__eyebrow { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: 16px; color: var(--blue-600); }
.mv-card h3 { font-size: 1.6rem; margin-bottom: var(--space-3); }
.mv-card p { color: var(--slate-600); font-size: 1.05rem; }
.mv-card__watermark { position: absolute; right: 8px; bottom: -30px; font-family: var(--font-display); font-weight: 800;
  font-size: 8rem; color: var(--surface); z-index: 0; line-height: 1; }
.mv-card > * { position: relative; z-index: 1; }

/* Colored Mission / Vision tiles */
.mv-card--mission, .mv-card--vision { border: none; color: #fff; box-shadow: var(--sh-md); }
.mv-card--mission { background: linear-gradient(150deg, #0a5fbf 0%, var(--blue-500) 58%, var(--blue-400) 100%); }
.mv-card--vision { background: linear-gradient(150deg, var(--navy-900) 0%, var(--navy-700) 52%, var(--blue-700) 100%); }
.mv-card--mission:hover, .mv-card--vision:hover { box-shadow: var(--sh-lg); }
.mv-card--mission::before, .mv-card--vision::before { content: ""; position: absolute; top: -45%; right: -12%; width: 65%; height: 130%;
  background: radial-gradient(closest-side, rgba(255,255,255,.22), transparent 72%); pointer-events: none; z-index: 0; }
.mv-card--mission .mv-card__eyebrow, .mv-card--vision .mv-card__eyebrow { color: rgba(255,255,255,.72); }
.mv-card--mission .mv-card__badge, .mv-card--vision .mv-card__badge {
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(4px); }
.mv-card--mission h3, .mv-card--vision h3 { color: #fff; font-size: 1.85rem; margin-bottom: var(--space-4); }
.mv-card--mission p, .mv-card--vision p { color: rgba(255,255,255,.95); font-size: 1.24rem; line-height: 1.55; font-weight: 500; }
.mv-card--mission .mv-card__watermark, .mv-card--vision .mv-card__watermark { color: rgba(255,255,255,.12); }

/* Subtle blue "highlight" card (e.g. Why customers choose us) */
.mv-card--highlight { background: linear-gradient(135deg, #e8f2ff 0%, #f4f9ff 55%, #eaf4ff 100%); border: 1px solid #cfe2fb; overflow: hidden; }
.mv-card--highlight::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--grad-brand); z-index: 0; }
.mv-card--highlight::after { content: ""; position: absolute; right: -40px; top: -40px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(10,111,209,.16), transparent 70%); animation: mvGlow 5.5s ease-in-out infinite; z-index: 0; }
.mv-card--highlight h3 { color: var(--navy-900); }
.mv-card--highlight p { color: var(--slate-600); }
.mv-card__pin { display: inline-flex; width: 44px; height: 44px; border-radius: 13px; align-items: center; justify-content: center;
  background: var(--grad-brand); color: #fff; margin-bottom: 16px; box-shadow: 0 8px 20px rgba(10,111,209,.30); }
.mv-card__pin svg { width: 22px; height: 22px; }
@keyframes mvGlow { 0%,100% { transform: scale(1); opacity: .6; } 50% { transform: scale(1.15); opacity: 1; } }

/* Audience chips */
.audience { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--border); font-weight: 500; color: var(--slate-700);
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s; }
.chip:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); border-color: var(--blue-300); }
.chip svg { width: 18px; height: 18px; color: var(--blue-500); }

/* ----------  FOOTER  ---------- */
.site-footer { background: var(--grad-ink); color: #b9c8dc; padding-top: var(--space-9); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: var(--space-7); padding-bottom: var(--space-8); }
.footer-brand .logo__name { background: linear-gradient(135deg, #6fd0f2, #cfe8ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.footer-brand .logo__sub { color: #7f91ab; }
.footer-brand p { margin-top: var(--space-4); color: #8ea1ba; max-width: 320px; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: var(--space-4); font-weight: 700; }
.footer-col a, .footer-col li { color: #9fb2ca; font-size: .95rem; padding: 6px 0; display: block; transition: color .25s, transform .25s; }
.footer-col a:hover { color: var(--blue-300); transform: translateX(4px); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--blue-300); flex: none; margin-top: 4px; }
.footer-brands { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: var(--space-3); }
.footer-brands span { font-size: .8rem; color: #6f83a0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-block: var(--space-5); display: flex;
  justify-content: space-between; align-items: center; gap: var(--space-4); flex-wrap: wrap; font-size: .85rem; color: #7f91ab; }
.footer-bottom a:hover { color: var(--blue-300); }

/* Floating WhatsApp */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1eb355); display: grid; place-items: center; color: #fff;
  box-shadow: 0 14px 34px rgba(37,211,102,.42); transition: transform .35s var(--ease-out); }
.wa-float:hover { transform: scale(1.08) translateY(-2px); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid #25d366;
  animation: ping 2.4s var(--ease-out) infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.7); opacity: 0; } }

/* ----------  SCROLL REVEAL  ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }

/* ----------  RESPONSIVE  ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--space-7); }
  .hero__visual { max-width: 480px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .presence { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}
@media (max-width: 760px) {
  :root { --header-h: 72px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: rgba(255,255,255,.96); backdrop-filter: blur(16px); padding: 16px 20px 24px;
    box-shadow: var(--sh-md); border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .35s var(--ease-out), opacity .3s;
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 16px; border-radius: var(--r-sm); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__links a.active { background: var(--surface); }
  .nav .btn { display: none; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .core-strip { grid-template-columns: 1fr; }
  .core-item + .core-item { border-left: none; border-top: 1px solid var(--border); }
  .region-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: var(--space-6); }
  .hero-float--2 { left: 0; }
  .section { padding-block: 56px; }
}
@media (max-width: 400px) {
  .logo__sub { display: none; }
  .hero-float { display: none; }
}

/* ----------  REDUCED MOTION  ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none !important; }
  .floaty, .wa-float::after { animation: none !important; }
  /* Keep the banner crossfade (opacity only, safe under reduced motion) */
  .slide { transition-duration: .8s !important; }
}
