/* assets/css/styles.css */
html, body { height: 100%; }

body{
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
}

a{ color: var(--primary); text-decoration: none; }
a:hover{ text-decoration: underline; }

.section-pad{ padding: 64px 0; }
@media (max-width: 991.98px){
  .section-pad{ padding: 48px 0; }
}

/* top ribbon */
.top-ribbon{
  background: var(--grad-ribbon);
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.top-ribbon .dot{
  display:inline-block; width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  box-shadow: 0 0 0 4px rgba(255,91,147,.12);
  margin-right: 8px; transform: translateY(1px);
}
.link-ribbon{ color: rgba(16,24,40,.86); }
.link-ribbon:hover{ color: rgba(16,24,40,1); text-decoration: none; }

/* nav glass */
.nav-glass{
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16,24,40,.10);
  box-shadow: 0 10px 30px rgba(11,18,32,.06);
}
.navbar .navbar-brand{ color: var(--text); }
.navbar .nav-link{ color: rgba(16,24,40,.82); }
.navbar .nav-link:hover{ color: rgba(16,24,40,1); }
.brand-mark{
  display:inline-flex; align-items:center; justify-content:center;
  width: 36px; height: 36px;
  border-radius: 14px;
  background: var(--grad-chip);
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: var(--shadow-soft);
  color: var(--primary);
}

/* page hero */
.page-hero{
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  border-bottom: 1px solid rgba(16,24,40,.08);
}
.page-hero-compact{ padding-top: 6px; }
.page-hero .kicker{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .85rem;
  color: rgba(16,24,40,.86);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
}
.page-hero-bg{
  position:absolute; inset:0;
  pointer-events:none;
}

.hero-bottom-wave{
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 86px;
  pointer-events:none;
}
.hero-bottom-wave svg{ width:100%; height:100%; display:block; }
.hero-bottom-wave path{
  fill: rgba(255,255,255,.9);
  filter: drop-shadow(0 -10px 18px rgba(11,18,32,.06));
}

/* blobs */
.blob{
  position:absolute;
  width: 420px; height: 420px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .55;
  transform: translateZ(0);
}
.blob-a{ left:-140px; top:-160px; background: rgba(255,91,147,.55); }
.blob-b{ right:-160px; top:-120px; background: rgba(38,181,106,.50); }
.blob-c{ left: 12%; bottom:-210px; background: rgba(44,42,122,.45); }
.blob-d{ right: 8%; bottom:-240px; background: rgba(246,196,83,.45); }
.blob-e{ left: 46%; top:-220px; background: rgba(44,42,122,.35); }

/* side panel / policy nav */
.side-panel{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
}
.policy-nav a{
  display:block;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(16,24,40,.80);
  border: 1px solid transparent;
}
.policy-nav a:hover{
  text-decoration:none;
  background: rgba(44,42,122,.06);
  border-color: rgba(44,42,122,.10);
  color: rgba(16,24,40,1);
}

/* content blocks */
.policy-section{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,24,40,.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 22px 22px;
  margin-bottom: 14px;
}
.policy-section:last-child{ margin-bottom: 0; }

.mini-box{
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(242,244,250,.92));
  border: 1px solid rgba(16,24,40,.10);
  padding: 14px 14px;
  box-shadow: 0 10px 22px rgba(11,18,32,.06);
}

/* strips / notes */
.cta-strip{
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(44,42,122,.10), rgba(255,91,147,.08), rgba(38,181,106,.08));
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: var(--shadow-soft);
  padding: 18px 18px;
}
.disclaimer-card{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.88);
  border: 1px dashed rgba(16,24,40,.18);
  padding: 16px 16px;
}

/* thankyou */
.thankyou-card{
  border-radius: calc(var(--radius-lg) + 4px);
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,24,40,.10);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  overflow:hidden;
}
.thankyou-bg{ position:absolute; inset:0; pointer-events:none; }
.icon-badge{
  width: 44px; height: 44px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(38,181,106,.18), rgba(44,42,122,.10));
  border: 1px solid rgba(16,24,40,.12);
  box-shadow: 0 12px 26px rgba(11,18,32,.10);
  color: var(--success);
}

/* footer */
.site-footer{
  margin-top: 40px;
  padding: 44px 0;
  background: rgba(255,255,255,.82);
  border-top: 1px solid rgba(16,24,40,.10);
}
.footer-title{
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(16,24,40,.72);
  margin-bottom: 10px;
}
.footer-links a{
  display:inline-block;
  padding: 4px 0;
  color: rgba(16,24,40,.78);
}
.footer-links a:hover{ color: rgba(16,24,40,1); text-decoration:none; }

/* bootstrap button tweaks (subtle) */
.btn-primary{
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 24px rgba(44,42,122,.18);
}
.btn-primary:hover{
  background: var(--primary-2);
  border-color: var(--primary-2);
}
.btn-outline-secondary{
  border-color: rgba(16,24,40,.22);
  color: rgba(16,24,40,.80);
}
.btn-outline-secondary:hover{
  background: rgba(16,24,40,.06);
  border-color: rgba(16,24,40,.22);
  color: rgba(16,24,40,1);
}

/* Slightly increase vertical spacing for section blocks site-wide */
[class*="-section"] {
  margin-top: 3.5rem;
}
  .pricing-orb{
    position:absolute; border-radius:999px; filter: blur(40px); opacity:.35;
    pointer-events:none; transform: translate3d(0,0,0);
  }
  .pricing-orb-1{ width:340px; height:340px; left:-120px; top:40px; background: radial-gradient(circle at 30% 30%, rgba(99,102,241,.9), rgba(99,102,241,0)); }
  .pricing-orb-2{ width:420px; height:420px; right:-160px; bottom:-120px; background: radial-gradient(circle at 60% 40%, rgba(16,185,129,.85), rgba(16,185,129,0)); }

  .chip{
    display:inline-flex; align-items:center; gap:.35rem;
    padding:.5rem .75rem; border-radius:999px;
    background: rgba(255,255,255,.6);
    border: 1px solid rgba(0,0,0,.06);
    backdrop-filter: blur(8px);
    font-size:.9rem;
  }

  .mini-pill{
    display:inline-flex; align-items:center;
    padding:.35rem .6rem; border-radius:999px;
    background: rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.06);
    font-size:.85rem;
  }

  .addon-card, .compare-card, .cta-card{
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(10px);
    padding: 1rem;
  }
  .addon-ico, .cta-ico{
    width:44px; height:44px; border-radius:14px;
    display:grid; place-items:center;
    background: rgba(0,0,0,.06);
    border: 1px solid rgba(0,0,0,.08);
    flex: 0 0 auto;
    font-size: 1.1rem;
  }

  /* If you don't already have it */
  .badge-soft{
    background: rgba(0,0,0,.05);
    color: rgba(0,0,0,.7);
    border: 1px solid rgba(0,0,0,.08);
  }

  /* Optional: make featured card pop a bit more */
  .price-card.featured{
    border: 1px solid rgba(13,110,253,.25);
    box-shadow: 0 10px 30px rgba(13,110,253,.12);
    padding: 1.25rem;
  }