/* Minimal, clean styles for the demo website */
:root {
  --bg: #0f172a;
  --card: #111827;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --primary: #3b82f6;
  --success: #10b981;
  --danger: #ef4444;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; background: var(--bg); color: var(--text); }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 980px; margin: 0 auto; padding: 24px; }
.header { padding: 24px 0; border-bottom: 1px solid #1f2937; }
.brand { font-size: 24px; font-weight: 700; }
.muted { color: var(--muted); }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid #1f2937; border-radius: 8px; padding: 16px; display: flex; flex-direction: column; }
.card h2 { margin-top: 0; }

/* Pricing specific styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 3rem;
  color: white;
  margin: 10px 0;
}

.section-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 60px 0;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: var(--card);
  border: 1px solid #1f2937;
  border-radius: 20px;
  padding: 60px 45px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.pricing-card.hero {
  border: 2px solid var(--primary);
  background: #0f1a2e;
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 15px 45px rgba(59, 130, 246, 0.15);
}

.pricing-card.hero:hover {
  transform: scale(1.03) translateY(-12px);
  box-shadow: 0 40px 80px rgba(59, 130, 246, 0.25);
}

.hero-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
  padding: 8px 40px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  width: 150px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pricing-card h3 {
  color: white;
  margin: 0 0 15px 0;
  font-size: 2.4rem;
  text-align: left;
  letter-spacing: -0.5px;
}

.package-tagline {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
  margin-bottom: 12px;
  display: block;
}

.package-tagline.centered {
  text-align: center;
}

.package-target {
  color: var(--muted);
  font-size: 1rem;
  text-align: left;
  margin-bottom: 35px;
  min-height: 3.5em;
  line-height: 1.6;
}

.price-container {
  text-align: left;
  margin-bottom: 40px;
  padding: 30px 0;
  border-top: 1px solid #1f2937;
  border-bottom: 1px solid #1f2937;
}

.price {
  font-size: 3.8rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price small {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--muted);
}

.price-sub {
  display: block;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
}

.price-period {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
  flex-grow: 1;
}

.features li {
  margin-bottom: 20px;
  padding-left: 35px;
  position: relative;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.5;
}

.features li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  position: absolute;
  left: 0;
  top: 2px;
}

.features li.bonus {
  color: var(--success);
  font-weight: 700;
}

.features li.bonus::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolygon points='12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2'%3E%3C/polygon%3E%3C/svg%3E");
}

.pricing-footer {
  margin-top: auto;
  text-align: left;
}

.btn-pricing {
  width: 100%;
  padding: 18px !important;
  font-size: 1.1rem !important;
  border-radius: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease !important;
  border: none;
  cursor: pointer;
  background: var(--primary);
  color: white;
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.setup-fee {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 25px;
  line-height: 1.6;
}

.setup-fee strong { color: white; }
.setup-fee p { margin: 5px 0 0; font-style: italic; }

.demo-link {
  display: inline-block;
  margin-top: 30px;
  color: white;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--primary);
  transition: all 0.3s;
}

.demo-link:hover {
  color: var(--primary);
  letter-spacing: 2px;
  text-decoration: none;
}

.banner {
  background: linear-gradient(135deg, #111b2f 0%, #1e293b 100%);
  color: white;
  padding: 45px 50px;
  border-radius: 20px;
  margin: 60px 0;
  text-align: left;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.banner-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 300px;
}

.banner-content strong {
  font-size: 1.6rem;
  margin-bottom: 10px;
  display: block;
}

.banner-content span {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.btn-banner {
  background: var(--primary);
  color: white;
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  white-space: nowrap;
}

.btn-banner:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.45);
  color: white;
  text-decoration: none;
}

.banner-alt {
  background: #0f172a;
  color: white;
  box-shadow: none;
  border: 1px solid #1f2937;
}

.banner-promo {
  font-weight: 700;
  color: var(--success);
  background: #111827;
  padding: 25px 35px;
  border-radius: 15px;
  border: 2px dashed var(--success);
  font-size: 1.1rem;
  text-align: center;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.trust-card {
  padding: 45px;
  background: #111827;
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.trust-card:hover {
  background: #1e293b;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.trust-card h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: white;
  text-align: left;
}

.trust-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  text-align: left;
}

.btn { display: inline-block; padding: 10px 14px; border-radius: 6px; border: 1px solid #374151; background: #0b1220; color: var(--text); cursor: pointer; }
.btn.primary { background: var(--primary); border-color: #2563eb; color: white; }
.btn.success { background: var(--success); border-color: #0f9a7b; color: white; }
.btn.danger { background: var(--danger); border-color: #dc2626; color: white; }
.btn + .btn { margin-left: 8px; }

label { display: block; margin: 8px 0 4px; }
input, select, textarea { width: 100%; padding: 10px; border-radius: 6px; border: 1px solid #374151; background: #0b1220; color: var(--text); }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }

pre { background: #0b1021; color: #eaeefb; padding: 12px; border-radius: 6px; overflow-x: auto; border: 1px solid #1f2937; }
.note { padding: 8px 12px; border-radius: 6px; background: #0b1220; border: 1px solid #1f2937; }
.alert { padding: 10px 12px; border-radius: 6px; }
.alert.success { background: rgba(16, 185, 129, .15); border: 1px solid rgba(16, 185, 129, .25); }
.alert.danger { background: rgba(239, 68, 68, .15); border: 1px solid rgba(239, 68, 68, .25); }
