html, body { overflow-x: hidden; max-width: 100vw; }

.login-page-wrapper {
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --color-1: var(--bg-primary);
  --color-2: var(--bg-secondary);
  --color-3: var(--surface);
  --color-4: var(--accent-gold);
  --color-5: var(--accent-gold-bright);
  --color-6: var(--accent-red);
  --color-7: var(--text-primary);
  --color-8: var(--text-secondary);

  display: block;
  width: 100%;
  padding: 0;
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: var(--space-5);
  padding: var(--space-5) var(--space-3);
  text-align: center;
  color: var(--color-7);
  background: linear-gradient(160deg, var(--color-2) 0%, var(--color-1) 70%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-deep);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  padding: 0.4rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-1);
  background: linear-gradient(135deg, var(--color-4), var(--color-5));
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.main-headline {
  margin: 0 0 var(--space-3);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-7);
}

.main-headline span {
  background: linear-gradient(135deg, var(--color-5), var(--color-4));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto var(--space-4);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  color: var(--color-8);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-4);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--color-8);
}

.cta-button {
  display: inline-block;
  align-self: center;
  margin-top: var(--space-1);
  padding: 1rem 2.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--color-1);
  background: linear-gradient(135deg, var(--color-4), var(--color-5));
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.55);
  transform: translateY(-3px);
}

.section-heading {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  text-align: center;
  color: var(--color-7);
}

.steps-section {
  width: 100%;
  margin-bottom: var(--space-5);
  padding: 0 var(--space-2);
}

.steps-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 780px;
  margin: 0 auto;
  padding-left: var(--space-4);
  border-left: 2px solid var(--color-4);
}

.timeline-step {
  position: relative;
  padding: var(--space-3);
  color: var(--color-7);
  background: var(--color-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  transition: transform 0.3s ease;
}

.timeline-step:hover {
  transform: translateX(6px);
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  top: 50%;
  left: -3.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  font-weight: 800;
  color: var(--color-1);
  background: linear-gradient(135deg, var(--color-4), var(--color-5));
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
}

.timeline-step p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-8);
}

.timeline-note {
  max-width: 780px;
  margin: var(--space-4) auto 0;
  padding: var(--space-3);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--color-8);
  background: var(--color-3);
  border-left: 3px solid var(--color-4);
  border-radius: var(--radius-md);
}

.methods-section {
  width: 100%;
  margin-bottom: var(--space-5);
  padding: var(--space-4) var(--space-2);
  background: var(--color-2);
  border-radius: var(--radius-lg);
}

.table-responsive {
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
}

.methods-table {
  width: 100%;
  min-width: 500px;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: var(--color-7);
  background: var(--color-3);
}

.methods-table th,
.methods-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.methods-table th {
  font-weight: 700;
  color: var(--color-1);
  background: linear-gradient(135deg, var(--color-4), var(--color-5));
}

.methods-table tr:last-child td {
  border-bottom: none;
}

.methods-table tr:hover td {
  background: rgba(212, 175, 55, 0.08);
}

.security-section {
  width: 100%;
  margin-bottom: var(--space-5);
  padding: 0 var(--space-2);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 900px;
  margin: 0 auto;
}

.highlight-box {
  padding: var(--space-3);
  color: var(--color-7);
  background: var(--color-3);
  border: 1px solid var(--color-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-4px);
}

.highlight-box h3 {
  margin: 0 0 var(--space-1);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-4);
}

.highlight-box p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--color-8);
}

.faq-section {
  width: 100%;
  margin-bottom: var(--space-4);
  padding: 0 var(--space-2);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  background: var(--color-3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-deep);
}

.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--color-7);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  flex-shrink: 0;
  margin-left: var(--space-2);
  font-size: 1.4rem;
  color: var(--color-4);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-3) var(--space-3);
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--color-8);
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .steps-timeline {
    padding-left: var(--space-3);
  }
  .timeline-step::before {
    left: -2.55rem;
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.85rem;
  }
}