:root {
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --bg-primary: #FAFAFA;
  --bg-secondary: #FFFFFF;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  
  --primary: #1C2C6B;
  --primary-dark: #152150;
  --secondary: #EF767F;
  
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  
  --container: 1280px;
}

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

html {
  font-size: 16px;
  scroll-behavior: initial;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.navbar-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}
.navbar.scrolled .navbar-inner {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}
.brand-logo {
  display: flex;
  align-items: center;
  width: 205px;
  height: 46px;
}
.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 24px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s;
  position: relative;
}
.nav-link:hover {
  color: var(--text-main);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 30px rgba(28, 44, 107, 0.2);
}
.btn-primary:hover {
  background: #25398a;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(28, 44, 107, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(28, 44, 107, 0.15);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(28, 44, 107, 0.03);
  transform: translateY(-3px);
}
.btn-white {
  background: white;
  color: var(--primary);
}
.btn-white:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.text-emphasis {
  color: var(--secondary);
  position: relative;
  display: inline-block;
}


.text-light {
  color: var(--secondary);
  font-weight: 400;
}
.eyebrow {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-color: #FFFFFF;
}

/* Removed hero-bg::after overlay */

.orb, .noise-overlay {
  display: block;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 20s ease-in-out infinite alternate;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(6, 182, 212, 0.25);
  top: -100px;
  right: -100px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.15);
  bottom: -100px;
  left: -100px;
  animation-delay: -5s;
}
.orb-3 {
  width: 400px;
  height: 400px;
  background: rgba(168, 85, 247, 0.15);
  top: 30%;
  left: 40%;
  animation-delay: -10s;
}
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
  opacity: 0.2;
  mix-blend-mode: multiply;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 80px) scale(0.9); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  max-width: 640px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(6, 182, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8.5vw, 6.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  color: var(--primary);
}

.hero-desc {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-actions .btn-outline {
  color: var(--primary);
  border-color: rgba(28, 44, 107, 0.15);
}

.hero-actions .btn-outline:hover {
  border-color: var(--primary);
  background: rgba(28, 44, 107, 0.03);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  max-width: 620px;
}

.hero-proof-item {
  display: grid;
  gap: 8px;
}

.hero-proof-item strong {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 800;
  color: var(--primary);
}

.hero-proof-item span {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.hero-proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(28, 44, 107, 0.1);
  flex: 0 0 auto;
}

.hero-visuals {
  position: relative;
  height: 600px;
  perspective: 1000px;
  display: grid;
  place-items: center;
}

.hero-globe-canvas {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

#heroGlobeCanvas, #bentoGlobeCanvas {
  display: block;
  width: min(100%, 560px);
  height: auto;
}

.glass-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
}

.float-card-1 {
  position: absolute;
  top: 15%;
  left: 5%;
  animation: float-card 6s ease-in-out infinite alternate;
}
.float-card-2 {
  position: absolute;
  top: 45%;
  right: 0%;
  animation: float-card 8s ease-in-out infinite alternate-reverse;
}
.float-card-3 {
  position: absolute;
  bottom: 10%;
  left: 20%;
  animation: float-card 7s ease-in-out infinite alternate;
}

@keyframes float-card {
  0% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-20px) rotate(2deg); }
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  background: rgba(6, 182, 212, 0.08);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(6, 182, 212, 0.1);
  color: var(--primary);
}
.card-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-main);
}
.card-text span {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.vision {
  padding: 120px 0;
  overflow-x: clip;
}
.vision-text .section-body {
  font-size: 1.3rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-body-centered {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.vision-header {
  margin-bottom: 60px;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.vision-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
}

.vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.v-card-visual {
  background: #F8FAFC;
  display: grid;
  place-items: center;
  padding: 40px;
  min-height: 300px;
}

.v-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-grow: 1;
}

.v-card-badge {
  background: rgba(239, 118, 127, 0.1);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.v-card-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
  line-height: 1.2;
}

.v-card-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .vision-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .vision-cards {
    grid-template-columns: 1fr;
  }
  .v-card-visual {
    min-height: 240px;
  }
  .v-card-content {
    padding: 30px;
  }
}


.partners-section {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  z-index: 5;
}

.partners-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners-header {
  margin-bottom: 32px;
  text-align: center;
}

.partners-header .eyebrow {
  margin-bottom: 0;
  font-size: 0.75rem;
  opacity: 0.5;
  color: white;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px 80px;
  width: 100%;
}

.partner-item {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.partner-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.partner-item img {
  max-height: 100%;
  width: auto;
  display: block;
}

.partner-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: white;
}

.approach-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.approach-item {
  padding: 22px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
}

.approach-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.approach-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Vision Visual and Globe removed in favor of cards */

.bento-section {
  padding: 140px 0;
  background: var(--bg-secondary);
}
.text-center { text-align: center; }
.bento-section .section-header { margin-bottom: 80px; }

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

.bento-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
  cursor: pointer;
}

.bento-item:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bento-tall {
  grid-row: span 2;
  color: white;
}
.bento-tall .bento-content {
  z-index: 2;
}
.bento-tall p {
  opacity: 0.9 !important;
}

.bento-wide {
  grid-column: span 2;
}

.bento-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}

.bento-item:hover .bento-bg {
  transform: scale(1.05);
}

.bg-subtle {
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.03), transparent);
}

.bento-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--primary);
  margin-bottom: 24px;
}

.bento-item h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 12px;
}

.bento-item p {
  color: inherit;
  opacity: 0.7;
  font-size: 1.05rem;
  line-height: 1.5;
}

.big-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  margin: 16px 0;
}

.image-panel {
  padding: 0;
}
.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.image-panel:hover img {
  transform: scale(1.05);
}
.bento-overlay {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 40px 32px 32px;
  color: white;
  z-index: 2;
}

.bento-solutions {
  padding: 120px 0 120px;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.bento-orbit-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.bento-orbit-decoration .orbit-svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  overflow: visible;
}

.bento-orbit-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.bento-orbit-decoration .orbit-svg {
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 65%;
  max-width: 900px;
  height: 100%;
  overflow: visible;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}

.bento-item {
  position: relative;
  background: white;
  border-radius: 40px;
  padding: 48px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(28, 44, 107, 0.04);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(28, 44, 107, 0.08);
  border-color: rgba(28, 44, 107, 0.1);
}

.bento-item.bento-big { grid-column: span 2; grid-row: span 2; min-height: 584px; }
.bento-item.bento-wide { grid-column: span 2; }
.bento-item.bento-tall { grid-row: span 2; }

.bento-icon {
  position: absolute;
  top: 48px;
  left: 48px;
  width: 64px;
  height: 64px;
  background: rgba(28, 44, 107, 0.03);
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.bento-item:hover .bento-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.bento-svg-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  opacity: 0.8;
  pointer-events: none;
  transition: transform 0.8s ease;
}

.bento-item:hover .bento-svg-bg {
  transform: scale(1.2) translate(-10%, 10%);
}

.bento-content {
  position: relative;
  z-index: 2;
}

.bento-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.bento-item h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--primary);
}

.bento-item.bento-big h3 {
  font-size: 2.8rem;
}

.bento-item p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 400px;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-item.bento-big {
    grid-column: span 2;
    grid-row: span 1;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-item.bento-big, .bento-item.bento-wide, .bento-item.bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-item {
    padding: 32px;
    min-height: 300px;
  }
  .bento-icon {
    top: 32px;
    left: 32px;
  }
}

.sectors-section {
  padding: 150px 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(6, 182, 212, 0.13), transparent 28%),
    var(--bg-secondary);
}

.sectors-section .section-header {
  margin-bottom: 64px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sector-grid span {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.035);
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.35;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sector-grid span::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.1);
  margin-right: 14px;
  flex: 0 0 auto;
}

.sector-grid span:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.24);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.07);
}

.commitments-section {
  padding: 140px 0;
  background: #F8FAFC;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.commitment-card {
  min-height: 160px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 44px rgba(15, 23, 42, 0.045);
}

.commitment-card span {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 14px;
}

.commitment-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-section {
  padding: 140px 0;
  background: white;
  overflow: hidden;
}

.timeline-section .section-header {
  margin-bottom: 86px;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 140px;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(28, 44, 107, 0.1) 10%, rgba(28, 44, 107, 0.1) 90%, transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px auto;
  gap: 50px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: right;
  line-height: 1;
  padding-top: 4px;
  padding-right: 32px;
}

.timeline-dot {
  position: absolute;
  left: 140px;
  top: 15px;
  width: 12px;
  height: 12px;
  background: white;
  border: 3px solid var(--secondary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(239, 118, 127, 0.1);
}

.timeline-content {
  background: white;
  padding: 32px 40px;
  border-radius: 24px;
  border: 1px solid rgba(28, 44, 107, 0.04);
  box-shadow: 0 10px 30px rgba(28, 44, 107, 0.02);
  transition: transform 0.4s ease, border-color 0.4s;
}

.timeline-item:hover .timeline-content {
  transform: translateX(10px);
  border-color: rgba(28, 44, 107, 0.1);
  box-shadow: 0 20px 40px rgba(28, 44, 107, 0.05);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-left: 50px;
  }
  .timeline-year {
    text-align: left;
    font-size: 1.5rem;
    padding-right: 0;
  }
  .timeline-dot {
    left: 20px;
    top: 6px;
  }
}

.careers-section {
  padding: 140px 0;
  background: var(--bg-secondary);
}

.career-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.career-panel {
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--primary);
  box-shadow: 0 30px 60px rgba(28, 44, 107, 0.15);
  color: white;
  position: relative;
  overflow: hidden;
}

.career-panel::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--secondary);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

.career-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 14px;
  color: white;
  position: relative;
  z-index: 2;
}

.career-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}

.cta-section {
  padding: 160px 0;
  background: var(--bg-primary);
  overflow-x: clip;
}
.cta-box {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
  background: var(--text-main);
  color: white;
}
.cta-bg-animation {
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent 0 340deg, var(--primary) 360deg);
  animation: spin-slow 10s linear infinite;
  opacity: 0.3;
}
.cta-box::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--text-main);
  border-radius: calc(var(--radius-lg) - 2px);
  z-index: 0;
}
.cta-box .cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}
.cta-box p {
  font-size: 1.25rem;
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.6;
}

@keyframes spin-slow {
  100% { transform: rotate(360deg); }
}

.site-footer {
  background: #F8FAFC;
  padding: 100px 0 40px;
  border-top: 1px solid rgba(28, 44, 107, 0.05);
}

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

.footer-brand .brand-logo {
  margin-bottom: 24px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.footer-col a:hover, .footer-email:hover {
  color: var(--secondary);
}

.footer-col p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-phone {
  font-weight: 700;
  color: var(--primary) !important;
}

.footer-email {
  display: inline-block;
  color: var(--secondary) !important;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-email:hover {
  opacity: 0.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(28, 44, 107, 0.05);
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-visuals { display: none; }
  .vision-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-wide, .bento-tall { grid-column: span 2; grid-row: span 1; }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .commitments-grid { grid-template-columns: repeat(2, 1fr); }
  .career-grid { grid-template-columns: 1fr; gap: 36px; }
  .solutions-stack { padding: 0 16px; }
  .solution-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .timeline-clean::before {
    left: 24px;
  }
  .timeline-step {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }
  .timeline-row {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    width: calc(100% - 32px);
    padding: 10px 12px;
  }
  .brand-logo {
    width: 165px;
    height: 38px;
  }
  .navbar .btn {
    padding: 10px 14px;
    font-size: 0.82rem;
  }
  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .hero-actions .btn {
    width: min(100%, 320px);
  }
  .hero-proof-divider { display: none; }
  .stats-grid,
  .sector-grid,
  .commitments-grid {
    grid-template-columns: 1fr;
  }
  .stats-section,
  .sectors-section,
  .commitments-section,
  .careers-section {
    padding: 90px 0;
  }
  .stat-card,
  .commitment-card,
  .career-panel {
    padding: 26px;
  }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide, .bento-tall { grid-column: span 1; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-desc { margin: 0 auto; }
  .footer-legal { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: 3rem; }
  .section-heading { font-size: 2.5rem; }
  .timeline-section { padding: 100px 0; }
  .timeline-content h3 { font-size: 1.3rem; }
}
