body {
    margin: 0;
    background: radial-gradient(circle at top left, #101827 0%, #070b14 45%, #03050a 100%);
    color: white;
    font-family: 'Times New Roman', Times, serif;
}

main {
    border-top: 2px solid #f5c542;
    border-bottom: 2px solid #f5c542;
}

/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
  padding: 2rem 1rem;
  text-align: center;

  position: relative;
  z-index: 1; /* stays below navbar */
}

.hero-container {
  max-width: 1000px;
  margin: 0 auto;

  border-bottom: solid #ffffff28;
}

/* ============================= */
/* HERO TEXT */
/* ============================= */
.hero-heading {
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.hero-text {
  color: #f5c542;
  font-size: 22px;
  margin-bottom: 30px;
}

.hero-subtext {
  color: #fff;
  font-size: 18px;
  margin: 1rem auto 30px;
  max-width: 900px;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (min-width: 768px) {
  .brand-text { font-size: 22px; }
  .navbar-logo { width: 56px; }
}

@media (min-width: 992px) {
  .brand-text {
    font-size: 26px;
    letter-spacing: 1.5px;
  }

  .navbar-logo { width: 70px; }

  .navbar-links a {
    font-size: 18px;
  }
}

@media (max-width: 375px) {
  .brand-text { font-size: 18px; }
  .navbar-logo { width: 42px; }
}



/* ============================= */
/* PLANS SECTION */
/* ============================= */
.plans {
  padding: 40px 20px 80px;
}

.plans-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================= */
/* HEADING */
/* ============================= */
.plans-heading {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;

  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: #fff;
}

.plans-heading::before,
.plans-heading::after {
  content: "";
  flex: 1;
  height: 1px;
}

.plans-heading::before {
  background: linear-gradient(to right, transparent, #fff);
}

.plans-heading::after {
  background: linear-gradient(to left, transparent, #fff);
}

.plans-heading span {
  padding: 0 20px;
}

/* ============================= */
/* GRID */
/* ============================= */
.plans-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 🔥 2 columns */
  gap: 30px;

  max-width: 1100px;
  margin: 0 auto;
}

/* ============================= */
/* CARD */
/* ============================= */
.plans-section {
  display: flex;
  flex-direction: column;
  gap: 20px;

  border: 1px solid #f4c56c;
  border-radius: 12px;
  padding: clamp(25px, 4vw, 50px);

  background: #070b14;
  transition: 0.25s ease;
}

.plans-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(244,197,108,0.2);
}

/* ============================= */
/* TEXT */
/* ============================= */
.plans-subheading {
  font-size: clamp(24px, 3vw, 32px);
  color: #fff;
  margin: 0;
}

.plans-text {
  font-size: clamp(22px, 3vw, 26px);
  font-weight: bold;
  margin: 0;
  color: #f4c56c;
}

.plans-subtext {
  font-size: 20px;
  color: #ccc;
}

/* ============================= */
/* BULLETS */
/* ============================= */
.section-bulletpoints {
  list-style: none;
  padding: 0;
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 10px;

  font-size: 18px;
  color: #ddd;
}

.section-bulletpoints li::before {
  content: "•";
  margin-right: 8px;
  color: #f4c56c;
}

/* ============================= */
/* CONTRACT CHECKBOXES */
/* ============================= */
.contract-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto; /* 🔥 pushes to bottom nicely */
}

.contract-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  color: #ccc;
}

.contract-item input {
  margin-top: 3px;
}

.contract-item a {
  color: #f4c56c;
  text-decoration: none;
}

.contract-item a:hover {
  text-decoration: underline;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.subscribe-btn {
  margin-top: 15px;

  width: 100%;
  padding: 10px;

  border-radius: 8px;
  border: none;

  background: #1a1a1a;
  color: #fff;

  font-size: 15px;
  font-weight: 600;

  transition: 0.25s ease;
}

/* ENABLED */
.subscribe-btn:enabled:hover {
  background: linear-gradient(135deg, #f5c542, #ff8c42);
  transform: translateY(-2px);
}

/* DISABLED */
.subscribe-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 600px) {

  .plans {
    padding: 30px 15px 60px;
  }

  .plans-section {
    padding: 25px 20px;
  }

  .plans-heading {
    margin-bottom: 25px;
  }
}

@media (max-width: 700px) {
  .plans-sections {
    grid-template-columns: 1fr; /* 🔥 stack on mobile */
  }
}