
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #F5F5F5;
    --surface: #ffffff;
    --border: #e4e7f0;
    --text: #1a1f2e;
    --muted: #7a829a;
    --label-bg: #f5f6fa;

    --blue:   #3b7ef8;
    --teal:   #0fb893;
    --violet: #7c5ef6;
    --amber:  #e8960a;
    --orange:  #ff6700;

    --blue-light:   #eef3ff;
    --teal-light:   #e6faf6;
    --violet-light: #f2efff;
    --amber-light:  #fff8e6;
    --orange-light:  #fff8e6;

    --radius: 20px;
  }



#pricing{
  background: var(--bg);
  padding: 100px 20px;
}

#pricing .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 700;
    text-align: center;
    color: var(--text);
    margin-bottom: 8px;
  }

  #pricing .section-sub {
    text-align: center;
    color: var(--muted);
    margin-bottom: 48px;
    font-size: 1.25rem;
  }

  #pricing .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  @media (max-width: 680px) {
    #pricing .grid { grid-template-columns: 1fr; }
  }

  #pricing .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  }

  #pricing .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  }

  /* top accent bar */
  #pricing .card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  #pricing .card.blue::before   { background: linear-gradient(90deg, var(--blue), #7ab4fb); }
  #pricing .card.teal::before   { background: linear-gradient(90deg, var(--teal), #5de8c8); }
  #pricing .card.violet::before { background: linear-gradient(90deg, var(--violet), #b49bfc); }
  #pricing .card.amber::before  { background: linear-gradient(90deg, var(--amber), #f5c842); }
  #pricing .card.orange::before  { background: linear-gradient(90deg, var(--orange), #f5c842); }

  /* card header bg tint */
  #pricing .card-header {
    border-radius: 12px;
    padding: 18px 18px 16px;
    margin: -4px -4px 20px;
  }
  #pricing .card.blue .card-header   { background: var(--blue-light); }
  #pricing .card.teal .card-header   { background: var(--teal-light); }
  #pricing .card.violet .card-header { background: var(--violet-light); }
  #pricing .card.amber .card-header  { background: var(--amber-light); }
  #pricing .card.orange .card-header  { background: var(--orange-light); }

  #pricing .tag {
    display: inline-block;
    font-family: 'Sora', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 12px;
  }
  #pricing .blue .tag   { background: rgba(59,126,248,0.12); color: var(--blue); }
  #pricing .teal .tag   { background: rgba(15,184,147,0.15); color: var(--teal); }
  #pricing .violet .tag { background: rgba(124,94,246,0.12); color: var(--violet); }
  #pricing .amber .tag  { background: rgba(232,150,10,0.15); color: var(--amber); }
  #pricing .orange .tag  { background: rgba(232,150,10,0.15); color: var(--orange); }

  #pricing .card-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
  }

  #pricing .card-subtitle {
    font-size: 0.8rem;
    color: var(--muted);
  }

  #pricing .divider {
    border: none;
    border-top: 1px solid var(--border);
    transform: scaleY(0.5);
    margin: 4px 0 16px;
  }

  #pricing .section-label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  #pricing .section-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  #pricing .blue .section-label   { color: var(--blue); }
  #pricing .teal .section-label   { color: var(--teal); }
  #pricing .violet .section-label { color: var(--violet); }
  #pricing .amber .section-label  { color: var(--amber); }
  #pricing .orange .section-label  { color: var(--orange); }
  #pricing .blue .section-label::before   { background: var(--blue); }
  #pricing .teal .section-label::before   { background: var(--teal); }
  #pricing .violet .section-label::before { background: var(--violet); }
  #pricing .amber .section-label::before  { background: var(--amber); }
  #pricing .orange .section-label::before  { background: var(--orange); }

  #pricing ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  #pricing li {
    font-size: 0.83rem;
    color: #4a5168;
    line-height: 1.55;
    padding: 4px 10px 4px 12px;
    border-radius: 6px;
    position: relative;
    background: var(--label-bg);
  }

  #pricing li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    border-radius: 2px;
  }
  #pricing .blue li::before   { background: var(--blue); }
  #pricing .teal li::before   { background: var(--teal); }
  #pricing .violet li::before { background: var(--violet); }
  #pricing .amber li::before  { background: var(--amber); }
  #pricing .orange li::before  { background: var(--orange); }