/* ==========================================================================
   BotLens Checkout
   Scoped under .bl-checkout so styles do not leak into the host theme.
   Palette: dark navy + cherry red, matches BotLens brand.
   ========================================================================== */

.bl-checkout {
    --bl-navy-900: #0a1628;
    --bl-navy-800: #0f1f3d;
    --bl-navy-700: #1e293b;
    --bl-navy-500: #475569;
    --bl-navy-300: #94a3b8;
    --bl-navy-100: #e2e8f0;
    --bl-navy-50:  #f8fafc;
    --bl-red-600:  #dc2626;
    --bl-red-500:  #ef4444;
    --bl-red-100:  #fee2e2;
    --bl-green-600:#10b981;
    --bl-amber-100:#fef3c7;
    --bl-amber-700:#b45309;
    --bl-white:    #ffffff;
    --bl-shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
    --bl-shadow-md: 0 4px 16px rgba(10, 22, 40, 0.08);
    --bl-shadow-lg: 0 20px 40px -12px rgba(10, 22, 40, 0.15);
    --bl-radius:    12px;
    --bl-radius-sm: 8px;
    --bl-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    max-width: 960px;
    margin: 0 auto;
    padding: 32px 16px;
    font-family: var(--bl-font);
    color: var(--bl-navy-900);
    line-height: 1.55;
    box-sizing: border-box;
}

.bl-checkout *,
.bl-checkout *::before,
.bl-checkout *::after {
    box-sizing: border-box;
}

/* ---------- Progress header ---------- */
.bl-progress {
    margin-bottom: 36px;
}

.bl-progress__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    display: flex;
    justify-content: space-between;
    gap: 0;
    position: relative;
}

.bl-progress__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--bl-navy-300);
    transition: color 0.25s ease;
    text-align: center;
    position: relative;
}

/* Connecting line between step numbers (sits behind the circles) */
.bl-progress__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 16px;
    left: calc(50% + 18px);
    right: calc(-50% + 18px);
    height: 2px;
    background: var(--bl-navy-100);
    z-index: 0;
    transition: background-color 0.3s ease;
}
.bl-progress__step.is-done:not(:last-child)::after {
    background: var(--bl-navy-900);
}

.bl-progress__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bl-white);
    border: 2px solid var(--bl-navy-100);
    color: var(--bl-navy-300);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}

.bl-progress__label {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.bl-progress__step.is-active .bl-progress__num {
    background: var(--bl-navy-900);
    border-color: var(--bl-navy-900);
    color: var(--bl-white);
    box-shadow: 0 0 0 4px rgba(15, 31, 61, 0.08);
}
.bl-progress__step.is-active {
    color: var(--bl-navy-900);
    font-weight: 600;
}

.bl-progress__step.is-done .bl-progress__num {
    background: var(--bl-navy-900);
    border-color: var(--bl-navy-900);
    color: var(--bl-white);
    /* Replace number with a checkmark SVG */
    font-size: 0;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2220%206%209%2017%204%2012%22/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
}
.bl-progress__step.is-done {
    color: var(--bl-navy-700);
}

.bl-progress__bar {
    height: 3px;
    background: var(--bl-navy-100);
    border-radius: 2px;
    overflow: hidden;
}
.bl-progress__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--bl-red-600), var(--bl-red-500));
    width: 25%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Form & steps ---------- */
.bl-form {
    background: var(--bl-white);
    border: 1px solid var(--bl-navy-100);
    border-radius: var(--bl-radius);
    padding: 40px;
    box-shadow: var(--bl-shadow-md);
    position: relative;
}

.bl-step {
    display: none;
}
.bl-step.is-active {
    display: block;
    animation: blStepIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes blStepIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bl-step__head {
    margin-bottom: 28px;
}
.bl-step__head h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--bl-navy-900);
    line-height: 1.2;
}
.bl-step__head p {
    margin: 0;
    color: var(--bl-navy-500);
    font-size: 15px;
}

.bl-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ---------- Plans ---------- */
.bl-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.bl-plan {
    position: relative;
    display: block;
    cursor: pointer;
}

.bl-plan input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bl-plan__card {
    border: 2px solid var(--bl-navy-100);
    border-radius: var(--bl-radius);
    padding: 24px;
    height: 100%;
    background: var(--bl-white);
    transition: all 0.2s ease;
    position: relative;
}

.bl-plan:hover .bl-plan__card {
    border-color: var(--bl-navy-300);
    transform: translateY(-2px);
    box-shadow: var(--bl-shadow-md);
}

.bl-plan input:checked + .bl-plan__card {
    border-color: var(--bl-red-600);
    background: linear-gradient(180deg, #fff 0%, #fff7f7 100%);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08), var(--bl-shadow-md);
}

.bl-plan--featured .bl-plan__card {
    border-color: var(--bl-navy-900);
}

.bl-plan__badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: var(--bl-navy-900);
    color: var(--bl-white);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.bl-plan__tier {
    font-size: 13px;
    font-weight: 600;
    color: var(--bl-red-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.bl-plan__price {
    font-size: 36px;
    font-weight: 700;
    color: var(--bl-navy-900);
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
}
.bl-plan__price--custom {
    font-size: 28px;
}
.bl-plan__currency {
    font-size: 20px;
    font-weight: 600;
    margin-right: 2px;
}
.bl-plan__period {
    font-size: 14px;
    font-weight: 500;
    color: var(--bl-navy-500);
    margin-left: 4px;
}

.bl-plan__features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bl-plan__features li {
    font-size: 14px;
    color: var(--bl-navy-700);
    padding: 6px 0 6px 22px;
    position: relative;
}
.bl-plan__features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 14px;
    height: 8px;
    border-left: 2px solid var(--bl-red-600);
    border-bottom: 2px solid var(--bl-red-600);
    transform: rotate(-45deg);
}

/* ---------- Option cards (framework) ---------- */
.bl-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.bl-option {
    display: block;
    cursor: pointer;
    position: relative;
}
.bl-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.bl-option__card {
    border: 2px solid var(--bl-navy-100);
    border-radius: var(--bl-radius-sm);
    padding: 20px;
    background: var(--bl-white);
    transition: all 0.2s ease;
}
.bl-option:hover:not(.bl-option--disabled) .bl-option__card {
    border-color: var(--bl-navy-300);
}
.bl-option input:checked + .bl-option__card {
    border-color: var(--bl-red-600);
    background: #fff7f7;
}
.bl-option--disabled {
    cursor: not-allowed;
    opacity: 0.55;
}
.bl-option__title {
    font-weight: 600;
    font-size: 16px;
    color: var(--bl-navy-900);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.bl-option__desc {
    font-size: 13px;
    color: var(--bl-navy-500);
}
.bl-chip {
    font-size: 10px;
    font-weight: 600;
    color: var(--bl-amber-700);
    background: var(--bl-amber-100);
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ---------- Form fields ---------- */
.bl-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}
.bl-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.bl-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bl-field--full {
    grid-column: 1 / -1;
}
.bl-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bl-navy-700);
}
.bl-field__opt {
    font-weight: 400;
    color: var(--bl-navy-300);
    font-size: 12px;
    margin-left: 4px;
}

/* Sectioned form groups (Account contact / Billing address) */
.bl-section {
    margin-bottom: 28px;
}
.bl-section__title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--bl-navy-300);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bl-navy-100);
}

/* Inputs */
.bl-field input,
.bl-field textarea,
.bl-field select {
    width: 100%;
    padding: 13px 14px;
    border: 1.5px solid var(--bl-navy-100);
    border-radius: var(--bl-radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--bl-navy-900);
    background: var(--bl-white);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
    -webkit-appearance: none;
    appearance: none;
}
.bl-field input::placeholder,
.bl-field textarea::placeholder {
    color: var(--bl-navy-300);
    font-weight: 400;
}
.bl-field input:hover:not(:focus),
.bl-field textarea:hover:not(:focus),
.bl-field select:hover:not(:focus) {
    border-color: var(--bl-navy-300);
}
.bl-field input:focus,
.bl-field textarea:focus,
.bl-field select:focus {
    outline: none;
    border-color: var(--bl-navy-900);
    box-shadow: 0 0 0 4px rgba(15, 31, 61, 0.08);
}

/* Custom select chevron (works because we set appearance:none above) */
.bl-field select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2394a3b8%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

/* Field with leading icon (e.g. address line 1) */
.bl-field--with-icon {
    position: relative;
}
.bl-field--with-icon input {
    padding-left: 40px;
}
.bl-field--with-icon .bl-field__icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(calc(-50% + 11px));
    color: var(--bl-navy-300);
    pointer-events: none;
    display: inline-flex;
}

/* Invalid state */
.bl-field.is-invalid input,
.bl-field.is-invalid textarea,
.bl-field.is-invalid select {
    border-color: var(--bl-red-600);
    background: #fffbfb;
}
.bl-field__error {
    font-size: 12px;
    color: var(--bl-red-600);
    min-height: 0;
    transition: min-height 0.15s;
}
.bl-field.is-invalid .bl-field__error {
    min-height: 16px;
}

/* Valid state: subtle green check on the right side of the input */
.bl-field.is-valid {
    position: relative;
}
.bl-field.is-valid input:not([type="hidden"]),
.bl-field.is-valid select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2310b981%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2220%206%209%2017%204%2012%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}
.bl-field.is-valid select {
    /* Keep chevron + checkmark side by side */
    background-image:
        url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2310b981%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2220%206%209%2017%204%2012%22/%3E%3C/svg%3E"),
        url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%2394a3b8%22%20stroke-width%3D%222.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22/%3E%3C/svg%3E");
    background-position: right 38px center, right 14px center;
    background-repeat: no-repeat, no-repeat;
    padding-right: 62px;
}

/* Google Places dropdown */
.pac-container {
    z-index: 999999 !important;
    border-radius: var(--bl-radius-sm);
    border: 1px solid var(--bl-navy-100);
    box-shadow: 0 12px 24px -8px rgba(10, 22, 40, 0.18);
    font-family: var(--bl-font);
    background: var(--bl-white);
    padding: 6px 0;
    margin-top: 6px;
    overflow: hidden;
}
/* Our force-hide class. Google sometimes resets inline display=none on its
   own container, so we override via a class with !important. */
.pac-container.bl-pac-hide {
    display: none !important;
}
.pac-item {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    border: 0;
    color: var(--bl-navy-500);
    line-height: 1.4;
}
.pac-item:hover,
.pac-item-selected {
    background: var(--bl-navy-50);
}
.pac-item-query {
    font-size: 14px;
    font-weight: 600;
    color: var(--bl-navy-900);
    padding-right: 4px;
}
.pac-icon {
    margin-top: 2px;
    opacity: 0.5;
}
.pac-logo:after {
    /* Google's "powered by" footer — keep a tiny version for compliance,
       but reduce its visual weight. The Maps ToS requires attribution
       when not displayed on a Google Map. */
    background-size: 90px 12px;
    height: 14px;
    margin: 4px 8px;
    opacity: 0.6;
}

/* ---------- Single standalone field (website step) ---------- */
.bl-step[data-step="2"] .bl-field {
    max-width: 560px;
    margin-bottom: 32px;
}

/* ---------- Summary card ---------- */
.bl-summary {
    background: var(--bl-navy-50);
    border: 1px solid var(--bl-navy-100);
    border-radius: var(--bl-radius-sm);
    padding: 20px;
    margin-bottom: 20px;
}
.bl-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--bl-navy-700);
}
.bl-summary__row--total {
    border-top: 1px solid var(--bl-navy-100);
    margin-top: 8px;
    padding-top: 14px;
    font-weight: 700;
    font-size: 16px;
    color: var(--bl-navy-900);
}

.bl-notice {
    padding: 12px 14px;
    border-radius: var(--bl-radius-sm);
    font-size: 13px;
    margin-bottom: 24px;
}
.bl-notice--info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

/* ---------- Buttons ---------- */
.bl-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}
.bl-actions--end {
    justify-content: flex-end;
}
.bl-actions--center {
    justify-content: center;
}

.bl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--bl-radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
    min-height: 48px;
    letter-spacing: 0.01em;
}
.bl-btn--primary {
    background: var(--bl-red-600);
    color: var(--bl-white);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.18);
}
.bl-btn--primary:hover:not(:disabled) {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(220, 38, 38, 0.32);
}
.bl-btn--primary:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(220, 38, 38, 0.18);
}
.bl-btn--ghost {
    background: transparent;
    color: var(--bl-navy-700);
    border-color: var(--bl-navy-100);
}
.bl-btn--ghost:hover {
    background: var(--bl-navy-50);
    border-color: var(--bl-navy-300);
}
.bl-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.bl-btn__spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: var(--bl-white);
    border-radius: 50%;
    animation: blSpin 0.7s linear infinite;
}
.bl-btn.is-loading .bl-btn__spinner {
    display: inline-block;
}
.bl-btn.is-loading .bl-btn__label {
    opacity: 0.7;
}
@keyframes blSpin {
    to { transform: rotate(360deg); }
}

/* ---------- Form-level error banner ---------- */
.bl-form-error {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--bl-red-100);
    border: 1px solid #fecaca;
    border-radius: var(--bl-radius-sm);
    color: #991b1b;
    font-size: 14px;
}

/* ---------- Success state ---------- */
.bl-step--success .bl-success {
    text-align: center;
    padding: 24px 16px;
}
.bl-success__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d1fae5;
    color: var(--bl-green-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.bl-success h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
}
.bl-success__lead {
    font-size: 17px;
    color: var(--bl-navy-500);
    margin: 0 0 20px;
}
.bl-success__meta {
    display: inline-block;
    background: var(--bl-navy-50);
    padding: 8px 14px;
    border-radius: var(--bl-radius-sm);
    font-size: 13px;
    color: var(--bl-navy-500);
    margin-bottom: 20px;
}
.bl-success__meta code {
    background: transparent;
    color: var(--bl-navy-900);
    font-weight: 600;
    font-family: ui-monospace, SFMono-Regular, Monaco, Consolas, monospace;
}
.bl-success__next {
    max-width: 480px;
    margin: 0 auto 24px;
    font-size: 15px;
    color: var(--bl-navy-700);
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
    .bl-plans {
        grid-template-columns: 1fr;
    }
    .bl-options {
        grid-template-columns: 1fr;
    }
    .bl-form {
        padding: 24px;
    }
    .bl-step__head h2 {
        font-size: 24px;
    }
    .bl-progress__label {
        display: none;
    }
}

@media (max-width: 560px) {
    .bl-grid--2 {
        grid-template-columns: 1fr;
    }
    .bl-actions {
        flex-direction: column-reverse;
    }
    .bl-actions .bl-btn {
        width: 100%;
    }
    .bl-checkout {
        padding: 16px 8px;
    }
    .bl-form {
        padding: 20px 16px;
    }
}

/* --- v2 additions: Stripe Elements + trial messaging ---------------- */

.bl-stripe-element {
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.bl-stripe-element.StripeElement--focus {
    border-color: #1d4ed8;
    box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
}
.bl-stripe-element.StripeElement--invalid {
    border-color: #dc2626;
}

.bl-trial-banner {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 10px;
    padding: 12px 16px;
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.5;
}
.bl-trial-banner strong {
    color: #064e3b;
}

.bl-plan__trial {
    color: #059669;
    font-size: 12px;
    font-weight: 600;
    margin-top: -4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bl-summary__value--free {
    color: #059669;
    font-weight: 700;
}

.bl-fineprint {
    font-size: 11px;
    color: #64748b;
    margin: 12px 0 4px;
    line-height: 1.5;
    text-align: center;
}

.bl-notice--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 16px 0 20px;
    font-size: 14px;
    line-height: 1.5;
}

/* ============================================================
   v2.1: Single-tier hero pricing page
   ============================================================ */

.bl-step__head--hero {
    text-align: center;
    margin-bottom: 32px;
}
.bl-step__head--hero h2 {
    font-size: 32px;
    line-height: 1.2;
    max-width: 680px;
    margin: 8px auto 12px;
}
.bl-step__head--hero p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}
.bl-eyebrow {
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.bl-plan-hero {
    margin: 0 auto;
    max-width: 720px;
}
.bl-plan-hero__card {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
    border: 2px solid #1d4ed8;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(29, 78, 216, 0.08);
    position: relative;
}
.bl-plan-hero__badge {
    display: inline-block;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.bl-plan-hero__tier {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #475569;
    margin-bottom: 8px;
}
.bl-plan-hero__price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.bl-plan-hero__price {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
}
.bl-plan-hero__currency {
    font-size: 36px;
    font-weight: 700;
    margin-right: 4px;
    color: #475569;
}
.bl-plan-hero__period {
    font-size: 22px;
    font-weight: 600;
    color: #64748b;
    margin-left: 4px;
}
.bl-plan-hero__sub {
    color: #475569;
    font-size: 14px;
    line-height: 1.4;
}
.bl-plan-hero__sub strong {
    color: #0f172a;
}

.bl-renewal-callout {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 20px 0;
}
.bl-renewal-callout__icon {
    font-size: 22px;
    color: #059669;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}
.bl-renewal-callout__head {
    color: #065f46;
    font-size: 14px;
    font-weight: 600;
}
.bl-renewal-callout__head strong {
    color: #064e3b;
    font-weight: 800;
}
.bl-renewal-callout__sub {
    color: #047857;
    font-size: 12px;
    margin-top: 4px;
    line-height: 1.5;
}

.bl-plan-hero__features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: grid;
    gap: 10px;
}
.bl-plan-hero__features li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    line-height: 1.5;
    color: #0f172a;
}
.bl-plan-hero__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
}
.bl-plan-hero__features li strong {
    color: #0f172a;
    font-weight: 700;
}

.bl-btn--lg {
    font-size: 16px;
    padding: 14px 28px;
    min-width: 280px;
}
.bl-actions--center {
    justify-content: center;
}
.bl-fineprint--center {
    text-align: center;
    margin-top: 12px;
}

.bl-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 24px 0;
    padding: 16px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.bl-trust-strip__item {
    font-size: 12px;
    color: #475569;
    font-weight: 600;
}

.bl-enterprise-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 20px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-top: 12px;
}
.bl-enterprise-row__text {
    flex: 1;
    min-width: 260px;
}
.bl-enterprise-row__text h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}
.bl-enterprise-row__text p {
    font-size: 13px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.bl-summary__value--accent {
    color: #059669;
    font-weight: 600;
}

@media (max-width: 600px) {
    .bl-plan-hero__card {
        padding: 24px 20px;
    }
    .bl-plan-hero__price {
        font-size: 56px;
    }
    .bl-plan-hero__currency {
        font-size: 28px;
    }
    .bl-plan-hero__period {
        font-size: 18px;
    }
    .bl-step__head--hero h2 {
        font-size: 26px;
    }
    .bl-btn--lg {
        min-width: 0;
        width: 100%;
    }
}
