* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'SF Compact Text', sans-serif;
}

body {
  background: #003333;
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 20px;
}

.header {
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* иконка */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 10px;

  color: #00ff00;
  background: rgba(153, 255, 0, 0.08);

  transition: 0.2s ease;
  cursor: pointer;
}

.icon-btn:hover {
  background: rgba(153, 255, 0, 0.15);
}

.logo {
  color: #00ff00;
  font-weight: 600;
  font-size: 20px;
}

.hero {
  padding: 120px 0;
  width: 100%;
  background: rgba(153, 255, 0, 0.15);
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero h1 {
  font-size: 44px;
  line-height: 1.2;
}

.hero p {
  color: #aaa;
  margin: 20px 0;
}

.hero img {
  max-width: 280px;
  border-radius: 14px;
}

.btn {
  padding: 10px 18px;
  border-radius: 20px;
  border: 1px solid #00ff00;
  color: #fff;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn.primary {
  background: #00ff00;
  color: #003333;
  font-size: 18px;
}

.btn.big {
  padding: 14px 28px;
  font-size: 16px;
}

.btn:hover {
  opacity: 0.9;
}

/* BENEFITS>> */

.benefits {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
  letter-spacing: -0.5px;
}

/* сетка */
.benefits-grid {
  display: grid;
  gap: 20px;
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefits-grid.small {
  margin-top: 40px;
}

/* карточка */
.benefit {
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 255, 0, 0.08);
  opacity: 0;

  transition: 0.25s ease;
  pointer-events: none;
}


.benefit:hover::before {
  opacity: 1;
}

/* галочка */
.check {
  width: 28px;
  height: 28px;
  min-width: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00ff00 !important;
  font-weight: bold;

  text-shadow: 0 0 8px #00ff00;
}

/* текст */
.benefit h3 {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.benefit p {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* подзаголовок */
.benefits-subtitle {
  margin-top: 60px;
  font-size: 20px;
  color: #00ff00;
}

/* адаптив */
@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* <<BENEFITS */

/* ACCESS>> */

.access {
  padding: 40px 0;
}

.access .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.access-box {
  max-width: 900px;
  margin: 0 auto;

  padding: 24px 28px;
  border-radius: 14px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(153,255,0,0.15);

  transition: 0.25s ease;
}

.access-box:hover {
  border-color: rgba(153,255,0,0.35);
  box-shadow: 0 10px 30px rgba(0,255,0,0.08);
}

/* текст */
.access-box p {
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 12px;
}

/* акцент */
.access-box .accent {
  color: #00ff00;
  font-weight: 500;
  margin-top: 10px;
}

/* <<ACCESS REVEAL */


/* Возможности>> */

.feature-showcase {
  padding: 80px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* карточка */
.showcase-card {
  position: relative;

  padding: 28px;
  border-radius: 22px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
  overflow: hidden;
}

/* glow hover */
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0,255,0,0.05);

  opacity: 0;
  transition: 0.25s ease;

  pointer-events: none;
}

.showcase-card:hover::before {
  opacity: 1;
}

.showcase-card:hover {
  border-color: rgba(0,255,0,0.25);
}

/* icon */
.showcase-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: rgba(153,255,0,0.12);
  color: #00ff00;

  font-size: 22px;
  margin-bottom: 18px;

  box-shadow: 0 0 18px rgba(0,255,0,0.15);
}

/* title */
.showcase-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* text */
.showcase-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags span {
  padding: 8px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);

  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

/* mobile */
@media (max-width: 768px) {

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card {
    padding: 24px;
  }

  .showcase-card h3 {
    font-size: 20px;
  }

}

/* <<Возможности */

.features {
  padding: 80px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  position: relative;
  padding: 28px;
  border-radius: 18px;

  min-height: 320px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.icon {
  width: 48px;
  margin-bottom: 10px;
}

.how {
  padding: 80px 0;
}

.how-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.how img {
  max-width: 420px;
  border-radius: 12px;
}


/* >>PRICING */

.pricing .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* карточка */
.card {
  position: relative;
  padding: 26px;
  display: flex;
  border-radius: 16px;
  flex-direction: column;
  gap: 12px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.25s ease;
  cursor: pointer;
}

.cardhead {
  color: #00ff00;
  font-weight: 600;
}


/* активная карточка */
.card.active {
  border: 1px solid #00ff00;
  box-shadow: 0 0 25px rgba(0,255,0,0.25);
}

/* заголовок */
.card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

/* описание */
.card .desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

/* список */
.card ul {
  padding-left: 18px;
  margin-bottom: 16px;

  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}

.card::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;

  background: rgba(0,255,0,0.06);
  opacity: 0;

  transition: 0.25s ease;
  border-radius: 18px;
}

/* hover */
.card:hover::before {
  opacity: 1;
}


.card.active {
  border: 1px solid #00ff00;
  box-shadow: 0 0 30px rgba(0,255,0,0.25);
}


/* кнопка цены */
.price-btn {
  display: block;
  width: 100%;

  text-align: center;
  padding: 12px;

  border-radius: 12px;

  background: rgba(153,255,0,0.12);
  color: #99ff00;

  font-weight: 500;
  text-decoration: none;

  transition: 0.2s ease;
}

/* hover кнопки */
.price-btn:hover {
  background: #00ff00;
  color: #003333;

  box-shadow: 0 0 20px rgba(0,255,0,0.5);
}

/* mobile */

@media (max-width: 900px) {
  .pricing .grid {
    grid-template-columns: 1fr;
	gap: 24px;
  }
}

.pricing {
  padding: 40px 0;
  text-align: center;
}

/* PRICING<< */

.highlight {
  border: 1px solid #00ff00;
}

.cta {
  padding: 40px 0;
  text-align: center;
  margin-bottom: 20px;
}

.cta h2 {
  margin-bottom: 40px;
}

/* footer */

.footer {
  width: 100%;
  background: rgba(153, 255, 0, 0.15);
  padding: 40px 0;
  margin-top: 20px;
}

.footer .container {
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* footer layout */

.footer .container {
  display: flex;
  flex-direction: column;
}

/* верх */

.footer-top {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 18px;
}

/* низ */

.footer-bottom {
  text-align: center;

  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

/* telegram */

.telegram-link {
  display: flex;
  align-items: center;
  gap: 8px;

  color: rgba(255,255,255,0.8);
  text-decoration: none;

  transition: 0.2s ease;
}

.telegram-link img {
  width: 18px;
  height: 18px;

  filter:
    brightness(0)
    saturate(100%)
    invert(79%)
    sepia(93%)
    saturate(749%)
    hue-rotate(35deg)
    brightness(108%)
    contrast(103%);
}

.telegram-link:hover {
  color: #00ff00;
}


/* Reveal animations */
.reveal {
  opacity: 1;
}

.reveal.visible {
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-inner,
  .how-inner {
    flex-direction: column;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 30px;
  }
}


/* logo rotation */

.motion {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  background: #003333;
}

.billing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab {
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
}

.tab.active {
  background: rgba(153,255,0,0.15);
  color: #99ff00;
}



/* pricing switch */

.pricing-wrapper {
  position: relative;
}

/* скрытые группы */

.pricing-group {
  display: none;

  opacity: 0;
  transition: opacity 0.35s ease;
}

/* активная */

.pricing-group.active {
  display: block;
  opacity: 1;

  animation: pricingFade 0.35s ease;
}

/* fade */

@keyframes pricingFade {

  from {
    opacity: 0;
    filter: blur(4px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }

}