   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue:        #3a5fb0;
      --blue-dark:   #2a4590;
      --blue-light:  #5a7fd0;
      --blue-pale:   #dce6f8;
      --blue-faint:  #f0f4fd;
      --white:       #ffffff;
      --off-white:   #f4f7fd;
      --text:        #1a2c5e;
      --text-mid:    #3d5080;
      --text-muted:  #7a8eb8;
      --border:      #cdd8f0;
      --shadow:      rgba(58,95,176,0.09);
      --shadow-deep: rgba(58,95,176,0.22);
    }

    html, body {
      font-family: 'DM Sans', sans-serif;
      background: var(--off-white);
      color: var(--text);
      min-height: 100vh;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 0% 0%,    rgba(58,95,176,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 45% at 100% 100%, rgba(58,95,176,0.07) 0%, transparent 55%);
      pointer-events: none;
      z-index: 0;
    }

    main {
      position: relative;
      z-index: 1;
      padding: 120px 24px 50px;
    }

    /* ── CARDS GRID ── */
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1080px;
      margin: 0 auto 80px;
      align-items: start;
    }

    /* ── CARD ── */
    .card {
      background: var(--white);
      border-radius: 20px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 32px var(--shadow);
      overflow: hidden;
      position: relative;
      transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s ease;
      animation: fadeUp 0.6s ease both;
      display: flex;
      flex-direction: column;
    }
    .card:nth-child(1) { animation-delay: 0.15s; }
    .card:nth-child(2) { animation-delay: 0.28s; }
    .card:nth-child(3) { animation-delay: 0.41s; }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px var(--shadow-deep);
    }

    /* ── CARD HEADER ── */
    .card-header {
      padding: 32px 32px 28px;
      position: relative;
    }

    .card.silver  .card-header,
    .card.premium .card-header {
      background: #f8faff;
      border-bottom: 1px solid var(--border);
    }
    .card.gold .card-header {
      background: var(--blue);
      border-bottom: 1px solid var(--blue-dark);
    }

    .card-header::before {
      content: '';
      position: absolute;
      left: 0; top: 20%; bottom: 20%;
      width: 3px;
      border-radius: 0 3px 3px 0;
    }
    .card.silver  .card-header::before { background: linear-gradient(180deg, #8898c0, #c0cce0); }
    .card.gold    .card-header::before { background: rgba(255,255,255,0.5); }
    .card.premium .card-header::before { background: linear-gradient(180deg, #8898c0, #c0cce0); }

    .tier-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .card.silver  .tier-label,
    .card.premium .tier-label { color: var(--text-muted); }
    .card.gold    .tier-label { color: rgba(255,255,255,0.55); }

    .plan-name {
      font-family: 'Playfair Display', serif;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    .card.silver  .plan-name,
    .card.premium .plan-name { color: var(--text); }
    .card.gold    .plan-name { color: #fff; }

    .price-row {
      display: flex;
      align-items: flex-end;
      gap: 2px;
    }
    .price-sym {
      font-size: 18px;
      font-weight: 600;
      padding-bottom: 7px;
      line-height: 1;
    }
    .card.silver  .price-sym,
    .card.premium .price-sym { color: var(--text-mid); }
    .card.gold    .price-sym { color: rgba(255,255,255,0.7); }

    .price-num {
      font-family: 'Playfair Display', serif;
      font-size: 56px;
      font-weight: 700;
      line-height: 1;
    }
    .card.silver  .price-num,
    .card.premium .price-num { color: var(--text); }
    .card.gold    .price-num { color: #fff; }

    .price-label {
      font-size: 12px;
      font-weight: 400;
      padding-bottom: 7px;
      margin-left: 6px;
      line-height: 1;
    }
    .card.silver  .price-label,
    .card.premium .price-label { color: var(--text-muted); }
    .card.gold    .price-label { color: rgba(255,255,255,0.5); }

    .badge {
      position: absolute;
      top: 24px; right: 24px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 100px;
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.28);
    }

    /* ── CARD BODY ── */
    .card-body {
      padding: 28px 32px 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .features { list-style: none; flex: 1; margin-bottom: 28px; }
    .features li {
      display: flex;
      align-items: center;
      gap: 13px;
      padding: 11px 0;
      font-size: 13.5px;
      font-weight: 400;
      color: var(--text-mid);
      border-bottom: 1px solid #eef1f9;
      line-height: 1.4;
    }
    .features li:last-child { border-bottom: none; }

    .chk {
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--blue-faint);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .chk svg {
      width: 10px; height: 10px;
      stroke: var(--blue);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }

    /* ── BUTTONS ── */
    .btn {
      width: 100%;
      padding: 14px;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      border: none;
      transition: all 0.25s ease;
    }
    .btn-outline {
      background: transparent;
      color: var(--blue);
      border: 1.5px solid var(--blue-pale);
    }
    .btn-outline:hover {
      background: var(--blue-faint);
      border-color: var(--blue-light);
      box-shadow: 0 4px 16px var(--shadow);
    }
    .btn-solid-gold {
      background: linear-gradient(135deg, #4a70c0 0%, var(--blue-dark) 100%);
      color: #fff;
      box-shadow: 0 4px 18px rgba(42,69,144,0.45);
    }
    .btn-solid-gold:hover {
      filter: brightness(1.1);
      box-shadow: 0 8px 28px rgba(42,69,144,0.55);
      transform: translateY(-1px);
    }

    /* ══════════════════════════════════════
       COMPARISON TABLE
    ══════════════════════════════════════ */
    .compare-wrap {
      max-width: 1080px;
      margin: 0 auto;
      animation: fadeUp 0.6s 0.5s ease both;
    }

    .compare-heading {
      text-align: center;
      margin-bottom: 36px;
    }

    .compare-heading .eyebrow {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
      position: relative;
      padding: 0 28px;
    }
    .compare-heading .eyebrow::before,
    .compare-heading .eyebrow::after {
      content: '';
      position: absolute;
      top: 50%;
      width: 20px;
      height: 1px;
      background: var(--blue-pale);
    }
    .compare-heading .eyebrow::before { left: 0; }
    .compare-heading .eyebrow::after  { right: 0; }

    .compare-heading h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.02em;
    }
    .compare-heading h2 em { font-style: italic; color: var(--blue); }

    /* table shell */
    .compare-table {
      background: var(--white);
      border-radius: 20px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 32px var(--shadow);
      overflow: hidden;
    }

    /* sticky col headers */
    .col-headers {
      display: grid;
      grid-template-columns: 1fr 160px 160px 160px;
      background: var(--blue);
    }

    .col-head {
      padding: 20px 16px;
      text-align: center;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .col-head:first-child {
      text-align: left;
      padding-left: 28px;
    }
    .col-head.active {
      color: #fff;
      position: relative;
    }
    .col-head.active::after {
      content: '';
      position: absolute;
      bottom: 0; left: 20%; right: 20%;
      height: 2px;
      background: rgba(255,255,255,0.5);
      border-radius: 2px;
    }

    /* category separator */
    .cat-row {
      display: grid;
      grid-template-columns: 1fr 160px 160px 160px;
      background: var(--blue-faint);
      border-top: 1px solid var(--border);
    }
    .cat-label {
      padding: 10px 28px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--blue);
      grid-column: 1 / -1;
    }

    /* data rows */
    .data-row {
      display: grid;
      grid-template-columns: 1fr 160px 160px 160px;
      border-top: 1px solid #eef1f9;
      transition: background 0.15s;
    }
    .data-row:hover { background: var(--blue-faint); }

    .data-cell {
      padding: 16px 16px;
      font-size: 13px;
      font-weight: 400;
      color: var(--text-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .data-cell:first-child {
      justify-content: flex-start;
      padding-left: 28px;
      font-weight: 500;
      color: var(--text);
      font-size: 13.5px;
    }

    /* gold column highlight */
    .data-cell.gold-col {
      background: rgba(58,95,176,0.04);
      font-weight: 600;
      color: var(--blue);
    }

    /* tick / cross */
    .tick, .cross {
      width: 22px; height: 22px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
    }
    .tick {
      background: rgba(58,95,176,0.1);
    }
    .tick svg {
      width: 11px; height: 11px;
      stroke: var(--blue);
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
    }
    .cross {
      background: rgba(0,0,0,0.04);
    }
    .cross svg {
      width: 9px; height: 9px;
      stroke: #b0bcd8;
      stroke-width: 2;
      stroke-linecap: round;
      fill: none;
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 60px; }
      .col-headers,
      .cat-row,
      .data-row { grid-template-columns: 1fr 90px 90px 90px; }
      .col-head:first-child,
      .data-cell:first-child { padding-left: 16px; }
      .cat-label { padding-left: 16px; }
      .data-cell { padding: 14px 8px; font-size: 12px; }
    }
    @media (max-width: 500px) {
      main { padding: 120px 14px 60px; }
      .card-header, .card-body { padding-left: 22px; padding-right: 22px; }
      .col-headers,
      .cat-row,
      .data-row { grid-template-columns: 1fr 70px 70px 70px; }
      .data-cell { font-size: 11px; padding: 12px 4px; }
    }
