:root {
  --brand-dark: #0a0a0a;
  --brand-blue: #3b82f6;
  --brand-indigo: #5e56e6;
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-900: #111827;
}

.icon-purple svg {
  color: #7c3aed;
}

.icon-blue svg {
  color: #2563eb;
}

.icon-emerald svg {
  color: #059669;
}

.icon-sky svg {
  color: #0284c7;
}

.icon-violet svg {
  color: #6d28d9;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #1a1f2c;
  --secondary-dark: #161b22;
  --accent-blue: #00a3ff;
  --accent-teal: #00d4aa;
  --text-muted: #6b7280;
  --text-light: #d1d5db;
  --white: #ffffff;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--white);
  background: var(--primary-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", serif;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -1.5px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Hero Section - Editorial Style */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--primary-dark);
  padding-top: 60px;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 163, 255, 0.3), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 60px 0;
}

.hero-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 1.5rem;
}

.hero h1 {
  /* font-family: 'DM Serif Display', serif; */
  /*font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;*/
  font-size: 4.5rem;
  /* font-weight: 300; */
  line-height: 1.1;
  margin-bottom: 32px;
  color: var(--white);
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s backwards;
}

@media (max-width: 1024px) {
  .hero {
    padding: 80px 0px;
  }

  .hero-content {
    padding: 80px 0;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
  }

  .hero-cta {
    justify-content: center;
    gap: 16px;
  }

  .hero-cta a {
    padding-block: 18px;
    font-size: 14px;
  }
}

.btn {
  padding: 18px 36px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline {
  background: transparent;
  color: var(--accent-blue);
  padding: 17px 40px;
  border: 1px solid #00a3ff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-blue);
}

.gradient-text {
  background-image: linear-gradient(to right, #0ea5e9, #4f46e5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 800px;
}

.globe-app {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
}

@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }

  to {
    transform: rotateY(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.globe::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  border: 1px dashed rgba(0, 163, 255, 0.3);
}

.location-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--accent-blue);
  animation: pulse 2s ease-in-out infinite;
}

.location-marker::after {
  content: attr(data-label);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  color: var(--text-light);
}

.marker-uk {
  top: 35%;
  left: 45%;
  animation-delay: 0s;
}

.marker-eu {
  top: 38%;
  left: 52%;
  animation-delay: 0.3s;
}

.marker-us {
  top: 40%;
  left: 25%;
  animation-delay: 0.6s;
}

.marker-apac {
  top: 50%;
  left: 75%;
  animation-delay: 0.9s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}

/* About Section */
.about-section {
  padding: 140px 0;
  position: relative;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 100px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 20px;
}

.section-headline {
  /* font-family: 'DM Serif Display', serif; */
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #050505 !important;
}

.numbers {
  color: white;
}

.section-subhead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

.about-content {
  padding-top: 20px;
}

.about-block {
  padding: 48px 0;
  border-bottom: 1px solid #1a1f2c15;
}

.about-block:first-child {
  padding-top: 0;
}

.about-block:last-child {
  border-bottom: none;
}

.about-block h3 {
  /* font-family: 'DM Serif Display', serif; */
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--primary-dark);
}

.about-block p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  text-align: justify;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background-color: #1a1f2c;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center !important;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-content: center;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 700px;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 1200px;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 280px;
}

.icon-wrapper {
  padding: 1rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-indigo));
  color: #ffffff;
}

.icon-wrapper svg {
  color: #ffffff;
  width: 32px;
  height: 32px;
}

.service-card h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  font-weight: 600;
  color: #d1d5db;
  margin: 0;
  line-height: 1.5;
}
/* Stats Section */
.stats-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.3), transparent);
}

.stats-header {
  text-align: center;
  margin-bottom: 80px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  /* font-family: 'DM Serif Display', serif; */
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 400;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #627280;
  letter-spacing: 0.5px;
}

/* Mission Section */
.mission-section {
  padding: 160px 0;
  background: #1a1f2c;
  position: relative;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-quote {
  /* font-family: 'DM Serif Display', serif; */
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff !important;
  margin-bottom: 40px;
  position: relative;
}

.mission-quote::before {
  content: '"';
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  color: #374c835b;
  /* font-family: 'DM Serif Display', serif; */
  line-height: 1;
}

.mission-attribution {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: #1a1f2c;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 163, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  /* font-family: 'DM Serif Display', serif; */
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.cta-content h2 span {
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-sticky {
    position: relative;
    top: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mission-section {
    padding: 100px 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }
}
