@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes twinkle {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  background: #05070a;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1020;
  background: rgba(5, 7, 10, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 250ms ease-in-out;
}
.navbar.scrolled {
  background: rgba(5, 7, 10, 0.95);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
.navbar .nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 2rem;
}
.navbar .logo {
  text-decoration: none;
}
.navbar .logo .logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 50px;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.navbar .logo .logo-placeholder::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}
.navbar .logo .logo-text {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #05070a;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.navbar .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (max-width: 1023px) {
  .navbar .nav-toggle {
    display: block;
  }
}
.navbar .nav-toggle .hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: all 250ms ease-in-out;
}
.navbar .nav-toggle .hamburger::before, .navbar .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 250ms ease-in-out;
}
.navbar .nav-toggle .hamburger::before {
  top: -8px;
}
.navbar .nav-toggle .hamburger::after {
  top: 8px;
}
.navbar .nav-toggle[aria-expanded=true] .hamburger {
  background: transparent;
}
.navbar .nav-toggle[aria-expanded=true] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.navbar .nav-toggle[aria-expanded=true] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}
.navbar .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
}
.navbar .nav-menu .nav-button {
  margin-left: 0.5rem;
}
.navbar .nav-menu .nav-button a::after {
  display: none;
}
.navbar .nav-menu .nav-language {
  position: relative;
  margin-left: 0.5rem;
}
.navbar .nav-menu .nav-language .lang-toggle-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 150ms ease-in-out;
}
.navbar .nav-menu .nav-language .lang-toggle-btn:hover {
  color: #ffffff;
}
.navbar .nav-menu .nav-language .lang-toggle-btn svg {
  width: 20px;
  height: 20px;
}
.navbar .nav-menu .nav-language .lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(5, 7, 10, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 250ms ease-in-out;
  z-index: 1000;
}
.navbar .nav-menu .nav-language .lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navbar .nav-menu .nav-language .lang-dropdown .lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-radius: 4px;
  transition: all 150ms ease-in-out;
  cursor: pointer;
}
.navbar .nav-menu .nav-language .lang-dropdown .lang-option .lang-flag {
  font-size: 1.2em;
}
.navbar .nav-menu .nav-language .lang-dropdown .lang-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.navbar .nav-menu .nav-language .lang-dropdown .lang-option.active {
  background: rgba(239, 196, 38, 0.1);
  color: #efc426;
}
.navbar .nav-menu .nav-language:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1023px) {
  .navbar .nav-menu .nav-language {
    margin-left: 0;
    width: 100%;
  }
  .navbar .nav-menu .nav-language .lang-toggle-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 1rem;
  }
  .navbar .nav-menu .nav-language .lang-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 0.5rem;
  }
}
@media (max-width: 1023px) {
  .navbar .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(5, 7, 10, 0.98);
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 250ms ease-in-out;
  }
  .navbar .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.navbar .nav-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 150ms ease-in-out;
  position: relative;
  padding: 0.5rem 0.5rem;
}
.navbar .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  transition: width 250ms ease-in-out;
}
.navbar .nav-menu a:hover {
  color: #ffffff;
}
.navbar .nav-menu a:hover::after {
  width: 100%;
}
.navbar .nav-menu a.btn::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn:focus-visible {
  outline: 2px solid #3374cb;
  outline-offset: 2px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: #1a4c8e;
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-primary:hover:not(:disabled) {
  background: #3374cb;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(51, 116, 203, 0.3), 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  white-space: nowrap;
}
.btn-outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-outline {
  background: rgba(5, 7, 10, 0.8);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover:not(:disabled) {
  background: rgba(5, 7, 10, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn-icon {
  margin-left: 0.5rem;
  transition: transform 150ms ease-in-out;
}
.btn:hover .btn-icon {
  transform: translateX(4px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(6rem + 80px) 0 6rem;
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.95) 0%, rgba(26, 76, 142, 0.1) 100%);
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding: calc(4rem + 80px) 0 4rem;
  }
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 1023px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero-content {
  animation: slideUp 0.8s ease-out 0.2s both;
}
.hero .etymology {
  margin-bottom: 3rem;
  padding: 2rem 0;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
@media (max-width: 1023px) {
  .hero .etymology {
    text-align: center;
    padding: 1.5rem 0;
  }
}
.hero .etymology-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  max-width: 950px;
  margin: 0 auto;
  font-size: 1.0625rem;
}
@media (max-width: 1023px) {
  .hero .etymology-text {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.hero .etymology-text em {
  color: #ebc73f;
  font-style: normal;
  font-weight: 600;
}
.hero .etymology-label {
  font-size: 1.375rem;
  color: #ebc73f;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.02em;
}
@media (max-width: 1023px) {
  .hero .etymology-label {
    font-size: 1.1875rem;
  }
}
.hero-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  max-width: 600px;
}
@media (max-width: 1023px) {
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 575px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 1023px) {
  .hero-stats .stat-item {
    align-items: center;
  }
}
.hero-stats .stat-number {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats .stat-label {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 1023px) {
  .hero-cta {
    justify-content: center;
  }
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1023px) {
  .hero-visual {
    margin-top: 3rem;
  }
}
.hero-visual .floating-card {
  width: 400px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(51, 116, 203, 0.3);
  border-radius: 24px;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 767px) {
  .hero-visual .floating-card {
    width: 300px;
    height: 400px;
  }
}
.hero-visual .floating-card .card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: linear-gradient(135deg, #1a4c8e 0%, #3374cb 100%);
  filter: blur(80px);
  opacity: 0.5;
  animation: pulseGlow 3s ease-in-out infinite;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .section-header {
    margin-bottom: 4rem;
  }
}
.section-header .section-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.section-header .section-subtitle {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.features {
  padding: 6rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .features {
    padding: 4rem 0;
  }
}
.features .rate-clarity-box {
  background: linear-gradient(135deg, rgba(5, 7, 10, 0.6), rgba(5, 7, 10, 0.8));
  border: 2px solid rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.features .rate-clarity-box h3 {
  color: #efc426;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.features .rate-clarity-box .rate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 400px;
  margin: 0 auto;
}
.features .rate-clarity-box .rate-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
}
.features .rate-clarity-box .rate-number {
  font-size: 3rem;
  font-weight: bold;
  color: #efc426;
  margin-bottom: 0.5rem;
}
.features .rate-clarity-box .rate-label {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.features .rate-clarity-box .rate-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
.features .rate-clarity-box .rate-example {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
@media (max-width: 575px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.features .feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 250ms ease-in-out;
}
.features .feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(51, 116, 203, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(51, 116, 203, 0.3);
}
.features .feature-card .feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a4c8e 0%, #3374cb 100%);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.features .feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
}
.features .feature-card .feature-title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.features .feature-card .feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.evolution {
  padding: 6rem 0;
  background: rgba(26, 76, 142, 0.03);
}
@media (max-width: 767px) {
  .evolution {
    padding: 4rem 0;
  }
}
.evolution .timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.evolution .timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #3374cb 10%, #3374cb 90%, transparent 100%);
}
@media (max-width: 767px) {
  .evolution .timeline::before {
    left: 20px;
  }
}
.evolution .timeline-item {
  margin-bottom: 6rem;
}
.evolution .timeline-item:last-child {
  margin-bottom: 0;
}
.evolution .timeline-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 767px) {
  .evolution .timeline-content {
    grid-template-columns: 1fr;
    padding-left: 60px;
  }
}
.evolution .timeline-content.reverse .timeline-text {
  order: 1;
}
@media (max-width: 767px) {
  .evolution .timeline-content.reverse .timeline-text {
    order: 2;
  }
}
.evolution .timeline-content.reverse .timeline-image {
  order: 2;
}
@media (max-width: 767px) {
  .evolution .timeline-content.reverse .timeline-image {
    order: 1;
  }
}
.evolution .timeline-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.evolution .timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease-in-out;
}
.evolution .timeline-image .image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
.evolution .timeline-image:hover img {
  transform: scale(1.05);
}
.evolution .timeline-text {
  position: relative;
}
.evolution .timeline-text::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  border-radius: 50%;
  border: 3px solid #05070a;
  box-shadow: 0 0 30px rgba(235, 199, 63, 0.3);
}
@media (max-width: 767px) {
  .evolution .timeline-text::before {
    left: -70px;
  }
}
.timeline-item:nth-child(odd) .evolution .timeline-text::before {
  right: calc(-1 * 3rem - 8px);
}
@media (max-width: 767px) {
  .timeline-item:nth-child(odd) .evolution .timeline-text::before {
    right: auto;
  }
}
.timeline-item:nth-child(even) .evolution .timeline-text::before {
  left: calc(-1 * 3rem - 8px);
}
@media (max-width: 767px) {
  .timeline-item:nth-child(even) .evolution .timeline-text::before {
    left: -70px;
  }
}
.evolution .timeline-year {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #ebc73f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .evolution .timeline-year {
    margin-left: 1rem;
  }
}
.evolution .timeline h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.evolution .timeline p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.why-Nekkha {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .why-Nekkha {
    padding: 4rem 0;
  }
}
.why-Nekkha .why-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .why-Nekkha .why-slider-wrapper {
    gap: 1rem;
  }
}
.why-Nekkha .slider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  z-index: 2;
}
.why-Nekkha .slider-btn:hover {
  background: rgba(51, 116, 203, 0.2);
  border-color: #3374cb;
  transform: scale(1.1);
}
.why-Nekkha .slider-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.why-Nekkha .slider-btn:disabled:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .why-Nekkha .slider-btn {
    width: 40px;
    height: 40px;
  }
  .why-Nekkha .slider-btn svg {
    width: 20px;
    height: 20px;
  }
}
.why-Nekkha .why-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 12px;
}
.why-Nekkha .why-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
}
@media (max-width: 767px) {
  .why-Nekkha .why-track {
    gap: 1.5rem;
  }
}
.why-Nekkha .why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 250ms ease-in-out;
}
.why-Nekkha .why-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(51, 116, 203, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(51, 116, 203, 0.3);
}
.why-Nekkha .why-card {
  position: relative;
  padding-left: 6rem;
  flex: 0 0 calc(50% - 2rem / 2);
}
@media (max-width: 1023px) {
  .why-Nekkha .why-card {
    flex: 0 0 100%;
    padding-left: 4rem;
  }
}
@media (max-width: 575px) {
  .why-Nekkha .why-card {
    padding: 2rem;
    padding-top: 4rem;
  }
}
.why-Nekkha .why-card .why-number {
  position: absolute;
  left: 2rem;
  top: 2rem;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .why-Nekkha .why-card .why-number {
    font-size: 2rem;
    left: 1.5rem;
  }
}
@media (max-width: 575px) {
  .why-Nekkha .why-card .why-number {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-bottom: 0.5rem;
  }
}
.why-Nekkha .why-card h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.why-Nekkha .why-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.why-Nekkha .slider-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.why-Nekkha .slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.why-Nekkha .slider-dots .dot.active {
  background: #ebc73f;
  width: 30px;
  border-radius: 5px;
}
.why-Nekkha .slider-dots .dot:hover {
  background: rgba(235, 199, 63, 0.5);
}

.how-it-works {
  padding: 6rem 0;
  background: rgba(26, 76, 142, 0.03);
}
@media (max-width: 767px) {
  .how-it-works {
    padding: 4rem 0;
  }
}
.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 1023px) {
  .how-it-works .steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.how-it-works .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.how-it-works .step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: calc(-1 * 3rem / 2);
  width: 3rem;
  height: 2px;
  background: linear-gradient(90deg, #3374cb, transparent);
}
@media (max-width: 1023px) {
  .how-it-works .step:not(:last-child)::after {
    display: none;
  }
}
.how-it-works .step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a4c8e 0%, #3374cb 100%);
  border-radius: 50%;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(51, 116, 203, 0.3);
}
.how-it-works .step-content h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}
.how-it-works .step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 350px;
}
.how-it-works .requirements {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 3rem;
}
.how-it-works .requirements h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
  text-align: center;
}
.how-it-works .requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.how-it-works .requirements .requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.how-it-works .requirements .requirement-item svg {
  color: #ebc73f;
  flex-shrink: 0;
  margin-top: 2px;
}
.how-it-works .requirements .requirement-item span {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.faq {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 4rem 0;
  }
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 250ms ease-in-out;
}
.faq-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(51, 116, 203, 0.3);
}
.faq-item.active {
  background: rgba(255, 255, 255, 0.05);
  border-color: #3374cb;
}
.faq-item.active .faq-question {
  color: #ffffff;
}
.faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
  color: #3374cb;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 2rem 2rem;
  opacity: 1;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 150ms ease-in-out;
}
.faq-question:focus-visible {
  outline: 2px solid #3374cb;
  outline-offset: 2px;
}
.faq-question:hover {
  color: #ffffff;
}
.faq-icon {
  flex-shrink: 0;
  transition: transform 250ms ease-in-out, color 150ms ease-in-out;
  color: rgba(255, 255, 255, 0.6);
}
.faq-answer {
  max-height: 0;
  padding: 0 2rem;
  opacity: 0;
  overflow: hidden;
  transition: all 250ms ease-in-out;
}
.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.contact {
  padding: 6rem 0;
  background: rgba(26, 76, 142, 0.03);
}
@media (max-width: 767px) {
  .contact {
    padding: 4rem 0;
  }
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}
@media (max-width: 1023px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-info h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.contact-info .contact-description {
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.contact-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: all 250ms ease-in-out;
  min-height: 60px;
}
@media (min-width: 1024px) {
  .contact-button {
    padding: 1rem 1.5rem;
    min-height: 64px;
  }
}
@media (max-width: 575px) {
  .contact-button {
    padding: 0.5rem;
    min-height: 56px;
  }
}
.contact-button.whatsapp {
  border-color: #25D366;
}
.contact-button.whatsapp:hover {
  background: rgba(37, 211, 102, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.contact-button.whatsapp .contact-icon {
  color: #25D366;
}
.contact-button.phone {
  border-color: #1a4c8e;
}
.contact-button.phone:hover {
  background: rgba(26, 76, 142, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 76, 142, 0.2);
}
.contact-button.phone .contact-icon {
  color: #1a4c8e;
}
.contact-button.email {
  border-color: #ebc73f;
}
.contact-button.email:hover {
  background: rgba(235, 199, 63, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 199, 63, 0.2);
}
.contact-button.email .contact-icon {
  color: #ebc73f;
}
.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-icon {
    font-size: 1.75rem;
  }
}
.contact-button-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
}
.contact-button-label {
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .contact-button-label {
    font-size: 0.9rem;
  }
}
.contact-button-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .contact-button-text {
    font-size: 0.8rem;
  }
}
.contact .social-links {
  margin-top: 3rem;
}
.contact .social-links h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact .social-links .social-icons {
  display: flex;
  gap: 1.5rem;
}
.contact .social-links .social-icons a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 250ms ease-in-out;
}
.contact .social-links .social-icons a:hover {
  background: linear-gradient(135deg, #1a4c8e 0%, #3374cb 100%);
  border-color: #3374cb;
  color: #ffffff;
  transform: translateY(-2px);
}

.about {
  padding: 6rem 0;
}
@media (max-width: 767px) {
  .about {
    padding: 4rem 0;
  }
}
.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6rem;
}
@media (max-width: 1023px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}
.about-text h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}
.about-text h3:first-child {
  margin-top: 0;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}
.about-text .values-list {
  list-style: none;
}
.about-text .values-list li {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.about-text .values-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  border-radius: 50%;
}
.about-text .values-list li strong {
  color: #ffffff;
  font-weight: 600;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-content: start;
}
.about-stats .stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 250ms ease-in-out;
}
.about-stats .stat-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(51, 116, 203, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(51, 116, 203, 0.3);
}
.about-stats .stat-card {
  text-align: center;
}
.about-stats .stat-card h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.about-stats .stat-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  background: rgba(5, 7, 10, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 0 2rem;
}
@media (max-width: 767px) {
  .footer {
    padding: 4rem 0 1.5rem;
  }
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 1023px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}
.footer-column h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer-column ul {
  list-style: none;
}
.footer-column ul li {
  margin-bottom: 1rem;
}
.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 150ms ease-in-out;
}
.footer-column ul li a:hover {
  color: #3374cb;
}
.footer-logo {
  margin-bottom: 1.5rem;
}
.footer-logo .logo-text {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
}
.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.footer .newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 575px) {
  .footer .newsletter-form {
    flex-direction: column;
  }
}
.footer .newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  transition: all 250ms ease-in-out;
}
.footer .newsletter-form input:focus-visible {
  outline: 2px solid #3374cb;
  outline-offset: 2px;
}
.footer .newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: #3374cb;
  outline: none;
}
.footer .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer .newsletter-form button {
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer-bottom p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 150ms ease-in-out;
}
.footer-social a:hover {
  color: #3374cb;
}

.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a4c8e 0%, #3374cb 100%);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 250ms ease-in-out;
  z-index: 1030;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
.back-to-top:focus-visible {
  outline: 2px solid #3374cb;
  outline-offset: 2px;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 30px rgba(51, 116, 203, 0.3), 0 20px 25px -5px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #efc426 0%, #ebc73f 50%, #b87c27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: 2px solid #3374cb;
  outline-offset: 2px;
}

.footer-powered {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.footer-powered .nexa-token-logo {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
  transition: all 0.3s ease;
}
.footer-powered .nexa-token-logo:hover {
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
  transform: scale(1.05);
}
.footer-powered .powered-text {
  font-size: 0.875rem;
  font-weight: 500;
  background: linear-gradient(135deg, #C58A3A 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
}
body::-webkit-scrollbar-thumb {
  background: rgba(51, 116, 203, 0.5);
  border-radius: 9999px;
}
body::-webkit-scrollbar-thumb:hover {
  background: rgba(51, 116, 203, 0.7);
}

/*# sourceMappingURL=styles.css.map */
