/* ============================================
   NAMAGUI SARL — Brand Colors & 3D Design
   ============================================ */

:root {
  --color-blue: #00AEEF;
  --color-blue-light: #33C1F5;
  --color-blue-dark: #0090C8;
  --color-dark: #0B0B0B;
  --color-dark-2: #141414;
  --color-dark-3: #1E1E1E;
  --color-gold: #FF9D00;
  --color-gold-light: #FFB340;
  --color-white: #FFFFFF;
  --color-gray: #6B7280;
  --color-gray-light: #F4F6F8;
  --color-border: #E5E7EB;

  --font: 'Montserrat', system-ui, sans-serif;

  --topbar-height: 42px;
  --navbar-height: 76px;
  --header-height: calc(var(--topbar-height) + var(--navbar-height));
  --container-max: 1240px;
  --section-padding: clamp(4rem, 8vw, 6.5rem);
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-3d: 0 10px 30px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-3d-hover: 0 25px 50px rgba(0, 174, 239, 0.2), 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-blue: 0 8px 25px rgba(0, 174, 239, 0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem);
}

.section { padding: var(--section-padding) 0; }

.section__header { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section__header--center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }

.section__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
}

.section__tag--light { color: var(--color-blue-light); }

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section__title--light { color: var(--color-white); }
.section__desc { margin-top: 1rem; color: var(--color-gray); font-size: 1.05rem; }
.text-accent { color: var(--color-blue); }
.lead { font-size: 1.1rem; font-weight: 600; color: var(--color-dark-2); margin-bottom: 1.25rem; line-height: 1.8; }

/* --- Reveal Variants --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* --- 3D Card Base --- */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-3d {
  position: relative;
  transform: translateZ(0);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2), var(--shadow-blue);
}

.btn-3d:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.15), 0 12px 30px rgba(0, 174, 239, 0.4);
}

.btn-3d:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

.btn--primary:hover { background: var(--color-blue-light); border-color: var(--color-blue-light); }

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-white);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn--quote {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  font-size: 0.72rem;
  box-shadow: var(--shadow-blue);
}

.btn--quote:hover {
  background: var(--color-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 174, 239, 0.45);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

/* Top Bar */
.topbar {
  background: var(--color-dark);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__contacts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.topbar__contacts li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
}

.topbar__contacts svg {
  width: 13px;
  height: 13px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.topbar__contacts a:hover { color: var(--color-blue-light); }

.topbar__social {
  display: flex;
  gap: 0.75rem;
}

.topbar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.topbar__social a:hover { color: var(--color-blue); }
.topbar__social svg { width: 16px; height: 16px; }

/* Navbar */
.navbar {
  background: var(--color-white);
  height: var(--navbar-height);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition);
}

.header.scrolled .navbar {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.navbar__logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding-right: 2rem;
  z-index: 2;
}

.navbar__logo-bg {
  position: absolute;
  left: -2rem;
  top: 0;
  bottom: 0;
  width: calc(100% + 4rem);
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.12) 0%, rgba(0, 174, 239, 0.04) 100%);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  transform: perspective(500px) rotateY(-3deg);
  transform-origin: left center;
}

.navbar__logo-img {
  position: relative;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav__link {
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-blue);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
  transition: color var(--transition);
}

.navbar__search:hover { color: var(--color-blue); }
.navbar__search svg { width: 20px; height: 20px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    var(--color-blue) 40px,
    var(--color-blue) 41px
  );
}

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(0, 174, 239, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 157, 0, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 3rem 0 5rem;
  min-height: calc(100vh - var(--header-height));
}

.hero__slider-nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 5;
}

.hero__dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.hero__dot::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background var(--transition);
}

.hero__dot.active {
  border-color: var(--color-blue);
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.4);
}

.hero__dot.active::before {
  background: var(--color-blue);
}

.hero__content {
  padding-left: 4rem;
}

.hero__slides { position: relative; min-height: 280px; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.hero__tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-blue);
  margin-bottom: 1.5rem;
}

.hero__tag-line {
  width: 30px;
  height: 2px;
  background: var(--color-blue);
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero__accent {
  color: var(--color-blue);
  display: inline;
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Hero Visual Hub --- */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-hub {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.hero-hub__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}

.orb--1 {
  width: 180px;
  height: 180px;
  background: rgba(0, 174, 239, 0.25);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.orb--2 {
  width: 140px;
  height: 140px;
  background: rgba(255, 157, 0, 0.12);
  bottom: 15%;
  left: 0;
  animation-delay: -2s;
}

.orb--3 {
  width: 100px;
  height: 100px;
  background: rgba(0, 174, 239, 0.15);
  top: 40%;
  left: 20%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.08); }
  66% { transform: translate(-10px, 15px) scale(0.95); }
}

.hero-hub__ring {
  position: absolute;
  width: 92%;
  height: 92%;
  transform: rotate(-90deg);
}

.hero-hub__ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.06);
  stroke-width: 2;
}

.hero-hub__ring-progress {
  fill: none;
  stroke: var(--color-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 974;
  stroke-dashoffset: 680;
  animation: ringSpin 12s linear infinite;
  filter: drop-shadow(0 0 8px rgba(0, 174, 239, 0.6));
}

@keyframes ringSpin {
  to { stroke-dashoffset: 0; }
}

.hero-hub__core {
  position: relative;
  z-index: 3;
  width: 110px;
  height: 110px;
  transition: transform 0.15s ease-out;
}

.hero-hub__pulse {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 174, 239, 0.3);
  animation: hubPulse 3s ease-out infinite;
}

.hero-hub__pulse::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(0, 174, 239, 0.15);
  animation: hubPulse 3s ease-out infinite 1s;
}

@keyframes hubPulse {
  0% { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.hero-hub__core-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(0, 174, 239, 0.2), rgba(0, 174, 239, 0.05));
  border: 1px solid rgba(0, 174, 239, 0.35);
  border-radius: 50%;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 40px rgba(0, 174, 239, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: coreGlow 4s ease-in-out infinite;
}

.hero-hub__core-inner svg {
  width: 48px;
  height: 48px;
  color: var(--color-blue-light);
}

@keyframes coreGlow {
  0%, 100% { box-shadow: 0 0 40px rgba(0, 174, 239, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15); }
  50% { box-shadow: 0 0 60px rgba(0, 174, 239, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2); }
}

.hero-hub__orbit {
  position: absolute;
  inset: 0;
  animation: orbitSpin 36s linear infinite;
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

.satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.satellite--1 { transform: rotate(0deg) translateY(-168px); }
.satellite--2 { transform: rotate(60deg) translateY(-168px); }
.satellite--3 { transform: rotate(120deg) translateY(-168px); }
.satellite--4 { transform: rotate(180deg) translateY(-168px); }
.satellite--5 { transform: rotate(240deg) translateY(-168px); }
.satellite--6 { transform: rotate(300deg) translateY(-168px); }

.satellite__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: counterSpin 36s linear infinite;
}

@keyframes counterSpin {
  to { transform: rotate(-360deg); }
}

.satellite__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 174, 239, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  color: var(--color-blue-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.satellite__icon svg { width: 26px; height: 26px; }

.satellite:hover .satellite__icon {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(0, 174, 239, 0.45);
}

.satellite__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.hero-hub__stats {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 5;
}

.hub-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 174, 239, 0.2);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  min-width: 80px;
  transition: all var(--transition);
}

.hub-stat:hover {
  background: rgba(0, 174, 239, 0.12);
  border-color: rgba(0, 174, 239, 0.4);
  transform: translateY(-4px);
}

.hub-stat__num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-blue-light);
  line-height: 1;
}

.hub-stat__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.25rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--color-gray-light); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about__content p { color: var(--color-gray); margin-bottom: 1.25rem; }

.about__quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--color-blue);
  background: var(--color-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-3d);
}

.about__quote p {
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-dark);
  margin: 0;
}

.about__visual { display: flex; flex-direction: column; gap: 1.5rem; }

.about__card {
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3d);
  border: 1px solid var(--color-border);
}

.about__card--accent {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

.about__card--accent h3 { color: var(--color-white); }
.about__card--accent p { color: rgba(255, 255, 255, 0.7); }

.about__card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--color-blue);
}

.about__card--accent .about__card-icon { color: var(--color-gold); }
.about__card-icon svg { width: 100%; height: 100%; }

.about__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.about__card p { font-size: 0.9rem; color: var(--color-gray); margin: 0; }

/* ============================================
   VISION
   ============================================ */
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vision__card {
  padding: clamp(2rem, 4vw, 2.5rem);
  background: var(--color-gray-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-3d);
}

.vision__card--mission {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
}

.vision__card--mission h2 { color: var(--color-white); }
.vision__card--mission .vision__icon {
  background: rgba(0, 174, 239, 0.15);
  color: var(--color-blue-light);
}

.vision__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.vision__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 174, 239, 0.1);
  color: var(--color-blue);
  border-radius: var(--radius-md);
}

.vision__icon svg { width: 24px; height: 24px; }

.vision__card h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-dark);
  text-transform: uppercase;
}

.vision__card p { margin-bottom: 1rem; line-height: 1.8; }

.vision__emphasis {
  font-weight: 600;
  color: var(--color-dark);
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.vision__card--mission .vision__emphasis {
  color: var(--color-blue-light);
  border-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   VALUES
   ============================================ */
.values {
  background: var(--color-dark);
  color: var(--color-white);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.value-card:hover::before { transform: scaleX(1); }

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  background: rgba(0, 174, 239, 0.12);
  border-radius: 14px;
  color: var(--color-blue-light);
  transition: all var(--transition);
}

.value-card__icon svg { width: 26px; height: 26px; }

.value-card:hover .value-card__icon {
  background: var(--color-blue);
  color: var(--color-white);
  transform: scale(1.08) rotate(-5deg);
}

.value-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-blue);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.value-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================
   OVERVIEW
   ============================================ */
.overview { background: var(--color-gray-light); }

.overview__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-3d);
  border: 1px solid var(--color-border);
}

.overview__content p { color: var(--color-gray); margin-bottom: 1rem; }

.overview__note {
  font-weight: 600;
  color: var(--color-dark) !important;
  padding: 1rem 1.25rem;
  background: var(--color-gray-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-blue);
}

.overview__clients h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.clients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.clients-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  color: var(--color-gray);
}

.clients-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--color-blue);
  border-radius: 50%;
}

/* ============================================
   FLEET
   ============================================ */
.fleet { background: var(--color-white); }

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.fleet-card {
  padding: 2rem 1.5rem;
  background: var(--color-gray-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition);
}

.fleet-card:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--color-white);
}

.fleet-card:hover .fleet-card__icon {
  background: var(--color-blue);
  color: var(--color-white);
  transform: translateZ(20px) scale(1.1);
}

.fleet-card:hover h3 { color: var(--color-white); }
.fleet-card:hover p { color: rgba(255, 255, 255, 0.7); }

.fleet-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1.25rem;
  background: linear-gradient(145deg, var(--color-white), var(--color-gray-light));
  color: var(--color-blue);
  border-radius: 18px;
  box-shadow: var(--shadow-3d);
  transition: all var(--transition);
}

.fleet-card__icon svg { width: 32px; height: 32px; }

.fleet-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.fleet-card p {
  font-size: 0.85rem;
  color: var(--color-gray);
  line-height: 1.6;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--color-gray-light); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-3d);
  transition: all var(--transition);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 174, 239, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover::after { opacity: 1; }

.service-card:hover {
  background: var(--color-dark);
  border-color: var(--color-dark);
  box-shadow: var(--shadow-3d-hover);
  transform: translateY(-6px) translateZ(10px);
}

.service-card:hover .service-card__icon {
  background: rgba(0, 174, 239, 0.2);
  color: var(--color-blue-light);
}

.service-card:hover h3,
.service-card:hover p { color: var(--color-white); }

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, rgba(0, 174, 239, 0.12), rgba(0, 174, 239, 0.04));
  color: var(--color-blue);
  border-radius: 14px;
  margin-bottom: 1rem;
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 0.78rem;
  color: var(--color-gray);
  transition: color var(--transition);
  position: relative;
  z-index: 1;
}

/* ============================================
   EXCELLENCE
   ============================================ */
.excellence { background: var(--color-white); }

.excellence__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
}

.excellence__content p { color: var(--color-gray); margin-bottom: 1rem; }

.pillars-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pillars-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.pillar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(0, 174, 239, 0.1);
  border-radius: 8px;
  color: var(--color-blue);
  transition: all var(--transition);
}

.pillar-icon svg { width: 16px; height: 16px; }

.pillars-list li:hover .pillar-icon {
  background: var(--color-blue);
  color: var(--color-white);
  transform: rotate(10deg) scale(1.1);
}

.pillars-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.pillars-list li:hover {
  border-color: var(--color-blue);
  transform: translateX(4px);
  box-shadow: var(--shadow-3d);
}

.excellence__footer {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-dark);
  padding: 2rem;
  background: var(--color-gray-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-3d);
}

/* ============================================
   HUMANITARIAN
   ============================================ */
.humanitarian {
  position: relative;
  overflow: hidden;
}

.humanitarian__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 50%, var(--color-dark-3) 100%);
}

.humanitarian__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(0, 174, 239, 0.1) 0%, transparent 60%);
}

.humanitarian__content { position: relative; z-index: 2; }

.humanitarian__grid p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.humanitarian__highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-blue-light) !important;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-left: 4px solid var(--color-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo img { height: 50px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }

.footer__brand p {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__links ul li { margin-bottom: 0.6rem; }
.footer__links a { font-size: 0.88rem; }
.footer__links a:hover { color: var(--color-blue-light); }

.footer__contact ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.footer__contact svg {
  width: 18px;
  height: 18px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.footer__contact a:hover { color: var(--color-blue-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.78rem;
}

.footer__tagline { color: var(--color-blue); letter-spacing: 0.05em; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg { width: 30px; height: 30px; }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .fleet__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero__layout { grid-template-columns: 1fr; text-align: center; }
  .hero__content { padding-left: 0; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__slider-nav { display: none; }
  .hero__visual { margin-top: 2rem; }
  .hero-hub { max-width: 360px; }
  .satellite--1 { transform: rotate(0deg) translateY(-140px); }
  .satellite--2 { transform: rotate(60deg) translateY(-140px); }
  .satellite--3 { transform: rotate(120deg) translateY(-140px); }
  .satellite--4 { transform: rotate(180deg) translateY(-140px); }
  .satellite--5 { transform: rotate(240deg) translateY(-140px); }
  .satellite--6 { transform: rotate(300deg) translateY(-140px); }

  .topbar__director { display: none; }
  .navbar__search { display: none; }

  .about__grid,
  .vision__grid,
  .overview__wrapper,
  .excellence__grid,
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    background: var(--color-white);
    transform: translateX(100%);
    transition: transform var(--transition);
    gap: 0.25rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav__menu.open { transform: translateX(0); }

  .nav__link {
    padding: 1rem 1.25rem;
    font-size: 0.9rem;
  }

  .navbar__actions .btn--quote { display: none; }

  .topbar__contacts { gap: 0.5rem 1rem; }
  .topbar__contacts li:nth-child(n+4) { display: none; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: 1fr; }
  .clients-list,
  .pillars-list { grid-template-columns: 1fr; }

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services__grid,
  .fleet__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }
  .hero-hub { max-width: 300px; }
  .hero-hub__stats { flex-wrap: wrap; justify-content: center; }
}
