.olp-pricing,
.olp-pricing * {
  box-sizing: border-box;
}

.olp-pricing {
  --olp-bg: #020207;
  --olp-panel: #0b0d25;
  --olp-brand: #55e4ee;
  --olp-pink: #ef42d7;
  --olp-text: #ffffff;
  --olp-muted: rgba(255, 255, 255, 0.57);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  padding: clamp(72px, 9vw, 130px) clamp(18px, 4vw, 52px);
  color: var(--olp-text);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--olp-bg);
  background-size: 64px 64px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 36px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.olp-glow {
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 999px;
  filter: blur(120px);
  opacity: .15;
  pointer-events: none;
}

.olp-glow-one { top: -180px; left: -180px; background: var(--olp-brand); }
.olp-glow-two { right: -190px; bottom: -180px; background: var(--olp-pink); }

.olp-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.olp-eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid rgba(85, 228, 238, .25);
  border-radius: 999px;
  color: var(--olp-brand);
  background: rgba(85, 228, 238, .07);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
  line-height: 1;
  text-transform: uppercase;
}

.olp-heading h2 {
  max-width: 760px;
  margin: 22px auto 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .98;
}

.olp-heading p {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--olp-muted);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.7;
}

.olp-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(100%, 450px);
  margin: 0 auto 50px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 20px 65px rgba(0, 0, 0, .28);
}

.olp-toggle button {
  min-height: 50px;
  padding: 10px 14px;
  border: 0;
  border-radius: 13px;
  color: rgba(255, 255, 255, .58);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.olp-toggle button:hover { color: #fff; }
.olp-toggle button:focus-visible { outline: 3px solid rgba(85, 228, 238, .5); outline-offset: 2px; }
.olp-toggle button[aria-checked="true"] {
  color: #030411;
  background: var(--olp-brand);
  box-shadow: 0 12px 32px rgba(85, 228, 238, .18);
}

.olp-toggle button span {
  margin-left: 4px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.olp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.olp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 28px;
  background: rgba(9, 11, 31, .93);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .34);
}

.olp-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: rgba(255, 255, 255, .4);
}

.olp-card-pro {
  border-color: rgba(85, 228, 238, .5);
  background: linear-gradient(155deg, rgba(85, 228, 238, .08), rgba(9, 11, 31, .97) 36%);
  transform: translateY(-10px);
}

.olp-card-pro::before { background: var(--olp-brand); }
.olp-card-legend {
  border-color: rgba(239, 66, 215, .36);
  background: linear-gradient(155deg, rgba(239, 66, 215, .075), rgba(20, 8, 26, .96) 38%);
}
.olp-card-legend::before { background: var(--olp-pink); }

.olp-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.olp-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  color: #fff;
  background: rgba(255, 255, 255, .05);
  font-size: 20px;
}
.olp-card-pro .olp-icon { color: var(--olp-brand); border-color: rgba(85, 228, 238, .22); background: rgba(85, 228, 238, .09); }
.olp-card-legend .olp-icon { color: var(--olp-pink); border-color: rgba(239, 66, 215, .22); background: rgba(239, 66, 215, .08); }

.olp-badge {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .04);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
.olp-card-pro .olp-badge { color: #020207; border-color: var(--olp-brand); background: var(--olp-brand); }
.olp-card-legend .olp-badge { color: var(--olp-pink); border-color: rgba(239, 66, 215, .3); background: rgba(239, 66, 215, .09); }

.olp-card h3 { margin: 28px 0 0; color: #fff; font-size: 29px; font-weight: 850; letter-spacing: -.035em; }
.olp-description { min-height: 48px; margin: 7px 0 0; color: rgba(255,255,255,.48); font-size: 14px; line-height: 1.55; }
.olp-price-row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 8px; margin-top: 26px; }
.olp-price-row strong { color: #fff; font-size: clamp(42px, 4vw, 58px); font-weight: 850; letter-spacing: -.06em; line-height: .95; }
.olp-card-pro .olp-price-row strong { color: var(--olp-brand); }
.olp-card-legend .olp-price-row strong { color: var(--olp-pink); }
.olp-price-row span { padding-bottom: 6px; color: rgba(255,255,255,.42); font-size: 12px; font-weight: 650; }
.olp-saving { min-height: 20px; margin: 10px 0 0; color: rgba(255,255,255,.55); font-size: 12px; font-weight: 700; }

.olp-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 25px;
  padding: 12px 20px;
  border: 1px solid var(--olp-brand);
  border-radius: 999px;
  color: #030411 !important;
  background: var(--olp-brand);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none !important;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.olp-button:hover { color: #030411 !important; background: #fff; border-color: #fff; transform: translateY(-2px); }
.olp-button:focus-visible { outline: 3px solid rgba(85, 228, 238, .5); outline-offset: 3px; }
.olp-button-free { color: #fff !important; border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.07); }
.olp-button-free:hover { color: #030411 !important; }
.olp-card-legend .olp-button { color: #fff !important; border-color: var(--olp-pink); background: var(--olp-pink); }
.olp-card-legend .olp-button:hover { color: #030411 !important; border-color: #fff; background: #fff; }

.olp-included { margin: 28px 0 0; color: rgba(255,255,255,.38); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.olp-features { display: grid; gap: 13px; margin: 17px 0 0 !important; padding: 0 !important; list-style: none !important; }
.olp-features li { display: flex; align-items: flex-start; gap: 10px; margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }
.olp-check { display: grid; flex: 0 0 20px; width: 20px; height: 20px; place-items: center; margin-top: 1px; border-radius: 999px; color: var(--olp-brand); background: rgba(85,228,238,.09); font-size: 11px; font-weight: 900; }
.olp-card-legend .olp-check { color: var(--olp-pink); background: rgba(239,66,215,.09); }
.olp-footnote, .olp-secure { margin: auto 0 0; padding-top: 28px; color: rgba(255,255,255,.35); font-size: 10px; font-weight: 650; line-height: 1.5; text-align: center; }
.olp-footnote { padding: 14px; margin-top: auto; border: 1px solid rgba(255,255,255,.07); border-radius: 14px; background: rgba(0,0,0,.22); text-align: left; }

@media (max-width: 1020px) {
  .olp-grid { grid-template-columns: 1fr 1fr; }
  .olp-card-free { grid-column: 1 / -1; }
  .olp-card-pro { transform: none; }
}

@media (max-width: 700px) {
  .olp-pricing { padding: 66px 14px; border-radius: 24px; }
  .olp-grid { grid-template-columns: 1fr; }
  .olp-card-free { grid-column: auto; }
  .olp-card { padding: 24px; border-radius: 24px; }
  .olp-toggle { margin-bottom: 30px; }
  .olp-toggle button { padding-inline: 8px; font-size: 13px; }
  .olp-toggle button span { display: block; margin: 3px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .olp-toggle button,
  .olp-button { transition: none; }
}

