/* ==========
   DotCom Online Conversion UI
   Minimal, clean, mobile-friendly
   ========== */

:root{
  --ink:#0B1220;
  --muted:#4B5563;
  --bg:#ffffff;
  --card:#F8FAFC;
  --line:#E5E7EB;
  --brand:#0EA5A4; /* teal */
  --brand2:#2563EB; /* blue accent */
  --radius:16px;
  --shadow: 0 10px 25px rgba(2, 8, 23, 0.08);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.5;
}

.container{
  width:min(1100px, 92vw);
  margin:0 auto;
}

.section{
  padding:64px 0;
}

.section.sm{padding:40px 0}
.section.top{padding-top:36px}

h1{font-size:clamp(2rem, 3.4vw, 3rem); line-height:1.1; margin:0 0 12px}
h2{font-size:clamp(1.4rem, 2.4vw, 2rem); margin:0 0 12px}
h3{font-size:1.15rem; margin:0 0 8px}
p{margin:0 0 12px; color:var(--muted)}

.kicker{
  display:inline-block;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:0.9rem;
  color:var(--muted);
}

.grid{
  display:grid;
  gap:18px;
}

.grid.two{grid-template-columns:repeat(2, minmax(0, 1fr))}
.grid.three{grid-template-columns:repeat(3, minmax(0, 1fr))}
@media (max-width: 820px){
  .grid.two, .grid.three{grid-template-columns:1fr}
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.card.white{background:#fff}

.hr{height:1px; background:var(--line); margin:18px 0}

.btnrow{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:600;
  color:var(--ink);
  background:#fff;
  transition:transform .08s ease, box-shadow .15s ease;
}

.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-color:transparent;
  color:#fff;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.20);
}
.btn.ghost{
  background:transparent;
}

.badge{
  display:inline-block;
  font-weight:700;
  font-size:0.85rem;
  padding:6px 10px;
  border-radius:999px;
  background:#ECFEFF;
  border:1px solid #A5F3FC;
  color:#155E75;
  margin-bottom:10px;
}

.small{font-size:0.95rem}
.list{
  margin:10px 0 0;
  padding:0 0 0 18px;
  color:var(--muted);
}

.price{
  font-size:1.1rem;
  font-weight:800;
  color:var(--ink);
  margin:10px 0 0;
}

/* Sticky mobile CTA (optional) */
.sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  padding:10px 12px;
  background:rgba(255,255,255,.92);
  border-top:1px solid var(--line);
  backdrop-filter: blur(8px);
  display:none;
  z-index:999;
}
.sticky-cta .container{display:flex; gap:10px; align-items:center; justify-content:space-between}
.sticky-cta .btn{flex:1}
@media (max-width:820px){
  .sticky-cta{display:block}
  body{padding-bottom:70px}
}

/* FORCE stronger primary button style for DotCom Online */

a.btn.primary,
.btn.primary,
button.btn.primary {
  background: linear-gradient(135deg, #0EA5A4 0%, #2563EB 100%) !important;
  color: #ffffff !important;
  border: none !important;
  font-weight: 700;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35) !important;
}

/* Hover effect */
a.btn.primary:hover,
.btn.primary:hover,
button.btn.primary:hover {
  background: linear-gradient(135deg, #0d9488 0%, #1d4ed8 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.45) !important;
}

a.btn:not(.primary),
.btn:not(.primary) {
  background: #ffffff !important;
  border: 1.5px solid #E5E7EB !important;
  color: #0B1220 !important;
  font-weight: 600;
}

a.btn:not(.primary):hover,
.btn:not(.primary):hover {
  background: #F8FAFC !important;
  border-color: #CBD5E1 !important;
}


/* =========================
   DOTCOM CONVERSION BUTTONS
   (no conflict with existing site styles)
   ========================= */

.dc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
}

/* Primary CTA */
.dc-btn-primary {
  background: linear-gradient(135deg, #0EA5A4 0%, #2563EB 100%);
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.35);
}

.dc-btn-primary:hover {
  background: linear-gradient(135deg, #0d9488 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.45);
}

/* Secondary CTA */
.dc-btn-secondary {
  background: #ffffff;
  color: #0B1220 !important;
  border: 1.6px solid #E5E7EB;
}

.dc-btn-secondary:hover {
  background: #F8FAFC;
  border-color: #CBD5E1;
}
