* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f6f6f4;
  color: #000;
  overflow-x: hidden;
  line-height: 1.6;
}

/* =========================
   GLOBAL HEADER
========================= */

header {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.main-logo {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 40px;
}

nav a {
  text-decoration: none;
  color: rgba(0,0,0,0.65);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: 0.3s ease;
}

nav a:hover {
  color: #000;
}

/* =========================
   HOMEPAGE HERO
========================= */

.hero {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: auto;
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 100px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: statusFade 3s infinite ease-in-out;
}

@keyframes statusFade {

  0% {
    background: #ef4444;
  }

  50% {
    background: #22c55e;
  }

  100% {
    background: #ef4444;
  }

}

.badge span {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
}

.hero h1 {
  font-size: 82px;
  line-height: 0.95;
  font-weight: 300;
  margin-bottom: 35px;
}

.hero h1 strong {
  font-weight: 500;
}

.hero p {
  font-size: 19px;
  color: rgba(0,0,0,0.65);
  max-width: 650px;
  margin-bottom: 50px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: 18px 34px;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  transition: 0.3s ease;
}

.btn-primary {
  background: #000;
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(0,0,0,0.15);
  color: #000;
  background: rgba(255,255,255,0.8);
}

.feature-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  padding: 50px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.05);
}

/* =========================
   TICKER
========================= */

.ticker {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.7);
  padding: 28px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: scroll 35s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}

.ticker-track span {
  margin: 0 40px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   LEGAL PAGES
========================= */

.legal-hero {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: auto;
  padding: 100px 80px 60px;
}

.legal-hero small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 25px;
}

.legal-hero h1 {
  font-size: 72px;
  line-height: 0.95;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 900px;
}

.legal-hero p {
  font-size: 20px;
  color: rgba(0,0,0,0.65);
  max-width: 760px;
}

.policy-container {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: auto;
  padding: 0 80px 120px;
}

.policy-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  padding: 70px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}

.policy-meta {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 50px;
}

.policy-meta span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
}

.policy-content h2 {
  font-size: 34px;
  font-weight: 300;
  margin-top: 70px;
  margin-bottom: 25px;
}

.policy-content h3 {
  font-size: 22px;
  font-weight: 400;
  margin-top: 35px;
  margin-bottom: 18px;
}

.policy-content p {
  font-size: 17px;
  color: rgba(0,0,0,0.68);
  margin-bottom: 24px;
  max-width: 1000px;
}

.policy-content ul {
  padding-left: 22px;
  margin-bottom: 30px;
}

.policy-content li {
  margin-bottom: 12px;
  color: rgba(0,0,0,0.68);
  font-size: 17px;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 40px 0;
}

.footer-cta {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-cta p {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-cta a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* =========================
   ABOUT / STATS SECTION
========================= */

.about {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: auto;
  padding: 120px 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.about-intro {
  max-width: 900px;
}

.about-intro p {
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 30px;
}

.about-intro h2 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 300;
  max-width: 850px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}

.about-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 32px;
  padding: 50px 40px;
  transition: 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.about-card p {
  color: rgba(0,0,0,0.65);
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1100px) {

  .stats-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 768px) {

  .about {
    padding-left: 25px;
    padding-right: 25px;
  }

  .about-intro h2 {
    font-size: 42px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

}


/* =========================
   CTA SECTION
========================= */

.cta {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto 100px;
  background: #000;
  color: white;
  border-radius: 42px;
  padding: 90px;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: -200px;
  right: -100px;
}

.cta small {
  position: relative;
  z-index: 1;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 30px;
}

.cta h2 {
  position: relative;
  z-index: 1;
  font-size: 64px;
  line-height: 1;
  font-weight: 300;
  max-width: 900px;
  margin-bottom: 35px;
}

.cta p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  margin-bottom: 50px;
}

.cta-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-buttons a {
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  transition: 0.3s ease;
}

.cta-buttons .light {
  background: white;
  color: black;
}

.cta-buttons .dark {
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

  .hero {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .legal-hero h1 {
    font-size: 58px;
  }

}

@media (max-width: 768px) {

  header,
  .hero,
  .legal-hero,
  .policy-container,
  footer {
    padding-left: 25px;
    padding-right: 25px;
  }

  nav {
    display: none;
  }

  .hero,
  .legal-hero {
    padding-top: 80px;
  }

  .hero h1,
  .legal-hero h1,
  .cta h2 {
    font-size: 42px;
  }

  .hero p,
  .legal-hero p,
  .policy-content p,
  .policy-content li {
    font-size: 16px;
  }

  .policy-card,
  .feature-panel,
  .cta {
    padding: 35px;
    border-radius: 28px;
  }

  .main-logo {
    height: 58px;
  }

  .policy-content h2 {
    font-size: 28px;
  }

  .cta {
    margin: 0 20px 60px;
  }
}

/* =========================
   FOOTER V2
========================= */

.site-footer {
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 80px 80px 40px;
  background: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column h4 {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(0,0,0,0.45);
}

.footer-column a {
  display: block;
  text-decoration: none;
  color: rgba(0,0,0,0.75);
  margin-bottom: 16px;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-column a:hover {
  color: #000;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 30px;
}

.footer-description {
  max-width: 340px;
  color: rgba(0,0,0,0.6);
  font-size: 15px;
  line-height: 1.8;
}

.footer-locations {
  margin-top: 25px;
  color: rgba(0,0,0,0.5);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: rgba(0,0,0,0.45);
  font-size: 13px;
}

@media (max-width: 1100px) {

  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }

}

@media (max-width: 768px) {

  .site-footer {
    padding: 60px 25px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* =========================
   LOCATIONS PAGE
========================= */

.locations-hero{
  position:relative;
  z-index:10;
  max-width:1400px;
  margin:auto;
  padding:120px 80px 80px;
}

.locations-hero small{
  display:block;
  margin-bottom:30px;

  font-size:11px;
  letter-spacing:0.35em;
  text-transform:uppercase;

  color:rgba(0,0,0,0.5);
}

.locations-hero h1{
  font-size:92px;
  line-height:0.92;
  font-weight:300;

  margin-bottom:35px;
}

.locations-hero p{
  max-width:760px;

  font-size:20px;
  color:rgba(0,0,0,0.65);
}

/* =========================
   GLOBAL STATS
========================= */

.global-stats{
  max-width:1400px;
  margin:auto;

  padding:0 80px 100px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.global-stat{
  background:white;

  border:1px solid rgba(0,0,0,0.08);
  border-radius:32px;

  padding:45px;
}

.global-stat h2{
  font-size:58px;
  font-weight:300;

  margin-bottom:10px;
}

.global-stat span{
  font-size:12px;
  letter-spacing:0.25em;
  text-transform:uppercase;

  color:rgba(0,0,0,0.45);
}

/* =========================
   MAP SECTION
========================= */

.map-section{
  position:relative;

  max-width:1400px;
  margin:auto auto 120px;

  height:700px;

  overflow:hidden;
  border-radius:42px;

  background:
    radial-gradient(circle at top left,
    rgba(34,197,94,0.10),
    transparent 28%),

    radial-gradient(circle at bottom right,
    rgba(255,255,255,0.04),
    transparent 35%),

    linear-gradient(
      180deg,
      #0b0b0b 0%,
      #050505 100%
    );

  border:1px solid rgba(255,255,255,0.04);
}

.map-grid{
  position:absolute;
  inset:0;

  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

  background-size:60px 60px;
}

.map-overlay{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(255,255,255,0.015),
      transparent
    );

  z-index:2;
}

.map-content{
  position:absolute;

  top:80px;
  left:80px;

  z-index:5;

  max-width:700px;
}

.map-content small{
  display:block;

  margin-bottom:25px;

  font-size:11px;
  letter-spacing:0.35em;
  text-transform:uppercase;

  color:rgba(255,255,255,0.5);
}

.map-content h2{
  color:white;

  font-size:62px;
  line-height:1;
  font-weight:300;
}

/* =========================
   LOCATION DISPLAY PANEL
========================= */

.location-display{
  position:absolute;

  right:80px;
  bottom:80px;

  width:380px;

  background:white;

  border-radius:28px;

  overflow:hidden;

  z-index:20;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.28);
}

.location-display img{
  width:100%;
  height:220px;

  object-fit:cover;

  display:block;
}

.location-info{
  padding:28px;
}

.location-info small{
  display:block;

  margin-bottom:14px;

  font-size:10px;
  letter-spacing:0.3em;
  text-transform:uppercase;

  color:rgba(0,0,0,0.45);
}

.location-info h3{
  font-size:38px;
  font-weight:300;

  color:#000;

  margin-bottom:12px;
}

.location-info p{
  color:rgba(0,0,0,0.68);

  line-height:1.7;

  margin-bottom:20px;
}

.location-departments{
  font-size:12px;
  line-height:1.7;

  color:rgba(0,0,0,0.5);
}

/* =========================
   MAP PINGS
========================= */

.map-ping{
  position:absolute;

  border-radius:50%;

  background:#22c55e;

  border:2px solid rgba(255,255,255,0.14);

  cursor:pointer;

  z-index:20;

  box-shadow:
    0 0 12px rgba(34,197,94,0.75),
    0 0 28px rgba(34,197,94,0.25);
}

.map-ping::before{
  content:'';

  position:absolute;
  inset:-10px;

  border-radius:50%;

  border:1px solid rgba(34,197,94,0.35);

  animation:pingPulse 2.8s infinite;
}

@keyframes pingPulse{

  0%{
    transform:scale(0.8);
    opacity:1;
  }

  100%{
    transform:scale(1.9);
    opacity:0;
  }

}

/* =========================
   LOCATION POSITIONS
========================= */

.sandton{
  width:24px;
  height:24px;

  top:58%;
  left:54%;
}

.durban{
  width:14px;
  height:14px;

  top:68%;
  left:57%;
}

.london{
  width:16px;
  height:16px;

  top:34%;
  left:45%;
}

.copenhagen{
  width:12px;
  height:12px;

  top:25%;
  left:49%;
}

.riga{
  width:12px;
  height:12px;

  top:22%;
  left:55%;
}

.accra{
  width:12px;
  height:12px;

  top:53%;
  left:46%;
}

.nairobi{
  width:12px;
  height:12px;

  top:54%;
  left:61%;
}

.johannesburg{
  width:14px;
  height:14px;

  top:61%;
  left:53%;
}

.kalahari{
  width:12px;
  height:12px;

  top:57%;
  left:49%;
}

.mupani{
  width:12px;
  height:12px;

  top:53%;
  left:56%;
}

.nyota{
  width:12px;
  height:12px;

  top:56%;
  left:61%;
}

.kariba{
  width:12px;
  height:12px;

  top:58%;
  left:57%;
}

.vilnius{
  width:12px;
  height:12px;

  top:21%;
  left:57%;
}

.swadlincote{
  width:12px;
  height:12px;

  top:29%;
  left:43%;
}

/* =========================
   REGIONS
========================= */

.region-section{
  max-width:1400px;
  margin:auto;

  padding:0 80px 120px;
}

.region-header{
  margin-bottom:50px;
}

.region-header small{
  display:block;

  margin-bottom:20px;

  font-size:11px;
  letter-spacing:0.35em;
  text-transform:uppercase;

  color:rgba(0,0,0,0.45);
}

.region-header h2{
  font-size:58px;
  font-weight:300;
}

.locations-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);

  gap:24px;
}

.location-card{
  background:white;

  border:1px solid rgba(0,0,0,0.08);
  border-radius:32px;

  padding:42px;

  transition:0.35s ease;
}

.location-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.06);
}

.location-card.featured{
  background:#000;
  color:white;

  grid-column:span 2;
}

.location-label{
  margin-bottom:20px;

  font-size:11px;
  letter-spacing:0.25em;
  text-transform:uppercase;

  color:rgba(0,0,0,0.45);
}

.location-card.featured .location-label{
  color:rgba(255,255,255,0.5);
}

.location-card h2{
  font-size:52px;
  font-weight:300;

  margin-bottom:20px;
}

.location-card p{
  font-size:16px;
  line-height:1.8;

  color:rgba(0,0,0,0.65);
}

.location-card.featured p{
  color:rgba(255,255,255,0.75);
}

.location-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;

  margin-top:30px;
}

.location-tags span{
  padding:10px 14px;

  border-radius:100px;

  border:1px solid rgba(255,255,255,0.12);

  font-size:11px;
  letter-spacing:0.12em;
  text-transform:uppercase;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:1100px){

  .global-stats,
  .locations-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .location-card.featured{
    grid-column:span 2;
  }

}

@media (max-width:768px){

  .locations-hero,
  .global-stats,
  .region-section{
    padding-left:25px;
    padding-right:25px;
  }

  .locations-hero h1,
  .map-content h2,
  .region-header h2{
    font-size:42px;
  }

  .global-stats,
  .locations-grid{
    grid-template-columns:1fr;
  }

  .location-card.featured{
    grid-column:span 1;
  }

  .map-section{
    height:auto;
    min-height:700px;

    margin-left:20px;
    margin-right:20px;
  }

  .map-content{
    top:30px;
    left:30px;
    right:30px;
  }

  .location-display{
    position:relative;

    right:auto;
    bottom:auto;

    width:auto;

    margin:320px 20px 20px;
  }

}