: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;
}

.seo-links {
  width: min(100% - 32px, 920px);
  margin: 0 auto 72px;
  padding: 24px;
  border: 1px solid var(--page-card-border);
  border-radius: 20px;
  background: rgba(8, 20, 42, 0.72);
}

.seo-links h2 {
  margin: 0 0 16px;
  font-size: 22px;
}

.seo-links a {
  display: inline-flex;
  margin: 6px 12px 6px 0;
  color: #71b6ff;
  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;
  }
}

.plans-page {
  width: min(100% - 32px, 1180px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.plans-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.plans-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
}

.plans-brand img,
.pricing-head img {
  border-radius: 13px;
}

.plans-brand strong {
  color: var(--page-cyan);
}

.plans-back {
  padding: 10px 14px;
  border: 1px solid var(--page-card-border);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 20, 42, 0.7);
  font-size: 13px;
  font-weight: 900;
}

.plans-intro {
  max-width: 780px;
  margin: 72px auto 42px;
  text-align: center;
}

.plans-intro h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.plans-intro > p:last-child {
  max-width: 700px;
  margin: 22px auto 0;
  color: var(--page-muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--page-card-border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(16, 42, 80, 0.96), rgba(8, 24, 50, 0.96));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.pricing-card-featured {
  border-color: rgba(39, 208, 223, 0.72);
  box-shadow: 0 24px 70px rgba(39, 119, 240, 0.22);
}

.pricing-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(39, 208, 223, 0.38);
  border-radius: 999px;
  color: #9af4fb;
  background: rgba(39, 208, 223, 0.12);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-head {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 56px;
}

.pricing-name,
.pricing-duration,
.pricing-price,
.pricing-description {
  margin: 0;
}

.pricing-name {
  font-size: 18px;
  font-weight: 950;
}

.pricing-duration {
  margin-top: 4px;
  color: var(--page-soft);
  font-size: 13px;
  font-weight: 800;
}

.pricing-price {
  margin-top: 28px;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 950;
}

.pricing-price small {
  vertical-align: top;
  font-size: 22px;
}

.pricing-description {
  min-height: 52px;
  margin-top: 14px;
  color: var(--page-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.pricing-features {
  display: grid;
  flex: 1;
  gap: 13px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.pricing-features li {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 10px;
}

.pricing-features li::before {
  width: 7px;
  height: 7px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--page-cyan);
  content: "";
}

.pricing-button,
.pricing-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 950;
}

.pricing-button {
  background: linear-gradient(90deg, var(--page-blue), var(--page-cyan));
  box-shadow: 0 14px 32px rgba(39, 119, 240, 0.22);
}

.pricing-details {
  min-height: 42px;
  margin-top: 8px;
  color: #8ec8ff;
  font-size: 12px;
}

.plans-footer {
  padding: 32px 0 0;
  color: var(--page-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 920px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .pricing-description {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .plans-page {
    width: min(100% - 24px, 1180px);
    padding-top: 14px;
  }

  .plans-intro {
    margin: 48px auto 30px;
  }

  .plans-intro > p:last-child {
    font-size: 15px;
  }

  .pricing-card {
    padding: 22px 20px;
    border-radius: 22px;
  }
}
