:root {
  --bg: #fff;
  --card-bg: #111111;
  --card-border: rgba(255, 215, 0, 0.15);

  --gold: #ffd700;
  --gold-dark: #c89600;
  --text: #ffffff;
  --text-muted: #656565;
}

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

.account-hero{
    /* min-height: 100vh; */
    background-image: url('../images/account types/account-types-hero.png');
    padding: 160px 0;
}
.mid-account{
        display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}


.account-title {
    font-size: 80px;
    /* Larger presence since no mockup */
    font-weight: 300;
    background: linear-gradient(135deg, #c5a021 0%, #f1d279 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.account-title span {
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, #c5a021 0%, #f1d279 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-top: 15px;
    letter-spacing: -2px;
}

.accpunt-para{
    margin: 0 auto;
    max-width: 800px;
    font-size: 16px;
    color: white;
    text-align: center;
}

.account-btn-hero{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.account-section {
  background: var(--bg);
  padding: 100px 20px;
}

.container {
  max-width: 1300px;
  margin: auto;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.account-card {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(255, 217, 0, 0.125) 0%,
    rgba(255, 255, 255, 0.219) 100%
  );

  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 32px;
  color: var(--text);
   box-shadow: 0px 5px 4px 3px rgba(0, 0, 0, 0.1), 0 0 25px rgba(255, 215, 0, 0.10);
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
  overflow: hidden;
}

.account-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(255, 215, 0, 0.12),
    transparent 65%
  );
  opacity: 0;
  transition: 0.35s;
}

.account-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.45);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(255, 215, 0, 0.15);
}

.account-card:hover::before {
  opacity: 1;
}

.card-header {
  margin-bottom: 30px;
}

.card-header h3 {
  font-size: 28px;
  font-weight: 700;

  background: linear-gradient(
    135deg,
    #3f3919,
    #ffd700,
    #b8860b
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features {
  list-style: none;
  margin-bottom: 35px;
}

.features li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.5;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.account-btn {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(
    135deg,
    #fff1a8,
    #ffd700,
    #c89600
  );

  color: #111;
  transition: 0.3s ease;
}

.account-btn:hover {
  transform: scale(1.03);
}

.featured {
  border: 1px solid rgba(255, 215, 0, 0.5);

  transform: scale(1.04);

  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.15),
    0 20px 50px rgba(0, 0, 0, 0.45);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: -40px;

  background: linear-gradient(
    135deg,
    #fff4b0,
    #ffd700,
    #b8860b
  );

  color: #111;
  font-size: 12px;
  font-weight: 700;

  padding: 8px 50px;
  transform: rotate(45deg);
}

/* Tablet */

@media (max-width: 1024px) {
    .account-title{
        font-size: 40px;w
    }
  .account-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured {
    transform: none;
  }
}

/* Mobile */

@media (max-width: 768px) {

  .account-grid {
    grid-template-columns: 1fr;
  }

  .account-card {
    padding: 32px 24px;
  }

  .card-header h3 {
    font-size: 24px;
  }
}