/* ===============================
   ACCOUNTS PAGE – FIXED DESIGN
================================ */

/* HERO */
.accounts-hero-alt {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(95,140,255,.25), transparent 40%),
    #050714;
  overflow: hidden;
}

.accounts-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
}

.accounts-hero-content {
  max-width: 540px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(95,140,255,.15);
  color: #8fb1ff;
  font-size: 13px;
  margin-bottom: 16px;
}

.accounts-hero-content h1 {
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.accounts-hero-content p {
  font-size: 18px;
  color: #b6b6c8;
  margin-bottom: 32px;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-buttons .btn.primary {
  box-shadow: 0 20px 60px rgba(95,140,255,.45);
}

/* HERO STATS */
.hero-stats {
  display: flex;
  gap: 28px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  color: #b6b6c8;
}

.hero-stats strong {
  font-size: 18px;
  color: #fff;
}

/* HERO IMAGE */
.accounts-hero-visual {
  position: relative;
}

.accounts-hero-visual img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(95,140,255,.35);
  transform: translateY(-20px);
}

/* FLOATING CARDS */
.floating-card {
  position: absolute;
  background: rgba(20,20,40,.9);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}

.card-1 {
  top: 20%;
  left: -40px;
}

.card-2 {
  bottom: 18%;
  right: -20px;
}

/* ===============================
   FEATURES
================================ */
.account-features {
  padding: 100px 0;
}

.account-features h2 {
  text-align: center;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feature-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 32px;
  border-radius: 22px;
  transition: all .3s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: #5f8cff;
}

.feature-box i {
  font-size: 26px;
  color: #5f8cff;
  margin-bottom: 14px;
}

/* ===============================
   ACCOUNT TYPES
================================ */
.account-types-alt {
  padding: 100px 0;
  background: rgba(255,255,255,.02);
}

.account-types-alt h2 {
  text-align: center;
  margin-bottom: 60px;
}

.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.type-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02)
  );
  padding: 36px;
  border-radius: 26px;
  position: relative;
}

.type-card.highlight {
  border: 1px solid #5f8cff;
  box-shadow: 0 0 40px rgba(95,140,255,.25);
}

.type-card i {
  font-size: 28px;
  color: #5f8cff;
  margin-bottom: 16px;
}

.type-card a {
  display: inline-block;
  margin-top: 14px;
  color: #8fb1ff;
  font-weight: 500;
}

/* ===============================
   STEPS
================================ */
.account-steps {
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.steps-timeline {
  display: grid;
  gap: 32px;
  border-left: 2px solid rgba(255,255,255,.1);
  padding-left: 40px;
}

.step-item span {
  background: #5f8cff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
  margin-bottom: 8px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .accounts-hero-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .accounts-hero-visual {
    margin-top: 60px;
    text-align: center;
  }

  .features-grid,
  .types-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   HEADER FIX (GLOBAL)
================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(5,7,20,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #b6b6c8;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: #fff;
}

/* Auth buttons alignment */
.auth-buttons {
  display: flex;
  gap: 14px;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

/* ===============================
   MOBILE MENU
================================ */

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: #050714;
  display: none;
  flex-direction: column;
  padding: 24px;
  gap: 18px;
  z-index: 998;
}

.mobile-menu a {
  color: #fff;
  font-size: 16px;
}

.mobile-menu.active {
  display: flex;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .auth-buttons {
    display: none;
  }

  .hamburger {
    display: block;
  }
}

/* ===============================
   HEADER LOGO FIX
================================ */

/* Brand container */
.header .brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo image */
.header .brand-logo {
  width: 34px;       /* 🔥 perfect fintech size */
  height: auto;
  object-fit: contain;
}

/* Brand text */
.header .brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Header height consistency */
.header-inner {
  height: 70px;
}

/* Prevent logo from stretching header */
.header img {
  max-height: 36px;
}

