* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8f9ff;
  color: #111827;
  overflow-x: hidden;
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #4f46ff;
  color: white;
  padding: 8px 16px;
  z-index: 1001;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  font-weight: 500;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  height: 90px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  border-bottom: 1px solid #ececf8;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1002;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #6b5cff, #4338ff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.logo h2 {
  font-size: 24px;
  background: linear-gradient(135deg, #6b5cff, #4338ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  padding: 10px 18px;
  display: block;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

.nav-menu li a:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.nav-menu li.active a {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

/* CSS Only Hamburger */
.nav-toggle {
  display: none;
}

.hamburger {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #ececf8;
  background: #ffffff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
  box-shadow: 0 8px 20px rgba(79, 70, 255, 0.08);
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #4f46ff;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.nav-menu li a:focus-visible,
.cta-btn:focus-visible,
.social-links a:focus-visible,
.hamburger:focus-visible {
  outline: 2px solid #4f46ff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 70px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}

.hero-left {
  flex: 1;
}

.badge {
  background: #ede9ff;
  color: #4f46ff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.hero h1 {
  margin-top: 20px;
  font-size: 62px;
  line-height: 1.2;
  max-width: 650px;
  color: #081028;
}

.hero h1 span {
  color: #4f46ff;
  display: block;
}

.hero p {
  margin-top: 25px;
  color: #667085;
  line-height: 1.8;
  font-size: 18px;
  max-width: 700px;
}

/* Stats Section */
.stats {
  display: flex;
  gap: 40px;
  margin-top: 45px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  gap: 15px;
  align-items: center;
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, #efeeff, #e8e6ff);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
}

.stat h3 {
  font-size: 28px;
  color: #081028;
}

.stat span {
  color: #667085;
  font-size: 14px;
}

/* ========== HERO RIGHT - IMAGE CARD ========== */
.hero-right {
  flex: 1;
}

.image-card {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9e8ff 50%, #f4f4f4 50%);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}

.floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px 25px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
}

.floating-card i {
  font-size: 28px;
  color: #4f46ff;
}

.floating-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #081028;
}

.floating-card p {
  font-size: 13px;
  color: #667085;
}

/* ========== MISSION SECTION ========== */
.mission {
  padding: 60px 100px;
  text-align: center;
  background: #fff;
  margin: 0 50px;
  border-radius: 30px;
}

.mission .badge {
  display: inline-block;
}

.mission h2 {
  margin-top: 15px;
  font-size: 52px;
  color: #081028;
}

.mission-text {
  max-width: 800px;
  margin: 20px auto 0;
  color: #667085;
  line-height: 1.8;
  font-size: 18px;
}

/* ========== FEATURES GRID ========== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.feature-card {
  background: #f8f9ff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  gap: 15px;
  text-align: left;
  border: 1px solid #ececf8;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #efeeff, #e8e6ff);
  color: #4f46ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  flex-shrink: 0;
}

.feature-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #081028;
}

.feature-card p {
  color: #667085;
  line-height: 1.6;
  font-size: 14px;
}

/* ========== VALUES SECTION ========== */
.values {
  padding: 60px 100px;
  text-align: center;
  background: #f8f9ff;
}

.values-header {
  margin-bottom: 50px;
}

.values-header .badge {
  display: inline-block;
}

.values-header h2 {
  font-size: 42px;
  color: #081028;
  margin-top: 15px;
  margin-bottom: 10px;
}

.values-header p {
  color: #667085;
  font-size: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #ececf8;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card i {
  font-size: 48px;
  color: #4f46ff;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #081028;
}

.value-card p {
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

/* ========== CTA SECTION ========== */
.cta {
  margin: 50px 100px 80px;
  background: linear-gradient(135deg, #f1efff, #e8e6ff);
  border-radius: 25px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.cta-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: white;
  color: #4f46ff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
}

.cta-left p {
  font-size: 18px;
  color: #4b5563;
  line-height: 1.6;
  max-width: 500px;
}

.cta-link {
  text-decoration: none;
}

.cta-btn {
  border: none;
  background: linear-gradient(135deg, #6b5cff, #4338ff);
  color: white;
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 92, 255, 0.3);
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1a2e;
  color: #cbd5e1;
  margin-top: 80px;
  padding: 50px 5% 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo i {
  font-size: 28px;
  color: #4f46ff;
}

.footer-logo h3 {
  color: white;
  font-size: 22px;
  margin: 0;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-section h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
}

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

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #4f46ff;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  color: #cbd5e1;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #4f46ff;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #334155;
  font-size: 13px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  .navbar {
    padding: 0 28px;
  }

  .nav-menu {
    gap: 10px;
  }

  .nav-menu li a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 48px;
  }
  
  .features-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .navbar {
    height: 76px;
    padding: 0 20px;
    flex-direction: row;
  }

  .logo h2 {
    font-size: 21px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 21px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    padding: 0 20px;
    border-bottom: 1px solid #ececf8;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.12);
    transition: all 0.35s ease;
  }

  .nav-toggle:checked ~ .nav-menu {
    max-height: 80vh;
    visibility: visible;
    opacity: 1;
    padding: 16px 20px 22px;
  }

  .nav-menu li a {
    text-align: center;
    padding: 13px 15px;
    border-radius: 12px;
  }

  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    flex-direction: column;
    padding: 50px;
  }
  
  .hero-left {
    text-align: center;
  }
  
  .hero h1 span {
    display: inline;
  }
  
  .stats {
    justify-content: center;
  }
  
  .mission {
    margin: 0 20px;
    padding: 40px 20px;
  }
  
  .mission h2 {
    font-size: 40px;
  }
  
  .values {
    padding: 40px 20px;
  }
  
  .values-header h2 {
    font-size: 36px;
  }
  
  .cta {
    margin: 40px 20px 60px;
    flex-direction: column;
    text-align: center;
  }
  
  .cta-left {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .features-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .image-card {
    height: 380px;
  }
  
  .floating-card {
    padding: 15px 20px;
  }
  
  .mission h2 {
    font-size: 32px;
  }
  
  .mission-text {
    font-size: 16px;
  }
  
  .values-header h2 {
    font-size: 28px;
  }
  
  .values-header p {
    font-size: 16px;
  }
  
  .cta {
    padding: 30px 25px;
  }
  
  .cta-left p {
    font-size: 16px;
  }
  
  .cta-btn {
    padding: 14px 30px;
    font-size: 14px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-section a:hover {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0 14px;
  }

  .logo {
    gap: 10px;
  }

  .logo h2 {
    font-size: 19px;
  }

  .hero h1 {
    font-size: 28px;
  }
  
  .badge {
    font-size: 11px;
  }
  
  .stat h3 {
    font-size: 24px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  
  .mission h2 {
    font-size: 28px;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .navbar,
  .footer,
  .cta,
  .skip-link {
    display: none;
  }
  
  .hero,
  .mission,
  .values {
    padding: 20px;
    margin: 0;
  }
  
  body {
    background: white;
  }
  
  .image-card {
    break-inside: avoid;
  }
}

/* ========== SELECTION COLOR ========== */
::selection {
  background: #4f46ff;
  color: white;
}

::-moz-selection {
  background: #4f46ff;
  color: white;
}