:root {
 
  --accent-color: #8b5cf6;
  --accent-color-hover: #a855ff;

 
  --nav-text-color: #f9fafb;

 
  --nav-muted-color: #9ca3af;
}
 
 body {
  /* темний насичений фон + патерн зверху */
  background-image: linear-gradient(rgba(5, 8, 22, 0.96), rgba(5, 8, 22, 0.96)), 
                    url("../assets/pattern.png");
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;

  min-height: 100vh;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.custom-nav {
  background: transparent;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  z-index: 1030;
}

/* колір бургер-іконки */
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* логотип */
.navbar-brand svg {
  color: var(--accent-color);
}
.logo-text {
  color: var(--nav-text-color);
  font-weight: 600;
  font-size: 1.1rem;
}

/* лінки меню */
.navbar-nav .nav-link {
  color: var(--nav-muted-color);
  font-weight: 500;
  margin: 0 0.75rem;
  font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--accent-color);
}

.navbar-nav .nav-link.active {
  color: var(--accent-color);
}
.navbar-scrolled {
  background: rgba(5, 8, 22, 0.92) !important;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(168, 85, 255, 0.15);
}
 
.btn-accent {
  background-color: var(--accent-color);
  border: none;
  color: #050816;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
}
.btn-accent:hover,
.btn-accent:focus {
  background-color: var(--accent-color-hover);
  color: #050816;
}

/* щоб контент не заїжджав під fixed-top */
.content {
  padding-top: 70px;
}



.info-section {
  margin-top: 10vh; /* невелика відстань після хедера */
}

.info-title {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 2rem;
}

.info-text {
  color: var(--nav-text-color);
  font-size: 1.05rem;
  max-width: 650px;
 
  line-height: 1.55;
}


/* HERO section */
.hero-section {
  position: relative;

  min-height: 75vh; /* MAIN: height of hero */
  display: flex;
  align-items: center;

  background-image:
    linear-gradient(rgba(5, 8, 22, 0.75), rgba(5, 8, 22, 0.9)),
    url("../assets/top_fon.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 18px;
  overflow: hidden;

  padding: 120px 0 100px;
}


/* Content */
.hero-content {
  position: relative;
  z-index: 2;
}


/* Title */
.hero-title {
  font-size: 2.6rem;
  line-height: 1.15;
  max-width: 900px;
}


/* Text */
.hero-text {
  max-width: 720px;
  font-size: 1.05rem;
  opacity: 0.95;
}


/* CTA block */
.hero-actions {
  margin-top: 25px;
}


/* Button */
.hero-btn {
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;

  border-radius: 30px;

  background: linear-gradient(135deg, #7c4dff, #9c6bff);
  color: #fff;

  border: none;
  text-decoration: none;

  box-shadow: 0 8px 20px rgba(124, 77, 255, 0.35);

  transition: all 0.25s ease;
}


.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(124, 77, 255, 0.5);
  color: #fff;
}


/* Responsive */
@media (max-width: 992px) {

  .hero-section {
    min-height: 65vh;
    padding: 100px 0 80px;
  }

  .hero-title {
    font-size: 2.1rem;
  }
}


@media (max-width: 576px) {

  .hero-section {
    min-height: 60vh;
    padding: 80px 0 70px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-text {
    font-size: 0.95rem;
  }
}



html {
  scroll-behavior: smooth;
}


/* =========================
   RATING SECTION (NEW)
========================= */

.rating-section {
  padding: 70px 0;
  background: rgba(8, 10, 20, 0.55);
  border-radius: 18px;
  margin-top: 35px;
  margin-bottom: 35px;
}

.rating-header {
  margin-bottom: 22px;
}

.rating-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  margin: 0;
  color: #ffffff;
}

.rating-subtitle {
  margin: 10px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.55;
}

/* list container */
.rating-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* CARD */
.partner-card {
  border-radius: 18px;
  padding: 18px;
  background: rgba(12, 14, 28, 0.80);
  border: 1px solid rgba(124, 77, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.partner-card:hover {
  border-color: rgba(124, 77, 255, 0.60);
}

/* inner layout */
.partner-row {
  display: grid;
  grid-template-columns: 220px 1fr 210px;
  gap: 18px;
  align-items: center;
}

/* Logo block */
.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.partner-logo {
  width: 100%;
  max-width: 190px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.35));
}

/* Main info */
.partner-main {
  min-width: 0;
}

.partner-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.partner-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
  letter-spacing: 0.2px;
}

/* optional badge */
.partner-badge {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(124, 77, 255, 0.18);
  border: 1px solid rgba(124, 77, 255, 0.45);
  color: #cbb8ff;
}

/* rating */
.partner-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  font-weight: 800;
  color: #fff;
  opacity: 0.9;
}

.partner-rating .star {
  width: 16px;
  height: 16px;
  display: inline-block;
}

.partner-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  font-size: 0.98rem;
  max-width: 780px;
}

/* Features */
.partner-features {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
}

.partner-features li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.95rem;
}

.partner-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(124, 77, 255, 0.95);
  font-weight: 900;
}

/* CTA */
.partner-cta {
  display: flex;
  justify-content: flex-end;
}

.partner-btn {
  width: 100%;
  max-width: 190px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #7c4dff, #9c6bff);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 10px 22px rgba(124, 77, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(124, 77, 255, 0.45);
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .partner-row {
    grid-template-columns: 180px 1fr;
    grid-template-areas:
      "logo main"
      "cta  cta";
  }

  .partner-logo-wrap { grid-area: logo; }
  .partner-main { grid-area: main; }
  .partner-cta { grid-area: cta; justify-content: flex-start; margin-top: 10px; }

  .partner-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .rating-section { padding: 55px 0; border-radius: 14px; }
  .rating-title { font-size: 1.6rem; }

  .partner-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partner-logo {
    max-width: 170px;
    height: 58px;
  }

  .partner-features {
    grid-template-columns: 1fr;
  }

  .partner-btn {
    max-width: 100%;
  }
}

/*-----------------------------------------------------------*/


 

 
/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 22, 0.85),
    rgba(12, 14, 30, 0.95)
  );
  border-radius: 18px;
  margin: 40px 0;
}

/* badge */
.about-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;

  background: rgba(124, 77, 255, 0.15);
  border: 1px solid rgba(124, 77, 255, 0.45);
  color: #cbb8ff;
}

/* title */
.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  max-width: 520px;
}

/* text */
.about-text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

/* highlights */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
}

.highlight-item span {
  color: #7c4dff;
  font-weight: 900;
}


/* Stats wrapper */
.about-stats {
  background: rgba(10, 12, 26, 0.9);
  border: 1px solid rgba(124, 77, 255, 0.3);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* stat card */
.stat-card {
  padding: 20px;
  border-radius: 14px;
  background: rgba(124, 77, 255, 0.06);
  border: 1px solid rgba(124, 77, 255, 0.25);
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}


/* Responsive */
@media (max-width: 992px) {

  .about-section {
    padding: 70px 0;
  }

  .about-title {
    font-size: 1.9rem;
  }

  .stats-grid {
    gap: 16px;
  }
}


@media (max-width: 576px) {

  .about-section {
    padding: 55px 0;
    border-radius: 14px;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
  padding: 90px 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 28, 0.9),
    rgba(14, 16, 34, 1)
  );
  border-radius: 18px;
  margin: 40px 0;
}

.contact-header {
  max-width: 640px;
  margin: 0 auto 45px;
}

.contact-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.4px;

  background: rgba(124, 77, 255, 0.15);
  border: 1px solid rgba(124, 77, 255, 0.45);
  color: #cbb8ff;
}

.contact-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
}

.contact-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.6;
}


/* Form */
.contact-form {
  background: rgba(12, 14, 30, 0.9);
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(124,77,255,0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.contact-input {
  width: 100%;
  padding: 14px 16px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124,77,255,0.25);
  border-radius: 12px;

  color: #fff;
  font-size: 0.95rem;

  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-input::placeholder {
  color: rgba(255,255,255,0.45);
}

.contact-input:focus {
  border-color: rgba(124,77,255,0.7);
  box-shadow: 0 0 0 2px rgba(124,77,255,0.15);
}


/* Button */
.contact-btn {
  padding: 12px 36px;
  border-radius: 999px;

  background: linear-gradient(135deg, #7c4dff, #9c6bff);
  border: none;

  color: #fff;
  font-weight: 800;
  font-size: 1rem;

  box-shadow: 0 10px 25px rgba(124,77,255,0.3);
  cursor: pointer;

  transition: all 0.25s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(124,77,255,0.45);
}


/* =========================
   FOOTER
========================= */

.footer {
  padding: 70px 0 35px;
  background: #060814;
  border-top: 1px solid rgba(124,77,255,0.25);
  color: rgba(255,255,255,0.8);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 35px;
}


/* Brand */
.footer-brand {
  max-width: 380px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}


/* Links */
.footer-links h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  margin-bottom: 8px;

  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #9c6bff;
}


/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;

  padding-top: 22px;
  border-top: 1px solid rgba(124,77,255,0.2);

  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-note {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}


/* Responsive */
@media (max-width: 992px) {

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

}


@media (max-width: 576px) {

  .contact-section {
    padding: 65px 0;
    border-radius: 14px;
  }

  .contact-title {
    font-size: 1.7rem;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-bottom {
    justify-content: center;
  }
}
