@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ==================== CSS Variables ==================== */
:root {
  /* Core Brand Colors */
  --navy-950: hsl(222, 47%, 5%);
  --navy-900: hsl(222, 47%, 8%);
  --navy-800: hsl(222, 44%, 12%);
  --navy-700: hsl(222, 39%, 18%);
  --navy-600: hsl(222, 35%, 25%);
  
  --blue-500: hsl(217, 91%, 60%);
  --blue-400: hsl(213, 94%, 68%);
  --blue-300: hsl(211, 96%, 78%);
  
  --teal-500: hsl(173, 80%, 40%);
  --teal-400: hsl(172, 66%, 50%);
  
  /* Semantic Colors */
  --background: var(--navy-950);
  --foreground: hsl(210, 40%, 98%);
  --card: var(--navy-900);
  --muted: var(--navy-800);
  --muted-foreground: hsl(215, 20%, 65%);
  --primary: var(--blue-500);
  --accent: var(--teal-500);
  --border: hsl(222, 35%, 20%);
  --destructive: hsl(0, 84%, 60%);
  
  /* Gradients */
  --gradient-text: linear-gradient(135deg, var(--blue-400) 0%, var(--teal-400) 100%);
  --gradient-card: linear-gradient(145deg, hsla(222, 44%, 12%, 0.6) 0%, hsla(222, 47%, 8%, 0.8) 100%);
  --gradient-glow: radial-gradient(ellipse at center, hsla(217, 91%, 60%, 0.15) 0%, transparent 70%);
  
  /* Shadows */
  --shadow-glow: 0 0 60px hsla(217, 91%, 60%, 0.3);
  --shadow-elevated: 0 10px 40px -10px hsla(217, 91%, 60%, 0.2);
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

::selection {
  background: hsla(217, 91%, 60%, 0.3);
  color: var(--foreground);
}

/* ==================== Scrollbar ==================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--navy-950);
}

::-webkit-scrollbar-thumb {
  background: var(--navy-700);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--navy-600);
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==================== Layout ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-dark {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 50%, hsl(222, 47%, 10%) 100%);
}

/* ==================== Navigation ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 0 24px;
}

.navbar.scrolled {
  background: hsla(222, 47%, 5%, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(222, 35%, 20%, 0.3);
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-500), var(--teal-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
}

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

.nav-link {
  position: relative;
  padding: 8px 0;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-text);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--foreground);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--foreground);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: hsla(222, 47%, 5%, 0.98);
  backdrop-filter: blur(20px);
  padding-top: 100px;
}

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

.mobile-menu-inner {
  padding: 24px;
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 24px;
  font-weight: 600;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--foreground);
}

/* ==================== Buttons ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--foreground);
  background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-400) 100%);
  box-shadow: 0 10px 40px -10px hsla(217, 91%, 60%, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -10px hsla(217, 91%, 60%, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--foreground);
  background: hsla(222, 39%, 18%, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid hsla(222, 35%, 20%, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: hsla(217, 91%, 60%, 0.5);
  background: hsla(217, 91%, 60%, 0.1);
  transform: translateY(-2px);
}

/* ==================== Hero Section ==================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, hsla(222, 47%, 5%, 0.5), hsla(222, 47%, 5%, 0.8), var(--navy-950));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  background: hsla(217, 91%, 60%, 0.1);
  border: 1px solid hsla(217, 91%, 60%, 0.2);
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--muted-foreground);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.scroll-indicator svg {
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Floating elements */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.floating-orb-1 {
  top: 25%;
  left: 40px;
  width: 256px;
  height: 256px;
  background: hsla(217, 91%, 60%, 0.1);
}

.floating-orb-2 {
  bottom: 25%;
  right: 40px;
  width: 384px;
  height: 384px;
  background: hsla(173, 80%, 40%, 0.1);
  animation-delay: -2s;
}

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

/* ==================== Glass Card ==================== */
.glass-card {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(222, 35%, 20%, 0.5);
  border-radius: 16px;
}

/* ==================== Service Card ==================== */
.service-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background: var(--gradient-card);
  border: 1px solid hsla(222, 35%, 20%, 0.3);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: hsla(217, 91%, 60%, 0.3);
  box-shadow: var(--shadow-elevated);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-image {
  position: relative;
  height: 192px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.1);
}

.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(222, 47%, 5%, 0.9), transparent);
}

.service-card-icon {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted-foreground);
  margin-bottom: 24px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
  gap: 16px;
}

/* ==================== Stats ==================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.stat-value {
  font-size: 48px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted-foreground);
}

/* ==================== Benefits ==================== */
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
}

.benefit-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.benefit-item span {
  font-weight: 500;
}

/* ==================== CTA Section ==================== */
.cta-section {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(217, 91%, 60%, 0.2), hsla(173, 80%, 40%, 0.1), hsla(217, 91%, 60%, 0.2));
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: hsla(222, 47%, 8%, 0.8);
}

.cta-content {
  position: relative;
  padding: 48px;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  margin-bottom: 24px;
}

.cta-text {
  font-size: 18px;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ==================== Footer ==================== */
.footer {
  position: relative;
  background: var(--navy-950);
  border-top: 1px solid hsla(222, 35%, 20%, 0.3);
  padding: 64px 0;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(to right, transparent, hsla(217, 91%, 60%, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  color: var(--muted-foreground);
  max-width: 360px;
  margin: 24px 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: hsla(222, 39%, 18%, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--foreground);
  background: var(--navy-700);
}

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

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--foreground);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.footer-contact-item a {
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--foreground);
}

.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid hsla(222, 35%, 20%, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: var(--muted-foreground);
  font-size: 14px;
}

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

.footer-bottom-links a {
  color: var(--muted-foreground);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--foreground);
}

/* ==================== Icon Box ==================== */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsla(217, 91%, 60%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.icon-box.accent {
  background: hsla(173, 80%, 40%, 0.1);
}

.icon-box.accent svg {
  color: var(--accent);
}

/* ==================== Feature List ==================== */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-item span {
  color: var(--muted-foreground);
}

/* ==================== Two Column Layout ==================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.two-col.reverse .two-col-content {
  order: -1;
}

.two-col-image {
  position: relative;
}

.two-col-image-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(to right, hsla(217, 91%, 60%, 0.2), hsla(173, 80%, 40%, 0.2));
  border-radius: 24px;
  filter: blur(40px);
  opacity: 0.5;
}

.two-col-image img {
  position: relative;
  border-radius: 16px;
  width: 100%;
}

.floating-stat {
  position: absolute;
  bottom: -32px;
  left: -32px;
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-glow);
}

.floating-stat-value {
  font-size: 32px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.floating-stat-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ==================== Contact Page ==================== */
.contact-info-card {
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsla(217, 91%, 60%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-info-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

.contact-info-value {
  font-weight: 500;
}

.contact-info-value a {
  transition: color 0.3s ease;
}

.contact-info-value a:hover {
  color: var(--primary);
}

/* Form Styles */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 24px;
  border-radius: 12px;
  background: hsla(222, 39%, 18%, 0.5);
  border: 1px solid hsla(222, 35%, 20%, 0.5);
  color: var(--foreground);
  font-family: inherit;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: hsla(217, 91%, 60%, 0.5);
  background: hsla(222, 39%, 18%, 0.8);
  box-shadow: 0 0 0 4px hsla(217, 91%, 60%, 0.1);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

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

.what-to-expect {
  padding: 24px;
  border-radius: 16px;
}

.what-to-expect h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.what-to-expect ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.what-to-expect li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.what-to-expect svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==================== Industry Navigation ==================== */
.industry-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -80px;
  position: relative;
  z-index: 20;
}

.industry-nav-item {
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-nav-item:hover {
  border-color: hsla(217, 91%, 60%, 0.3);
}

.industry-nav-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: hsla(217, 91%, 60%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: transform 0.3s ease;
}

.industry-nav-item:hover .industry-nav-icon {
  transform: scale(1.1);
}

.industry-nav-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* ==================== Industry Section ==================== */
.industry-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 16px;
  border-radius: 12px;
}

.industry-badge span {
  font-size: 14px;
  font-weight: 500;
}

.challenges-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}

.challenges h4,
.solutions h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.challenges h4 {
  color: var(--muted-foreground);
}

.solutions h4 {
  color: var(--primary);
}

.challenges ul,
.solutions ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.challenges li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--muted-foreground);
}

.challenges li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--destructive);
  margin-top: 8px;
  flex-shrink: 0;
}

.solutions li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.solutions li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* ==================== Roadmap ==================== */
.roadmap-card {
  padding: 32px;
  border-radius: 16px;
  height: 100%;
}

.roadmap-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.roadmap-badge.phase-2 {
  background: hsla(217, 91%, 60%, 0.1);
  color: var(--blue-400);
}

.roadmap-badge.phase-3 {
  background: hsla(173, 80%, 40%, 0.1);
  color: var(--teal-400);
}

.roadmap-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.roadmap-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.roadmap-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-foreground);
}

.roadmap-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phase-2 .roadmap-list li::before {
  background: var(--blue-500);
}

.phase-3 .roadmap-list li::before {
  background: var(--teal-500);
}

/* ==================== About Page ==================== */
.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vision-mission-card {
  padding: 40px;
  border-radius: 16px;
  height: 100%;
}

.vision-mission-card h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.vision-mission-card p {
  color: var(--muted-foreground);
  font-size: 18px;
  line-height: 1.7;
}

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

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

.value-card .icon-box {
  margin: 0 auto 16px;
}

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

.value-card p {
  color: var(--muted-foreground);
}

.operating-model-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.operating-model-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
}

.operating-model-item span:first-child {
  color: var(--muted-foreground);
}

.operating-model-item span:last-child {
  font-weight: 600;
}

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

.compliance-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.compliance-item .icon-box {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.compliance-item .icon-box svg {
  width: 20px;
  height: 20px;
}

/* ==================== Reveal Animation ==================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

.reveal.from-left.visible,
.reveal.from-right.visible {
  transform: translateX(0);
}

/* ==================== Page Transition ==================== */
.page-content {
  animation: fadeIn 0.5s ease;
}

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

/* ==================== Responsive Design ==================== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 64px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .stat-value {
    font-size: 56px;
  }
  
  .nav-cta {
    display: block;
  }
  
  .cta-content {
    padding: 80px;
  }
  
  .cta-title {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .two-col.reverse .two-col-content {
    order: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .industry-nav {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-list {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .challenges-solutions {
    grid-template-columns: 1fr;
  }
  
  .floating-stat {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 24px;
  }
  
  .cta-content {
    padding: 32px;
  }
  
  .cta-title {
    font-size: 28px;
  }
}
