:root {
  --bg: #06060b;
  --bg-soft: #0d0d14;
  --card: rgba(15, 15, 24, 0.86);
  --card-2: rgba(20, 20, 31, 0.9);
  --text: #f5f5f7;
  --muted: #a1a1b3;
  --border: rgba(255, 255, 255, 0.08);
  --pink: #FFC1CC;
  --purple: #FFC1CC;
  --success: #5ee05e;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b0b0f;
    color: white;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

img {
    max-width: 100%;
    display: block;
}

.mainContainer {
    width: 92%;
    max-width: 1600px;
    margin: 0 auto;
}

.navBar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(11, 11, 15, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navInner {
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.footerLogo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logoArea {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.logoArea img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.BlossomHost1 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.navLinks {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    gap: 42px;
}

.navLinks a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    transition: color 0.2s ease;
}

.navLinks a:hover {
    color: white;
}

.navButtons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    gap: 14px;
}

.navButtons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-size: 16px;
    transition: 0.2s ease;
}

.navButtons a:first-child {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
    background: transparent;
}

.navButtons a:first-child:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.03);
}

.mainButton,
.secondButton,
.statusButton,
.checkoutButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.mainButton,
.checkoutButton {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: white;
  box-shadow: 0 0 24px rgba(255, 79, 139, 0.18);
}

.mainButton:hover,
.checkoutButton:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.mainButton {
  padding: 11px 18px;
}

.secondButton {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: transparent;
}

.secondButton:hover {
  border-color: rgba(255, 255, 255, 0.35);
}

.checkoutPage {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
}

.heroGlow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.heroGlow1 {
  width: 520px;
  height: 520px;
  left: 8%;
  top: 40px;
  background: rgba(255, 79, 139, 0.08);
}

.heroGlow2 {
  width: 520px;
  height: 520px;
  right: 8%;
  top: 90px;
  background: rgba(155, 92, 255, 0.08);
}

.checkoutContainer {
  position: relative;
  z-index: 1;
}

.checkoutHeader {
  text-align: center;
  margin-bottom: 42px;
}

.checkoutHeader h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 800;
}

.checkoutHeader p {
  color: var(--muted);
  font-size: 1rem;
}

.checkoutGrid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 34px;
  align-items: start;
}

.sectionLabel {
  color: #8f8fa4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.planTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.planTab {
  border: 1px solid var(--border);
  background: #181820;
  color: var(--muted);
  padding: 14px 22px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.planTab:hover {
  color: var(--text);
  border-color: rgba(255, 79, 139, 0.3);
}

.planTab.activePlan {
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: white;
  border-color: transparent;
  box-shadow: 0 0 26px rgba(255, 79, 139, 0.18);
}

.smallBadge,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.smallBadge {
  margin-left: 8px;
  font-size: 0.72rem;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.badge {
  padding: 7px 14px;
  font-size: 0.8rem;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  color: white;
}

.planDetailsCard,
.summaryCard,
.statusCard {
  background: var(--card);
  border: 1px solid rgba(255, 79, 139, 0.5);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.planDetailsCard {
  padding: 34px;
}

.planHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.planHeader h2 {
  font-size: 2rem;
  font-weight: 800;
}

.planDescription {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 900px;
}

.featureGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.featureItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  min-height: 88px;
}

.featureIcon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 79, 139, 0.18), rgba(155, 92, 255, 0.18));
  font-size: 1.1rem;
  flex-shrink: 0;
}

.featureItem strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 4px;
}

.featureItem span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* BILLING */
.billingSection {
  margin-top: 30px;
}

.durationButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.durationButton {
  min-width: 110px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #181820;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}

.durationButton span {
  font-size: 0.75rem;
  color: white;
}

.durationButton:hover {
  color: var(--text);
  border-color: rgba(255, 79, 139, 0.3);
}

.activeDuration {
  color: white;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  border-color: transparent;
  box-shadow: 0 0 26px rgba(255, 79, 139, 0.2);
}

.checkoutRight {
  position: sticky;
  top: 100px;
}

.summaryCard {
  padding: 34px;
}

.summaryCard h3 {
  font-size: 2rem;
  margin-bottom: 26px;
  font-weight: 800;
}

.summaryRows {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}

.summaryRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 1rem;
}

.summaryRow span {
  color: var(--muted);
}

.summaryRow strong {
  color: var(--text);
}

.summaryTotal {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.summaryTotal span {
  color: var(--muted);
  font-size: 1rem;
}

.summaryTotal strong {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  text-align: right;
}

.summaryTotal p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 0.92rem;
  text-align: right;
}

.paymentMethod {
  margin-bottom: 28px;
}

.paymentBox {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(255, 79, 139, 0.1), rgba(155, 92, 255, 0.1));
  border: 1px solid rgba(255, 79, 139, 0.25);
}

.paymentIcon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.paymentBox strong {
  display: block;
  margin-bottom: 4px;
}

.paymentBox span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.paymentDot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-left: auto;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  flex-shrink: 0;
}

.checkoutButton {
  width: 100%;
  min-height: 58px;
  font-size: 1rem;
}

.termsText {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}

/* HERO / STATUS CARD SUPPORT */
.heroSection {
  padding: 80px 0;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.heroTitle {
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 1.05;
  margin-bottom: 18px;
  font-weight: 800;
}

.heroText {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.heroButtons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.heroTags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.heroTag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #d6d6e3;
}

.heroTagIcon {
  opacity: 0.95;
}

.statusCard {
  padding: 30px;
}

.statusTitle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c7b8df;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.onlineDot {
  width: 12px;
  height: 12px;
  background: var(--success);
  border-radius: 50%;
}

.statusRow {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.statusRow span {
  color: #c5bfd6;
}

.statusRow strong {
  color: white;
}

.statusButton {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  border: 1px solid var(--border);
}

.statusButton:hover {
  background: rgba(255, 255, 255, 0.09);
}

.footerSection {
  border-top: 1px solid var(--border);
  margin-top: 70px;
  padding: 50px 0 24px;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}

.footerLogo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.footerLogo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.footerText {
  color: var(--muted);
  line-height: 1.7;
  max-width: 380px;
}

.footerButtons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.footerTitle {
  font-size: 1rem;
  margin-bottom: 16px;
}

.footerList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footerList a {
  color: var(--muted);
  transition: 0.2s ease;
}

.footerList a:hover {
  color: var(--text);
}

.footerBottom {
  border-top: 1px solid var(--border);
  margin-top: 38px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.footerBottomLinks {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footerBottomLinks a:hover {
  color: var(--text);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .checkoutGrid,
  .heroGrid,
  .footerGrid {
    grid-template-columns: 1fr;
  }

  .checkoutRight {
    position: static;
  }
}

@media (max-width: 820px) {
  .navInner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .navLinks,
  .navButtons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .planHeader {
    flex-direction: column;
    align-items: flex-start;
  }

  .featureGrid {
    grid-template-columns: 1fr;
  }

  .summaryTotal {
    flex-direction: column;
  }

  .summaryTotal strong,
  .summaryTotal p {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .mainContainer {
    width: min(100% - 24px, 1280px);
  }

  .planTab,
  .durationButton {
    width: 100%;
  }

  .summaryCard,
  .planDetailsCard,
  .statusCard {
    padding: 22px;
  }

  .checkoutHeader h1,
  .heroTitle {
    font-size: 2.2rem;
  }

  .summaryCard h3 {
    font-size: 1.6rem;
  }

  .summaryTotal strong {
    font-size: 2.2rem;
  }
}

.planTabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.planTab {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 14px;
    background-color: #1a1a1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.65);
    font-size: 16px;
    font-weight: 700;
    transition: 0.25s ease;
}

.planTab:hover {
    border-color: rgba(255, 193, 204, 0.45);
    color: white;
}

.planTab.activePlan {
    background: linear-gradient(90deg, #FFC1CC, #FFC1CC);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(255, 79, 139, 0.22);
}

.smallBadge {
    margin-left: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    background-color: rgba(255, 255, 255, 0.18);
    color: white;
}

.paymentModalOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 2000;
}

.paymentModalOverlay.show {
    opacity: 1;
    visibility: visible;
}

.paymentModal {
    position: relative;
    width: 100%;
    max-width: 560px;
    background: #0f0f17;
    border: 1px solid rgba(255, 79, 139, 0.5);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 0 30px rgba(255, 79, 139, 0.12);
}

.modalClose {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    border: none;
    cursor: pointer;
}

.modalTitle {
    font-size: 32px;
    margin-bottom: 20px;
}

.modalSteps {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.modalStep {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.45);
}

.modalStep span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.modalStep.active {
    color: white;
}

.modalStep.active span {
    background: linear-gradient(90deg, #FFC1CC, #FFC1CC);
}

.modalStepLine {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.modalInfoBox,
.modalSummaryBox {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 18px;
}

.modalInfoBox h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.modalInfoBox p {
    color: rgba(255,255,255,0.6);
}

.modalSummaryRow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
}

.modalSummaryRow span {
    color: rgba(255,255,255,0.55);
}

.modalMainButton,
.modalSecondaryButton {
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
}

.modalMainButton {
    background: linear-gradient(90deg, #FFC1CC, #FFC1CC);
    color: white;
}

.modalSecondaryButton {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
}

.formGroup {
    margin-top: 12px;
}

.formGroup label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.formGroup input {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    color: white;
    padding: 0 16px;
    outline: none;
}

.formGroup input:focus {
    border-color: #FFC1CC;
}

.hidden {
    display: none;
}

body.modalOpen {
    overflow: hidden;
}