/* ─────── HERO SECTION ─────── */


.hero-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

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

@media (max-width: 480px) {
  .hero-cta {
    gap: 12px;
  }
  
  .hero-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* ─────── HIGHLIGHT BOXES (NETWORK NODES) ─────── */

.network-node {
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.1), rgba(19, 191, 159, 0.05));
  border: 1.5px solid var(--border2);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: float 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.network-node::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(31, 134, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.network-node:hover {
  border-color: #1f86ff;
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.15), rgba(19, 191, 159, 0.08));
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(31, 134, 255, 0.2);
}

.network-node:hover::before {
  opacity: 1;
}

.node-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.node-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1f86ff;
  box-shadow: 0 0 12px #1f86ff, inset 0 0 6px rgba(255, 255, 255, 0.3);
  animation: nodes-pulse 2s infinite;
}

.node-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0;
}

.node-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid #1f86ff;
  border-radius: 50%;
  animation: pulse-glow 2s ease-out infinite;
  opacity: 0;
}

.node-icon {
  width: 48px;
  height: 48px;
  color: #1f86ff;
  stroke-width: 1.5;
  position: relative;
  z-index: 2;
}

.node-description {
  color: #a5bdd8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.node-stats {
  font-size: 12px;
  color: #7bb8ff;
  padding-top: 12px;
  border-top: 1px solid rgba(31, 134, 255, 0.2);
  position: relative;
  z-index: 1;
}

/* ─────── PROCESS PIPELINE (FLOW STEPS) ─────── */

.process-pipeline {
  position: relative;
  padding: 40px 0;
}

.pipeline-lines {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 0;
}

.animate-flow {
  stroke-dasharray: 300;
  animation: flow-animation 3s ease-in-out infinite;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--step-color);
  border-radius: 50%;
  animation: pulse-glow 2.5s ease-out infinite;
}

.step-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--step-color);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(31, 134, 255, 0.3);
}

.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.process-step p {
  color: #a5bdd8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.step-indicator {
  width: 8px;
  height: 8px;
  background: var(--step-color);
  border-radius: 50%;
  margin: 16px auto 0;
  box-shadow: 0 0 12px var(--step-color);
}

/* Mobile Timeline */
.process-timeline {
  position: relative;
}

.timeline-inner {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 20px 0;
  scrollbar-width: none;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item {
  flex-shrink: 0;
  width: 280px;
  background: linear-gradient(135deg, rgba(31, 134, 255, 0.1), rgba(19, 191, 159, 0.05));
  border-left: 4px solid var(--item-color);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(31, 134, 255, 0.2);
  border-left: 4px solid var(--item-color);
  animation: float 3s ease-in-out infinite;
}

.timeline-marker {
  font-size: 28px;
  font-weight: 800;
  color: var(--item-color);
  margin-bottom: 12px;
  text-shadow: 0 0 15px rgba(31, 134, 255, 0.3);
}

.timeline-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 13px;
  color: #a5bdd8;
  line-height: 1.5;
}

/* ─────── TESTIMONIALS ─────── */

.testimonials-carousel {
  position: relative;
}

.testimonials-carousel-inner {
  display: flex;
  overflow: hidden;
  transition: transform 0.6s ease-out;
}

.testimonials-carousel-inner > div {
  flex-shrink: 0;
  width: 100%;
  padding: 0 8px;
}

@media (min-width: 640px) {
  .testimonials-carousel-inner > div {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .testimonials-carousel-inner > div {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonials-carousel-inner > div {
    width: 33.333%;
  }
}

.testimonial-card {
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  flex-grow: 1;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1f86ff, #13bf9f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 12px;
  color: var(--text2);
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
    min-height: 280px;
  }
  
  .testimonial-text {
    font-size: 14px;
  }
}

/* ─────── PARTNERS / CERTIFICATIONS ─────── */

.partner-card {
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  min-height: 140px;
}

.partner-card:hover {
  border-color: rgba(31, 134, 255, 0.5);
  background: rgba(31, 134, 255, 0.08);
  transform: translateY(-4px);
}

.partner-icon {
  width: 48px;
  height: 48px;
  color: #7bb8ff;
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-icon {
  transform: scale(1.1);
}

.partner-card p {
  font-size: 12px;
  font-weight: 600;
  color: #a5bdd8;
  text-align: center;
}

/* Desktop Grid View */
.partners-grid {
  display: none;
}

@media (min-width: 1024px) {
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
  }
  
  .partner-card {
    min-height: 160px;
    padding: 28px 16px;
  }
}

@media (min-width: 1280px) {
  .partners-grid {
    gap: 1.5rem;
  }
  
  .partner-card {
    padding: 32px 20px;
  }
}

/* Mobile/Tablet Carousel */
.partners-carousel {
  position: relative;
  display: block;
}

@media (min-width: 1024px) {
  .partners-carousel {
    display: none;
  }
}

.partners-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .partners-grid {
    display: none;
  }

  .partners-mobile {
    display: block;
  }
}

/* Carousel Dots Style */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding: 0 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #475569;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  width: 28px;
  border-radius: 999px;
  background: #1f86ff;
  box-shadow: 0 0 12px rgba(31, 134, 255, 0.5);
}

/* ─────── NEWSLETTER ─────── */

.newsletter-card {
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 40px;
}

@media (max-width: 768px) {
  .newsletter-card {
    padding: 32px;
  }
}

@media (max-width: 480px) {
  .newsletter-card {
    padding: 24px;
  }
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 200px;
  background: #0a182a;
  border: 1px solid #475569;
  border-radius: 8px;
  color: #e2e8f0;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: #1f86ff;
  box-shadow: 0 0 0 3px rgba(31, 134, 255, 0.1);
}

.newsletter-input::placeholder {
  color: #64748b;
}

.newsletter-btn {
  background: #1f86ff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: #1675e1;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    min-width: unset;
    width: 100%;
  }
  
  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─────── STATS SECTION ─────── */

.stats-section {
  position: relative;
}

.stat-card {
  background: var(--bg1);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(31, 134, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 134, 255, 0.1);
}

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(31, 134, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #7bb8ff;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
}

.stat-counter-card {
  position: relative;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(31, 134, 255, 0.2);
  border-color: #1f86ff;
}

.stat-counter-card.animated {
  animation: stat-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.counter {
  animation: counter-glow 2s ease-in-out;
  display: inline-block;
  font-weight: 800;
  color: #1f86ff;
}

.stat-counter-card.animated .counter {
  animation: counter-pulse 0.5s ease-out;
}

@media (max-width: 768px) {
  .stat-card {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 28px;
  }

  .stat-counter-card:hover {
    transform: translateY(-4px);
  }

  .counter {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .stat-card {
    padding: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .stat-label {
    font-size: 12px;
  }

  .stat-counter-card {
    padding: 24px !important;
  }

  .counter {
    font-size: 28px;
  }
}

/* ─────── FINAL CTA ─────── */

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

@media (max-width: 768px) {
  .final-cta-buttons {
    gap: 12px;
  }
  
  .final-cta-buttons .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .final-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }
}

/* ─────── FAQ ACCORDION SECTION ─────── */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(31, 134, 255, 0.05);
  border: 1px solid var(--border2);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(31, 134, 255, 0.4);
  background: rgba(31, 134, 255, 0.08);
}

.faq-item.open {
  border-color: #1f86ff;
  background: rgba(31, 134, 255, 0.1);
}

.faq-header {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.3s ease;
  font-family: inherit;
  text-align: left;
}

.faq-header:hover {
  padding-left: 28px;
}

.faq-header-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #1f86ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  animation: faq-icon-float 0.6s ease;
}

.faq-item.open .faq-icon {
  color: #13bf9f;
  animation: faq-icon-bounce 0.4s ease;
}

.faq-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.faq-item.open .faq-header h3 {
  color: #1f86ff;
}

.faq-chevron {
  width: 24px;
  height: 24px;
  color: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: #13bf9f;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-body {
  max-height: 500px;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
  padding: 0 24px 20px 52px;
  animation: faq-content-fade 0.4s ease;
}

.faq-content p {
  color: var(--text2);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-header {
    padding: 16px 16px;
  }

  .faq-header:hover {
    padding-left: 16px;
  }

  .faq-header h3 {
    font-size: 14px;
  }

  .faq-content {
    padding: 0 16px 16px 52px;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-chevron {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .faq-header {
    padding: 14px 12px;
    gap: 12px;
  }

  .faq-header h3 {
    font-size: 13px;
  }

  .faq-content {
    padding: 0 12px 12px 44px;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-chevron {
    width: 18px;
    height: 18px;
  }
}

/* ─────── ANIMATIONS ─────── */

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

@keyframes pulse-glow {
  0%, 100% { opacity: 1; r: 45px; }
  50% { opacity: 0; r: 65px; }
}

@keyframes flow-animation {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

@keyframes nodes-pulse {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(31, 134, 255, 0.7);
  }
  50% { 
    box-shadow: 0 0 0 15px rgba(31, 134, 255, 0);
  }
}

@keyframes counter-glow {
  0% {
    text-shadow: 0 0 0 rgba(31, 134, 255, 0);
    opacity: 0.5;
  }
  50% {
    text-shadow: 0 0 20px rgba(31, 134, 255, 0.6);
  }
  100% {
    text-shadow: 0 0 0 rgba(31, 134, 255, 0);
    opacity: 1;
  }
}

@keyframes counter-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes stat-pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes faq-icon-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

@keyframes faq-icon-bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes faq-content-fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Diamond pattern animation */
.stats-background {
  animation: diamond-float 20s ease-in-out infinite;
}

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

/* Hexagon Pattern Animation */
.network-bg {
  animation: hex-pulse 8s ease-in-out infinite;
}

@keyframes hex-pulse {
  0%, 100% {
    opacity: 0.08;
  }
  50% {
    opacity: 0.14;
  }
}

/* Network Lines Background Animation */
.network-lines-bg {
  animation: network-flow 15s ease-in-out infinite;
}

@keyframes network-flow {
  0%, 100% {
    opacity: 0.07;
    transform: translateY(0);
  }
  50% {
    opacity: 0.12;
    transform: translateY(-10px);
  }
}
