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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui,
    sans-serif;
  color: #1a1a2e;
  background: #f5f5fa;
  line-height: 1.5;
  overflow-x: hidden;
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 84px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 8px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(74, 85, 104, 0.2);
}

.language-switcher a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #4A5568;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.language-switcher a:hover {
  background: rgba(250, 175, 64, 0.1);
  color: #faaf40;
  border-color: rgba(250, 175, 64, 0.3);
}

.language-switcher a.lang-active {
  background: #faaf40;
  color: #201e58;
  border-color: #faaf40;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  height: 6px;
  background: #ffffff;
  width: 100%;
  z-index: 999;
}

.scroll-progress-fill {
  height: 100%;
  background: #faaf40;
  width: 0%;
  transition: width 0.1s ease-out;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #201e58;
}

.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: #9b9baa;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #201e58;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #201e58;
  margin: 3px 0;
  transition: 0.25s;
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

/* Mobile Language Switcher */
@media (max-width: 768px) {
  .language-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    justify-content: center;
    margin-top: 10px;
  }
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 32px;
  font-weight: 600;
  color: #201e58;
  text-decoration: none;
  transition: color 0.25s;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: #201e58;
}

/* Hero Section */
.hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #201e58 0%, #1a1850 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 106px 24px 64px;
}

/* Starfield Animation */
.starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star.small {
  width: 1px;
  height: 1px;
  animation-duration: 2s;
}

.star.medium {
  width: 2px;
  height: 2px;
  animation-duration: 3s;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

.star.large {
  width: 3px;
  height: 3px;
  animation-duration: 4s;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
}

.star.accent {
  background: linear-gradient(45deg, #fff, #faaf40);
  width: 4px;
  height: 4px;
  animation-duration: 33s;
  box-shadow: 0 0 8px rgba(32, 30, 88, 0.6);
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Floating Particles */
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  animation: floatParticle linear infinite;
}

.particle.small {
  width: 4px;
  height: 4px;
  animation-duration: 20s;
}

.particle.medium {
  width: 6px;
  height: 6px;
  animation-duration: 25s;
  background: rgba(32, 30, 88, 0.2);
}

.particle.large {
  width: 16px;
  height: 16px;
  animation-duration: 30s;
  background: rgba(206, 44, 255, 0.2);
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

/* Nebula Background Effect */
.nebula {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(32, 30, 88, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(2, 150, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(1, 163, 251, 0.1) 0%,
      transparent 50%
    );
  animation: nebulaShift 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes nebulaShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1) rotate(2deg);
    opacity: 0.5;
  }
}

/* Shooting Stars */
.shooting-star {
  position: absolute;
  width: 5px;
  height: 5px;
  background: linear-gradient(85deg, #ffffff, #201e58);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
  animation: shootingStar 2s linear infinite;
  pointer-events: none;
}

@keyframes shootingStar {
  0% {
    transform: translateX(-100px) translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(100vw) translateY(100vh);
    opacity: 0;
  }
}

.shooting-star::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  transform: translateX(-50px);
}

.hero-content {
  max-width: 800px;
  text-align: center;
  z-index: 1;
  color: white;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 1.6s ease-out;
}

.hero p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
  opacity: 0.9;
  animation: fadeInUp 1.6s ease-out 0.4s backwards;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: fadeInUp 1.6s ease-out 0.8s backwards;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.btn-primary {
  background: #faaf40;
  color: #201e58;
  box-shadow: 0 8px 24px rgba(250, 175, 64, 0.3);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(250, 175, 64, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

/* Card Components */
.card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.card-gradient {
  background: linear-gradient(180deg, #201e58 0%, #1a1850 100%);
  color: white;
}

.card-gradient:hover {
  box-shadow: 0 8px 24px rgba(32, 30, 88, 0.3);
}

/* Stats Section */
.stats-section {
  padding: 64px 24px;
  background: #f5f5fa;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #faaf40 !important;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #9b9baa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Savings Counter */
.savings-section {
  padding: 64px 24px;
  background: white;
}


/* Pillars Section */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.pillar-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.pillar-content {
  flex: 1;
}

.pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #201e58;
  margin-bottom: 20px;
  line-height: 1.4;
}

.pillar-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 16px;
}

.pillar-card p:last-of-type {
  margin-bottom: 24px;
}

.pillar-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
}

.pillar-tag {
  display: inline-block;
  background: #faaf40;
  color: #201e58;
  padding: 16px 32px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Section Layouts */
.section {
  padding: 64px 24px;
}

.section-white {
  background: white;
}

.section-gray {
  background: #f5f5fa;
}

.section-purple {
  background: linear-gradient(135deg, #201e58 0%, #1a1850 100%);
}

.section-title-white {
  color: white !important;
}

.section-subtitle-white {
  color: rgba(255, 255, 255, 0.9) !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 48px !important;
}

.section-header {
  text-align: center;
  margin-bottom: 48px !important;
  padding-top: 48px;
}

.section-tag {
  display: inline-block;
  padding: 12px 24px;
  background: #faaf40;
  color: #201e58;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(32, 30, 88, 0.3);
  position: relative;
  overflow: hidden;
  animation: tagPulse 3s ease-in-out infinite;
}

.section-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: tagShine 2s infinite;
}

@keyframes tagPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(32, 30, 88, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(250, 175, 64, 0.4);
  }
}

@keyframes tagShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #201e58;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 18px;
  color: #9b9baa;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

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

/* Promise Section */
.promise-section {
  background: linear-gradient(135deg, #201e58 0%, #1a1850 100%);
  border-radius: 24px;
  padding: 48px;
  margin-bottom: 48px;
  color: white;
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(250, 175, 64, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.promise-content {
  position: relative;
  z-index: 1;
}

.promise-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.promise-text p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.promise-cta {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.promise-cta a {
  color: #faaf40;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.promise-cta a:hover {
  color: white;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-item {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-left-color: #faaf40;
}

.service-header {
  margin-bottom: 16px;
  position: relative;
}

.service-header::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #faaf40;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover .service-header::before {
  opacity: 1;
}

.service-header h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
}

.service-item p {
  color: #9b9baa;
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

/* Process Groups */
.process-group {
  margin-bottom: 64px;
}

.process-group:last-child {
  margin-bottom: 0;
}

.group-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 2px;
}

/* Process Cards */
.process-card {
  padding: 32px;
  text-align: center;
  position: relative;
}

.process-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-icon img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.process-card:hover .process-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.process-number {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 52px;
  height: 52px;
  background: #faaf40;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

/* New Strong Number Styling */
.process-number-new,
.step-number-new {
  width: 64px;
  height: 64px;
  background: white;
  color: #201e58;
  border: 3px solid #201e58;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  margin: 0 auto 24px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-number-new::before,
.step-number-new::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #201e58, #1a1850);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-card:hover .process-number-new,
.step-card:hover .step-number-new {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(32, 30, 88, 0.2);
}

.process-card:hover .process-number-new::before,
.step-card:hover .step-number-new::before {
  opacity: 1;
}

.process-title {
  font-size: 20px;
  font-weight: 700;
  color: #201e58;
  margin-bottom: 16px;
}

.process-text {
  color: #718096;
  line-height: 1.6;
  font-size: 16px;
}

/* Testimonials */
.testimonial-card {
  padding: 32px;
  border-left: 4px solid #faaf40;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a2e;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: #faaf40;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #201e58;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 14px;
  color: #9b9baa;
}

/* Marquee Testimonials Section */
.testimonials-marquee-section {
  padding: 120px 24px;
  background: #201e58;
  position: relative;
  overflow: hidden;
}

.testimonials-marquee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.03"/></svg>');
  opacity: 0.4;
}

.marquee-container {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.marquee-row {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 32px;
  animation: marqueeLeft 120s linear infinite;
  width: fit-content;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  min-width: 500px;
  max-width: 500px;
  min-height: 320px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  box-sizing: border-box;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: #faaf40;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #201e58;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.testimonial-info h4 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.testimonial-quote {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.5;
  font-style: italic;
  margin: 0;
  flex-grow: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  white-space: normal;
  text-align: justify;
  max-width: 100%;
}

/* React-Style Steps Section */
.react-steps-section {
  padding: 120px 24px;
  background: #ffffff;
  position: relative;
}

.steps-container {
  max-width: 1000px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #201e58, #faaf40);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: rgba(32, 30, 88, 0.1);
}

.step-card:hover::before {
  opacity: 1;
}

.step-icon {
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-icon img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.step-card:hover .step-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(32, 30, 88, 0.2);
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.step-number-react {
  width: 56px;
  height: 56px;
  background: #faaf40;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(32, 30, 88, 0.3);
  transition: all 0.3s ease;
}

.step-card:hover .step-number-react {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 24px rgba(250, 175, 64, 0.4);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.step-description {
  color: #9b9baa;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.steps-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 48px 0;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(32, 30, 88, 0.2);
  transition: all 0.3s ease;
}

.progress-dot.active {
  background: #faaf40;
  transform: scale(1.2);
}

.progress-line {
  width: 40px;
  height: 2px;
  background: rgba(32, 30, 88, 0.2);
  border-radius: 1px;
}

/* Team Regions */
.team-region {
  margin-bottom: 48px;
}

.team-region:last-child {
  margin-bottom: 0;
}

.region-title {
  font-size: 28px;
  font-weight: 700;
  color: #201e58;
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

/* Team Cards */
.team-card {
  text-align: center;
  padding: 32px;
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  margin: 0 auto 24px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(32, 30, 88, 0.2);
  transition: all 0.3s ease;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(32, 30, 88, 0.3);
}

.team-card:hover .team-avatar img {
  transform: scale(1.1);
}

.team-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.team-role {
  font-size: 16px;
  color: #faaf40;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  color: #9b9baa;
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-contact {
  font-size: 14px;
  color: #201e58;
}

.team-contact a {
  color: #201e58;
  text-decoration: none;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: 24px;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #E2E8F0;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.25s;
  font-family: inherit;
  background: #FFFFFF;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #201e58;
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: #faaf40;
  color: #201e58;
  border: none;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(32, 30, 88, 0.3);
}

/* Interactive Globe Section */
.interactive-globe-section {
  background: linear-gradient(135deg, #201e58 0%, #1a1850 100%);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.interactive-globe-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="white" opacity="0.03"/></svg>');
  opacity: 0.4;
}

/* Hide old category grid */
.category-grid {
  display: none;
}

/* Interactive Globe Layout */
.interactive-globe-section .container {
  max-width: 1400px;
}

/* Globe Top Section */
.globe-top-section {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 40px;
  position: relative;
}

/* Category List (Left Side) */
.category-list {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 500px;
  z-index: 10;
  position: relative;
  margin-left: 30px;
}

.category-item {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
  position: relative;
  pointer-events: auto;
}

.category-item:hover {
  color: #faaf40;
}

.category-item.active {
  color: #faaf40;
  font-weight: 600;
}

/* Globe Container (Right Side) */
.globe-container {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  max-width: 500px;
  position: relative;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .globe-top-section {
    flex-direction: column;
    gap: 20px;
  }
  
  .globe-container {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .category-list {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-left: 0; /* Remove the 30px margin on mobile */
  }
  
  .category-item {
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    border-bottom: none;
    background: rgba(255, 255, 255, 0.05);
    font-size: 14px;
  }
}

.globe-sphere {
  width: 30vw;
  height: 30vw;
  min-width: 300px;
  min-height: 300px;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  background: url('world_bg.svg') center/cover no-repeat;
  background-color: transparent;
  position: relative;
  transition: transform 1.2s ease;
  overflow: hidden;
}

/* Fixed Text Overlay - Centered in Globe */
.globe-text-overlay {
  position: absolute;
  top: calc(50% - 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  text-align: center;
  width: 100%;
}

.globe-title {
  font-size: 32px;
  font-weight: 700;
  color: #faaf40;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.globe-title.active {
  opacity: 1;
  visibility: visible;
}


/* 2D Globe Rotation Animations */
.globe-sphere.rotate-1 { transform: rotate(0deg); }
.globe-sphere.rotate-2 { transform: rotate(30deg); }
.globe-sphere.rotate-3 { transform: rotate(60deg); }
.globe-sphere.rotate-4 { transform: rotate(90deg); }
.globe-sphere.rotate-5 { transform: rotate(120deg); }
.globe-sphere.rotate-6 { transform: rotate(150deg); }
.globe-sphere.rotate-7 { transform: rotate(180deg); }
.globe-sphere.rotate-8 { transform: rotate(210deg); }
.globe-sphere.rotate-9 { transform: rotate(240deg); }
.globe-sphere.rotate-10 { transform: rotate(270deg); }
.globe-sphere.rotate-11 { transform: rotate(300deg); }
.globe-sphere.rotate-12 { transform: rotate(330deg); }
.globe-sphere.rotate-13 { transform: rotate(360deg); }

/* Hide Content Display - only show floating text over globe */
.content-display {
  display: none;
}

/* Globe Accordion Section */
.globe-accordion-section {
  width: 100%;
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 20px;
  min-height: 60px; /* Minimum height when collapsed */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: max-height 0.7s ease-out, padding 0.7s ease-out;
  padding: 0 40px;
  opacity: 0;
  visibility: hidden;
}

.accordion-content.active {
  max-height: 2000px; /* Large enough to accommodate content */
  padding: 40px;
  opacity: 1;
  visibility: visible;
}

.accordion-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #faaf40;
  margin-bottom: 30px;
  text-align: center;
}

.accordion-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.accordion-item {
  padding: 24px;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.accordion-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 12px;
  line-height: 1.3;
}

.accordion-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

.accordion-item p strong {
  color: #faaf40;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .accordion-items {
    grid-template-columns: 1fr;
  }
  
  .accordion-content {
    padding: 20px;
  }
  
  .accordion-content.active {
    padding: 20px;
    opacity: 1;
    visibility: visible;
  }
  
  .accordion-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  
  .subcategories {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .subcategory {
    padding: 16px;
  }
  
  .subcategory h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .subcategory p {
    font-size: 14px;
    line-height: 1.4;
  }
}

.content-card h3 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  text-align: center;
}

.content-card > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 32px;
}

.subcategories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.subcategory {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.subcategory:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.subcategory h4 {
  font-size: 20px;
  font-weight: 600;
  color: #faaf40;
  margin-bottom: 12px;
}

.subcategory p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-bottom: 16px;
}

.read-more-btn {
  background: transparent;
  border: 2px solid #faaf40;
  color: #faaf40;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  background: #faaf40;
  color: #201e58;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  z-index: 1001;
}

.modal-body {
  padding: 40px 32px 32px;
}

.modal-body h3 {
  font-size: 28px;
  font-weight: 700;
  color: #201e58;
  margin-bottom: 16px;
}

.modal-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 16px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .interactive-globe-section {
    padding: 80px 16px;
  }
  
  .interactive-globe-section .container {
    flex-direction: column;
    gap: 40px;
  }
  
  .globe-container {
    flex: none;
  }
  
  .globe-sphere {
    width: 60vw;
    height: 60vw;
    min-width: 250px;
    min-height: 250px;
    max-width: 350px;
    max-height: 350px;
  }
  
  .content-card {
    padding: 24px;
  }
  
  .subcategories {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .modal-body {
    padding: 32px 24px 24px;
  }
}

/* Footer */
footer {
  background: linear-gradient(135deg, #201e58 0%, #1a1850 100%);
  color: white;
  padding: 64px 24px 32px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #faaf40;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-brand a {
  color: #faaf40;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-brand a:hover {
  color: #ff8c42;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: #faaf40;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 32px;
  }


  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .grid-2,
  .grid-3,
  .stats-container,
  .pillars-grid,
  .footer-content {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 16px;
  }

  .card {
    padding: 20px;
  }

  .team-avatar {
    width: 100px;
    height: 100px;
  }

  .promise-section {
    padding: 32px 24px;
  }

  .promise-title {
    font-size: 24px;
  }

  .promise-text p {
    font-size: 16px;
  }

  .promise-cta {
    font-size: 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-item {
    padding: 24px;
  }

  .service-header h4 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 64px 16px 48px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
    padding-top: 48px !important;
  }

  .stat-number {
    font-size: 36px;
  }


  .testimonials-animated-section {
    padding: 80px 16px;
    min-height: 80vh;
  }

  .floating-testimonials {
    height: 400px;
  }

  .testimonials-marquee-section {
    padding: 80px 16px;
  }

  .marquee-container {
    width: 100%;
    margin-left: 0;
  }

  .marquee-row {
    gap: 16px;
    margin-bottom: 16px;
  }

  .marquee-content {
    gap: 16px;
    animation-duration: 40s;
  }

  .testimonial-card {
    min-width: 320px;
    max-width: 320px;
    min-height: 240px;
    padding: 24px;
  }

  .testimonial-header {
    gap: 12px;
    margin-bottom: 12px;
  }

  .testimonial-avatar {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .testimonial-info h4 {
    font-size: 13px;
  }

  .testimonial-info p {
    font-size: 11px;
  }

  .testimonial-quote {
    font-size: 12px;
    line-height: 1.5;
  }

  .react-steps-section {
    padding: 80px 16px;
  }

  .steps-container {
    max-width: 100%;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .step-card {
    padding: 24px;
  }

  .step-header {
    margin-bottom: 16px;
  }

  .step-number-react {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-right: 16px;
  }

  .process-number-new,
  .step-number-new {
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin: 0 auto 20px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .steps-progress {
    margin: 32px 0;
    gap: 8px;
  }

  .progress-dot {
    width: 8px;
    height: 8px;
  }

  .progress-line {
    width: 20px;
  }

  /* Mobile starfield optimizations */
  .hero {
    background: linear-gradient(135deg, #201e58 0%, #1a1850 100%);
  }

  .star.small {
    width: 0.5px;
    height: 0.5px;
  }

  .star.medium {
    width: 1px;
    height: 1px;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
  }

  .star.large {
    width: 1.5px;
    height: 1.5px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
  }

  .particle.small {
    width: 2px;
    height: 2px;
  }

  .particle.medium {
    width: 3px;
    height: 3px;
  }

  .particle.large {
    width: 4px;
    height: 4px;
  }
}

/* Logo Marquee with Flip Cards */
.logo-marquee {
  overflow: hidden;
  padding: 60px 0;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.logo-track {
  display: flex;
  animation: logoScroll 30s linear infinite;
  gap: 40px;
}

@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logo-card {
  flex: 0 0 400px;
  height: 240px;
  perspective: 1000px;
  cursor: pointer;
  position: relative;
}

.logo-front,
.logo-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.8s ease;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-front {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-back {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  transform: rotateY(180deg);
  padding: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-card:hover .logo-front {
  transform: rotateY(-180deg);
}

.logo-card:hover .logo-back {
  transform: rotateY(0deg);
}

.client-logo {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.logo-card:hover .client-logo {
  filter: grayscale(0%);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-size: 16px;
  line-height: 1.3;
}

.testimonial-content .client-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.testimonial-content .client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #faaf40;
  color: #201e58;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.testimonial-content .client-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: #201e58;
  margin: 0;
  line-height: 1.2;
}

.testimonial-content .client-details p {
  font-size: 14px;
  color: #718096;
  margin: 0;
  line-height: 1.2;
}

.testimonial-content .testimonial-text {
  font-size: 14px;
  color: #4A5568;
  line-height: 1.3;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Mobile Responsive for Logo Marquee */
@media (max-width: 768px) {
  .logo-card {
    flex: 0 0 320px;
    height: 200px;
  }
  
  .client-logo {
    max-width: 100px;
    max-height: 50px;
  }
  
  .testimonial-content {
    font-size: 14px;
  }
  
  .testimonial-content .client-avatar {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .testimonial-content .client-details h4 {
    font-size: 16px;
  }
  
  .testimonial-content .client-details p {
    font-size: 12px;
  }
  
  .testimonial-content .testimonial-text {
    font-size: 12px;
    -webkit-line-clamp: 6;
  }
}

/* Modern Page Styles */

/* Proof Bar Section */
.proof-bar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 60px 0;
  color: white;
}

.proof-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.proof-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.metric {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #faaf40;
  line-height: 1;
}

.metric-label {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
}

.proof-testimonial {
  text-align: center;
  padding: 0 20px;
}

.proof-testimonial blockquote {
  font-size: 18px;
  font-style: italic;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.proof-testimonial cite {
  font-size: 14px;
  opacity: 0.8;
  font-style: normal;
}

.proof-logos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.proof-logo {
  width: 80px;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.proof-logo:hover {
  opacity: 1;
}

/* Problem Solution Section */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.problem-content h3,
.solution-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a2e;
}

.problem-list {
  list-style: none;
  padding: 0;
}

.problem-list li {
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid #eee;
}

.problem-list li:before {
  content: "❌";
  position: absolute;
  left: 0;
  top: 12px;
}

.solution-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.solution-cta {
  margin-top: 32px;
}

/* Pillar Icons */
.pillar-icon {
  font-size: 48px;
  margin-bottom: 24px;
  text-align: center;
}

.pillar-result {
  background: #faaf40;
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 60px 0;
  position: relative;
}

.process-timeline:before {
  content: '';
  position: absolute;
  top: 30px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #faaf40;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
}

.step-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.step-content p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

/* Services Grid */
.services-overview {
  padding: 80px 0;
  background: #f8f9fa;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 60px 0;
}

.service-tile {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.service-tile h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.service-tile p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 32px;
  border-radius: 16px;
  border-left: 4px solid #faaf40;
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #faaf40;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.author-info h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #1a1a2e;
}

.author-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Team Section Improvements */
.team-member {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.member-photo {
  flex-shrink: 0;
}

.member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-title {
  color: #faaf40;
  font-weight: 600;
  margin-bottom: 16px;
}

.member-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.member-highlights li {
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

.member-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #faaf40;
  font-weight: 700;
}

.btn-small {
  padding: 8px 16px;
  font-size: 14px;
}

/* Contact Form Improvements */
.contact-form {
  max-width: 600px;
  margin: 0 auto 60px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #faaf40;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  margin: 24px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.btn-full {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1a1a2e;
}

.contact-item p {
  line-height: 1.6;
}

.contact-item a {
  color: #faaf40;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .proof-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .proof-logos {
    flex-direction: row;
    justify-content: center;
  }

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

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-timeline:before {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .service-tile {
    padding: 24px 16px;
  }

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

  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .metric-number {
    font-size: 36px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
