:root {
  --page-bg: #050b18;
  --page-bg-soft: #0b1b38;
  --page-card: #0d213f;
  --page-card-border: #203c68;
  --page-text: #ffffff;
  --page-muted: rgba(255, 255, 255, 0.68);
  --page-soft: rgba(255, 255, 255, 0.52);
  --page-blue: #2877f0;
  --page-cyan: #27d0df;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page-bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--page-text);
  background:
    radial-gradient(circle at 95% 6%, rgba(39, 208, 223, 0.2), transparent 34rem),
    linear-gradient(180deg, #08152e 0%, var(--page-bg) 72%, #07142a 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

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

.plan-page {
  min-height: 100vh;
}

.plan-hero {
  width: min(100% - 32px, 1272px);
  margin: 0 auto;
  padding: 56px 0 92px;
}

.plan-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 490px;
  gap: 56px;
  align-items: start;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--page-soft);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb span:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 18px;
  border: 1px solid var(--page-card-border);
  border-radius: 999px;
  color: #71b6ff;
  background: rgba(15, 42, 82, 0.72);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.plan-title {
  max-width: 650px;
  margin: 0;
  font-size: clamp(44px, 5.3vw, 72px);
  line-height: 0.96;
  font-weight: 950;
}

.plan-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--page-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  max-width: 590px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.btn-primary {
  border: 0;
  background: linear-gradient(90deg, var(--page-blue), var(--page-cyan));
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(39, 119, 240, 0.26);
}

.btn-secondary {
  border: 1px solid var(--page-card-border);
  background: rgba(8, 20, 42, 0.7);
  color: rgba(255, 255, 255, 0.92);
}

.plan-summary {
  margin-top: 0;
  padding: 26px 24px 28px;
  border: 1px solid var(--page-card-border);
  border-radius: 26px;
  background: rgba(14, 35, 67, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.summary-label {
  margin: 0 0 14px;
  color: #a8bad6;
  font-size: 14px;
  font-weight: 800;
}

.summary-price {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 50px;
  line-height: 1;
  font-weight: 950;
}

.summary-price small {
  margin-top: 2px;
  font-size: 24px;
  line-height: 1;
}

.summary-subtitle {
  margin: 22px 0;
  color: var(--page-soft);
  font-size: 15px;
  font-weight: 800;
}

.summary-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.summary-list li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  align-items: start;
}

.summary-list li::before {
  width: 7px;
  height: 7px;
  margin-top: 5px;
  border-radius: 50%;
  background: #67b2ff;
  content: "";
}

.summary-list li:first-child::before {
  background: var(--page-cyan);
}

.plan-section {
  width: min(100% - 32px, 808px);
  margin: 0 auto;
  padding: 0 0 18px;
  text-align: center;
}

.plan-section h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 950;
}

.plan-section p {
  margin: 12px 0 0;
  color: var(--page-muted);
  font-size: 16px;
  font-weight: 700;
}

.faq-list,
.blog-list {
  display: grid;
  gap: 16px;
  width: min(100% - 32px, 920px);
  margin: 28px auto 72px;
}

.faq-list article,
.blog-list article {
  padding: 22px;
  border: 1px solid var(--page-card-border);
  border-radius: 18px;
  background: rgba(14, 35, 67, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.faq-list h3,
.blog-list h3 {
  margin: 0;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
}

.faq-list p,
.blog-list p {
  margin: 10px 0 0;
  color: var(--page-muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.blog-list a {
  display: inline-flex;
  margin-top: 14px;
  color: #67b2ff;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .plan-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .plan-summary {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .plan-hero {
    width: min(100% - 24px, 1272px);
    padding: 32px 0 58px;
  }

  .plan-title {
    font-size: 42px;
  }

  .plan-copy {
    font-size: 16px;
    line-height: 1.7;
  }

  .plan-actions {
    display: grid;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }
}
