:root {
  color-scheme: light;
  --flexa-accent: #3ecfb4;
  --flexa-accent-hover: #33bfa5;
  --flexa-gradient: linear-gradient(
    135deg,
    #4f46e5 0%,
    #524ce7 35%,
    #5652e9 60%,
    #5b5bed 82%,
    #6366f1 100%
  );
  --flexa-hero-gradient: linear-gradient(
    132deg,
    #4f46e5 0%,
    #5143e1 18%,
    #5240dd 32%,
    #533ed9 45%,
    #553bd5 58%,
    #5638d1 70%,
    #5735cd 82%,
    #5b2fc2 92%,
    #5b21b6 100%
  );
  --flexa-gradient-shadow: 0 8px 18px rgba(79, 70, 229, 0.32);
  --flexa-gradient-shadow-hover: 0 10px 22px rgba(79, 70, 229, 0.38);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

.top-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #586174;
  text-decoration: none;
  transition: color 140ms ease;
}

.top-nav-link:hover {
  color: #1f2937;
}

.cta-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 9999px;
  padding: 0.55rem 1.2rem;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  background: var(--flexa-gradient);
  box-shadow: var(--flexa-gradient-shadow);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.cta-gradient:hover {
  transform: translateY(-1px);
  box-shadow: var(--flexa-gradient-shadow-hover);
}

.bg-flexa-gradient {
  background: var(--flexa-gradient);
}

.hero-section {
  background: var(--flexa-hero-gradient);
}

.hero-title {
  font-family: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 79.2px;
  letter-spacing: 0.12px;
}


.hero-description {
  font-family: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: -0.31px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-rating-text {
  font-family: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
}

.btn-flexa-accent {
  background-color: var(--flexa-accent);
  color: #06261f;
}

.btn-flexa-accent:hover {
  background-color: var(--flexa-accent-hover);
}

.text-flexa-accent {
  color: var(--flexa-accent);
}

.nav-link {
  border-radius: 0.75rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.nav-link:hover {
  background-color: #e2e8f0;
  color: #0f172a;
}

.card {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background-color: #fff;
  padding: 1rem;
}

.card-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
}

.card-text {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .hero-man {
    right: -24px;
    height: 88%;
  }
}

.stats-note {
  font-family: "Inter", "Segoe UI", Tahoma, Arial, sans-serif;
  font-size: 16px;
  color: #475569;
  line-height: 1.5;
}

.stats-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  color: #060815;
}

.stats-link {
  font-size: 14px;
  font-weight: 600;
  color: #060815;
  text-decoration: underline;
}

.stats-pill {
  background-color: #f8fafc;
  border-radius: 16px;
  padding: 1.5rem;
}

.stats-pill h4 {
  font-size: 32px;
  font-weight: 800;
  color: #060815;
  margin: 0 0 4px;
}

.stats-pill p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.4;
}

.security-section {
  background-color: #0b0d17;
  background-image: radial-gradient(circle at 25% 50%, rgba(85, 66, 232, 0.45) 0%, rgba(11, 13, 23, 1) 60%);
}





@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-section {
    animation: fadeInUp 0.8s ease-out forwards;
}
.animate-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.5s; }
.delay-3 { animation-delay: 0.7s; }




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

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

.animate-left { animation: slideInLeft 0.8s ease-out forwards; }
.animate-right { animation: slideInRight 0.8s ease-out forwards; }






















.values-section {
  position: relative;
  padding: 80px 24px;
  border-radius: 32px;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1220, #0f172a);
}

/* glow */
.values-section .glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(87, 67, 230, 0.2);
  filter: blur(120px);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* title */
.values-section .title {
  font-size: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* grid */
.values-section .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .values-section {
    padding: 120px 80px;
  }

  .values-section .grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .values-section .title {
    font-size: 52px;
  }
}

/* item */
.values-section .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-section .item h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.values-section .item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* icon box */
.icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* colors */
.icon.purple { color: #6d5cff; }
.icon.green { color: #3ecfb4; }
.icon.cyan { color: #5eead4; }
.icon.violet { color: #7c3aed; }

/* hover effect */
.item:hover .icon {
  transform: translateY(-4px);
}

.item:hover .icon.purple {
  border-color: #6d5cff;
  box-shadow: 0 0 20px rgba(109, 92, 255, 0.25);
}

.item:hover .icon.green {
  border-color: #3ecfb4;
  box-shadow: 0 0 20px rgba(62, 207, 180, 0.25);
}

.item:hover .icon.cyan {
  border-color: #5eead4;
  box-shadow: 0 0 20px rgba(94, 234, 212, 0.25);
}

.item:hover .icon.violet {
  border-color: #7c3aed;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.25);
}










  @keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  .animate-bounce-slow {
    animation: bounce-slow 4s ease-in-out infinite;
  }
  