/* General Reset & Layout */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0f172a;
  color: #f8fafc;
  display: flex;
  flex-direction: column; /* Changed to allow footer below container */
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 20px;
}

/* Main Pricing Card */
.container {
  background: #020617;
  padding: 40px;
  border-radius: 16px;
  width: 100%;
  max-width: 450px; /* Wider for better plan spacing */
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid #1e293b;
}

h1 { font-size: 28px; margin-bottom: 8px; }
p { color: #94a3b8; margin-bottom: 30px; }

/* Plan Selection Grid */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
}

.plan {
  padding: 24px 16px;
  border: 2px solid #1e293b;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  background: #0f172a;
}

.plan:hover { border-color: #3b82f6; }

.plan.selected {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
}

.plan h2 { font-size: 18px; margin: 0 0 8px 0; }
.plan p { font-size: 20px; font-weight: bold; color: #fff; margin: 0; }

.plan.popular span {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #22c55e;
  color: #000;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Action Button */
button {
  width: 100%;
  padding: 16px;
  background: #22c55e;
  color: #052e16;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s active;
}

button:hover:not(:disabled) { background: #4ade80; }
button:disabled {
  background: #1e293b;
  color: #475569;
  cursor: not-allowed;
}

/* Compliance Footer - Fixed Alignment */
footer {
  margin-top: 40px;
  max-width: 600px;
  text-align: center;
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
}

footer a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover { text-decoration: underline; }

footer .mor-text {
  margin-top: 15px;
  padding: 10px;
  border-top: 1px solid #1e293b;
}
