/* =========================================
   Global Reset
========================================= */

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

* {
  margin: 0;
  padding: 0;
}

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

a:focus {
  outline: none;
}

a:focus-visible {
  outline: none;
  outline-offset: 0;
}

a,
button {
  font: inherit;
  line-height: 1;
}

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

/* =========================================
   Base Document Styles
========================================= */

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #120c1d;
  color: #ffffff;
}

.title {
  font-family: "Gabarito", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
}

.description {
  font-weight: 300;
  font-size: 20px;
  line-height: 1.46;
  color: #d4ccdc;
}

/* =========================================
  Button Styles
========================================= */

button,
[type="button"],
[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: none;
}

button {
  font-family: "Inter", sans-serif;
}

button:focus {
  outline: none;
}

.outline-button {
  padding: 18px 26px;
  border-radius: 12px;
  border: 1px solid #6957cb;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.outline-button:hover {
  background: #6957cb;
  border: 1px solid transparent;
}

.primary-button {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 21px 32px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 12px;
  background: linear-gradient(66.76deg, #433cd4 9.35%, #986efa 96.31%);
  box-shadow: 0px 0px 9px 0px #ffffff40 inset;
  color: #ffffff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.primary-button:hover {
  background: linear-gradient(60deg, #433cd4 -63.25%, #986efa 93.86%);
}

.primary-button:active {
  background: linear-gradient(60deg, #433cd4 -63.25%, #986efa 93.86%);
}

.primary-button__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.primary-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
}

/* =========================================
   Layout Container
========================================= */

.container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-left: clamp(16px, 8.33vw, 120px);
  padding-right: clamp(16px, 8.33vw, 120px);
}

/* =========================================
   Header Styles
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #ffffff1a;
}

.site-header__bar {
  width: 100%;
  background: rgba(12, 8, 21, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================================
   Navigation Styles
========================================= */

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

.header-nav__link {
  font-size: 16px;
  font-weight: 400;
  color: #d4ccdc;
  transition: color 0.2s ease;
}

.header-nav__link:hover {
  color: #ffffff;
}

/* =========================================
   Hero Section (Video Background)
========================================= */

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #120c1d;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 5;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  max-width: 460px;
}

.hero-title {
  font-size: 58px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 22px;
  line-height: 1.46;
  margin-top: 16px;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  gap: 20px;
}

.hero-button {
  padding: 23px 32px;
  font-size: 20px;
  font-weight: 600;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  padding-left: clamp(16px, 8.33vw, 120px);
  padding-right: clamp(16px, 8.33vw, 120px);

  overflow: hidden;
}

.hero-media-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateY(-5%);
  transform-origin: 76% 62%;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: 76% 62%;

  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.hero-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  padding: 10px 22px;
  border-radius: 50px;
  filter: brightness(1.25) contrast(1.15);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 30px rgba(0, 0, 0, 0.28);

  font-size: 20px;
  font-weight: 600;
  line-height: 1.26;

  white-space: nowrap;
}

.hero-badge--left {
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);

  background: linear-gradient(90deg, #e6d8ff 0%, #9f86ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  border-color: rgba(218, 192, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 22px rgba(218, 192, 255, 0.22),
    0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-badge--right {
  left: 69%;
  top: 44%;
  transform: translate(-50%, -50%);

  background: linear-gradient(
    90deg,
    rgba(165, 238, 255, 1) 0%,
    rgba(90, 198, 255, 1) 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  border-color: rgba(165, 238, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 0 22px rgba(165, 238, 255, 0.2),
    0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;

  background:
    linear-gradient(
      to right,
      rgba(18, 12, 29, 1) 0%,
      rgba(18, 12, 29, 0.85) 10%,
      rgba(18, 12, 29, 0) 40%
    ),
    linear-gradient(
      to left,
      rgba(18, 12, 29, 1) 0%,
      rgba(18, 12, 29, 0.85) 10%,
      rgba(18, 12, 29, 0) 40%
    ),
    linear-gradient(
      to bottom,
      rgba(18, 12, 29, 0.25) 0%,
      rgba(18, 12, 29, 0) 35%
    ),
    linear-gradient(
      to top,
      rgba(18, 12, 29, 1) 0%,
      rgba(18, 12, 29, 0.9) 20%,
      rgba(18, 12, 29, 0.6) 45%,
      rgba(18, 12, 29, 0.3) 65%,
      rgba(18, 12, 29, 0) 85%
    );
}

/* Responsive */

@media (min-width: 1440px) {
  .hero {
    min-height: 837px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 640px;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 560px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-button {
    width: 100%;
  }
}

/* =========================================
   Risks Section
========================================= */

.risks {
  padding-top: 32px;
  padding-bottom: 156px;
}

.risks-header {
  text-align: center;
  max-width: 635px;
  margin: 0 auto 54px auto;
}

.risks-description {
  margin-top: 20px;
}

.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.risk-card {
  padding: 44px 32px;
  border-radius: 14px;
  background: #1a1229;
  border: 1px solid #ffffff1c;
  text-align: center;
  height: 337px;
}

.risk-card__icon {
  margin-bottom: 40px;
}

.risk-card__title {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.2;
}

/* =========================================
   Features Section
========================================= */

.features-header,
.demo-header,
.protection-header,
.pricing-header,
.clients-header {
  text-align: center;
  margin-bottom: 54px;
}

.features-eyebrow,
.demo-eyebrow,
.protection-eyebrow,
.pricing-eyebrow,
.clients-eyebrow {
  font-size: 22px;
  font-weight: 400;
  background: linear-gradient(269.71deg, #c3b8ff 35.47%, #7b6be0 62.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.features-title,
.demo-title,
.protection-title {
  margin-bottom: 20px;
}

.features-layout {
  display: grid;
  grid-template-columns: 510px 1fr;
  align-items: start;
  gap: 78px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.feature-item {
  width: 100%;
  text-align: left;
  padding: 24px 26px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: border 0.2s ease;
}

.feature-item__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -1%;
  color: #a397af;
  transition: color 0.2s ease;
}

.feature-item__text {
  color: #a397af;
  max-width: 462px;
  transition: color 0.2s ease;
}

.feature-item:hover {
  border-bottom: 1px solid #ffffff1c;
}

.feature-item:hover .feature-item__title {
  color: #ffffff;
}

.feature-item:hover .feature-item__text {
  color: #d4ccdc;
}

.feature-item--active {
  border-radius: 14px;
  background: #1a1229;
  border: 1px solid #ffffff1c;
}

.feature-item--active .feature-item__title {
  color: #ffffff;
}

.feature-item--active .feature-item__text {
  color: #d4ccdc;
}

.feature-item__link {
  margin-top: 16px;
  color: #8371e3;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.features-preview__frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 0;
}

.features-preview__frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(124, 92, 255, 0.28),
    rgba(124, 92, 255, 0.06)
  );
  opacity: 0.6;
}

.features-preview__image {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================
   Stats Section
========================================= */

.stats {
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../assets/stats-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  pointer-events: none;
  z-index: 0;
}

.stats::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;

  background: linear-gradient(
    to bottom,
    rgba(18, 12, 29, 0) 0%,
    rgba(18, 12, 29, 0.4) 40%,
    rgba(18, 12, 29, 0.8) 70%,
    rgba(18, 12, 29, 1) 100%
  );

  pointer-events: none;
  z-index: 0;
}

.stats-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 268px 0;
}

.stats-title {
  background: linear-gradient(269.71deg, #c3b8ff 35.47%, #7b6be0 62.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.stats-metric {
  margin-top: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.stats-number {
  font-size: 102px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.stats-plus {
  transform: translateY(-6px);
}

.stats-subtitle {
  margin-top: 5px;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
}

/* =========================================
   Demo Section
========================================= */

.protection {
  padding-top: 141px;
}

.demo {
  position: relative;
  background-color: #120c1d;
  overflow: hidden;
}

.demo::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../assets/demo-bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;

  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 20%,
    black 100%
  );
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 100%);
}

.demo-visual {
  position: relative;
  margin: 63px auto;
  max-width: 1000px;
  z-index: 5;
}

.demo-iframe-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1000 / 622;
  border-radius: 24px;
  overflow: visible;
}

.demo-stage {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 1115px;
  height: 703px;

  transform-origin: center;
  transform: translate(-50%, -50%) scale(var(--demo-iframe-scale, 1));

  border-radius: 16px;
  overflow: hidden;

  z-index: 1;
}

.demo-placeholder,
.demo-loader,
.demo-iframe {
  position: absolute;
  inset: 0;
  border-radius: 16px;
}

.demo-placeholder__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.demo-slider {
  display: none;
  position: relative;
  width: 100%;
  z-index: 10;
}

.demo-slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.demo-slider-track img {
  flex: 0 0 100%;
  width: 100%;
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 0.4s ease;
}

.demo-slider-track img.active {
  transform: scale(1);
}
.demo-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.demo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.demo-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: visible;
  border-radius: 24px;
}

.demo-placeholder__button {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);

  padding: 22px 38px;
  border-radius: 18px;
  border: none;

  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;

  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 12px;

  background: linear-gradient(66.76deg, #0a4ab1 9.35%, #6ebbfa 96.31%);
  color: #ffffff;

  box-shadow: 0 20px 60px rgba(78, 111, 255, 0.35);
  transition: transform 0.2s ease;
}

.demo-placeholder__button::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 14px;

  background: linear-gradient(
    66.76deg,
    rgba(10, 74, 177, 0.18) 9.35%,
    rgba(110, 187, 250, 0.18) 96.31%
  );

  z-index: -1;
}

.demo-placeholder__button:hover {
  transform: translateX(-50%) scale(1.05);
}

.demo-loader {
  position: absolute;
  inset: 0;

  display: none;
  place-items: center;

  border-radius: 24px;
  overflow: hidden;

  z-index: 4;
  background: rgba(10, 6, 20, 0.85);
}

.demo-spinner {
  width: 48px;
  height: 48px;

  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: #7b6be0;

  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.demo-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  border: none;

  width: 1115px;
  height: 692px;

  border-radius: 16px;
  display: block;

  transform-origin: center;
  transform: translate(-50%, -50%) scale(var(--demo-iframe-scale, 1));
  z-index: 1;
}

.demo-iframe.is-loaded {
  border: 8px solid rgba(255, 255, 255, 0.05);
}

.demo-dot.active {
  width: 26px;
  border-radius: 12px;
  background: #8371e3;
}

.demo-frame-overlay {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  pointer-events: none;
  z-index: 5;
  display: none;
}

.demo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 300px;

  background: linear-gradient(
    to bottom,
    rgba(18, 12, 29, 0) 0%,
    rgba(18, 12, 29, 0.4) 40%,
    rgba(18, 12, 29, 0.8) 70%,
    rgba(18, 12, 29, 1) 100%
  );

  pointer-events: none;
  z-index: 0;
}

.demo-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.demo-action {
  text-align: center;
  position: relative;
  z-index: 10;
}

.demo-action .primary-button {
  padding: 23px 32px;
}

/* =========================================
  Download modal
========================================= */

.download-modal[hidden] {
  display: none;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.download-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.download-modal__panel {
  position: relative;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 24px;
  background: rgba(10, 10, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.download-modal__panel::before {
  content: "";
  position: absolute;
  inset: 0;

  background: url("../assets/download-bg.svg") top center no-repeat;
  background-size: cover;

  opacity: 0.55;

  pointer-events: none;
  z-index: 0;

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0) 85%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0) 85%
  );
}

.download-modal__content,
.download-modal__footer,
.download-modal__close {
  position: relative;
  z-index: 1;
}

.download-modal__content {
  flex: 1;
  overflow: auto;

  padding: 32px 26px 0;
}

.download-modal__close {
  z-index: 10;
  position: absolute;
  top: 5px;
  right: 5px;

  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: none;
  border-radius: 14px;
  color: #ffffff;

  cursor: pointer;
}

.download-modal__title {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

.download-modal__subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.4;
}

.download-modal__visual {
  margin-top: 32px;
  display: grid;
  place-items: center;
}

.download-modal__image {
  width: clamp(245px, 60vw, 520px);
  height: auto;
  display: block;
}

.download-modal__actions {
  margin-top: 32px;
}

.download-modal__label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.download-modal__input {
  width: 100%;
  height: 46px;

  border-radius: 10px;
  border: none;

  background: #fff;
  padding: 16px;

  font-size: 14px;
  font-weight: 400;

  outline: none;
  transition:
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.download-modal__input::placeholder {
  color: rgba(123, 129, 175, 1);
  font-weight: 400;
  font-size: 14px;
}

.download-modal__primary {
  width: 100%;
  height: 50px;
  margin-top: 14px;

  border: none;
  border-radius: 10px;

  color: #ffffff;
  font-size: 16px;
  font-weight: 700;

  cursor: pointer;
  background: linear-gradient(
    90deg,
    rgba(72, 74, 255, 1),
    rgba(140, 170, 255, 1)
  );
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.25) inset;
}

.download-modal__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;

  margin: 26px 0;
  color: rgba(47, 41, 53, 1);
  font-size: 14px;
  letter-spacing: 0.12em;
}

.download-modal__divider span {
  color: rgba(212, 204, 220, 1);
}

.download-modal__divider::before,
.download-modal__divider::after {
  content: "";
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

/* === Copy row як на скріні === */

.download-modal__copy-row {
  width: 100%;
  padding: 14px 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border: none;
  background: transparent;

  cursor: pointer;

  font-size: 28px;
  font-weight: 700;

  background: linear-gradient(
    90deg,
    rgba(114, 132, 255, 1),
    rgba(140, 170, 255, 1)
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 0;
}

.download-modal__copy-icon {
  width: 30px;
  height: 30px;
}

.download-modal__copy-text {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}

.download-modal__hint {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(152, 140, 165, 1);
  text-align: center;
}

.download-modal__footer {
  height: 64px;
  padding: 0 26px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid rgba(47, 41, 53, 1);
}

.download-modal__footer-brand {
  font-weight: 600;
  line-height: 0.99;
  color: rgba(255, 255, 255, 0.92);
}

.download-modal__footer-learn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: rgba(212, 204, 220, 1);
  font-size: 14px;
  font-weight: 300;
}

.download-modal__footer-info {
  width: 26px;
  height: 26px;

  display: grid;
  place-items: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.55);

  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.75);
}

body.is-scroll-locked {
  overflow: hidden;
}

/* =========================================
   Protection Section
========================================= */

.protection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.protection-card {
  border-radius: 14px;
  overflow: hidden;
  background: #1a1229;
  border: 1px solid #ffffff1c;
  display: flex;
  flex-direction: column;
  min-height: 520px;
}

.protection-card__content {
  padding: 56px 40px 40px;
  text-align: center;
}

.protection-card__title {
  font-size: 30px;
  margin-bottom: 14px;
}

.protection-card__text {
  max-width: 490px;
}

.protection-card__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* =========================================
   Pricing Section
========================================= */

.pricing {
  margin: 156px 24px;
  border-radius: 26px;
  padding-top: 90px;
  padding-bottom: 110px;
  background: #1a1229;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  border-radius: 14px;
  padding: 40px;
  background: #100a1c;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 44px;
  min-height: 520px;
}

.pricing-card.pricing-card--active {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  background:
    linear-gradient(#160e25, #160e25) padding-box,
    linear-gradient(135deg, rgba(67, 60, 212, 0.22), rgba(152, 110, 250, 0.18))
      padding-box,
    linear-gradient(
        66.76deg,
        #433cd4 0%,
        rgba(255, 255, 255, 0.8) 42.81%,
        #986efa 79.06%
      )
      border-box;

  background-clip: padding-box, padding-box, border-box;
}

.pricing-card__inner {
  border: none;
  padding: 40px;
  background:
    linear-gradient(0deg, #160e25, #160e25),
    linear-gradient(
      110.73deg,
      rgba(67, 60, 212, 0) 51.9%,
      rgba(152, 110, 250, 0.2) 97.96%
    );
}

.pricing-card__title {
  font-size: 30px;
}

.pricing-card__description {
  margin-top: 12px;
  font-size: 18px;
}

.pricing-card__text {
  height: 126px;
}

.pricing-price {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pricing-price__current {
  font-size: 48px;
}

.pricing-price__old {
  font-size: 34px;
  color: #d44c67;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #d44c67;
}

.pricing-price__period {
  font-weight: 300;
  margin-left: auto;
  font-size: 16px;
  line-height: 1.46;
  color: #d4ccdc;
}

.pricing-card__button {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  padding: 21px 0;
}

.pricing-card__inner .pricing-card__button {
  padding: 22px 0;
}

.pricing-features {
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.pricing-features__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 300;
  color: #d4ccdc;
}

.pricing-card__badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 14px;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 12px;
  background: linear-gradient(66.76deg, #433cd4 9.35%, #824ef9 96.31%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

/* =========================================
   Clients Section
========================================= */

.clients {
  padding-bottom: 156px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.client-card {
  height: 168px;
  border-radius: 24px;
  background: #1a1229;
  border: 1px solid #ffffff1c;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   CTA Section
========================================= */

.cta {
  position: relative;
  padding: 91px 0 39px;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: url("../assets/protect-bg.svg") center top / cover no-repeat;
  z-index: 0;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  margin-bottom: 120px;
}

.cta-logo {
  margin-bottom: 32px;
}

.cta-title {
  margin-bottom: 8px;
}

.cta-description {
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.cta-button {
  padding: 21px 32px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}

.cta-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-nav {
  display: flex;
  gap: 40px;
}

.cta-nav a {
  color: #fff;
  opacity: 0.6;
  font-size: 16px;
  transition: opacity 0.2s ease;
  font-weight: 400;
  line-height: 1.3;
}

.cta-nav a:hover {
  opacity: 1;
}

/* =========================================
   Mobile Menu (Burger + Overlay)
========================================= */

.burger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 16px;
  padding: 0;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
}

.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: #120c1d;
  z-index: 9999;

  padding: 20px 24px 32px;
}

.menu-overlay.is-open {
  display: flex;
  flex-direction: column;
}

.menu-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-overlay__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.menu-overlay__nav {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.menu-overlay__link {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  opacity: 0.9;
}

.menu-overlay__link:hover {
  opacity: 1;
}

.menu-overlay__button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}
