/* ============================================================
   GLOBALYNET — Main Stylesheet
   Dark corporate theme | Colors: #00171f / #003459 / #007ea7 / #00a8e8 / #7fff00
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,300;1,9..144,600&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --night: #00171f;
  --deep: #003459;
  --ocean: #007ea7;
  --sky: #00a8e8;
  --lime: #7fff00;
  --white: #ffffff;
  --gray-100: #f0f4f6;
  --gray-300: #b8c8d0;
  --gray-500: #6b8a96;
  --gray-700: #2a4552;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --radius: 2px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── ICONS (Lucide) ── */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }
.icon-2xl { width: 40px; height: 40px; }

/* capability card icons */
.capability-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--sky);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* solution icon */
.solution-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* step icon */
.step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--lime);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* feature icon */
.feature-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--night);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* footer contact icon */
.footer-contact-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--lime);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* social icon */
.social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* cookie icon */
.cookie-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--lime);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--night);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--night);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.section-badge.dark {
  background: var(--ocean);
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--lime);
  color: var(--night);
}
.btn-primary:hover { background: var(--sky); color: var(--white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--night); transform: translateY(-2px); }

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
}
.btn-ocean:hover { background: var(--deep); transform: translateY(-2px); }

.btn-sky-outline {
  background: transparent;
  color: var(--sky);
  border: 1.5px solid var(--sky);
}
.btn-sky-outline:hover { background: var(--sky); color: var(--white); transform: translateY(-2px); }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 23, 31, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 168, 232, 0.12);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(0, 23, 31, 0.98);
  border-bottom-color: rgba(127, 255, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img { height: 36px; width: auto; }

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-logo-text span { color: var(--lime); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.04em;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--lime);
  transition: var(--transition);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--deep);
  border: 1px solid rgba(0, 168, 232, 0.2);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  top: calc(100% + 8px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--gray-300);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover { color: var(--lime); background: rgba(127, 255, 0, 0.05); }

.nav-cta { margin-left: 16px; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--night);
  z-index: 99;
  padding: 32px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-links { display: flex; flex-direction: column; gap: 4px; }

.mobile-menu-link {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-300);
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 168, 232, 0.1);
  transition: var(--transition);
}

.mobile-menu-link:hover { color: var(--lime); padding-left: 8px; }

.mobile-menu-sub {
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: none;
}

.mobile-cta { margin-top: 32px; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: var(--night);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 30%, rgba(0, 126, 167, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(0, 52, 89, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 80%, rgba(127, 255, 0, 0.04) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 232, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 232, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-eyebrow-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--sky), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--gray-300);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* HERO RIGHT: ICON GRID */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 380px;
  width: 100%;
}

.capability-card {
  background: rgba(0, 52, 89, 0.4);
  border: 1px solid rgba(0, 168, 232, 0.15);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  backdrop-filter: blur(8px);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.capability-card:hover {
  background: rgba(0, 126, 167, 0.3);
  border-color: var(--lime);
  transform: translateY(-4px);
}

.capability-icon { font-size: 28px; margin-bottom: 8px; }

.capability-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  text-transform: uppercase;
}

/* ── MARQUEE STRIP ── */
.marquee-strip {
  background: var(--lime);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--night);
  white-space: nowrap;
}

.marquee-sep {
  width: 4px;
  height: 4px;
  background: var(--night);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── ABOUT / VALUE PROPS ── */
.about { padding: 120px 0; position: relative; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}

.about-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.about-body {
  color: var(--gray-300);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 36px;
}

.about-pillars { display: flex; flex-direction: column; gap: 20px; }

.pillar {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(0, 168, 232, 0.1);
  transition: var(--transition);
  background: rgba(0, 52, 89, 0.2);
}

.pillar:hover {
  border-color: rgba(127, 255, 0, 0.3);
  background: rgba(0, 52, 89, 0.4);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pillar-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* Service highlights */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(0, 52, 89, 0.3);
  border: 1px solid rgba(0, 168, 232, 0.1);
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(0, 52, 89, 0.5);
  border-color: var(--sky);
  transform: translateX(4px);
}

.feature-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
  min-width: 60px;
  opacity: 0.8;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.feature-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

/* ── SOLUTIONS ── */
.solutions {
  padding: 120px 0;
  background: rgba(0, 52, 89, 0.12);
  position: relative;
}

.solutions::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 126, 167, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 126, 167, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.section-header { text-align: center; margin-bottom: 64px; }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
}

.solution-card {
  padding: 48px 40px;
  background: rgba(0, 23, 31, 0.8);
  border: 1px solid rgba(0, 168, 232, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.solution-card:hover::before { transform: scaleX(1); }
.solution-card:hover { background: rgba(0, 52, 89, 0.5); border-color: rgba(0, 168, 232, 0.3); }

.solution-icon {
  width: 56px;
  height: 56px;
  background: rgba(127, 255, 0, 0.1);
  border: 1px solid rgba(127, 255, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition);
}

.solution-card:hover .solution-icon {
  background: var(--lime);
}

.solution-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.solution-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.solution-link {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.solution-link:hover { color: var(--lime); gap: 10px; }

/* ── HOW WE WORK ── */
.how { padding: 120px 0; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  position: relative;
}

.how-step {
  padding: 48px 36px;
  background: rgba(0, 52, 89, 0.2);
  border: 1px solid rgba(0, 168, 232, 0.08);
  position: relative;
  transition: var(--transition);
}

.how-step:hover {
  background: rgba(0, 52, 89, 0.4);
  border-color: rgba(127, 255, 0, 0.2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--lime);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  border-left: 3px solid var(--lime);
  padding-left: 12px;
}

.step-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ── CLIENTS ── */
.clients { padding: 120px 0; background: rgba(0, 52, 89, 0.08); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.client-card {
  padding: 40px 32px;
  background: rgba(0, 23, 31, 0.6);
  border: 1px solid rgba(0, 168, 232, 0.1);
  transition: var(--transition);
  position: relative;
}

.client-card:hover {
  border-color: rgba(127, 255, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.client-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.client-logo-wrap img {
  max-height: 50px;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: var(--transition);
}

.client-card:hover .client-logo-wrap img { opacity: 1; }

.client-logo-placeholder {
  width: 60px;
  height: 60px;
  background: rgba(0, 52, 89, 0.8);
  border: 1px solid rgba(0, 168, 232, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--lime);
}

.client-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.client-sector {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 16px;
}

.client-desc { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

/* ── WORLD MAP / GLOBAL ── */
.global {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.global-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 52, 89, 0.3) 0%, transparent 70%);
}

.global-inner { position: relative; z-index: 2; }

.countries-map {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 48px 0;
}

.country-pin {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0, 52, 89, 0.4);
  border: 1px solid rgba(0, 168, 232, 0.15);
  transition: var(--transition);
  cursor: default;
}

.country-pin:hover {
  background: rgba(0, 52, 89, 0.7);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.country-pin-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.country-pin-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

.global-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.global-stat {
  padding: 40px;
  background: rgba(0, 52, 89, 0.25);
  border: 1px solid rgba(0, 168, 232, 0.1);
  text-align: center;
  transition: var(--transition);
}

.global-stat:hover {
  background: rgba(0, 52, 89, 0.4);
  border-color: rgba(127, 255, 0, 0.2);
}

.global-stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.global-stat-num.lime { color: var(--lime); }
.global-stat-num.sky { color: var(--sky); }

.global-stat-label {
  font-size: 14px;
  color: var(--gray-300);
  font-weight: 500;
}

/* ── PARTNERS ── */
.partners { padding: 120px 0; background: rgba(0, 52, 89, 0.08); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.partner-card {
  padding: 32px 20px;
  background: rgba(0, 23, 31, 0.6);
  border: 1px solid rgba(0, 168, 232, 0.08);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.partner-card:hover {
  background: rgba(0, 52, 89, 0.5);
  border-color: rgba(127, 255, 0, 0.2);
  transform: translateY(-4px);
}

.partner-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.partner-logo img { width: 100%; height: 100%; object-fit: contain; }

.partner-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.partner-desc {
  font-size: 11px;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.5;
}

.partners-cta { text-align: center; margin-top: 48px; }

/* ── CTA SECTION ── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--deep) 0%, var(--night) 100%);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 168, 232, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(127, 255, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-title .accent { color: var(--lime); }

.cta-sub {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 48px;
  font-weight: 300;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer {
  background: rgba(0, 9, 12, 1);
  border-top: 1px solid rgba(0, 168, 232, 0.1);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(0, 168, 232, 0.1);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}

.footer-brand-name span { color: var(--lime); }

.footer-brand-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-contact { display: flex; flex-direction: column; gap: 8px; }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-300);
  transition: var(--transition);
}

.footer-contact-item:hover { color: var(--sky); }

.footer-contact-icon { color: var(--lime); }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 14px;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-link:hover { color: var(--sky); padding-left: 4px; }

.social-links { display: flex; gap: 8px; margin-top: 24px; }

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(0, 52, 89, 0.5);
  border: 1px solid rgba(0, 168, 232, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--lime);
  color: var(--night);
  border-color: var(--lime);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright { font-size: 13px; color: var(--gray-700); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 13px;
  color: var(--gray-700);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--lime); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 23, 31, 0.97);
  border-top: 1px solid rgba(0, 168, 232, 0.2);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-icon { font-size: 28px; flex-shrink: 0; }

.cookie-text { flex: 1; min-width: 280px; }

.cookie-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.cookie-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

.cookie-desc a { color: var(--sky); text-decoration: underline; }

.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.cookie-btn-accept {
  background: var(--lime);
  color: var(--night);
}
.cookie-btn-accept:hover { background: var(--sky); color: var(--white); }

.cookie-btn-reject {
  background: transparent;
  color: var(--gray-500);
  border: 1px solid rgba(0, 168, 232, 0.2);
}
.cookie-btn-reject:hover { border-color: var(--gray-500); color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

.animate-float { animation: float 4s ease-in-out infinite; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; padding: 60px 0 40px; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .solutions-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .global-stats { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }

  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: 1fr; }
  .countries-map { gap: 8px; }
  .global-stat-num { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}