/* =============================================
   KEY IT SOLUTIONS — Dark Theme
   Colors: pure black, flat accents from logo
   Cyan #00C8FF | Blue #2196F3 | Indigo #5C35D0
   ============================================= */

/* --- Reset & Variables --- */
:root {
  --bg: #000000;
  --bg-card: #111111;
  --bg-card-hover: #181818;
  --border-card: rgba(255, 255, 255, 0.07);
  --border-card-hover: rgba(0, 200, 255, 0.25);

  --text-white: #FFFFFF;
  --text-body: rgba(255, 255, 255, 0.55);
  --text-muted: rgba(255, 255, 255, 0.35);

  --cyan: #00C8FF;
  --blue: #2196F3;
  --indigo: #5C35D0;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-main: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-sm);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

p {
  color: var(--text-body);
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

/* Accent text */
.text-cyan { color: var(--cyan); }
.text-blue { color: var(--blue); }
.text-indigo { color: var(--indigo); }

/* Section label — [ LABEL ] bracketed style */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.section-label::before { content: '[ '; }
.section-label::after { content: ' ]'; }

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.grid { display: grid; gap: var(--spacing-md); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--indigo);
  color: #fff;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92, 53, 208, 0.4);
  filter: brightness(1.15);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-sm {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
}

/* Tag pills */
.tag-pill {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: var(--text-body);
  background: rgba(255, 255, 255, 0.04);
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.25rem 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, padding 0.3s ease, border-bottom 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--text-body);
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.mobile-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-white);
  padding: 0.5rem 0.75rem;
  min-width: 44px;
  min-height: 44px;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.97);
  border-top: 1px solid rgba(0, 200, 255, 0.1);
  padding: 0 1.5rem;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  position: relative;
  z-index: 10;
}

.mobile-menu.open {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu-link {
  color: var(--text-body);
  font-size: 1.05rem;
  font-weight: 400;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease;
  display: block;
}

.mobile-menu-link:hover {
  color: var(--cyan);
}

.mobile-menu-cta {
  display: block;
  margin-top: 1.25rem;
  text-align: center;
  padding: 0.85rem 1.5rem;
  background: var(--indigo);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.mobile-menu-cta:hover {
  background: #7045e0;
}

/* --- Animations --- */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in { transition-delay: 0.1s; }
.fade-in-delay-1 { transition-delay: 0.2s; }
.fade-in-delay-2 { transition-delay: 0.35s; }
.fade-in-delay-3 { transition-delay: 0.5s; }
.fade-in-delay-4 { transition-delay: 0.65s; }
.fade-in-delay-5 { transition-delay: 0.8s; }

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(92, 53, 208, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(92, 53, 208, 0); }
  100% { box-shadow: 0 0 0 0 rgba(92, 53, 208, 0); }
}
.pulse { animation: pulse-glow 2s infinite; }

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

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}
.hero-glow-orb.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--blue);
  top: -20%;
  right: -10%;
}
.hero-glow-orb.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--cyan);
  bottom: -10%;
  left: 10%;
  opacity: 0.08;
}

.hero-glow-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2rem;
}

/* Animated Logo in Stats */
.logo-anim-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-anim {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.logo-anim-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

#logo-pulses {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* =============================================
   STATS / ABOUT SECTION (image 02)
   ============================================= */
.stats-section {
  position: relative;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.stats-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-item .stat-arrow {
  color: var(--cyan);
  font-size: 0.85rem;
}

.stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.1;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* Globe */
.globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.globe-visual {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#globe-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* =============================================
   WHY KEY IT SECTION (image 03)
   ============================================= */
/* =============================================
   WHAT WE DO SECTION
   ============================================= */
.whatwedo-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem auto;
}

.whatwedo-header h2 {
  margin-bottom: 1rem;
}

.whatwedo-header p {
  color: var(--text-body);
  font-size: 1.05rem;
}

.whatwedo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.whatwedo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.5rem 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s ease;
}

.whatwedo-card:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
}

.whatwedo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-white);
  width: fit-content;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.whatwedo-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.whatwedo-card > p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Card mockup area */
.whatwedo-mockup {
  background: #080810;
  border: 1px solid var(--border-card);
  border-bottom: none;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 1.5rem;
  margin: 0 -2.5rem;
  flex: 1;
  display: flex;
  align-items: flex-start;
  min-height: 200px;
  overflow: hidden;
}

/* ---- Mockup 1: Dashboard widget ---- */
.mockup-dashboard {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  align-items: flex-end;
}

.mockup-widget {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 160px;
}

.mockup-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.mockup-label i {
  color: var(--cyan);
  font-size: 0.8rem;
}

.mockup-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
}

.mockup-sublabel {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mockup-status {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #4ADE80;
  margin-top: 0.3rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  flex: 1;
}

.mockup-bar {
  flex: 1;
  background: rgba(0, 200, 255, 0.15);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
}

.mockup-bar.accent {
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.3);
}

/* ---- Mockup 2: Team members ---- */
.mockup-team {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mockup-team-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.mockup-member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.member-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.mockup-member strong {
  font-size: 0.8rem;
  color: var(--text-white);
  display: block;
}

.mockup-member span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* ---- Mockup 3: Lesson / compliance card ---- */
.mockup-lesson {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.4rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.lesson-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 200, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.lesson-category {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lesson-title {
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 500;
}

.lesson-headline {
  font-size: 1rem;
  color: var(--text-white);
  line-height: 1.4;
}

.lesson-meta {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.lesson-meta span {
  font-size: 0.75rem;
  color: #4ADE80;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ---- Mockup 4: Profile / System dashboard ---- */
.mockup-profile {
  display: flex;
  width: 100%;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
}

.profile-sidebar {
  background: rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 120px;
}

.sidebar-item {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: default;
}

.sidebar-item.active {
  background: rgba(0, 200, 255, 0.1);
  color: var(--cyan);
}

.sidebar-item i {
  font-size: 0.85rem;
}

.profile-main {
  padding: 1rem 1.2rem;
  flex: 1;
}

.profile-main strong {
  font-size: 0.85rem;
  color: var(--text-white);
  display: block;
  margin-bottom: 1rem;
}

.profile-stats {
  display: flex;
  gap: 1.25rem;
}

.profile-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pstat-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
}

.pstat-label {
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* CTA button under grid */
.whatwedo-cta {
  text-align: center;
  margin-top: 3rem;
}

/* =============================================
   SERVICES SECTION — Orbital Layout
   ============================================= */
.orbit-scene {
  position: relative;
  width: 700px;
  height: 700px;
  margin: 0 auto;
}

#orbit-beams {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.orbit-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 2;
  box-shadow:
    0 0 80px rgba(0, 200, 255, 0.12),
    0 0 40px rgba(33, 150, 243, 0.08);
}

.orbit-globe canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.orbit-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.orbit-node {
  position: absolute;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  z-index: 3;
}

.orbit-node-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  cursor: default;
}

.orbit-node-inner:hover {
  border-color: var(--cyan);
  background: var(--bg-card-hover);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.15);
  transform: scale(1.1);
}

.orbit-node-inner i {
  font-size: 1.4rem;
  color: var(--cyan);
}

.orbit-node-inner span {
  font-size: 0.6rem;
  color: var(--text-body);
  text-align: center;
  line-height: 1.2;
  font-weight: 500;
}

/* Orbit ring decorative circle */
.orbit-ring::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 200, 255, 0.06);
  pointer-events: none;
}

.orbit-ring::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 524px;
  height: 524px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(0, 200, 255, 0.04);
  pointer-events: none;
}

/* =============================================
   PROCESS SECTION — Timeline
   ============================================= */
.timeline {
  position: relative;
  padding-top: 80px;
}

#timeline-beams {
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}

.timeline-nodes {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.tl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 170px;
}

.tl-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  transition: all 0.3s ease;
  z-index: 2;
}

.tl-circle:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.2);
  transform: scale(1.12);
}

.tl-circle span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
}

.tl-node h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--text-white);
}

.tl-node p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 0;
}

/* =============================================
   ABOUT / LOCATION SECTION
   ============================================= */
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-body);
}

.feature-list li i {
  color: var(--cyan);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: var(--border-card-hover);
  transform: translateY(-3px);
}

.location-card i {
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 0.75rem;
  display: block;
}

.location-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.location-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* =============================================
   CTA SECTION (image 04)
   ============================================= */
.cta-card {
  background: rgba(33, 150, 243, 0.06);
  border: 1px solid rgba(33, 150, 243, 0.15);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.06;
  pointer-events: none;
}

.cta-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-tags {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2rem;
}

/* Contact cards */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}

.contact-card h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 0.35rem;
}

.contact-card a {
  color: var(--cyan);
}
.contact-card a:hover {
  color: var(--text-white);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  padding: var(--spacing-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.9rem;
}

footer a {
  color: var(--text-body);
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--cyan);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 8rem 1rem 6rem;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-content .effective-date {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  display: block;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.legal-content ul li {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--text-white);
}

/* =============================================
   COOKIE BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.cookie-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
}

.cookie-banner-content {
  position: relative;
  max-width: 600px;
  width: 90%;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: slideUp 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-banner-header h3 {
  color: var(--text-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.cookie-banner-header p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.875rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: var(--font-main);
}

.cookie-btn-primary {
  background: var(--indigo);
  color: #fff;
}
.cookie-btn-primary:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(92, 53, 208, 0.4);
}

.cookie-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.cookie-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.cookie-btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid rgba(0, 200, 255, 0.3);
}
.cookie-btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(0, 200, 255, 0.06);
}

.cookie-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-category-header { margin-bottom: 0.5rem; }

.cookie-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.cookie-checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--cyan);
}

.cookie-checkbox-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cookie-category-title {
  font-weight: 600;
  color: var(--text-white);
  font-size: 1.05rem;
}

.cookie-category-description {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  padding-left: 2rem;
}

.cookie-banner-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .navbar .btn-primary { display: none; }
  .mobile-menu { display: flex; }
  h1 { font-size: 2.5rem; }
  .section { padding: var(--spacing-lg) 0; }

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

  /* Globe above text on mobile */
  .hero-content .globe-wrap {
    display: flex;
    order: -1;
    justify-content: center;
  }

  .hero-content .globe-visual {
    width: 280px;
    height: 280px;
    overflow: hidden;
  }

  .hero-content .globe-visual canvas {
    width: 100% !important;
    height: 100% !important;
  }

  /* Hide the tag-pill duplicate heading on mobile */
  .hero-text .tag-pill {
    display: none;
  }

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

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

  .whatwedo-card {
    padding: 2rem 2rem 0;
  }

  .whatwedo-mockup {
    margin: 0 -2rem;
  }

  .timeline {
    padding-top: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .timeline-nodes {
    min-width: 900px;
    padding-bottom: 1rem;
  }

  #timeline-beams {
    top: 40px;
    min-width: 900px;
  }

  .tl-circle {
    width: 56px;
    height: 56px;
  }

  .tl-circle span {
    font-size: 0.9rem;
  }

  .orbit-scene {
    width: 360px;
    height: 360px;
  }

  .orbit-globe {
    width: 100px;
    height: 100px;
  }

  .orbit-node {
    width: 64px;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
  }

  .orbit-node-inner i {
    font-size: 1rem;
  }

  .orbit-node-inner span {
    font-size: 0.45rem;
  }

  .orbit-ring::before {
    width: 280px;
    height: 280px;
  }

  .orbit-ring::after {
    width: 284px;
    height: 284px;
  }

  #orbit-beams {
    width: 360px;
    height: 360px;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }

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

  .cookie-banner-content {
    width: 95%;
    padding: 1.5rem;
  }
  .cookie-banner-buttons { flex-direction: column; }
  .cookie-btn { width: 100%; }
  .cookie-category-description {
    padding-left: 0;
    margin-top: 0.5rem;
  }
}
