/* ========================================
   SOLUTIONS PAGE - COMPLETE CSS
   KalkiNetra Theme
   ======================================== */

/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
  /* Blue Palette */
  --color-primary: #0066ff;
  --color-secondary: #3388ff;
  --color-accent: #1a75ff;
  --color-dark: #000000;

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.8);
  --color-text-muted: rgba(255, 255, 255, 0.5);

  /* Blue Glow Effects */
  --glow-blue: rgba(0, 102, 255, 0.5);
  --glow-blue-soft: rgba(0, 102, 255, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background: #000;
}

/* ========================================
   DARKVEIL BACKGROUND
   ======================================== */
#darkveil-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

#darkveil-background canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}

/* ========================================
   SECTIONS BASE
   ======================================== */
section {
  position: relative;
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
/* ========================================
   HERO SECTION
   ======================================== */
.solutions-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
  will-change: opacity, transform;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--color-text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  will-change: opacity, transform;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
  animation-delay: 0.8s;
}
.stat-item:nth-child(2) {
  animation-delay: 1s;
}
.stat-item:nth-child(3) {
  animation-delay: 1.2s;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-text-primary);
  border: 2px solid rgba(0, 102, 255, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  background: rgba(0, 102, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 102, 255, 0.5);
  border-color: var(--color-primary);
}

.btn-outline {
  background: rgba(0, 0, 0, 0.3);
  color: var(--color-text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(0, 102, 255, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 102, 255, 0.3);
}

.btn-primary-large,
.btn-outline-large {
  padding: 1.2rem 3rem;
  font-size: 1.15rem;
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(5px);
  /* border-top: 1px solid rgba(0, 102, 255, 0.1); */
  /* border-bottom: 1px solid rgba(0, 102, 255, 0.1); */
}

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-icon {
  font-size: 4rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-shadow: 0 0 30px rgba(0, 102, 255, 0.4);
}

.intro-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-text {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.intro-text strong {
  color: var(--color-primary);
  font-weight: 600;
}

.intro-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 1rem;
}

.feature-item i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions-section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 0rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 500px), 1fr));
  gap: 2.5rem;
}

/* ========================================
   SOLUTION CARDS
   ======================================== */
.solution-card {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(50px);
  animation-fill-mode: forwards;
  animation-play-state: paused;
}

.solution-card[data-solution="1"],
.solution-card[data-solution="3"] {
  animation: slideInLeft 0.8s ease-out forwards;
  animation-play-state: paused;
}

.solution-card[data-solution="2"],
.solution-card[data-solution="4"] {
  animation: slideInRight 0.8s ease-out forwards;
  animation-play-state: paused;
}

.solution-card.animate {
  animation-play-state: running;
}

.solution-card[data-solution="1"] {
  animation-delay: 0.2s;
}
.solution-card[data-solution="2"] {
  animation-delay: 0.4s;
}
.solution-card[data-solution="3"] {
  animation-delay: 0.6s;
}
.solution-card[data-solution="4"] {
  animation-delay: 0.8s;
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2), transparent 60%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: all var(--transition-slow);
  opacity: 0;
  pointer-events: none;
}

.solution-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-10px) !important;
  box-shadow: 0 25px 50px rgba(0, 102, 255, 0.4);
  background: rgba(0, 0, 0, 0.7);
}

.solution-card:hover .card-glow {
  opacity: 1;
  transform: translate(30%, -30%) scale(1.3);
}

.card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 102, 255, 0.08);
  line-height: 1;
  z-index: 0;
  transition: all var(--transition-normal);
}

.solution-card:hover .card-number {
  color: rgba(0, 102, 255, 0.15);
  transform: scale(1.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 102, 255, 0.4);
  transition: all var(--transition-normal);
}

.solution-card:hover .card-icon {
  background: rgba(0, 102, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.card-badge {
  background: rgba(0, 102, 255, 0.15);
  color: var(--color-primary);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 255, 0.3);
  white-space: nowrap;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  transition: color var(--transition-normal);
}

.solution-card:hover .card-title {
  color: var(--color-primary);
}

.card-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-features {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all var(--transition-fast);
}

.solution-card:hover .feature {
  color: var(--color-text-primary);
}

.feature i {
  color: var(--color-secondary);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.solution-card:hover .feature i {
  color: var(--color-primary);
  transform: scale(1.2);
}

.card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.tech-tag {
  background: rgba(0, 102, 255, 0.1);
  color: var(--color-primary);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 255, 0.2);
  transition: all var(--transition-fast);
}

.solution-card:hover .tech-tag {
  background: rgba(0, 102, 255, 0.2);
  border-color: var(--color-primary);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.card-link {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: var(--color-primary);
  transform: translateX(5px);
}

.card-link i {
  transition: transform var(--transition-fast);
}

.card-link:hover i {
  transform: translateX(5px);
}

.btn-request {
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-text-primary);
  border: 1px solid rgba(0, 102, 255, 0.4);
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-request:hover {
  background: rgba(0, 102, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
  border-color: var(--color-primary);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(0, 102, 255, 0.1);
  margin-top: 14rem;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 77px;
  bottom: 139px;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeInLeft 0.8s ease-out forwards;
  animation-play-state: paused;
}

.timeline-item.animate {
  animation-play-state: running;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.8s;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 102, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  border: 2px solid rgba(0, 102, 255, 0.4);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
}

.timeline-item:hover .timeline-icon {
  background: rgba(0, 102, 255, 0.3);
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.timeline-content {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.8rem;
}

.timeline-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   EARLY ACCESS SECTION
   ======================================== */
.early-access-section {
  padding: 8rem 0;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(0, 102, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.access-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.access-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.access-icon {
  font-size: 4.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
  text-shadow: 0 0 40px rgba(0, 102, 255, 0.5);
  animation: float 3s ease-in-out infinite;
}

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

.access-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.access-description {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  line-height: 1.9;
  margin-bottom: 3rem;
}

.access-benefits {
  display:grid;
  grid-template-columns: repeat(2, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 102, 255, 0.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: all var(--transition-normal);
}

.benefit-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
  transform: translateY(-3px);
}

.benefit-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.access-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   CLOSING SECTION
   ======================================== */
.closing-section {
  padding: 6rem 0;
  border-top: 1px solid rgba(0, 102, 255, 0.1);
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-size: 4rem;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.4rem;
  color: var(--color-text-primary);
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.highlight {
  color: var(--color-primary);
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.closing-signature {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-section {
  border-top: 1px solid rgba(0, 102, 255, 0.1);
  padding: 5rem 0 2rem;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand:hover {
  color: var(--color-secondary);
}

.footer-brand i {
  color: var(--color-primary);
  font-size: 1.8rem;
}

.footer-tagline {
  font-size: 1rem;
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-contact {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--color-primary);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.3rem;
  transition: all var(--transition-normal);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(0, 102, 255, 0.3);
  border-color: var(--color-primary);
  color: var(--color-text-primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

.footer-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 102, 255, 0.3),
    transparent
  );
  margin: 3rem 0;
}

.footer-bottom {
  text-align: center;
}

.footer-copyright {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.footer-copyright i.bi-heart-fill {
  color: #0066ff;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  10%,
  30% {
    transform: scale(1.1);
  }
  20%,
  40% {
    transform: scale(1);
  }
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(0, 102, 255, 0.2);
  border: 1px solid rgba(0, 102, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgba(0, 102, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

/* ========================================
   MODAL
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 2rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 24px;
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.4);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
  position: relative;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  background: rgba(0, 102, 255, 0.15);
  border: 1px solid rgba(0, 102, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.modal-close:hover {
  background: rgba(0, 102, 255, 0.3);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header i {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-primary);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  transition: all var(--transition-normal);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2);
  outline: none;
}

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

.btn-primary-modal {
  background: rgba(0, 102, 255, 0.2);
  color: var(--color-text-primary);
  border: 2px solid rgba(0, 102, 255, 0.5);
  padding: 1.2rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-primary-modal:hover {
  background: rgba(0, 102, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 102, 255, 0.5);
  border-color: var(--color-primary);
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

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

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 6px;
  border: 2px solid rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
  box-shadow: 0 0 10px var(--glow-blue);
}

/* ========================================
   TEXT SELECTION
   ======================================== */
::selection {
  background: rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
}

::-moz-selection {
  background: rgba(0, 102, 255, 0.3);
  color: var(--color-text-primary);
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }

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

  .process-timeline::before {
    left: 30px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 768px) {
  /* Navbar */
  .pill-navbar {
    width: 95%;
    top: 1rem;
  }

  .pill-container {
    padding: 0.6rem 1rem;
    gap: 1rem;
  }

  .brand img {
    height: 35px;
  }

  .brand span {
    font-size: 0.9rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 20px;
    flex-direction: column;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.3);
  }

  .nav-links.open {
    max-height: 500px;
    opacity: 1;
    padding: 1rem;
  }

  .nav-links li {
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    width: 100%;
    padding: 0.8rem;
    text-align: left;
  }

  /* Hero */
  .solutions-hero {
    min-height: 80vh;
    padding-top: 100px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Cards */
  .solution-card {
    padding: 2rem;
  }

  .card-number {
    font-size: 3.5rem;
    top: 1.5rem;
    right: 1.5rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-request {
    width: 100%;
  }

  /* Timeline */
  .process-timeline {
    padding-left: 0;
  }

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

  .timeline-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .timeline-icon {
    width: 70px;
    height: 70px;
  }

  /* Access Benefits */
  .access-benefits {
    grid-template-columns: 1fr;
  }

  .access-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary-large,
  .btn-outline-large {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid .footer-col:first-child {
    grid-column: auto;
  }

  /* Modal */
  .modal-content {
    padding: 2rem;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }

  /* Back to Top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .solution-card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .card-number {
    font-size: 3rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .access-icon {
    font-size: 3.5rem;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* ========================================
   ACCESSIBILITY - REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .pill-navbar,
  .footer-section,
  .btn,
  .back-to-top,
  .modal-overlay,
  #darkveil-background {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ========================================
   END OF SOLUTIONS.CSS
   ======================================== */

/* ========================================
   ANIMATION FIX - Prevent Overlap & Rebound
   ======================================== */

/* Ensure animations don't overlap */
.hero-badge,
.title-line,
.hero-subtitle,
.stat-item,
.hero-cta {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Prevent rebound on cards */
.solution-card,
.timeline-item {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
}

/* Smooth animation end */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-80px) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

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

/* Prevent animation glitches */
.animated {
  animation-fill-mode: forwards !important;
}





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

:root {
  --color-primary: #0066ff;
  --color-secondary: #00ccff;
  --color-text-primary: #ffffff;
  --color-text-secondary: #a0a0a0;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #f5f5f5;
  color: #fff;
  overflow-x: hidden;
}

/* ========================================
   SOLUTIONS SECTION - CURVED BACKGROUND
   ======================================== */
.solutions-section {
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
  border-radius: 80px;
  padding: 100px 0px;
  margin: 0px 0px;
  position: relative;
  overflow: hidden;
}

.solutions-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #16213e 0%, #0d1b2a 50%, #1a1a2e 100%);
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header-2 {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 5rem;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #fff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Solutions Grid - 2x2 Layout */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 2rem;
}

/* ========================================
   SOLUTION CARDS
   ======================================== */
.solution-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  opacity: 0;
  transform: translateY(50px);
  animation-fill-mode: forwards;
  animation-play-state: paused;
}

.solution-card[data-solution="1"],
.solution-card[data-solution="3"] {
  animation: slideInLeft 0.8s ease-out forwards;
  animation-play-state: paused;
}

.solution-card[data-solution="2"],
.solution-card[data-solution="4"] {
  animation: slideInRight 0.8s ease-out forwards;
  animation-play-state: paused;
}

.solution-card.animate {
  animation-play-state: running;
}

.solution-card[data-solution="1"] {
  animation-delay: 0.2s;
}
.solution-card[data-solution="2"] {
  animation-delay: 0.4s;
}
.solution-card[data-solution="3"] {
  animation-delay: 0.6s;
}
.solution-card[data-solution="4"] {
  animation-delay: 0.8s;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(100, 150, 255, 0.2), transparent 60%);
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: all var(--transition-slow);
  opacity: 0;
  pointer-events: none;
}

.solution-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

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

.solution-card:hover .card-glow {
  opacity: 1;
  transform: translate(30%, -30%) scale(1.3);
}

.card-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  z-index: 0;
  transition: all var(--transition-normal);
}

.solution-card:hover .card-number {
  color: rgba(255, 255, 255, 0.08);
  transform: scale(1.1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
}

.solution-card:hover .card-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.card-badge {
  background: rgba(100, 150, 255, 0.15);
  color: #6496ff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(100, 150, 255, 0.3);
  white-space: nowrap;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
  transition: color var(--transition-normal);
}

.solution-card:hover .card-title {
  color: #fff;
}

.card-description {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.card-features {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: all var(--transition-fast);
}

.solution-card:hover .feature {
  color: var(--color-text-primary);
}

.feature i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.solution-card:hover .feature i {
  color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.card-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.06);
  color: #a0a0a0;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-fast);
}

.solution-card:hover .tech-tag {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.card-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  color: #6496ff;
  transform: translateX(5px);
}

.card-link i {
  transition: transform var(--transition-fast);
}

.card-link:hover i {
  transform: translateX(5px);
}

.btn-request {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  color: var(--color-text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-request:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   HOW IT WORKS SECTION - CURVED BACKGROUND
   ======================================== */
.how-it-works-section {
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
  border-radius: 80px;
  padding: 100px 0px;
  margin: 60px 0px;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.how-it-works-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.section-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}
.process-timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 77px;
  bottom: 139px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0.1)
  );
  opacity: 0.5;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeInLeft 0.8s ease-out forwards;
  animation-play-state: paused;
}

.timeline-item.animate {
  animation-play-state: running;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.8s;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.03) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition-normal);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.timeline-item:hover .timeline-icon {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.3);
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.8rem;
}

.timeline-description {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px) translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .solutions-section,
  .how-it-works-section {
    border-radius: 60px;
    margin: 60px 0px;
  }

  .container {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .solutions-section,
  .how-it-works-section {
    border-radius: 50px;
    padding: 80px 30px;
  }

  .solutions-grid {
    gap: 2rem;
  }

  .solution-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .solutions-section,
  .how-it-works-section {
    border-radius: 40px;
    margin: 60px 0px;
    padding: 60px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card {
    padding: 2rem;
  }

  .card-header {
    flex-direction: column;
    gap: 1rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .card-link,
  .btn-request {
    justify-content: center;
  }

  .process-timeline::before {
    left: 40px;
  }

  .timeline-item {
    gap: 1.5rem;
  }

  .timeline-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .solutions-section,
  .how-it-works-section {
    border-radius: 30px;
    margin: 60px 0px;
    padding: 50px 15px;
  }

  .solution-card {
    padding: 1.5rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-description {
    font-size: 1rem;
  }

  .process-timeline::before {
    left: 35px;
    top: 65px;
    bottom: 120px;
  }

  .timeline-item {
    gap: 1rem;
    flex-direction: column;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
  }

  .timeline-content {
    padding: 1.2rem;
  }

  .timeline-title {
    font-size: 1.2rem;
  }

  .timeline-description {
    font-size: 0.95rem;
  }
}







.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(100, 150, 255, 0.2),
    transparent 60%
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
  transition: all var(--transition-slow);
  opacity: 0;
  pointer-events: none;
}

.section-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
  font-weight: 600;
}



.origin-timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 80px;
  bottom: 0px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

/* Origin Timeline */
.origin-timeline {
  position: relative;
  padding-left: 40px;
  margin-bottom: 60px;
}



@media (max-width: 768px) {
  .origin-timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 80px;
  bottom: 0px;
  width: 0px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
}
}



@media (max-width: 768px) {
  .solutions-section,
  .how-it-works-section {
    border-radius: 40px;
    margin: 60px 0px;
    padding: 60px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .solution-card {
    padding: 2rem;
  }

  .card-header {
    flex-direction: column;
    gap: 1rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .card-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .card-link,
  .btn-request {
    justify-content: center;
  }

  .timeline-item {
    gap: 1.5rem;
  }

  .timeline-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .timeline-content {
    padding: 1.5rem;
  }
  .origin-timeline::before {
    width: 5x;
  }
}