/* ==============================
   GLOBAL VARIABLES & RESET
============================== */
:root {
  --brand-blue: #0078d4;
  --brand-dark: #005a9e;
  --accent-light: #f7f8f9;
  --text-primary: #333333;
  --text-secondary: #666666;
  --radius: 8px;
  --transition: 0.3s ease;
  --font-sans: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--accent-light);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ==============================
   CONTAINER
============================== */
.pricing-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1rem 0;
}

/* section + section {
  margin-top: 3rem;
} */

#benefits{
   margin-top: 3rem;
}

/* ==============================
   HERO SECTION (replaces header)
============================== */
.pricing-hero {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-dark));
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.pricing-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: Manrope, sans-serif;
  color: #fff;
}

.pricing-hero p {
  margin-top: 1.5rem;
  opacity: 0.9;
}

/* ==============================
   PLAN COMPARISON TABLE
============================== */
#plan-comparison {
  background: #fff;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
}

#plan-comparison table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

#plan-comparison th,
#plan-comparison td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-family: Manrope, sans-serif;
}

#plan-comparison th {
  position: sticky;
  top: 0;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 600;
  padding: 1rem 1.25rem;
}

#plan-comparison td:first-child {
  text-align: left;
  color: var(--text-secondary);
}

#plan-comparison tbody tr:nth-child(even) {
  background: var(--accent-light);
}

#plan-comparison tbody tr:hover {
  background: rgba(0, 120, 212, 0.05);
}

.fa-check {
  color: var(--brand-blue);
}

.minus {
  color: #999;
  font-size: 1.2rem;
  vertical-align: middle;
}

/* ==============================
   BENEFITS CARDS
============================== */
#benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.plan-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
  color: var(--brand-blue);
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.plan-card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-family: Manrope, sans-serif;
}

.plan-card ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-size: 0.85rem;
}

/* ==============================
   CALL TO ACTION
============================== */
#cta {
  text-align: center;
  margin: 3rem 0;
}

#cta p {
  max-width: 600px;
  margin: 0 auto 1rem;
  opacity: 0.9;
  font-family: Manrope, sans-serif;
}

.btn-primary {
  display: inline-block;
  background: var(--brand-blue);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition);
  min-width: 44px;
  min-height: 44px;
  font-family: Manrope, sans-serif;
}

.btn-primary:hover {
  background: var(--brand-dark);
}
a.buyNowBtn {
    display: block;
    background: var(--brand-blue);
    width: fit-content;
    margin: 0 auto;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 600;
    border: 0;
    border-radius: 5px;
}
/* ==============================
   RESPONSIVE ADJUSTMENTS
============================== */
@media (max-width: 768px) {
  .pricing-hero {
    padding: 3rem 1rem;
  }
  .pricing-hero h1 {
    font-size: 2rem;
    line-height: 2.3rem;
  }
  #plan-comparison table {
    min-width: 100%;
  }

  #plan-comparison th {
    padding: 10px 8px;
}

#plan-comparison td {
  padding: 10px 8px;
}

#plan-comparison th{
    padding: 15px 8px;
    font-size: 14px;
    line-height: 20px;
}

#plan-comparison td {
    padding: 10px 8px;
    font-size: 14px;
    line-height: 18px;
}

/* #benefits {
    margin-top: 1.5rem;
} */
}
