* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #f5f5ff;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 32px 48px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 500;
}

.cta-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid #f7f8fa;
  background: rgba(31, 111, 235, 0.15);
  color: #cdd9ff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  background: rgba(31, 111, 235, 0.3);
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.35);
  transform: translateY(-1px);
}

.cta-icon-img {
  width: 44px;
  height: 44px;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  max-width: 640px;
  color: #e0e4ff;
  line-height: 1.6;
}

.hero .primary-btn {
  background: #70a2eb;
  border: none;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero .primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(39, 89, 213, 0.35);
}

.primary-btn img {
  width: 40px;
  height: 40px;
}

.welcome-body {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, #0f1335 0%, #1c275d 35%, #0b0f2c 100%);
}

.welcome-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.welcome-card {
  width: 100%;
  max-width: 1000px;
  background: rgba(10, 14, 60, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(5, 8, 34, 0.8);
  color: #fefefe;
}

.welcome-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 32px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #8fb0ff;
  margin-bottom: 8px;
}

.welcome-header h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.welcome-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.welcome-step {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-label span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #5af38c;
  color: #0b1324;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.welcome-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px;
  object-fit: contain;
}

.welcome-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.info-note {
  color: #c3c8ff;
  font-size: 0.95rem;
}

.info-note a {
  color: #ffffff;
  font-weight: 600;
}

.inline-icon {
  height: 28px;
  width: auto;
  vertical-align: middle;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0 4px;
  padding: 2px;
}

main {
  flex: 1;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

main h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header span {
  font-size: 1.4rem;
  transition: transform 0.2s;
}

.accordion-item.open .accordion-header span {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 20px;
}

.accordion-item.open .accordion-body {
  max-height: 200px;
  padding-bottom: 16px;
}

.accordion-body p {
  color: #e4e5ff;
  line-height: 1.6;
}

.contact-panel {
  background: rgba(10, 14, 60, 0.65);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-panel p {
  margin-top: 12px;
  font-size: 1.1rem;
}

.contact-panel a {
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .page {
    padding: 24px;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
  }

  main {
    padding: 28px;
  }
}

