:root {
  --navy: #0a0e2a;
  --navy-2: #0d1338;
  --blue: #2b7fff;
  --blue-2: #1e5ed8;
  --orange: #f5a524;
  --orange-2: #ff6b35;
  --green: #22c55e;
  --red: #ef4444;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --soft: rgba(255, 255, 255, 0.055);
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: var(--orange);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 42, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
}

.page-header {
  background:
    radial-gradient(circle at 20% 20%, rgba(43, 127, 255, 0.26), transparent 32%),
    linear-gradient(135deg, #0a0e2a 0%, #111a4a 62%, #17215f 100%);
  color: var(--white);
  padding: 72px 0 64px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  margin-bottom: 26px;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb .current {
  color: var(--orange);
}

.page-header h1 {
  max-width: 920px;
  margin: 0 auto 18px;
  text-align: center;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 900;
}

.page-header p {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2.1vw, 22px);
}

.section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(43, 127, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #0a0e2a 0%, #0d1338 100%);
  color: var(--white);
}

.section--dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(245, 165, 36, 0.12), transparent 30%),
    linear-gradient(180deg, #070a20 0%, #0a0e2a 100%);
  color: var(--white);
}

.section-header {
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(245, 165, 36, 0.36);
  border-radius: 999px;
  background: rgba(245, 165, 36, 0.08);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
  color: inherit;
  font-weight: 900;
}

.section-header p {
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.section--dark .section-header p {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(245, 165, 36, 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(245, 165, 36, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-white {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.btn-lg {
  min-height: 52px;
  padding: 14px 22px;
  font-size: 16px;
}

.countdown-banner {
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.18), rgba(255, 107, 53, 0.12));
  border: 1px solid rgba(245, 165, 36, 0.4);
  border-radius: 20px;
  padding: 32px 24px;
  margin: 36px auto 32px;
  text-align: center;
  max-width: 820px;
}

.countdown-title {
  font-size: 24px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 900;
  margin: 0 0 12px;
}

.countdown-subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 500;
}

.countdown-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.countdown-cell {
  background: rgba(10, 14, 42, 0.6);
  border: 1px solid rgba(245, 165, 36, 0.3);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 90px;
}

.countdown-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin: 0 0 6px;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.hero-plugin-image {
  display: block;
  margin: 28px auto 0;
  width: min(680px, 100%);
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.law-box {
  background: rgba(255, 255, 255, 0.045);
  border-left: 4px solid var(--orange);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  margin: 24px 0;
}

.law-box h4 {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 18px;
}

.law-box p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.82);
}

.law-box p:last-child {
  margin-bottom: 0;
}

.section--dark .law-box {
  background: rgba(255, 255, 255, 0.04);
}

.section--dark .law-box p {
  color: rgba(255, 255, 255, 0.84);
}

.grid-3,
.problem-grid,
.solution-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.problem-grid,
.solution-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.penalty-card,
.problem-item,
.solution-item,
.pricing-card,
.card,
.legal-card {
  border-radius: 12px;
}

.penalty-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.35);
  padding: 28px 24px;
  text-align: center;
}

.penalty-amount {
  font-size: 34px;
  font-weight: 900;
  color: #f87171;
  margin: 0 0 8px;
  line-height: 1.1;
}

.penalty-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.problem-item {
  background: rgba(239, 68, 68, 0.07);
  border-left: 3px solid rgba(239, 68, 68, 0.5);
  padding: 18px 20px;
}

.problem-item h5,
.solution-item h5 {
  margin: 0 0 8px;
  font-size: 16px;
}

.problem-item h5 {
  color: #fca5a5;
}

.problem-item p,
.solution-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section--dark .problem-item h5 {
  color: #fca5a5;
}

.section--dark .problem-item p,
.section--dark .solution-item p {
  color: rgba(255, 255, 255, 0.76);
}

.solution-item {
  background: rgba(34, 197, 94, 0.08);
  border-left: 3px solid rgba(34, 197, 94, 0.5);
  padding: 18px 20px;
}

.solution-item h5 {
  color: #86efac;
}

.section--dark .solution-item h5 {
  color: #86efac;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 32px 26px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.pricing-card.popular {
  border: 2px solid var(--orange);
  background: linear-gradient(180deg, rgba(245, 165, 36, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: 0 18px 46px rgba(245, 165, 36, 0.18), 0 20px 54px rgba(0, 0, 0, 0.26);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-name {
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-price {
  margin: 14px 0 0;
  display: flex;
  align-items: flex-start;
  color: var(--orange);
}

.pricing-currency {
  font-size: 24px;
  font-weight: 900;
  margin: 10px 4px 0 0;
}

.pricing-amount {
  font-size: 64px;
  font-weight: 900;
  line-height: 0.95;
}

.pricing-period,
.pricing-tagline {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.13);
  margin: 22px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 11px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.check {
  color: var(--green);
  font-weight: 900;
  margin-right: 8px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.bonus-box {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 165, 36, 0.18), rgba(255, 107, 53, 0.1));
  border: 2px solid rgba(245, 165, 36, 0.55);
  border-radius: 14px;
  padding: 24px 22px 20px;
  margin-top: 18px;
}

.bonus-label {
  position: absolute;
  top: -14px;
  left: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: var(--white);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.implementation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.8fr);
  gap: 32px;
  align-items: center;
}

.implementation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 2;
}

.implementation-price {
  text-align: center;
  background: rgba(245, 165, 36, 0.08);
  border-radius: 14px;
  padding: 24px;
}

.order-form {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 36px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--white);
}

.order-form h3 {
  margin: 0 0 8px;
  color: var(--orange);
}

.order-form p {
  color: rgba(255, 255, 255, 0.68);
}

.form-group {
  margin-bottom: 16px;
}

.order-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(10, 14, 42, 0.72);
  color: var(--white);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.order-form textarea {
  min-height: 100px;
  resize: vertical;
}

.pkg-radios {
  display: grid;
  gap: 10px;
}

.pkg-radio {
  position: relative;
}

.pkg-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pkg-radio label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 500;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pkg-radio input:checked + label {
  border-color: var(--orange);
  background: rgba(245, 165, 36, 0.1);
}

.pkg-dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  margin-top: 2px;
  position: relative;
}

.pkg-radio input:checked + label .pkg-dot {
  border-color: var(--orange);
}

.pkg-radio input:checked + label .pkg-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.pkg-name {
  font-weight: 800;
  color: var(--white);
}

.pkg-price {
  margin-left: auto;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}

.pkg-desc {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 400;
  margin-top: 2px;
}

.total-bar {
  margin-top: 8px;
  background: rgba(10, 14, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.total-amount {
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.12);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.28);
}

.form-status.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.28);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.76);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-icon {
  color: var(--orange);
  font-size: 24px;
  line-height: 1;
}

.legal-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  padding: 42px;
  color: var(--white);
}

.legal-card h2 {
  margin: 32px 0 12px;
  color: var(--orange);
  font-size: 22px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.8);
}

.legal-card a {
  color: var(--orange);
  font-weight: 700;
}

.footer {
  background: #070a20;
  color: rgba(255, 255, 255, 0.78);
  padding: 18px 0;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom--simple {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.footer-bottom--simple p {
  margin: 0;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-inner {
  max-width: 880px;
  margin: 0 auto;
  background: rgba(10, 14, 42, 0.97);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.cookie-text a {
  color: var(--orange);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10, 14, 42, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 20px 18px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 4px;
  }

  .grid-3,
  .pricing-grid,
  .implementation-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container,
  .nav-inner {
    width: min(100% - 28px, 1120px);
  }

  .page-header {
    padding: 46px 0 48px;
  }

  .section {
    padding: 64px 0;
  }

  .countdown-banner {
    padding: 24px 12px;
  }

  .countdown-grid {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .countdown-cell {
    padding: 10px 6px;
    min-width: 0;
    flex: 1 1 0;
  }

  .countdown-num {
    font-size: 26px;
    margin: 0 0 4px;
  }

  .countdown-label {
    font-size: 10px;
  }

  .order-form,
  .legal-card {
    padding: 24px 18px;
  }

  .pkg-radio label {
    padding: 12px;
  }

  .total-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}
