/* PAGE HERO */
.page__hero {
  padding: 160px 0 80px;
  background: var(--bg-dark);
  background-image: radial-gradient(
    ellipse at top left,
    rgba(139, 26, 42, 0.4) 0%,
    transparent 60%
  );
  border-bottom: 1px solid rgba(139, 26, 42, 0.3);
  position: relative;
  overflow: hidden;
}

.page__hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.page__hero-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.page__hero-title span {
  color: var(--btn-green);
}

.page__hero-subtitle {
  font-size: 18px;
  color: var(--text-gray);
  max-width: 600px;
  line-height: 1.6;
}

/* PAGE CONTENT */
.page__content {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

.page__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* PAGE SECTIONS */
.page__section {
  margin-bottom: 80px;
}

.page__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.page__section-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.6;
}

/* PAGE CARDS */
.page__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page__card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 26, 42, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}

.page__card:hover {
  border-color: var(--accent);
}

.page__card-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.page__card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.page__card-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* PAGE CTA */
.page__cta {
  background: var(--bg-card);
  border: 1px solid rgba(139, 26, 42, 0.3);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-top: 60px;
}

.page__cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.page__cta-text {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 32px;
}

/* PAGE STEPS */
.page__steps {
  display: flex;
  flex-direction: row;
  gap: 24px;
  max-width: 100%;
}

.page__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(139, 26, 42, 0.3);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}

.page__step:hover {
  border-color: var(--accent);
}

.page__step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--btn-green);
  color: #000;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page__step-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.page__step-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* PAGE COMPARE */
.page__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 100%;
}

.page__compare-col {
  background: var(--bg-card);
  border: 1px solid rgba(139, 26, 42, 0.3);
  border-radius: 16px;
  padding: 32px;
}

.page__compare-col--highlight {
  border-color: var(--accent);
  background: rgba(139, 26, 42, 0.15);
}

.page__compare-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 24px;
}

.page__compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page__compare-list li {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ACCOUNT TYPES */
.page__account-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.page__account-card {
  background: var(--bg-card);
  border: 1px solid rgba(139, 26, 42, 0.3);
  border-radius: 16px;
  padding: 36px;
  transition: border-color 0.3s;
  position: relative;
}

.page__account-card:hover {
  border-color: var(--accent);
}

.page__account-card--popular {
  border-color: var(--btn-green);
}

.page__account-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.page__account-badge--popular {
  color: var(--btn-green);
}

.page__account-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.page__account-deposit {
  font-size: 18px;
  color: var(--btn-green);
  font-weight: 600;
  margin-bottom: 16px;
}

.page__account-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
}

.page__account-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page__account-features li {
  font-size: 14px;
  color: var(--text-gray);
}

/* TABLE */
.page__table-wrap {
  overflow-x: auto;
}

.page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.page__table th,
.page__table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(139, 26, 42, 0.2);
}

.page__table th {
  color: var(--text-white);
  font-weight: 600;
  background: rgba(139, 26, 42, 0.2);
}

.page__table td {
  color: var(--text-gray);
}

.page__table td:first-child {
  text-align: left;
  color: var(--text-white);
}

.page__table tbody tr:hover {
  background: rgba(139, 26, 42, 0.1);
}

/* STATS */
.page__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.page__stat {
  background: var(--bg-card);
  border: 1px solid rgba(139, 26, 42, 0.3);
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  transition: border-color 0.3s;
}

.page__stat:hover {
  border-color: var(--accent);
}

.page__stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--btn-green);
  margin-bottom: 12px;
}

.page__stat-label {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
}

/* FAQ */
.page__faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
}

.page__faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(139, 26, 42, 0.3);
  border-radius: 16px;
  padding: 28px 32px;
  transition: border-color 0.3s;
}

.page__faq-item:hover {
  border-color: var(--accent);
}

.page__faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.page__faq-answer {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* RISK BLOCK */
.page__risk-block {
  display: flex;
  gap: 24px;
  background: rgba(139, 26, 42, 0.15);
  border: 1px solid rgba(139, 26, 42, 0.5);
  border-radius: 16px;
  padding: 36px;
  max-width: 900px;
}

.page__risk-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.page__risk-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 12px;
}

.page__risk-content p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .page__hero-container,
  .page__container {
    padding: 0 16px;
  }

  .page__hero {
    padding: 130px 0 64px;
  }

  .page__hero-title {
    font-size: 40px;
  }

  .page__hero-subtitle {
    font-size: 16px;
  }

  .page__cards,
  .page__account-types,
  .page__stats {
    grid-template-columns: 1fr 1fr;
  }

  .page__steps {
    flex-direction: column;
  }

  .page__compare {
    grid-template-columns: 1fr;
  }

  .page__table-wrap {
    overflow-x: auto;
  }

  .page__table {
    min-width: 680px;
  }
}

@media (max-width: 768px) {
  .page__hero {
    padding: 120px 0 56px;
    text-align: center;
  }

  .page__hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .page__hero-subtitle {
    font-size: 15px;
    margin: 0 auto;
  }

  .page__content {
    padding: 56px 0;
  }

  .page__section {
    margin-bottom: 56px;
  }

  .page__section-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .page__section-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .page__cards,
  .page__account-types,
  .page__stats {
    grid-template-columns: 1fr;
  }

  .page__card,
  .page__account-card,
  .page__compare-col,
  .page__stat,
  .page__step {
    padding: 24px 20px;
  }

  .page__step {
    flex-direction: column;
    gap: 16px;
  }

  .page__step-number {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .page__cta {
    padding: 32px 20px;
    margin-top: 40px;
  }

  .page__cta-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .page__cta-text {
    font-size: 15px;
  }

  .page__risk-block {
    flex-direction: column;
    padding: 28px 22px;
  }

  .page__risk-icon {
    font-size: 34px;
  }

  .page__faq-item {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .page__hero {
    padding: 112px 0 48px;
  }

  .page__hero-title {
    font-size: 28px;
  }

  .page__hero-subtitle {
    font-size: 14px;
  }

  .page__section-title {
    font-size: 26px;
  }

  .page__card-icon {
    font-size: 34px;
  }

  .page__card-title {
    font-size: 18px;
  }

  .page__card-text,
  .page__step-content p,
  .page__compare-list li,
  .page__risk-content p {
    font-size: 14px;
  }

  .page__table th,
  .page__table td {
    padding: 14px 16px;
    font-size: 14px;
  }

  .page__cta-title {
    font-size: 24px;
  }
}

.topbar__theme {
  display: none;
}

.navbar__item > a[href="#"] {
  cursor: default;
}
