@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0c1117;
  color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

h1 {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 18px;
  line-height: 1.7;
}

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

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0;
}

.header-inner {
  position: relative;
  height: 69px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.site-header.scrolled {
  background: rgba(6, 19, 27, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(191, 152, 47, 0.2);
}

.logo img {
  position: absolute;
  top: 10px;
  height: 50px;
  animation: logoPulse 3s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(191, 152, 47, 0));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(191, 152, 47, 0.6));
  }
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(191, 152, 47, 0));
  }
}
.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
  transition: 0.2s;
}

.nav a:hover {
  color: #bf982f;
  opacity: 1;
}

.nav a[href="#benefits"],
.nav a[href="#beta"] {
  color: #e6d299;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #06131b;
    flex-direction: column;
    padding: 25px;
    display: none;
  }
  .nav.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}
.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #bf982f;
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: #bf982f;
  opacity: 1;
}

.nav a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  display: block;
}

.nav {
  display: flex;
  gap: 30px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #06131b;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    transform: translateY(-120%);
    transition: 0.3s;
  }
  .nav a {
    padding: 12px 0;
    font-size: 16px;
  }
  .nav.active {
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ============================================
   HERO BACKGROUND
============================================ */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero-new.jpg");
  background-size: cover;
  background-position: center;
  animation: heroBackground 30s ease-in-out infinite alternate;
  transform-origin: center;
}

@keyframes heroBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(6, 19, 27, 0.75) 0%, rgba(6, 19, 27, 0.65) 40%, rgba(6, 19, 27, 0.9) 100%);
  z-index: 2;
}

/* ============================================
   HERO CONTENT
============================================ */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 40px;
}

/* ============================================
   HERO HEADLINE
============================================ */
.hero-headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.hero-divider {
  width: 3px;
  height: 200px;
  background: linear-gradient(180deg, rgba(191, 152, 47, 0) 0%, rgba(191, 152, 47, 0.9) 35%, rgb(191, 152, 47) 50%, rgba(191, 152, 47, 0.9) 65%, rgba(191, 152, 47, 0) 100%);
  box-shadow: 0 0 10px rgba(191, 152, 47, 0.4);
}

.hero-headline-text {
  text-align: left;
}

/* ============================================
   LOGO
============================================ */
.hero-logo {
  width: 120px;
  opacity: 0;
  animation: logoSlide 1.5s ease forwards;
}

@keyframes logoSlide {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ============================================
   HERO TITLE
============================================ */
.hero-title {
  margin: 0;
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  animation: titleSlide 1.5s ease forwards;
}

.hero-title span {
  color: #bf982f;
}

@keyframes titleSlide {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ============================================
   MICROTITLE
============================================ */
.hero-microtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0px;
  color: #bf982f;
  opacity: 0;
  animation: microtitleSlide 1.2s ease forwards;
}

@keyframes microtitleSlide {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ============================================
   SUBTITLE
============================================ */
.hero-subtitle {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0px;
  color: white;
  opacity: 0;
  animation: subtitleSlide 1.2s ease forwards;
}

@keyframes subtitleSlide {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ============================================
   HERO BENEFITS
============================================ */
.hero-benefit {
  margin: 40px auto;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  animation: introFade 1.2s ease forwards;
  animation-delay: 0.9s;
  opacity: 0;
}

/* ============================================
   HERO INTRO
============================================ */
.hero-intro {
  max-width: 640px;
  margin: 30px auto 40px;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  animation: introFade 1.2s ease forwards;
  animation-delay: 1.4s;
  opacity: 0;
}

@keyframes introFade {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ============================================
   HERO CARD V2
============================================ */
.hero-card {
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(191, 152, 47, 0.25);
  border-radius: 14px;
  padding: 32px;
  backdrop-filter: blur(12px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* GRID */
.hero-card-grid {
  display: grid;
  grid-template-columns: 60% auto;
  gap: 30px;
  align-items: center;
}

/* LEFT */
.hero-card-left {
  text-align: center;
}

.hero-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #bf982f;
  margin-bottom: 6px;
}

.hero-card-sub {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 18px;
}

/* FORM */
.hero-form {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.hero-form input {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form button {
  background: #bf982f;
  color: #000;
  font-weight: 600;
}

/* RIGHT */
.hero-card-right {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-benefits-title {
  font-size: 16px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.hero-benefits li {
  position: relative;
  padding-left: 18px;
}

.hero-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #bf982f;
  font-size: 12px;
}

/* COUNTER */
.beta-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.85;
}

.beta-counter-number {
  color: #bf982f;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-card-grid {
    grid-template-columns: 1fr;
  }
  .hero-card-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
  }
}
/* ============================================
   AKTUÁLNY STAV
============================================ */
.hero-status-bar {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.status-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #bf982f;
  box-shadow: 0 0 8px rgba(191, 152, 47, 0.7);
}

/* ============================================
   PROGRES BAR - STAV PROJEKTU
============================================ */
.project-progress {
  background: rgba(0, 0, 0, 0.7);
  background: rgba(191, 152, 47, 0.05);
  border: 1px solid rgba(191, 152, 47, 0.25);
  padding: 20px 0;
  margin-top: 30px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 15px;
  opacity: 0.9;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
}

.step-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #444;
}

/* hotová fáza */
.progress-step.done .step-dot {
  background: #bf982f;
  box-shadow: 0 0 8px rgba(191, 152, 47, 0.7);
}

.progress-step.done {
  color: #bf982f;
}

/* aktuálna fáza */
.progress-step.active .step-dot {
  background: #fff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.progress-step.active {
  color: #fff;
}

/* čiara */
.progress-line {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.progress-step.active .step-dot {
  animation: progressPulse 2s infinite;
}

@keyframes progressPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
/* ============================================
   MOBILE
============================================ */
@media (max-width: 600px) {
  .hero-content {
    padding: 20px;
  }
  .hero-headline {
    flex-direction: column;
    gap: 16px;
    margin: 60px 0 0;
  }
  .hero-headline-text {
    text-align: center;
  }
  .hero-divider {
    display: none;
  }
  .hero-logo {
    width: 70px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .hero-intro {
    font-size: 14px;
  }
  .hero-card {
    padding: 20px;
  }
  .hero-card-note {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .project-progress {
    flex-direction: column;
    align-items: center;
    /* centrovanie */
    text-align: left;
    margin-top: 22px;
    padding-left: 0;
  }
  .project-progress::before {
    display: none;
    /* odstráni ľavú vertikálnu čiaru */
  }
  .progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
  }
  .progress-line {
    display: none;
  }
}
.hero-form {
  display: flex;
  max-width: 420px;
  margin: 20px auto 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
}

.hero-form input {
  flex: 1;
  padding: 16px 18px;
  border: none;
  outline: none;
  font-size: 16px;
}

.hero-form button {
  background: #bf982f;
  border: none;
  padding: 0 26px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.hero-form button:hover {
  background: #d3a93a;
}

.hero-form input:focus {
  background: #fafafa;
}

@media (max-width: 600px) {
  .hero-form {
    flex-direction: column;
    background: transparent;
  }
  .hero-form input {
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .hero-form button {
    border-radius: 8px;
    padding: 16px;
  }
}
.form-message {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
  color: #79c21d;
}

.form-message.error {
  color: #ff4c4c;
}

section {
  scroll-margin-top: 69px;
}

/* ============================================
   HOW SECTION
============================================ */
.how {
  padding: 120px 20px;
  background: #06131b;
  /* background: linear-gradient(180deg,
             #0b222f 0%,
             #06131b 100%);
  */
  text-align: center;
}

.section-title {
  font-size: 42px;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  color: #bf982f;
  margin-bottom: 60px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.how-card {
  background: #111;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.how-icon {
  font-size: 26px;
  margin-bottom: 15px;
  color: #bf982f;
}

.how-card h3 {
  margin-bottom: 12px;
}

.how-card p {
  font-size: 15px;
  opacity: 0.85;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ============================================
   WHY SECTION
============================================ */
.why {
  padding: 120px 20px;
  background: linear-gradient(180deg, #0b222f 0%, #06131b 100%);
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  margin-top: 50px;
}

.why-card {
  background: #0b222f;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.why-card h3 {
  margin-bottom: 15px;
  color: #bf982f;
}

.why-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

.why-card:nth-child(2) {
  border: 1px solid rgba(191, 152, 47, 0.35);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ============================================
   VISION SECTION
============================================ */
.vision {
  padding: 120px 20px;
  background: linear-gradient(180deg, #06131b 0%, #0b222f 100%);
  text-align: center;
}

.vision-intro {
  max-width: 700px;
  margin: 30px auto 60px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.vision-item {
  background: #0b222f;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.vision-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.vision-item h3 {
  color: #bf982f;
  margin-bottom: 15px;
}

.vision-item p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

.vision-intro {
  max-width: 800px;
  font-size: 18px;
}

@media (max-width: 900px) {
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ============================================
   COMMUNITY SECTION
============================================ */
.community {
  padding: 120px 20px;
  background: #06131b;
  text-align: center;
}

.community-intro {
  max-width: 700px;
  margin: 30px auto 60px;
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.community-card {
  background: #0b222f;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.community-card h3 {
  color: #bf982f;
  margin-bottom: 15px;
}

.community-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
}

.community-cta {
  margin-top: 60px;
}

.btn-community {
  display: inline-block;
  padding: 16px 30px;
  background: #bf982f;
  color: black;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s;
}

.btn-community:hover {
  background: #d3a93a;
}

@media (max-width: 900px) {
  .community-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ============================================
   BETA SECTION
============================================ */
.beta {
  padding: 140px 20px;
  text-align: center;
  background: linear-gradient(180deg, #06131b 0%, #0b222f 100%);
}

.beta-intro {
  max-width: 720px;
  margin: 20px auto;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}

.beta-intro2 {
  color: #bf982f;
  max-width: 720px;
  margin: 20px auto;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}

.beta-form-wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.beta-note {
  margin-top: 25px;
  font-size: 14px;
  opacity: 0.75;
}

.beta-form-title {
  color: #bf982f;
}

.beta-counter {
  margin-top: 18px;
  font-size: 14px;
  opacity: 0.9;
}

.beta-counter-number {
  color: #bf982f;
  font-weight: 600;
}

.beta-counter-dot {
  width: 8px;
  height: 8px;
  background: #bf982f;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: betaPulse 2s infinite;
}

@keyframes betaPulse {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
.legal-info {
  padding: 40px 20px;
  background: #06131b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.legal-info img {
  height: 40px;
  margin-bottom: 10px;
}

.legal-text {
  max-width: 900px;
  margin: auto;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.75;
}

/* ============================================
   BETA CARD (inherits hero style)
============================================ */
.beta-card {
  margin-top: 60px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(191, 152, 47, 0.25);
  border-radius: 14px;
  padding: 32px;
  backdrop-filter: blur(12px);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

/* GRID */
.beta-card-grid {
  display: grid;
  grid-template-columns: 60% auto;
  gap: 30px;
  align-items: center;
}

/* LEFT */
.beta-card-left {
  text-align: center;
}

.beta-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #bf982f;
  margin-bottom: 6px;
}

.beta-card-sub {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 18px;
}

/* RIGHT */
.beta-card-right {
  text-align: left;
  padding-left: 50px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.beta-benefits-title {
  font-size: 16px;
  margin-bottom: 12px;
  opacity: 0.8;
}

.beta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}

.beta-benefits li {
  position: relative;
  padding-left: 18px;
}

.beta-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #bf982f;
  font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .beta-card-grid {
    grid-template-columns: 1fr;
  }
  .beta-card-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 0;
    padding-top: 20px;
    margin-top: 20px;
  }
}
/* ============================================
   ECOSYSTEM SECTION
============================================ */
.ecosystem {
  padding: 120px 20px;
  background: linear-gradient(180deg, #06131b 0%, #0b222f 100%);
  text-align: center;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  margin-top: 50px;
}

.ecosystem-card {
  background: #0b222f;
  padding: 35px;
  border-radius: 12px;
  transition: 0.3s;
}

.ecosystem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.ecosystem-card h3 {
  margin-bottom: 15px;
  color: #bf982f;
}

.ecosystem-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 12px;
}

.ecosystem-card strong {
  color: #bf982f;
}

.ecosystem-link {
  margin-top: 10px;
}

.ecosystem-link a {
  color: #bf982f;
  text-decoration: none;
  font-weight: 500;
}

.ecosystem-link a:hover {
  text-decoration: underline;
}

.ecosystem-card:nth-child(2) {
  border: 1px solid rgba(191, 152, 47, 0.35);
}

@media (max-width: 900px) {
  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ============================================
   BENEFITS SECTION
============================================ */
.benefits {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, #0b222f 0%, #06131b 100%);
  /* background: #06131b; */
}
.benefits .benefits-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: 0.8;
  color: #bf982f;
}
.benefits .benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) {
  .benefits .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: rgba(10, 30, 40, 0.7);
  border: 1px solid rgba(191, 152, 47, 0.15);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.benefit-card {
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 46px;
  background: url("../images/shield.png") no-repeat center;
  background-size: contain;
  opacity: 0.6;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #bf982f;
  box-shadow: 0 10px 30px rgba(191, 152, 47, 0.2);
}

.benefit-card.top {
  border: 1px solid rgba(191, 152, 47, 0.6);
  background: rgba(20, 40, 50, 0.95);
  transform: scale(1.04);
}

.benefit-card.top::after {
  opacity: 0.5;
  filter: drop-shadow(0 0 6px rgba(191, 152, 47, 0.3));
}

.benefit-card:nth-child(1),
.benefit-card:nth-child(3),
.benefit-card:nth-child(5) {
  border-color: rgba(191, 152, 47, 0.5);
}

.benefit-number {
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 700;
  color: #bf982f;
  z-index: 2;
}

.benefits-note,
.benefits-cta {
  margin-top: 40px;
}

.btn-benefits {
  display: inline-block;
  padding: 16px 30px;
  background: #bf982f;
  color: black;
  font-weight: 600;
  border-radius: 8px;
  transition: 0.2s;
}

.btn-benefits:hover {
  background: #d3a93a;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

/* .how-card {

    opacity: 0;

    transform: translateY(40px);

    transition: all 0.6s ease;

}

.how-card.active {

    opacity: 1;

    transform: translateY(0);

}

.how-card:nth-child(1) {
    transition-delay: 0.1s;
}

.how-card:nth-child(2) {
    transition-delay: 0.2s;
}

.how-card:nth-child(3) {
    transition-delay: 0.3s;
} */
.site-footer {
  background: #06131b;
  padding: 80px 20px 40px;
  border-top: 1px solid rgba(191, 152, 47, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.footer-logo {
  height: 80px;
  margin-bottom: 20px;
}

.footer-text {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-col h4 {
  margin-bottom: 20px;
  color: #bf982f;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  opacity: 0.8;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #bf982f;
  opacity: 1;
}

.footer-bottom {
  margin-top: 60px;
  text-align: center;
  opacity: 0.6;
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    margin: auto;
  }
}
.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #bf982f;
  color: #06131b;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

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