* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f9fc;
  color: #1a1a2e;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  padding: 18px 60px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.logo {
  font-size: 26px;
  font-weight: 800;
}

.logo-img {
  height: 50px;
  width: auto;
  border-radius: 8px;
}

.logo a {
  color: #1e293b;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 8px;
}

.nav-links li a {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #1e293b;
  background: #f1f5f9;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #1e293b;
  cursor: pointer;
}

/* Buttons */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.cta-button.primary {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.cta-button.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

/* Slider Section */
.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  margin-top: 0;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  font-size: 28px;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 30px;
}

.next-arrow {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #3b82f6;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: #2563eb;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: #64748b;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Hero Content Section */
.hero-content-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  text-align: center;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 52px;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Problem Section */
.problem-section {
  padding: 100px 60px;
  background: #ffffff;
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-text p {
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.problem-highlight {
  font-size: 24px !important;
  font-weight: 700;
  color: #0f172a !important;
}

.problem-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem-icon {
  font-size: 120px;
  opacity: 0.8;
}

/* Position Section */
.position-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
}

.position-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.position-intro {
  font-size: 20px;
  color: #64748b;
  margin-bottom: 24px;
}

.position-definition {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 24px;
}

.definition-highlight {
  font-size: 28px;
  font-weight: 700;
  color: #60a5fa;
  line-height: 1.3;
}

.position-outcome {
  font-size: 18px;
  color: #475569;
  font-style: italic;
}

/* Framework Preview Section */
.framework-preview-section {
  padding: 100px 60px;
  background: #ffffff;
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.framework-card {
  background: #f8f9fc;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.framework-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.framework-letter {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.framework-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.framework-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.framework-cta {
  text-align: center;
}

/* Services Section */
.services-section {
   padding: 100px 60px;
   background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
}

/* Talent Architecture Styling */
.talent-architecture {
   background: #f8f9fc;
   border-radius: 16px;
   padding: 30px;
   margin-top: 40px;
   border: 1px solid #e2e8f0;
}

.talent-architecture h3 {
   color: #0f172a;
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.talent-architecture p {
   color: #64748b;
   line-height: 1.7;
   margin-bottom: 20px;
}

.talent-scope {
   background: #ffffff;
   border-radius: 12px;
   padding: 20px;
   margin: 20px 0;
   border: 1px solid #e2e8f0;
}

.talent-scope h4 {
   color: #0f172a;
   margin-bottom: 15px;
   display: flex;
   align-items: center;
   gap: 8px;
}

.talent-scope ul {
   color: #64748b;
   line-height: 1.8;
}

.talent-scope li {
   margin-bottom: 10px;
   position: relative;
   padding-left: 20px;
}

.talent-scope li:before {
   content: "→";
   position: absolute;
   left: 0;
   color: #3b82f6;
}

.talent-outcome {
   background: #ffffff;
   border-radius: 12px;
   padding: 20px;
   margin: 20px 0;
   border: 1px solid #e2e8f0;
}

.talent-outcome h4 {
   color: #0f172a;
   margin-bottom: 15px;
   display: flex;
   align-items: center;
   gap: 8px;
}

.talent-outcome p {
   color: #64748b;
   line-height: 1.8;
   font-style: italic;
}

/* Service Outcome Styling */
.service-outcome {
   background: #f0f9ff;
   border-radius: 16px;
   padding: 30px;
   margin-top: 40px;
   border: 1px solid #bae6fd;
}

.service-outcome h3 {
   color: #0f172a;
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   gap: 10px;
}

.service-outcome ul {
   color: #64748b;
   line-height: 1.8;
}

.service-outcome li {
   margin-bottom: 12px;
   position: relative;
   padding-left: 25px;
}

.service-outcome li:before {
   content: "→";
   position: absolute;
   left: 0;
   color: #0ea5e9;
   font-weight: 600;
}

/* Deliverables Section Styling */
.deliverables-content {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 25px;
   margin-top: 30px;
}

.deliverable-item {
   background: #ffffff;
   border-radius: 16px;
   padding: 30px;
   text-align: center;
   border: 1px solid #e2e8f0;
   transition: all 0.3s ease;
}

.deliverable-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
   border-color: #3b82f6;
}

.deliverable-item h3 {
   color: #0f172a;
   margin-bottom: 15px;
   font-size: 18px;
}

.deliverable-item p {
   color: #64748b;
   line-height: 1.7;
}

.difference-section {
   background: #f0f9ff;
   border-radius: 16px;
   padding: 30px;
   margin-top: 40px;
   text-align: center;
   border: 1px solid #bae6fd;
}

.difference-section h3 {
   color: #0f172a;
   margin-bottom: 20px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 10px;
}

.difference-section p {
   color: #64748b;
   line-height: 1.8;
   font-size: 18px;
   max-width: 600px;
   margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.service-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  border-color: #3b82f6;
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-size: 18px;
  color: #0f172a;
}

.services-cta {
  text-align: center;
}

/* Deliverables Preview Section */
.deliverables-preview-section {
  padding: 100px 60px;
  background: #ffffff;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.deliverable-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.deliverable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.deliverable-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.deliverable-card h3 {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

.deliverables-cta {
  text-align: center;
}

/* Serve Section */
.serve-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.serve-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.serve-item {
  font-size: 24px;
  font-weight: 700;
  color: #60a5fa;
  padding: 20px 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.serve-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

/* Engage Section */
.engage-section {
  padding: 100px 60px;
  background: #f8f9fc;
}

.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.engage-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.engage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.engage-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.engage-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.engage-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.engage-link {
  color: #2563eb;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.engage-link:hover {
  gap: 10px;
}

/* Closing Section */
.closing-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  text-align: center;
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
}

.closing-content h2 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 16px;
}

.closing-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}

.closing-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Footer */
.main-footer {
   background: #012563;
   color: #ffffff;
   padding: 80px 60px 0;
}

.main-footer h4 {
   color: #ffffff;
   margin-bottom: 24px;
   font-size: 16px;
   font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  height: 45px;
  width: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.footer-brand p {
   color: rgba(255, 255, 255, 0.9);
   font-size: 14px;
   line-height: 1.7;
   margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #ffffff;
  background: rgba(59, 130, 246, 0.2);
}

.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #60a5fa;
  padding-left: 6px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
  .framework-grid,
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid,
  .engage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 42px;
  }

  .problem-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-visual {
    order: -1;
  }

  .framework-grid,
  .deliverables-grid,
  .services-grid,
  .engage-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .logo-img {
    height: 40px;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .slider-section {
    height: 100vh;
    min-height: 600px;
  }

  .hero-content-section,
  .problem-section,
  .position-section,
  .framework-preview-section,
  .services-section,
  .deliverables-preview-section,
  .serve-section,
  .engage-section,
  .closing-section {
    padding: 60px 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons,
  .closing-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .definition-highlight {
    font-size: 22px;
  }

  .problem-highlight {
    font-size: 20px !important;
  }

  .serve-grid {
    gap: 20px;
  }

  .serve-item {
    font-size: 18px;
    padding: 16px 24px;
  }

  .slider-arrow {
    font-size: 20px;
    padding: 12px 16px;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }

  .main-footer {
    padding: 60px 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
