* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  color: #1f2940;
  background: #f7f9ff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5ebff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-new {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5b7cff, #9b7bff);
  box-shadow: 12px 0 0 #dbe2ff;
}

.brand-name {
  font-size: 28px;
  font-weight: 800;
  color: #25304d;
}

.nav-new {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav-new a {
  color: #5f6e93;
  font-weight: 600;
}

.nav-new a.active,
.nav-new a:hover {
  color: #4f63ff;
}

/* BUTTONS */
.btn-solid,
.btn-outline,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-solid {
  background: linear-gradient(135deg, #5b7cff, #8f6dff);
  color: #fff;
  box-shadow: 0 10px 24px rgba(91, 124, 255, 0.2);
}

.btn-outline {
  border: 2px solid #5b7cff;
  color: #5b7cff;
  background: #fff;
}

.btn-dark {
  background: #222f4d;
  color: #fff;
}

.btn-solid:hover,
.btn-outline:hover,
.btn-dark:hover {
  transform: translateY(-2px);
}

/* HOME */
.hero-alt {
  padding: 42px 0 32px;
}

.hero-grid-alt {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.hero-panel {
  background: #ffffff;
  border: 1px solid #e7ecff;
  border-radius: 28px;
  box-shadow: 0 12px 30px rgba(76, 96, 160, 0.06);
}

.large-panel {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 420px;
}

.eyebrow,
.section-tag,
.step-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: #5b63a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.large-panel h1 {
  font-size: 54px;
  line-height: 1.12;
  margin: 18px 0 18px;
  color: #202b46;
}

.large-panel p {
  font-size: 18px;
  line-height: 1.8;
  color: #647293;
  max-width: 700px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.image-panel {
  overflow: hidden;
  min-height: 420px;
}

.image-panel img {
  height: 100%;
  object-fit: cover;
}

.mini-panel {
  padding: 28px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-panel.soft {
  background: linear-gradient(135deg, #eff3ff, #f8f2ff);
}

.mini-panel h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #25304d;
}

.mini-panel p {
  color: #6d7896;
  line-height: 1.7;
}

.promo-band {
  padding: 20px 0 10px;
}

.promo-band-wrap {
  background: linear-gradient(135deg, #5b7cff, #876dff);
  color: #fff;
  border-radius: 30px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.promo-band-wrap h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.promo-band-wrap p {
  line-height: 1.7;
  opacity: 0.95;
}

.feature-alt {
  padding: 42px 0 80px;
}

.section-intro {
  margin-bottom: 24px;
}

.section-intro h2 {
  font-size: 40px;
  margin-top: 12px;
  color: #202b46;
}

.feature-list-alt {
  display: grid;
  gap: 18px;
}

.feature-item-alt {
  background: #fff;
  border: 1px solid #e7ecff;
  border-radius: 22px;
  padding: 22px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  align-items: start;
}

.feature-number {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: #eef2ff;
  color: #4f63ff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item-alt h3 {
  margin-bottom: 8px;
  font-size: 24px;
  color: #25304d;
}

.feature-item-alt p {
  color: #6c7896;
  line-height: 1.7;
}

/* GUIDE */
.guide-page-new {
  padding: 52px 0 80px;
}

.guide-header {
  text-align: center;
  margin-bottom: 34px;
}

.guide-header h1 {
  font-size: 52px;
  margin: 16px 0 12px;
  color: #202b46;
}

.guide-header p {
  max-width: 760px;
  margin: 0 auto;
  color: #687695;
  line-height: 1.8;
  font-size: 18px;
}

.zigzag-steps {
  display: grid;
  gap: 18px;
}

.zigzag-card {
  width: calc(50% - 10px);
  background: #ffffff;
  border: 1px solid #e7ecff;
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 10px 24px rgba(77, 101, 170, 0.06);
}

.zigzag-card.left {
  margin-right: auto;
}

.zigzag-card.right {
  margin-left: auto;
  background: linear-gradient(135deg, #f9fbff, #f4f0ff);
}

.zigzag-card h3 {
  font-size: 28px;
  margin: 14px 0 10px;
  color: #24304c;
}

.zigzag-card p {
  color: #697694;
  line-height: 1.8;
}

.guide-bottom {
  text-align: center;
  margin-top: 32px;
}

/* CONTACT */
.contact-page-new {
  padding: 52px 0 80px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
}

.contact-sidebar {
  background: linear-gradient(180deg, #eef3ff, #f7f4ff);
  border: 1px solid #e3e9ff;
  border-radius: 28px;
  padding: 34px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-sidebar h1 {
  font-size: 48px;
  margin: 16px 0 14px;
  color: #202b46;
}

.contact-sidebar p {
  color: #657392;
  line-height: 1.8;
  font-size: 17px;
}

.contact-mainbox {
  background: #ffffff;
  border: 1px solid #e7ecff;
  border-radius: 28px;
  padding: 22px;
  display: grid;
  gap: 16px;
}

.contact-row-box {
  border: 1px solid #edf1ff;
  border-radius: 20px;
  padding: 22px;
  background: #fbfcff;
}

.contact-row-box h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #25304d;
}

.contact-row-box p,
.contact-row-box a {
  color: #697694;
  line-height: 1.7;
  word-break: break-word;
}

/* FOOTER */
.footer-new {
  background: #ffffff;
  border-top: 1px solid #e7ecff;
}

.footer-new-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #677492;
}

.footer-new-wrap a {
  color: #4f63ff;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-grid-alt,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .large-panel h1,
  .guide-header h1,
  .contact-sidebar h1 {
    font-size: 40px;
  }

  .zigzag-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .topbar-wrap,
  .footer-new-wrap,
  .promo-band-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-new {
    gap: 16px;
  }

  .large-panel {
    padding: 28px;
    min-height: auto;
  }

  .large-panel h1 {
    font-size: 32px;
  }

  .promo-band-wrap h2,
  .section-intro h2 {
    font-size: 28px;
  }

  .feature-item-alt {
    grid-template-columns: 1fr;
  }

  .guide-header h1,
  .contact-sidebar h1 {
    font-size: 32px;
  }

  .contact-sidebar {
    min-height: auto;
  }
}