/*<style>*/
:root{
  --bg:#FFF3E6;
  --primary:#0B1C2D;
  --accent:#FFB703;
  --card:#ffffff;
  --muted:#6b7280;
}

*{box-sizing:border-box;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}


html, body {
  height: 100%;
  margin: 0;
}

body {
  background: linear-gradient(90deg, #5de0e6 0%, #004aad 100%);
}


/* ================= HERO ================= */
.hero{
  background:var(--bg);
  padding:80px 20px 220px;
}

.hero-inner{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:50px;
  align-items:center;
}

.hero img{
  max-width:100%;
}

.hero h1{
  font-size:42px;
  margin:0 0 20px;
}

.hero p{
  font-size:18px;
  line-height:1.6;
  color:#374151;
}

/* red-box meta info */
.meta{
  margin:25px 0 35px;
  font-size:15px;
}

.meta div{
  margin-bottom:8px;
}

.meta span{
  color:var(--muted);
}

.meta a {
    color: #626262;
    text-decoration: none;
}

/* ================= TOGGLE ================= */
.toggle-wrap{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.toggle{
  background:#e5e7eb;
  border-radius:999px;
  padding:6px;
  display:flex;
}

.toggle button{
  border:0;
  background:none;
  padding:12px 26px;
  border-radius:999px;
  font-weight:600;
  cursor:pointer;
}

.toggle button.active{
  background:var(--primary);
  color:#fff;
}

/* ================= FORM ================= */
.checkout-wrap{
  max-width:950px;
  margin:0 auto 100px;
  padding:0 20px;
}

.form-card form a {
    color: #000000;
}

.form-card{
  background:#fff;
  border-radius:26px;
  padding:40px;
  box-shadow:0 35px 60px rgba(0,0,0,.18);
}

.form-card h2{
  margin-top:0;
  margin-bottom:25px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group{
  position:relative;
}

.form-group.full{
  grid-column:1 / -1;
}

.form-group input,
.form-group select{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  font-size:15px;
}

.tooltip{
  position:absolute;
  right:14px;
  top:50%;
  transform:translateY(-50%);
  cursor:help;
  color:#9ca3af;
}

.tooltip:hover::after{
  content:attr(data-tip);
  position:absolute;
  right:0;
  top:28px;
  background:#111;
  color:#fff;
  font-size:12px;
  padding:8px 10px;
  border-radius:8px;
  width:240px;
}

/* checkbox */
.checkbox{
  margin:20px 0;
  font-size:14px;
}

.checkbox input{
  margin-right:8px;
}

/* pay button */
.pay-btn{
  background:var(--primary);
  color:#fff;
  border:0;
  padding:16px 34px;
  font-size:16px;
  font-weight:700;
  border-radius:14px;
  cursor:pointer;
}
/*</style>*/

/*<style>*/
  /* ================= PRICING TABLE ================= */
.pricing-table{
  max-width:950px;
  margin:-160px auto 100px;
  padding:0 20px;
  position:relative;
  z-index:5;
}


.pricing-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.price-card{
  background:#fff;
  border-radius:22px;
  padding:40px 30px;
  box-shadow:0 30px 50px rgba(0,0,0,.15);
  position:relative;
}

.price-card.featured{
  border:3px solid var(--primary);
  transform:translateY(-10px);
}

.price-card h3{
  font-size:24px;
  margin-bottom:10px;
}

.price{
  font-size:42px;
  font-weight:800;
  margin:10px 0 25px;
}

.price span{
  font-size:15px;
  color:var(--muted);
  font-weight:500;
}

.price-btn{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:14px 28px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  margin-bottom:25px;
}

.price-btn.outline{
  background:transparent;
  border:2px solid var(--primary);
  color:var(--primary);
}

.price-card ul{
  list-style:none;
  padding:0;
  margin:0;
}

.price-card li{
  margin-bottom:14px;
  padding-left:26px;
  position:relative;
}

.price-card li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#16a34a;
  font-weight:700;
}

.price-card li.muted{
  color:var(--muted);
}

.price-card li.muted::before{
  color:#9ca3af;
}

.badge{
  position:absolute;
  top:-14px;
  right:20px;
  background:var(--primary);
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:700;
}

/*</style>*/

/*<style>*/
  /* ================= UPGRADE INFO ================= */
.upgrade-info{
  max-width:950px;
  margin:40px auto 0;
  padding:0 20px;
}

.upgrade-card{
  background:#ffffff;
  border-radius:22px;
  padding:30px 34px;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.upgrade-card h3{
  margin-top:0;
  margin-bottom:12px;
  font-size:22px;
}

.upgrade-card p{
  margin:0 0 12px;
  font-size:15px;
  line-height:1.6;
  color:#374151;
}

.upgrade-card .muted{
  color:#6b7280;
  font-size:14px;
}


/* ================= SECURE PAYMENTS ================= */
.secure-payments{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  font-size:14px;
  color:#6b7280;
}

.secure-payments .dot{
  font-size:18px;
  line-height:1;
}

.fastspring-logo{
  height:20px;
  margin-left:4px;
}

/*</style>*/


/*<style>*/
  /* ================= FAQ SECTION ================= */
.faq-section{
  max-width:900px;
  margin:100px auto;
  padding:0 20px;
}

.faq-section h2{
  text-align:center;
  font-size:36px;
  margin-bottom:40px;
  color: white;
}

.faq-item{
  background:#ffffff;
  border-radius:14px;
  margin-bottom:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:none;
  border:0;
  padding:22px 24px;
  font-size:18px;
  font-weight:600;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question .icon{
  font-size:26px;
  font-weight:400;
  transition:transform .3s ease;
}

.faq-answer{
  padding:0 24px;
  max-height:0;
  overflow:hidden;
  font-size:15px;
  color:#4b5563;
  line-height:1.6;
  transition:max-height .35s ease, padding .35s ease;
}

.faq-item.active .faq-answer{
  max-height:400px;
  padding:0 24px 22px;
}

.faq-item.active .faq-question .icon{
  transform:rotate(45deg);
}

.faq-answer a {
    color: #FF9800;
    text-decoration: none;
    font-weight: 500;
    text-decoration: underline;
}


a.home-btn{
    display: block;
    text-decoration: none;
    color: white;
    background-color: var(--accent);
    padding: 14px 38px;
    width: fit-content;
    border-radius: 12px;
    font-size: 15px;
}
/*</style>*/