@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: #1f2937;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.section-subtitle {
  font-size: 18px;
  text-align: center;
  color: #6b7280;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background-color: #2563eb;
  color: white;
}
.btn--primary:hover {
  background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn--secondary {
  background-color: #f9fafb;
  color: #1f2937;
}
.btn--secondary:hover {
  background-color: #e5e7eb;
}
.btn--outline {
  background-color: transparent;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.btn--outline:hover {
  background-color: #2563eb;
  color: white;
}
@media (max-width: 768px) {
  .btn--outline {
    padding: 16px;
  }
}
.btn--large {
  padding: 24px 48px;
  font-size: 18px;
}
.btn--messenger {
  background-color: #f9fafb;
  color: #1f2937;
}
.btn--messenger.telegram:hover {
  background-color: #0088cc;
  color: white;
}
.btn--messenger.whatsapp:hover {
  background-color: #25d366;
  color: white;
}
.btn--messenger.vk:hover {
  background-color: #0077ff;
  color: white;
}

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  z-index: 101;
  transition: width 0.1s ease;
}

.sticky-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sticky-widget.visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768px) {
  .sticky-widget {
    bottom: 16px;
    right: 16px;
    z-index: 999;
  }
}
.sticky-widget__btn {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb 0%, #10b981 100%);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  overflow: visible;
}
.sticky-widget__btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  opacity: 0.6;
  animation: pulse 2s infinite;
  z-index: -1;
}
.sticky-widget__btn::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 50%;
  border-radius: 9999px 9999px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  pointer-events: none;
}
.sticky-widget__btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.sticky-widget__btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5);
}
.sticky-widget__btn:hover i {
  transform: scale(1.1);
}
.sticky-widget__btn:active {
  transform: scale(0.95);
}
.sticky-widget__btn span {
  display: none;
}
.sticky-widget__form {
  position: absolute;
  bottom: 84px;
  right: 0;
  width: 360px;
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: none;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
}
@media (max-width: 768px) {
  .sticky-widget__form {
    bottom: 0;
    right: -8px;
    z-index: 999;
  }
}
.sticky-widget__form.active {
  display: block;
  animation: slideUpBounce 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.sticky-widget__form h3 {
  margin: 0;
  padding: 32px 32px 24px;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media (max-width: 768px) {
  .sticky-widget__form h3 {
    padding: 16px;
  }
}
.sticky-widget__form .sticky-widget__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.3s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  z-index: 1;
}
.sticky-widget__form .sticky-widget__close:hover {
  color: #1f2937;
  background: rgba(0, 0, 0, 0.05);
  transform: rotate(90deg);
}
.sticky-widget__form .sticky-widget__close:active {
  transform: rotate(90deg) scale(0.9);
}
.sticky-widget__form .sticky-widget__close i {
  font-size: 20px;
}
.sticky-widget__form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
}
@media (max-width: 768px) {
  .sticky-widget__form form {
    padding: 16px;
    gap: 8px;
  }
}
.sticky-widget__form form input,
.sticky-widget__form form textarea {
  padding: 16px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}
.sticky-widget__form form input::placeholder,
.sticky-widget__form form textarea::placeholder {
  color: #9ca3af;
}
.sticky-widget__form form input:focus,
.sticky-widget__form form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}
.sticky-widget__form form input:hover:not(:focus),
.sticky-widget__form form textarea:hover:not(:focus) {
  border-color: #c8ccd5;
}
.sticky-widget__form form textarea {
  resize: vertical;
  min-height: 80px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.sticky-widget__form form button {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  margin-top: 8px;
}
.sticky-widget__form form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
.sticky-widget__form form button:active {
  transform: translateY(0);
}
.sticky-widget__content .modal__form {
  position: static;
  width: 100%;
  max-width: 600px;
  padding: 0;
  box-shadow: none;
  border: none;
  display: block;
}
.sticky-widget__content .modal__form h3 {
  margin-bottom: 24px;
  padding: 0;
  background: transparent;
  border: none;
}
.sticky-widget__content .modal__form form {
  padding: 0;
}
.sticky-widget__messengers {
  margin: 0;
  padding: 24px 32px 32px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .sticky-widget__messengers {
    padding: 16px;
    gap: 8px;
  }
}
.sticky-widget__messengers::before {
  content: "Или напишите напрямую:";
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
  font-weight: 500;
}
.sticky-widget__messengers .messenger-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.3s ease;
  background: white;
  border: 2px solid #e5e7eb;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.sticky-widget__messengers .messenger-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: currentColor;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}
.sticky-widget__messengers .messenger-link i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.sticky-widget__messengers .messenger-link:hover {
  transform: translateX(4px);
  border-color: currentColor;
}
.sticky-widget__messengers .messenger-link:hover::before {
  transform: scaleY(1);
}
.sticky-widget__messengers .messenger-link:hover i {
  transform: scale(1.2);
}
.sticky-widget__messengers .messenger-link.telegram {
  color: #0088cc;
}
.sticky-widget__messengers .messenger-link.telegram:hover {
  background: rgba(0, 136, 204, 0.05);
  color: #0088cc;
}
.sticky-widget__messengers .messenger-link.whatsapp {
  color: #25d366;
}
.sticky-widget__messengers .messenger-link.whatsapp:hover {
  background: rgba(37, 211, 102, 0.05);
  color: #25d366;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}
@keyframes slideUpBounce {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  50% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid #e5e7eb;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
@media (max-width: 768px) {
  .nav {
    padding: 16px;
  }
}
.nav__logo {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}
.nav__logo img {
  max-height: 90px;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .nav__logo img {
    max-height: 50px;
  }
}
.nav__menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
    gap: 0;
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    height: 100vh;
  }
  .nav__menu.active {
    transform: translateX(0);
  }
  .nav__menu li {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
  }
  .nav__menu li a {
    display: block;
    padding: 24px 16px;
    font-size: 18px;
    width: 100%;
  }
}
.nav__menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav__menu a:hover {
  color: #2563eb;
}
.nav__burger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1f2937;
  padding: 4px;
  z-index: 1000;
  position: relative;
  transition: color 0.3s ease;
}
@media (max-width: 1024px) {
  .nav__burger {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.nav__burger:hover {
  color: #2563eb;
}
.nav__burger.active i::before {
  content: "\eb99";
}
.nav__overlay {
  display: none;
}
@media (max-width: 1024px) {
  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav__overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.hero {
  padding: 96px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
}
.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
  color: #1f2937;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 30px;
  }
}
.hero__subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.5;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero__mini-quiz {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
}
.hero__mini-quiz-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.hero__mini-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__mini-quiz-hint {
  margin-top: 16px;
  color: #10b981;
  font-weight: 500;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .hero__media {
    order: -1;
  }
}

.mini-quiz-option {
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
}
.mini-quiz-option:hover {
  border-color: #2563eb;
  background: #f0f9ff;
}
.mini-quiz-option.active {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

.stat-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  text-align: center;
}
.stat-card__number {
  font-size: 36px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}
.stat-card__label {
  font-size: 14px;
  color: #6b7280;
}

.video-preview {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.video-preview__placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2563eb, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-preview__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.video-preview:hover .video-preview__overlay {
  background: rgba(0, 0, 0, 0.5);
}
.video-preview__play {
  width: 80px;
  height: 80px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 30px;
  color: #2563eb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.video-preview__play:hover {
  transform: scale(1.1);
  background: white;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal.active {
  display: flex;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 1;
}
.modal__content--large {
  max-width: 1110px;
}
@media screen and (max-width: 768px) {
  .modal__content {
    padding: 10px;
  }
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.3s ease;
}
.modal__close:hover {
  color: #1f2937;
}
.modal__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__form h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .modal__form h3 {
    text-align: start;
    padding-right: 35px;
  }
}
.modal__form-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.5;
}
.modal__form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.modal__form form input,
.modal__form form textarea {
  padding: 16px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
}
.modal__form form input::placeholder,
.modal__form form textarea::placeholder {
  color: #9ca3af;
}
.modal__form form input:focus,
.modal__form form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background: white;
}
.modal__form form input:hover:not(:focus),
.modal__form form textarea:hover:not(:focus) {
  border-color: #c8ccd5;
}
.modal__form form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.modal__form form .btn--large {
  padding: 24px 32px;
  font-size: 18px;
}

.pricing-order-header {
  margin-bottom: 32px;
}
.pricing-order-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 24px;
  text-align: center;
}
@media (max-width: 768px) {
  .pricing-order-header h3 {
    text-align: start;
    padding-right: 35px;
  }
}

.pricing-order-selected {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 12px;
  padding: 32px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .pricing-order-selected {
    padding: 16px;
  }
}

.pricing-order-info {
  text-align: center;
}
.pricing-order-info__name {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 16px;
}
.pricing-order-info__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.pricing-order-info__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.price-amount {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
}

.order-detail-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px;
  background: white;
  border-radius: 8px;
  color: #1f2937;
  font-size: 14px;
}
@media (max-width: 768px) {
  .order-detail-item {
    justify-content: flex-start;
  }
}
.order-detail-item i {
  font-size: 18px;
  color: #2563eb;
}

.form-agreement {
  margin: 16px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}
.checkbox-label input[type=checkbox] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #2563eb;
  flex-shrink: 0;
}
.checkbox-label span {
  flex: 1;
}
.checkbox-label:hover {
  color: #1f2937;
}

.quiz-section {
  padding: 96px 0;
  background: #f9fafb;
}

.quiz {
  max-width: 800px;
  margin: 0 auto;
}
.quiz__progress {
  position: relative;
  height: 8px;
  background: #e5e7eb;
  border-radius: 9999px;
  margin-bottom: 32px;
  overflow: hidden;
}
.quiz__progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #10b981);
  border-radius: 9999px;
  transition: width 0.3s ease;
  width: 0%;
}
.quiz__progress-text {
  position: absolute;
  top: -30px;
  right: 0;
  font-weight: 600;
  color: #6b7280;
}
.quiz__steps {
  position: relative;
  min-height: 400px;
}
.quiz__navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.quiz-step {
  display: none;
  animation: fadeIn 0.3s ease;
}
.quiz-step.active {
  display: block;
}
.quiz-step__question {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}
.quiz-step__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .quiz-step__options {
    grid-template-columns: 1fr;
  }
}

.quiz-option {
  padding: 24px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  font-size: 16px;
}
.quiz-option i {
  font-size: 20px;
  color: #2563eb;
}
.quiz-option:hover {
  border-color: #2563eb;
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.quiz-option.selected {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

.quiz-result {
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.quiz-result__score {
  margin-bottom: 32px;
}
.quiz-result__status {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  padding: 8px 24px;
  border-radius: 8px;
  display: inline-block;
}
.quiz-result__status--excellent {
  background: #d1fae5;
  color: #065f46;
}
.quiz-result__status--good {
  background: #dbeafe;
  color: #1e40af;
}
.quiz-result__status--warning {
  background: #fef3c7;
  color: #92400e;
}
.quiz-result__status--critical {
  background: #fee2e2;
  color: #991b1b;
}
.quiz-result__diagnostics {
  background: white;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  text-align: left;
}
.quiz-result__diagnostics h4 {
  margin-bottom: 24px;
  color: #2563eb;
  text-align: center;
}
.quiz-result__insights {
  background: white;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  text-align: left;
}
.quiz-result__form {
  background: white;
  padding: 32px;
  border-radius: 12px;
}
.quiz-result__form h4 {
  margin-bottom: 16px;
}
.quiz-result__form-note {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 24px;
  text-align: center;
}
.quiz-result__form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quiz-result__form form input {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
}
.quiz-result__form form input:focus {
  outline: none;
  border-color: #2563eb;
}

.diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
@media (max-width: 768px) {
  .diagnostics-grid {
    grid-template-columns: 1fr;
  }
}

.diagnostic-item {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}
.diagnostic-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.diagnostic-item__header h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}
.diagnostic-item__score {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.diagnostic-item__score .score-current {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
}
.diagnostic-item__score .score-separator {
  color: #6b7280;
}
.diagnostic-item__score .score-max {
  color: #6b7280;
  font-size: 16px;
}
.diagnostic-item__progress {
  margin-bottom: 16px;
}
.diagnostic-item__progress-bar {
  height: 8px;
  background: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}
.diagnostic-item__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #10b981);
  border-radius: 9999px;
  transition: width 0.5s ease;
}
.diagnostic-item__problem {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 8px;
}
.diagnostic-item__problem i {
  color: #ef4444;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.diagnostic-item__problem span {
  color: #1f2937;
  font-size: 14px;
  line-height: 1.5;
}
.diagnostic-item__recommendation {
  padding: 16px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7280;
}
.diagnostic-item__recommendation strong {
  color: #1f2937;
  display: block;
  margin-bottom: 4px;
}

.insight-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.insight-card--critical {
  background: #fee2e2;
  border-left: 4px solid #ef4444;
}
.insight-card--warning {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
}
.insight-card--info {
  background: #dbeafe;
  border-left: 4px solid #2563eb;
}
.insight-card--success {
  background: #d1fae5;
  border-left: 4px solid #10b981;
}
.insight-card__icon {
  font-size: 24px;
  flex-shrink: 0;
}
.insight-card__icon i {
  display: block;
}
.insight-card__content {
  flex: 1;
}
.insight-card__content h4 {
  margin-bottom: 8px;
  color: #1f2937;
  font-size: 18px;
}
.insight-card__content p {
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.insights-priorities h4 {
  margin-bottom: 16px;
  color: #2563eb;
}
.insights-priorities ol {
  list-style: decimal;
  padding-left: 32px;
  margin: 0;
}
.insights-priorities ol li {
  padding: 8px 0;
  color: #1f2937;
  line-height: 1.5;
}
.insights-priorities ol li::marker {
  color: #2563eb;
  font-weight: 600;
}

.score-circle {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
}
.score-circle__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.score-circle__bg {
  fill: none;
  stroke: #e5e7eb;
  stroke-width: 10;
}
.score-circle__progress {
  fill: none;
  stroke: #2563eb;
  stroke-width: 10;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 1s ease;
  stroke-linecap: round;
}
.score-circle__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  font-weight: 700;
  color: #2563eb;
}
.score-circle__text span:last-child {
  font-size: 20px;
  color: #6b7280;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cases-section {
  padding: 96px 0;
}

.cases-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 64px;
  justify-content: center;
}
.cases-filters .filter-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .cases-filters .filter-group {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
}
.cases-filters .filter-group label {
  font-weight: 500;
  color: #6b7280;
}

.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.filter-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.case-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.case-card__image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2563eb, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
}
.case-card__content {
  padding: 24px;
}
.case-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.case-card__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.case-card__stats .stat {
  display: flex;
  flex-direction: column;
}
.case-card__stats .stat__value {
  font-size: 20px;
  font-weight: 700;
  color: #10b981;
}
.case-card__stats .stat__label {
  font-size: 12px;
  color: #6b7280;
}
.case-card__meta {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 16px;
}
.case-card__btn {
  width: 100%;
  margin-top: 16px;
}

.case-detail__header {
  margin-bottom: 32px;
}
.case-detail__header h2 {
  margin-bottom: 16px;
  color: #2563eb;
}
.case-detail__header p {
  color: #6b7280;
  line-height: 1.5;
}
.case-detail__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .case-detail__stats {
    grid-template-columns: 1fr;
  }
}
.case-detail__chart {
  margin-bottom: 32px;
  padding: 32px;
  background: #f9fafb;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .case-detail__chart {
    padding: 10px;
  }
}
.case-detail__chart h3 {
  margin-bottom: 48px;
  color: #1f2937;
  font-size: 20px;
}
.case-detail__description {
  line-height: 1.5;
  color: #6b7280;
}
.case-detail__description h3 {
  margin-bottom: 24px;
  color: #2563eb;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.case-detail__description h3::before {
  content: "";
  width: 4px;
  height: 24px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border-radius: 4px;
}

.case-chart-container {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .case-chart-container {
    gap: 10px;
  }
}

.case-chart__y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  padding-right: 16px;
  font-size: 12px;
  color: #6b7280;
  text-align: right;
  min-width: 50px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .case-chart__y-axis {
    display: none;
  }
}

.case-chart__content {
  flex: 1;
}
.case-chart__content .chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 300px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .case-chart__content .chart-bars {
    gap: 5px;
  }
}
.case-chart__content .chart-bar-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  height: 100%;
  justify-content: flex-end;
}
.case-chart__content .chart-bar {
  width: 100%;
  background: linear-gradient(to top, #2563eb, #10b981);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.case-chart__content .chart-bar:hover {
  opacity: 0.9;
  transform: scaleY(1.05);
}
.case-chart__content .chart-bar__label {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-top: 4px;
  font-weight: 500;
}
.case-chart__content .chart-bar__value {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.case-tasks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-task-item {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.case-task-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
  border-left-color: #10b981;
}
.case-task-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 24px;
  transition: all 0.3s ease;
}
.case-task-item:hover .case-task-item__icon {
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: white;
  transform: scale(1.1);
}
.case-task-item__content {
  flex: 1;
}
.case-task-item__content h4 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.25;
}
.case-task-item__content p {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.calculator-section {
  padding: 96px 0;
  background: #f9fafb;
}

.calculator {
  max-width: 1000px;
  margin: 0 auto;
}
.calculator__inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .calculator__inputs {
    grid-template-columns: 1fr;
  }
}
.calculator__results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .calculator__results {
    grid-template-columns: 1fr;
  }
}
.calculator__cta {
  text-align: center;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1f2937;
}
.input-group input[type=number] {
  width: 100%;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 8px;
}
.input-group input[type=number]:focus {
  outline: none;
  border-color: #2563eb;
}
.input-group input[type=range] {
  width: 100%;
  height: 6px;
  border-radius: 9999px;
  background: #e5e7eb;
  outline: none;
}
.input-group input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: #2563eb;
  cursor: pointer;
}
.input-group input[type=range]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 9999px;
  background: #2563eb;
  cursor: pointer;
  border: none;
}

.result-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.result-card--highlight {
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: white;
}
.result-card--highlight .result-card__icon,
.result-card--highlight .result-card__value,
.result-card--highlight .result-card__label {
  color: white;
}
.result-card__icon {
  font-size: 30px;
  color: #2563eb;
  margin-bottom: 16px;
}
.result-card__value {
  font-size: 30px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}
.result-card__label {
  font-size: 14px;
  color: #6b7280;
}

.benefits-section {
  padding: 96px 0;
  background: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.benefit-card {
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}
@media screen and (max-width: 768px) {
  .benefit-card {
    padding: 24px;
  }
}
.benefit-card__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}
.benefit-card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}
.benefit-card__description {
  color: #6b7280;
  line-height: 1.6;
}

.benefits-cta {
  margin-top: 64px;
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}
@media screen and (max-width: 768px) {
  .benefits-cta {
    padding: 24px;
  }
}
.benefits-cta__text {
  font-size: 18px;
  color: #1f2937;
  line-height: 1.6;
}
.benefits-cta__text strong {
  color: #2563eb;
  font-weight: 700;
}

.process-section {
  padding: 96px 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 64px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}
.timeline__item {
  position: relative;
  margin-bottom: 64px;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 60px;
  height: 60px;
  background: white;
  border: 3px solid #2563eb;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.timeline__number {
  position: absolute;
  font-weight: 700;
  color: #2563eb;
  font-size: 18px;
}
.timeline__icon {
  opacity: 0;
  font-size: 20px;
  color: #2563eb;
  transition: opacity 0.3s ease;
}
.timeline__item:hover .timeline__icon {
  opacity: 1;
}
.timeline__item:hover .timeline__number {
  opacity: 0;
}
.timeline__content {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-left: 32px;
  transition: all 0.3s ease;
}
.timeline__content:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}
@media (max-width: 768px) {
  .timeline__content {
    margin-left: 16px;
    padding: 16px;
  }
}
.timeline__content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2563eb;
}
.timeline__content p {
  color: #6b7280;
  margin-bottom: 16px;
}
.timeline__examples {
  list-style: none;
  margin-top: 16px;
}
.timeline__examples li {
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
  color: #6b7280;
  font-size: 14px;
}
.timeline__examples li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2563eb;
}

.team-section {
  padding: 96px 0;
  background: #f9fafb;
}

.expert-card {
  background: white;
  border-radius: 16px;
  padding: clamp(16px, 2vw, 64px);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .expert-card {
    grid-template-columns: 1fr;
  }
}
.expert-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 120px;
}
.expert-card__name {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #2563eb;
}
.expert-card__quote {
  font-size: 18px;
  line-height: 1.5;
  color: #6b7280;
  margin-bottom: 32px;
  font-style: italic;
}
.expert-card__stats {
  display: flex;
  gap: 32px;
}

.expert-stat {
  text-align: center;
}
.expert-stat__number {
  font-size: 30px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 4px;
}
.expert-stat__label {
  font-size: 14px;
  color: #6b7280;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-member {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.team-member__photo-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}
.team-member__name {
  font-weight: 600;
  margin-bottom: 4px;
}
.team-member__role {
  font-size: 14px;
  color: #6b7280;
}

.reporting-section {
  padding: 96px 0;
}

.reporting-demo {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.reporting-header {
  padding: 24px 32px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}
.reporting-header__period {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .reporting-header__period {
    flex-direction: column;
    align-items: flex-start;
  }
}
.reporting-header__label {
  font-weight: 500;
  color: #6b7280;
}
.reporting-header__date {
  font-weight: 600;
  color: #1f2937;
}

.reporting-tabs {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}
@media (max-width: 768px) {
  .reporting-tabs {
    flex-direction: column;
  }
}
.reporting-tabs .reporting-tab {
  flex: 1;
  padding: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  color: #6b7280;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.reporting-tabs .reporting-tab:hover {
  color: #2563eb;
  background: white;
}
.reporting-tabs .reporting-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  background: white;
}
.reporting-tabs .reporting-tab i {
  margin-right: 8px;
}

.reporting-content {
  padding: 32px;
}
@media (max-width: 768px) {
  .reporting-content {
    padding: 16px;
  }
}

.reporting-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.reporting-panel.active {
  display: block;
}
.reporting-panel h3 {
  margin-bottom: 48px;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .report-stats {
    grid-template-columns: 1fr;
  }
}

.report-stat {
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
}
.report-stat__label {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}
.report-stat__value {
  font-size: 24px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 4px;
}
.report-stat__change {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}
.report-stat__change.positive {
  color: #10b981;
}
.report-stat__change.negative {
  color: #ef4444;
}
.report-stat__period {
  font-size: 12px;
  color: #9ca3af;
}

.positions-list,
.tasks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.position-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
}
.position-item__query {
  flex: 1;
}
.position-item__position {
  font-weight: 700;
  color: #2563eb;
  margin: 0 24px;
}
.position-item__change.positive {
  color: #10b981;
}
.position-item__change.negative {
  color: #ef4444;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.task-item:hover {
  background: #f3f4f6;
}
@media (max-width: 768px) {
  .task-item {
    margin-bottom: 0;
  }
}
.task-item i {
  color: #10b981;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.task-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.task-item__title {
  font-weight: 600;
  color: #1f2937;
  font-size: 16px;
}
.task-item__details {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

.traffic-chart__container {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.traffic-chart__y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  padding-right: 16px;
  font-size: 12px;
  color: #6b7280;
  text-align: right;
  min-width: 50px;
}
@media (max-width: 768px) {
  .traffic-chart__y-axis {
    display: none;
  }
}
.traffic-chart__content {
  flex: 1;
}
.traffic-chart__summary {
  display: flex;
  gap: 32px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 12px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .traffic-chart__summary {
    flex-direction: column;
    gap: 16px;
  }
}

.traffic-summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.traffic-summary-item__label {
  font-size: 14px;
  color: #6b7280;
}
.traffic-summary-item__value {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}
.traffic-summary-item__value.positive {
  color: #10b981;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  height: 300px;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .chart-bars {
    gap: 5px;
  }
}

.chart-bar-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  height: 100%;
  justify-content: flex-end;
}

.chart-bar {
  width: 100%;
  background: linear-gradient(to top, #2563eb, #10b981);
  border-radius: 4px 4px 0 0;
  min-height: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.chart-bar:hover {
  opacity: 0.9;
  transform: scaleY(1.05);
}

.chart-bar__label {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-top: 4px;
  font-weight: 500;
}

.chart-bar__value {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.reviews-section {
  padding: 96px 0;
  background: #f9fafb;
}

.reviews-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .reviews-tabs {
    flex-direction: column;
  }
}
.reviews-tabs .reviews-tab {
  padding: 16px 32px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}
.reviews-tabs .reviews-tab:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.reviews-tabs .reviews-tab.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.reviews-content {
  position: relative;
  min-height: 400px;
}

.reviews-panel {
  display: none;
  animation: fadeIn 0.3s ease;
}
.reviews-panel.active {
  display: block;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.review-card__logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.review-card__author {
  flex: 1;
}
.review-card__author-name {
  font-weight: 600;
  margin-bottom: 4px;
}
.review-card__author-role {
  font-size: 14px;
  color: #6b7280;
}
.review-card__text {
  color: #6b7280;
  line-height: 1.5;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.screenshot-item .screenshot-placeholder {
  aspect-ratio: 16/9;
  background: white;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.screenshot-item .screenshot-placeholder i {
  font-size: 36px;
  margin-bottom: 16px;
}

.video-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.video-review-item .video-review-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-review-item .video-review-placeholder:hover {
  transform: scale(1.02);
}
.video-review-item .video-review-placeholder i {
  font-size: 48px;
  margin-bottom: 16px;
}

.reviews-cta {
  text-align: center;
  margin-top: 64px;
}

.faq-section {
  padding: 96px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.faq-item__question {
  width: 100%;
  padding: 24px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}
.faq-item__question:hover {
  background: #f9fafb;
}
.faq-item__question i {
  transition: transform 0.3s ease;
  color: #2563eb;
}
.faq-item.active .faq-item__question i {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item__answer p {
  padding: 0 24px 24px;
  color: #6b7280;
  line-height: 1.5;
}
.faq-item.active .faq-item__answer {
  max-height: 500px;
}

.blog-section {
  padding: 96px 0;
  background: #f9fafb;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.blog-card__image {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #2563eb, #10b981);
}
.blog-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
}
.blog-card__type {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #2563eb;
}
.blog-card__content {
  padding: 24px;
}
.blog-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.blog-card__excerpt {
  color: #6b7280;
  margin-bottom: 16px;
  font-size: 14px;
}
.blog-card__link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.blog-card__link:hover {
  color: #1e40af;
}

.blog-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 768px) {
  .blog-cta {
    flex-direction: column;
  }
}

.newsletter-form {
  flex: 1;
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.newsletter-form h3 {
  margin-bottom: 16px;
}
.newsletter-form form {
  display: flex;
  gap: 16px;
}
@media (max-width: 640px) {
  .newsletter-form form {
    flex-direction: column;
  }
}
.newsletter-form form input {
  flex: 1;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}
.newsletter-form form input:focus {
  outline: none;
  border-color: #2563eb;
}

.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: white;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.cta-content__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}
@media (max-width: 768px) {
  .cta-content__title {
    font-size: 30px;
  }
}
.cta-content__subtitle {
  font-size: 18px;
  margin-bottom: 64px;
  opacity: 0.9;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.cta-form input {
  padding: 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}
.cta-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.cta-messengers {
  margin-bottom: 24px;
}
.cta-messengers p {
  margin-bottom: 16px;
  opacity: 0.9;
}

.messenger-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note {
  font-size: 14px;
  opacity: 0.8;
}

.footer {
  background: #111827;
  color: white;
  padding: 64px 0 32px;
}
.footer__logo {
  border-radius: 10px;
  background-color: #edeced;
  padding: 5px 5px 0;
  height: fit-content;
  width: fit-content;
  display: block;
  margin-bottom: 10px;
}
.footer__logo img {
  max-height: 90px;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    max-height: 70px;
  }
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr;
  }
}
.footer__content h4 {
  margin-bottom: 16px;
  color: white;
}
.footer__content ul {
  list-style: none;
}
.footer__content ul li {
  margin-bottom: 8px;
}
.footer__content ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__content ul li a:hover {
  color: white;
}

.footer__bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
}
.exit-popup.active {
  display: flex;
}
.exit-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}
.exit-popup__content {
  position: relative;
  background: white;
  border-radius: 16px;
  padding: 64px;
  max-width: 500px;
  width: 90%;
  z-index: 1;
  text-align: center;
}
.exit-popup__content h3 {
  margin-bottom: 16px;
}
.exit-popup__content p {
  color: #6b7280;
  margin-bottom: 32px;
}
.exit-popup__content .btn {
  margin: 0 8px;
}
.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
}

.page-header {
  margin-bottom: 64px;
  text-align: center;
}
.page-header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.page-header__back:hover {
  color: #1e40af;
  transform: translateX(-4px);
}
.page-header__back i {
  font-size: 18px;
}
.page-header__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}
@media (max-width: 768px) {
  .page-header__title {
    font-size: 36px;
  }
}
.page-header__subtitle {
  font-size: 18px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
}

.reviews-page {
  padding: 96px 0;
  min-height: 70vh;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card--full {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.review-card--full .review-card__header {
  margin-bottom: 16px;
}
.review-card--full .review-card__text {
  flex: 1;
  margin-bottom: 16px;
}
.review-card--full .review-card__rating {
  color: #f59e0b;
  font-size: 18px;
  margin-left: auto;
}
.review-card--full .review-card__date {
  font-size: 14px;
  color: #9ca3af;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.blog-page {
  padding: 96px 0;
  min-height: 70vh;
}

.blog-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.blog-filter-btn {
  padding: 16px 32px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-weight: 500;
  color: #6b7280;
  transition: all 0.3s ease;
}
.blog-filter-btn:hover {
  border-color: #2563eb;
  color: #2563eb;
}
.blog-filter-btn.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

.blog-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .blog-grid-full {
    grid-template-columns: 1fr;
  }
}

.blog-card--full {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card--full .blog-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card--full .blog-card__meta {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  font-size: 12px;
  color: #9ca3af;
}
.blog-card--full .blog-card__date,
.blog-card--full .blog-card__read-time {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-card--full .blog-card__date::before,
.blog-card--full .blog-card__read-time::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: #9ca3af;
}
.blog-card--full .blog-card__title {
  margin-bottom: 16px;
}
.blog-card--full .blog-card__excerpt {
  flex: 1;
  margin-bottom: 16px;
}
.blog-card--full .blog-card__image-placeholder--article {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}
.blog-card--full .blog-card__image-placeholder--checklist {
  background: linear-gradient(135deg, #10b981, #059669);
}
.blog-card--full .blog-card__image-placeholder--video {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.newsletter-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.newsletter-form--full {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 64px;
  border-radius: 16px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.newsletter-form--full h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}
.newsletter-form--full p {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
}
.newsletter-form--full form {
  display: flex;
  gap: 16px;
}
@media (max-width: 640px) {
  .newsletter-form--full form {
    flex-direction: column;
  }
}
.newsletter-form--full form input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
}
.newsletter-form--full form input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.newsletter-form--full form button {
  white-space: nowrap;
}

.article-page {
  padding: 96px 0;
  min-height: 70vh;
}
.article-page--video .article-body {
  max-width: 100%;
}

.article-header {
  max-width: 800px;
  margin: 0 0 64px;
}
.article-header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.article-header__back:hover {
  color: #1e40af;
  transform: translateX(-4px);
}
.article-header__back i {
  font-size: 18px;
}
.article-header__meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-header__category {
  padding: 4px 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
  color: #2563eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.article-header__date, .article-header__read-time {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-header__title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .article-header__title {
    font-size: 36px;
  }
}
.article-header__excerpt {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.5;
}

.article-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .article-content {
    grid-template-columns: 1fr;
  }
}

.article-body {
  max-width: 800px;
}
.article-body .article-intro {
  font-size: 18px;
  color: #1f2937;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 4px solid #2563eb;
  border-radius: 8px;
}
.article-body h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 64px 0 24px;
  color: #1f2937;
  line-height: 1.25;
}
.article-body h2:first-of-type {
  margin-top: 0;
}
.article-body h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: #1f2937;
}
.article-body p {
  font-size: 16px;
  line-height: 1.5;
  color: #1f2937;
  margin-bottom: 24px;
}
.article-body ul,
.article-body ol {
  margin-bottom: 24px;
  padding-left: 32px;
}
.article-body ul li,
.article-body ol li {
  margin-bottom: 8px;
  line-height: 1.5;
  color: #1f2937;
}
.article-body code {
  background: #f9fafb;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  color: #2563eb;
}
.article-body strong {
  font-weight: 600;
  color: #1f2937;
}

.article-conclusion {
  margin-top: 64px;
  padding: 32px;
  background: #f9fafb;
  border-radius: 12px;
  border-left: 4px solid #10b981;
}
.article-conclusion h2 {
  margin-top: 0;
  color: #10b981;
}

.article-cta {
  margin-top: 64px;
  padding: 64px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border-radius: 16px;
  text-align: center;
  color: white;
}
@media (max-width: 768px) {
  .article-cta {
    padding: 48px 16px;
  }
}
.article-cta h3 {
  color: white;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .article-cta h3 {
    margin-top: 0;
  }
}
.article-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}
.article-cta .btn {
  background: white;
  color: #2563eb;
}
.article-cta .btn:hover {
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 1024px) {
  .article-sidebar {
    order: -1;
  }
}
.article-sidebar__block {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}
.article-sidebar__block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #1f2937;
}

.article-share {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-share__btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #1f2937;
  background: #f9fafb;
  transition: all 0.3s ease;
  font-weight: 500;
}
.article-share__btn:hover {
  transform: translateX(4px);
  background: #e5e7eb;
}
.article-share__btn.telegram {
  color: #0088cc;
}
.article-share__btn.telegram:hover {
  background: rgba(0, 136, 204, 0.1);
}
.article-share__btn.vk {
  color: #0077ff;
}
.article-share__btn.vk:hover {
  background: rgba(0, 119, 255, 0.1);
}
.article-share__btn i {
  font-size: 20px;
}

.article-related {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article-related__item {
  padding: 16px;
  background: #f9fafb;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-related__item:hover {
  background: #e5e7eb;
  transform: translateX(4px);
}
.article-related__item h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}
.article-related__item span {
  font-size: 14px;
  color: #6b7280;
}

.video-container {
  margin-bottom: 64px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: #000;
  margin-bottom: 24px;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f9fafb;
  border-radius: 8px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}
.video-note i {
  color: #2563eb;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}
.pricing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 64px;
  background: white;
  padding: 4px;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-tabs .pricing-tab {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
  color: #6b7280;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
}
.pricing-tabs .pricing-tab:hover {
  color: #2563eb;
}
.pricing-tabs .pricing-tab.active {
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.pricing-tabs .pricing-tab.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #10b981;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.2);
}
.pricing-card[data-tariff=optimal], .pricing-card[data-tariff=extreme-optimal] {
  border: 2px solid #2563eb;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}
.pricing-card[data-tariff=optimal]::before, .pricing-card[data-tariff=extreme-optimal]::before {
  content: "Популярный";
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  color: white;
  padding: 4px 16px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  z-index: 1;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.pricing-card__header {
  padding: 48px 32px 32px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
}
@media (max-width: 768px) {
  .pricing-card__header {
    padding: 24px;
  }
}
.pricing-card__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pricing-card:hover .pricing-card__header::after {
  opacity: 1;
}
.pricing-card__name {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 16px;
}
.pricing-card__amount {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.pricing-card__currency {
  font-size: 18px;
  color: #6b7280;
  font-weight: 500;
}
.pricing-card__content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .pricing-card__content {
    padding: 24px;
  }
}
.pricing-card__description {
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.5;
  font-size: 14px;
  min-height: 40px;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding: 0;
}
.pricing-card__periods {
  margin-bottom: 32px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(16, 185, 129, 0.02) 100%);
  border-radius: 12px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.pricing-card__queries {
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 500;
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.pricing-card__btn {
  width: 100%;
  margin-top: auto;
  padding: 24px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.pricing-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #1f2937;
  padding: 8px 0;
}
.pricing-feature i {
  font-size: 20px;
  color: #2563eb;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 4px;
}
.pricing-feature span {
  flex: 1;
  line-height: 1.5;
}
.pricing-feature strong {
  color: #2563eb;
  font-weight: 600;
}

.pricing-period {
  padding: 16px 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  gap: 5px;
}
.pricing-period:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pricing-period__term {
  font-weight: 600;
  color: #1f2937;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2563eb;
}
.pricing-period__details {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 5px;
}

.toast-container {
  position: fixed;
  top: 32px;
  right: 32px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 16px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
  }
}

.toast {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 320px;
  max-width: 500px;
  pointer-events: auto;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (max-width: 768px) {
  .toast {
    min-width: auto;
    max-width: 100%;
  }
}
.toast--show {
  transform: translateX(0);
  opacity: 1;
}
.toast--hide {
  transform: translateX(400px);
  opacity: 0;
}
.toast--success {
  border-left: 4px solid #10b981;
}
.toast--success .toast__icon {
  color: #10b981;
}
.toast--error {
  border-left: 4px solid #ef4444;
}
.toast--error .toast__icon {
  color: #ef4444;
}
.toast--info {
  border-left: 4px solid #2563eb;
}
.toast--info .toast__icon {
  color: #2563eb;
}
.toast__icon {
  font-size: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.toast__message {
  flex: 1;
  font-size: 16px;
  color: #1f2937;
  line-height: 1.5;
}
.toast__close {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.toast__close:hover {
  background: #f9fafb;
  color: #1f2937;
}
.toast__close i {
  font-size: 18px;
}/*# sourceMappingURL=app.css.map */