/* ═══════════════════════════════════════════════════════════════════════════
   PGI-Data Website — Main Stylesheet
   Palette D: Blue-to-Cyan Bridge
   ═══════════════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────────────────────────────────────
   CSS CUSTOM PROPERTIES
   ──────────────────────────────────────────────────────────────────────── */

:root {
  /* Brand Colors */
  --blue: #0000AB;
  --blue-dark: #00008A;
  --blue-mid: #0087A8;
  --cyan: #00C8FF;
  
  /* Backgrounds */
  --cyan-pale: #E4F9FF;
  --blue-pale: #F0F4FF;
  --white: #ffffff;
  
  /* Text */
  --ink: #0A0A1A;
  --ink-mid: #3A4A6A;
  --ink-light: #7A8AA0;
  
  /* Borders */
  --border: rgba(0, 0, 171, 0.1);
  --border-cyan: rgba(0, 200, 255, 0.3);
  
  /* Status */
  --success: #085041;
  --success-bg: #E1F5EE;
  --error: #791F1F;
  --error-bg: #FCEBEB;
  
  /* Third party */
  --linkedin: #0A66C2;
  
  /* Dark backgrounds */
  --dark-bg: #0A0A1A;
  --dark-bg-2: #1A1A2E;
  
  /* Fonts */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  
  /* Spacing */
  --section-pad: 80px 52px;
  --section-pad-md: 60px 32px;
  --section-pad-sm: 40px 20px;
  
  /* Radius */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 8px;
  
  /* Transitions */
  --transition: 0.2s ease;
  --transition-md: 0.3s ease;
}

/* ────────────────────────────────────────────────────────────────────────
   RESET & BASE STYLES
   ──────────────────────────────────────────────────────────────────────── */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-mid);
  background: var(--white);
}

/* ────────────────────────────────────────────────────────────────────────
   TYPOGRAPHY
   ──────────────────────────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}

h1 {
  font-size: clamp(36px, 5vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 26px;
}

h1 em, h2 em {
  font-style: normal;
  color: var(--cyan);
}

h2 {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 32px;
}

h3 {
  font-size: 18px;
  letter-spacing: -0.2px;
  margin-bottom: 12px;
  line-height: 1.25;
}

/* ────────────────────────────────────────────────────────────────────────
   LINKS & LISTS
   ──────────────────────────────────────────────────────────────────────── */

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--cyan);
}

ul {
  list-style: none;
}

/* ────────────────────────────────────────────────────────────────────────
   EYEBROW LABEL
   ──────────────────────────────────────────────────────────────────────── */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--blue-mid);
  animation: lineGrow 0.6s ease 0.3s backwards;
}

.eyebrow--white {
  color: var(--cyan);
}

.eyebrow--white::before {
  background: var(--cyan);
}

/* ────────────────────────────────────────────────────────────────────────
   TAG / BADGE SYSTEM
   ──────────────────────────────────────────────────────────────────────── */

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 400;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  border: 1px solid;
}

.tag--cyan {
  background: rgba(0, 200, 255, 0.07);
  color: rgba(0, 200, 255, 0.8);
  border-color: rgba(0, 200, 255, 0.15);
}

.tag--blue {
  background: rgba(0, 0, 171, 0.08);
  color: var(--blue);
  border-color: rgba(0, 0, 171, 0.15);
}

.tag--solid {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  font-size: 11px;
  padding: 2px 10px;
}

.tag--green {
  background: #EAF3DE;
  color: #3B6D11;
  border-color: #C0DD97;
}

.tag--amber {
  background: #FAEEDA;
  color: #854F0B;
  border-color: #FAC775;
}

/* ────────────────────────────────────────────────────────────────────────
   BUTTON SYSTEM
   ──────────────────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--dark-bg);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  font-size: 15px;
}

.btn-primary:hover {
  background: #00DEFF;
  transform: translateY(-1px);
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.btn-ghost:hover {
  color: var(--cyan);
}

.btn-ghost .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--transition);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

.btn-dark {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-dark:hover {
  background: var(--blue-dark);
}

.btn-submit {
  background: var(--cyan);
  color: var(--dark-bg);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  width: 100%;
}

.btn-submit:hover {
  background: #00DEFF;
  transform: translateY(-1px);
}

/* ────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────────────────────────── */

.nav {
  background: var(--blue);
  color: var(--white);
  padding: 20px 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  animation: navSlideDown 0.5s ease;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0px;
  display: flex;
  align-items: center;
}

.nav__logo img {
  width: 110px;
  height: auto;
  display: block;
}

.nav__logo span {
  color: var(--cyan);
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__links a {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--cyan);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--blue-dark);
  min-width: 220px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  flex-direction: column;
}

.nav__dropdown-menu.is-open {
  display: flex;
}

/* On mobile the dropdown sits inline (not absolute), triggered by tap */
@media (max-width: 768px) {
  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    min-width: auto;
    width: 100%;
    margin-top: 4px;
    border-left: 2px solid rgba(0, 200, 255, 0.35);
    padding-left: 8px;
  }

  .nav__dropdown-menu li {
    padding: 8px 12px;
  }

  /* Show arrow indicator on Services toggle */
  .nav__dropdown > a::after {
    content: ' ▾';
    font-size: 10px;
    opacity: 0.7;
  }
}

.nav__dropdown-menu li {
  padding: 12px 20px;
}

.nav__dropdown-menu a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.nav__careers {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 500;
}

.lang-toggle {
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
}

.lang-toggle .active {
  color: var(--cyan);
  font-weight: 500;
}

.nav__cta {
  background: var(--cyan);
  color: var(--dark-bg);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.nav__cta:hover {
  background: #00DEFF;
  transform: translateY(-1px);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ────────────────────────────────────────────────────────────────────────
   ANIMATIONS & KEYFRAMES
   ──────────────────────────────────────────────────────────────────────── */

@keyframes navSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 18px;
  }
}

@keyframes wordReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ringPulse {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatDot {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes scan {
  0% {
    top: -2px;
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    top: 102%;
    opacity: 0;
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ────────────────────────────────────────────────────────────────────────
   SCROLL REVEAL
   ──────────────────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  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;
}

/* ────────────────────────────────────────────────────────────────────────
   HERO SECTION
   ──────────────────────────────────────────────────────────────────────── */

.hero {
  background: var(--blue);
  color: var(--white);
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.hero__content {
  z-index: 2;
  animation: fadeUp 0.7s ease 0.2s backwards;
}

.hero__content .eyebrow {
  color: var(--cyan);
  animation: fadeUp 0.7s ease 0.1s backwards;
}

.hero__content .eyebrow::before {
  background: var(--cyan);
}

.hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: wordReveal 0.7s ease 0.3s backwards;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeUp 0.7s ease 0.4s backwards;
}

.hero__cta-group {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 0.7s ease 0.5s backwards;
}

.hero__cta-group .btn-primary {
  background: var(--cyan);
  color: var(--dark-bg);
}

.hero__cta-group .btn-ghost {
  color: var(--white);
}

/* Hero Ambient Effects */

.hero__ambient {
  position: relative;
  width: 100%;
  height: 400px;
}

.ring {
  position: absolute;
  border: 2px solid rgba(0, 200, 255, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-in-out infinite;
}

.ring--1 {
  width: 100px;
  height: 100px;
  animation-delay: 0s;
}

.ring--2 {
  width: 200px;
  height: 200px;
  animation-delay: 0.5s;
}

.ring--3 {
  width: 300px;
  height: 300px;
  animation-delay: 1s;
}

.dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: floatDot 4s ease-in-out infinite;
}

.dot--1 {
  top: 20%;
  left: 25%;
  animation-delay: 0s;
}

.dot--2 {
  top: 60%;
  left: 15%;
  animation-delay: 0.8s;
}

.dot--3 {
  top: 40%;
  right: 20%;
  animation-delay: 1.6s;
}

.scanline {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(0, 200, 255, 0.5), transparent);
  top: 0;
  animation: scan 3s ease-in-out infinite;
}

/* ────────────────────────────────────────────────────────────────────────
   ENGAGEMENT CARDS (NEWS STRIP)
   ──────────────────────────────────────────────────────────────────────── */

.engagement {
  background: var(--dark-bg-2);
  padding: var(--section-pad);
  overflow: hidden;
}

.engagement__track {
  display: flex;
  gap: 24px;
  animation: ticker 20s linear infinite;
  will-change: transform;
}

.engagement__track:hover {
  animation-play-state: paused;
}

.ecard {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-md);
}

.ecard:hover {
  border-color: rgba(0, 200, 255, 0.35);
  transform: translateX(-4px);
}

.ecard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.ecard__date {
  font-size: 11px;
  color: var(--ink-light);
  font-weight: 400;
}

.ecard__title {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--ink);
  line-height: 1.4;
}

.ecard__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 16px;
}

.ecard__sector {
  font-size: 11px;
  color: var(--ink-light);
  font-weight: 400;
}

/* ────────────────────────────────────────────────────────────────────────
   SERVICES SECTION
   ──────────────────────────────────────────────────────────────────────── */

.services {
  background: var(--white);
  padding: var(--section-pad);
}

.services__header {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-md);
}

.service-card:hover {
  background: #F5F8FF;
  border-color: var(--blue-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 171, 0.08);
}

.service-card__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 200, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  color: var(--blue-mid);
}

.service-card:hover .service-card__icon {
  background: var(--blue-mid);
  color: var(--white);
  transform: scale(1.05);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.service-card__name {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 20px;
}

.service-card__list {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.7;
}

.service-card__list li {
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-weight: 500;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-mid);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}

.service-card__link:hover {
  gap: 9px;
  color: var(--cyan);
}

/* Responsive: Services Grid */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────────────────────────────────────────────
   SECTORS SECTION
   ──────────────────────────────────────────────────────────────────────── */

.sectors {
  background: var(--white);
  padding: var(--section-pad);
  border-top: 1px solid var(--border);
}

.sectors h2 {
  max-width: 600px;
  margin-bottom: 48px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sector-card {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: all var(--transition-md);
  position: relative;
  overflow: hidden;
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue-mid));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity var(--transition-md);
}

.sector-card:hover {
  border-color: rgba(0, 200, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 171, 0.08);
}

.sector-card:hover::before {
  opacity: 1;
}

.sector-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.15), rgba(0, 0, 171, 0.08));
  border: 1px solid rgba(0, 200, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-mid);
  margin-bottom: 18px;
  flex-shrink: 0;
}

.sector-card h3 {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sector-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-mid);
}

@media (max-width: 1024px) {
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────────────────────────────────────────────
   WHY PGI SECTION
   ──────────────────────────────────────────────────────────────────────── */

.why-pgi {
  background: var(--dark-bg);
  color: var(--white);
  padding: var(--section-pad);
}

.why-pgi h2 {
  color: var(--white);
  margin-bottom: 48px;
  max-width: 600px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why-item {
  display: flex;
  gap: 28px;
  transition: all var(--transition-md);
  border: 1px solid rgba(0, 200, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.why-item:hover {
  border-color: rgba(0, 200, 255, 0.3);
}

.why-item__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: -0.8px;
  flex-shrink: 0;
  width: 50px;
}

.why-item__content h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.why-item__content p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────────────────────────────────────────────
   STATS SECTION
   ──────────────────────────────────────────────────────────────────────── */

.stats {
  background: var(--blue-pale);
  padding: 64px 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
  border-top: 3px solid var(--cyan);
}

/* Vertical dividers between stat items */
.stat {
  padding: 20px 40px;
  position: relative;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 171, 0.12);
}

.stat__number {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.stat__number span {
  font-size: 0.55em;
  letter-spacing: 0;
  opacity: 0.7;
}

.stat__label {
  font-size: 11px;
  color: var(--ink-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

@media (max-width: 1024px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 36px;
  }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 171, 0.1);
    padding-bottom: 36px;
  }
  .stat:nth-child(3),
  .stat:nth-child(4) {
    padding-top: 36px;
  }
}

@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px 20px;
    gap: 0;
  }
  .stat { padding: 20px 16px; }
  .stat::after { display: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(0, 0, 171, 0.1);
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 171, 0.1);
  }
}

/* ────────────────────────────────────────────────────────────────────────
   CLIENT LOGOS SLIDER
   ──────────────────────────────────────────────────────────────────────── */

.clients {
  background: var(--white);
  padding: 52px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients__header {
  text-align: center;
  margin-bottom: 32px;
  padding: 0 24px;
}

.clients__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-mid);
}

.clients__track-wrap {
  position: relative;
  overflow: hidden;
}

/* Fade edges */
.clients__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.clients__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.clients__fade--right {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: clientScroll 50s linear infinite;
}

.clients__track:hover {
  animation-play-state: paused;
}

.clients__logo {
  flex-shrink: 0;
  width: 160px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients__logo img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Desaturate logos for a cohesive, professional look */
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.3s ease;
}

.clients__logo:hover img {
  filter: grayscale(0%) opacity(1);
}

@keyframes clientScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .clients { padding: 36px 0; }
  .clients__logo { width: 120px; padding: 0 20px; }
  .clients__fade { width: 60px; }
  .clients__track { animation-duration: 35s; }
}

/* ────────────────────────────────────────────────────────────────────────
   CONTACT CTA SECTION
   ──────────────────────────────────────────────────────────────────────── */

.contact-cta {
  background: var(--white);
  padding: var(--section-pad);
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 16px;
}

.contact-cta p {
  font-size: 18px;
  color: var(--ink-mid);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ────────────────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────────────────── */

.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: var(--section-pad);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0, 200, 255, 0.1);
}

.footer__brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0px;
  margin-bottom: 12px;
}

.footer__brand span {
  color: var(--cyan);
}

.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links li {
  font-size: 13px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.footer__geo {
  display: flex;
  gap: 12px;
}

.footer__geo-tag {
  font-size: 12px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}

.footer__geo-tag:hover {
  color: var(--cyan);
  border-color: rgba(0, 200, 255, 0.5);
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--cyan);
}

.footer__social svg {
  display: block;
}

/* ── TABLET (768px – 1024px) ─── */
@media (max-width: 1024px) and (min-width: 769px) {
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ────────────────────────────────────────────────────────────────────────
   RESPONSIVE: TABLET
   ──────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
    padding: 60px 32px;
  }

  .hero__ambient {
    height: 300px;
  }

  .nav {
    padding: 16px 32px;
  }

  .services {
    padding: 60px 32px;
  }

  .sectors {
    padding: 60px 32px;
  }

  .why-pgi {
    padding: 60px 32px;
  }

  .stats {
    padding: 60px 32px;
  }

  .contact-cta {
    padding: 60px 32px;
  }

  .footer {
    padding: 60px 32px;
  }
}

/* ────────────────────────────────────────────────────────────────────────
   RESPONSIVE: MOBILE
   ──────────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 20px;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 12px;
    background: var(--blue-dark);
    padding: 20px;
    width: 100%;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__cta {
    padding: 8px 16px;
    font-size: 11px;
  }

  .hero {
    padding: 40px 20px;
  }

  .hero__content h1 {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Show only the innermost ring on mobile — hides heavy decorations */
  .hero__ambient {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .hero__ring--2,
  .hero__ring--3,
  .hero__semi--1,
  .hero__semi--2,
  .hero__semi--3,
  .hero__dot--1,
  .hero__dot--2,
  .hero__dot--3,
  .hero__dot--4,
  .hero__dot--5,
  .hero__scanline {
    display: none;
  }
  .hero__ring--1 {
    opacity: 0.35;
  }

  .engagement {
    padding: 40px 20px;
  }

  .ecard {
    min-width: 280px;
  }

  .services {
    padding: 40px 20px;
  }

  .services__header {
    margin-bottom: 40px;
  }

  .services-grid {
    gap: 20px;
  }

  .sectors {
    padding: 40px 20px;
  }

  .sectors h2 {
    font-size: 28px;
  }

  .why-pgi {
    padding: 40px 20px;
  }

  .why-pgi h2 {
    font-size: 28px;
  }

  .why-item {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .stats {
    padding: 40px 20px;
    gap: 28px;
  }

  .contact-cta {
    padding: 40px 20px;
  }

  .contact-cta h2 {
    font-size: 28px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px;
  }

  .nav__logo {
    font-size: 18px;
  }

  .hero__cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-ghost, .btn-submit {
    width: 100%;
    text-align: center;
  }

  .engagement__track {
    animation: ticker 15s linear infinite;
  }

/* ────────────────────────────────────────────────────────────────────────
   JOURNEY SECTION
   ──────────────────────────────────────────────────────────────────────── */

.journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--section-pad);
  margin-top: var(--section-pad);
}

.journey__item {
  background: var(--card-bg);
  padding: var(--section-pad);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.journey__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.journey__year {
  font-size: 48px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: var(--spacing-2);
  font-family: var(--font-heading);
}

.journey__item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--spacing-2);
  color: var(--white);
}

.journey__item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────────────────
   TEAM GRID
   ──────────────────────────────────────────────────────────────────────── */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--section-pad);
  margin-top: var(--section-pad);
}

.team-card {
  background: var(--card-bg);
  padding: var(--section-pad);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.team-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--spacing-1);
  color: var(--white);
}

.team__role {
  color: var(--cyan);
  font-weight: 500;
  margin-bottom: var(--spacing-2);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--spacing-3);
}

.btn-link {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.btn-link:hover {
  color: var(--white);
}

/* ────────────────────────────────────────────────────────────────────────
   PARTNERS SECTION
   ──────────────────────────────────────────────────────────────────────── */

.partners {
  margin-top: var(--section-pad);
  overflow: hidden;
  position: relative;
}

.partners__track {
  display: flex;
  gap: var(--spacing-4);
  animation: partners-scroll 60s linear infinite;
}

.partners__track img {
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.6);
  transition: filter var(--transition);
}

.partners__track img:hover {
  filter: grayscale(0%) opacity(1);
}

@keyframes partners-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ────────────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ──────────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .journey {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .journey__year {
    font-size: 36px;
  }

  .team-card h3 {
    font-size: 20px;
  }

  .partners__track img {
    width: 100px !important;
    height: 50px !important;
  }
}

/* ────────────────────────────────────────────────────────────────────────
   ABOUT — FACTS / GEO BLOCK
   ──────────────────────────────────────────────────────────────────────── */

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0 48px;
}

.fact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fact-card__number {
  font-family: 'Manrope', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.fact-card__plus {
  font-size: 32px;
  color: var(--cyan);
}

.fact-card__label {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.4;
}

.about-creds {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 36px;
}

.about-creds__heading {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.about-creds__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-creds__list li {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.about-creds__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 12px;
  top: 2px;
}

.about-creds__list li strong {
  color: var(--ink);
}

@media (max-width: 768px) {
  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-creds {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
}

  .ecard {
    min-width: 100%;
  }

  .stat__number {
    font-size: 36px;
  }

  .footer__bottom {
    flex-direction: column;
    width: 100%;
  }

  .footer__geo {
    width: 100%;
    flex-wrap: wrap;
  }
}


/* ════════════════════════════════════════════════════════════════════════════
   COOKIE CONSENT BANNER
   ════════════════════════════════════════════════════════════════════════════ */

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.4s ease;
  z-index: 998;
}
.cookie-overlay.active {
  background: rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A0A1A;
  border-top: 1px solid rgba(0, 200, 255, 0.18);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  padding: 20px 52px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.34, 1.04, 0.64, 1);
  z-index: 999;
  display: none;
}
.cookie-banner.visible {
  display: block;
  transform: translateY(0);
}

.cookie-banner__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.cookie-banner__icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-banner__text { flex: 1; }

.cookie-banner__title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}

.cookie-banner__desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  max-width: 680px;
}
.cookie-banner__desc a {
  color: rgba(0, 200, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.cookie-banner__desc a:hover { color: var(--cyan); }

.cookie-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 400;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid;
  transition: all var(--transition);
}
.cookie-pill--on {
  background: rgba(0, 200, 255, 0.07);
  color: rgba(0, 200, 255, 0.8);
  border-color: rgba(0, 200, 255, 0.18);
}
.cookie-pill--off {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.08);
}
.cookie-pill--accepted {
  background: rgba(0, 200, 100, 0.08);
  color: rgba(100, 220, 150, 0.8);
  border-color: rgba(0, 200, 100, 0.18);
}

.cookie-pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cookie-pill__dot--on       { background: var(--cyan); }
.cookie-pill__dot--off      { background: rgba(255, 255, 255, 0.2); }
.cookie-pill__dot--accepted { background: rgba(100, 220, 150, 0.8); }

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}
.cookie-btn--accept {
  background: var(--cyan);
  color: var(--blue);
  border-color: var(--cyan);
}
.cookie-btn--accept:hover {
  background: #00DEFF;
  transform: translateY(-1px);
}
.cookie-btn--decline {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn--decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner__law {
  font-size: 10px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  margin-left: auto;
  line-height: 1.6;
  text-align: right;
}

@media (max-width: 768px) {
  .cookie-banner { padding: 16px 20px; }
  .cookie-banner__law { display: none; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ── Footer cookie settings button ── */
.footer__cookie { display: flex; align-items: center; }
.footer__cookie-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
  padding: 0;
  transition: color var(--transition);
}
.footer__cookie-btn:hover { color: var(--cyan); }
