:root {
  --navy: #0a1025;
  --navy-2: #0f1a37;
  --blue: #0f5ccb;
  --blue-light: #2e8bff;
  --gold: #d6b25e;
  --text: #e7ebf5;
  --muted: #9aa4c0;
  --card: #0f1530;
  --white: #ffffff;
  --shadow: 0 20px 80px rgba(5, 10, 25, 0.3);
  --radius: 16px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 20%, rgba(46, 139, 255, 0.12), transparent 25%),
              radial-gradient(circle at 90% 10%, rgba(15, 92, 203, 0.16), transparent 25%),
              #070c1a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 64px;
  backdrop-filter: blur(16px);
  background: rgba(7, 12, 26, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav__brand img {
  width: 120px;
  height: auto;
}

.nav__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__title span {
  font-weight: 700;
}

.nav__title small {
  color: var(--muted);
}

.nav__links {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  color: var(--white);
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.btn--telegram {
  background: linear-gradient(120deg, #229ED9, #2AABEE);
  border: none;
  padding: 12px 22px;
  min-width: 160px;
}

.btn--telegram svg {
  flex-shrink: 0;
}

main {
  padding: 48px 64px 96px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}

.hero__content h1 {
  margin: 8px 0 12px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.5px;
}

.lede {
  color: var(--muted);
  max-width: 760px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin: 16px 0 12px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stat__label {
  color: var(--muted);
  font-size: 14px;
}

.stat__value {
  font-size: 22px;
}

.hero__card {
  background: linear-gradient(145deg, rgba(15, 92, 203, 0.2), rgba(10, 16, 37, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero__card h3 {
  margin: 8px 0 12px;
}

.hero__card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.hero__card li::before {
  content: "•";
  color: var(--blue-light);
  margin-right: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(214, 178, 94, 0.12);
  color: var(--gold);
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.cta-note {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.cta-note span {
  color: var(--muted);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: 1.2fr 1fr;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  color: var(--gold);
  margin: 0;
}

h2 {
  margin: 6px 0 12px;
  letter-spacing: -0.4px;
}

.body {
  color: var(--muted);
  max-width: 640px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
  color: var(--muted);
}

.card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.card--highlight {
  background: linear-gradient(135deg, rgba(15, 92, 203, 0.16), rgba(7, 12, 26, 0.9));
}

.list {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.metric {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.metric span {
  color: var(--muted);
}

.metric small {
  color: var(--muted);
}

.step {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.step__id {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(214, 178, 94, 0.24), rgba(15, 92, 203, 0.4));
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.panel--form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: span 2;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--blue);
}

.form__note {
  color: var(--muted);
  font-size: 13px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.advantage-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(10, 16, 37, 0.4);
  border: 2px solid rgba(46, 139, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.advantage-card:hover {
  background: rgba(15, 92, 203, 0.15);
  border-color: var(--blue-light);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 139, 255, 0.15);
}

.advantage-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: #d6b25e !important;
  font-weight: 700;
}

.advantage-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 24px;
  border-radius: 12px;
  background: rgba(15, 21, 48, 0.5);
  border: 1px solid rgba(46, 139, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(15, 92, 203, 0.12);
  border-color: rgba(46, 139, 255, 0.4);
  transform: translateX(4px);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--blue-light);
  font-weight: 700;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-size: 15px;
}

.footer {
  padding: 32px 64px 48px;
  background: #060915;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  gap: 12px;
}

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

.footer__brand img {
  width: 48px;
}

.footer__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer__legal {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.footer__social {
  display: flex;
  gap: 32px;
  align-items: center;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: var(--text);
}

.footer__social a:hover {
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  border-color: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 139, 255, 0.3);
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  padding: 14px 18px;
  background: rgba(15, 92, 203, 0.9);
  color: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .nav {
    padding: 12px 24px;
  }

  .nav__links {
    gap: 10px;
    flex-wrap: wrap;
  }

  main {
    padding: 32px 24px 72px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid.two {
    grid-template-columns: 1fr;
  }

  .panel--form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 10px 12px;
    flex-direction: column;
    gap: 10px;
  }

  .nav__left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav__brand {
    flex: 1;
  }

  .nav__brand img {
    width: 60px;
  }

  .nav__title {
    font-size: 13px;
  }

  .nav__title small {
    font-size: 10px;
  }

  .nav__links {
    display: none;
  }

  .nav__mobile-buttons {
    display: flex !important;
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .btn--mobile {
    flex: 1;
    min-width: 120px;
    padding: 10px 14px;
    font-size: 13px;
    font-size: 13px;
    text-align: center;
  }

  .btn--telegram {
    min-width: 140px;
  }

  .btn--telegram svg {
    width: 16px;
    height: 16px;
  }

  .btn--ghost {
    display: none;
  }

  main {
    padding: 24px 16px 48px;
    gap: 48px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .footer {
    padding: 24px 16px 32px;
  }

  .footer__social {
    justify-content: center;
  }

  .panel {
    padding: 20px 16px;
  }

  .panel--form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact {
    font-size: 13px;
    flex-direction: column;
    gap: 6px;
  }

  .contact span {
    word-break: break-word;
  }

  .form {
    gap: 14px;
    display: flex;
    flex-direction: column;
  }

  .field {
    width: 100%;
  }

  .field--full {
    grid-column: span 1;
  }

  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
  }

  .form__note {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 0;
  }

  .form button {
    width: 100%;
  }

  .eyebrow {
    font-size: 11px;
  }

  h2 {
    font-size: 22px;
  }

  .body {
    font-size: 14px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .advantage-card {
    padding: 20px;
    border-width: 2px;
  }

  .advantage-card h3 {
    font-size: 18px;
    color: #d6b25e !important;
  }

  .advantage-card p {
    font-size: 14px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .faq-item {
    padding: 18px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }

  .testimonials-slideshow {
    max-width: 100%;
  }

  .testimonial-slide img {
    max-height: 500px;
  }

  .testimonial-nav {
    width: 44px;
    height: 44px;
  }

  .testimonial-nav svg {
    width: 20px;
    height: 20px;
  }
}

/* ================================================
   TESTIMONIALS SLIDESHOW
   ================================================ */

.testimonials-section {
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 64px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 20px;
}

.testimonials-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0;
}

.testimonials-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  background: linear-gradient(120deg, var(--white), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-slideshow {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-slide img {
  width: 100%;
  height: auto;
  max-height: 900px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.testimonial-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  background: transparent;
  border: none;
  color: transparent;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: none;
  z-index: 2;
  opacity: 0;
}

.testimonial-nav:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}

.testimonial-nav:active {
  background: transparent;
}

.testimonial-nav.prev {
  left: 0;
}

.testimonial-nav.next {
  right: 0;
}

.testimonial-nav svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

.testimonial-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 30px 0 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(154, 164, 192, 0.3);
  border: 2px solid rgba(154, 164, 192, 0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.dot:hover {
  background: rgba(214, 178, 94, 0.5);
  border-color: var(--gold);
  transform: scale(1.2);
}

.dot.active {
  background: linear-gradient(135deg, var(--gold), var(--blue));
  border-color: var(--gold);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(214, 178, 94, 0.4);
}

/* Smooth fade animation */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-slide.active {
  animation: fadeInSlide 0.6s ease-out;
}

/* Mobile Menu */
.nav__left {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__mobile-buttons {
  display: none !important;
}

@media (min-width: 769px) {
  .nav__mobile-buttons {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }
}

.btn--mobile {
  padding: 10px 16px;
  font-size: 14px;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 10, 25, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header span {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 4px;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.mobile-menu-link:hover {
  background: rgba(15, 92, 203, 0.2);
  border-color: var(--blue-light);
  transform: translateX(8px);
}

.mobile-menu-link--highlight {
  background: linear-gradient(120deg, var(--blue), var(--blue-light));
  border-color: var(--blue-light);
  box-shadow: 0 4px 16px rgba(46, 139, 255, 0.3);
}

.mobile-menu-link--highlight:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 6px 20px rgba(46, 139, 255, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav__left {
    gap: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav__links {
    display: none;
  }

  .nav__mobile-buttons {
    display: flex !important;
  }

  .testimonials-section {
    margin: 15px auto;
    padding: 0 20px;
  }

  .testimonials-header {
    margin-bottom: 15px;
  }

  .testimonials-header h2 {
    font-size: 28px;
  }
