/* =============================================================
   SUBSCRIPTION FLOW — Unified Stylesheet
   Covers: /pricing  /register  /payment  /setup
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── Tokens ── */
:root {
    /* Brand */
    --purple:        #563d7c;
    --purple-mid:    #7b5ea7;
    --purple-pale:   #e8e2f3;
    --purple-light:  #c9bde0;
    --purple-glow:   rgba(86,61,124,.1);

    /* Backgrounds */
    --bg:            #f3f0f8;
    --bg-surface:    #ffffff;
    --bg-card:       #faf9fc;

    /* Borders */
    --border:        #e2dced;
    --border-hi:     #b8a9d4;

    /* Text */
    --text-1:        #160d2b;
    --text-2:        #4e4468;
    --text-3:        #9b8fba;

    /* Semantic */
    --green:         #1e7e40;
    --green-bg:      rgba(30,126,64,.08);
    --green-border:  rgba(30,126,64,.25);
    --amber:         #a86800;
    --amber-bg:      rgba(168,104,0,.08);
    --amber-border:  rgba(168,104,0,.25);
    --red:           #c0392b;
    --red-bg:        rgba(192,57,43,.07);
    --red-border:    rgba(192,57,43,.25);

    /* Typography */
    --serif:         'Instrument Serif', Georgia, serif;
    --sans:          'Plus Jakarta Sans', sans-serif;
    --mono:          'JetBrains Mono', monospace;

    /* Misc */
    --r:             16px;
    --shadow-sm:     0 1px 4px rgba(86,61,124,.05), 0 4px 16px rgba(86,61,124,.06);
    --shadow-md:     0 4px 24px rgba(86,61,124,.08), 0 1px 4px rgba(86,61,124,.05);
    --shadow-lg:     0 8px 40px rgba(86,61,124,.15);
    --shadow-xl:     0 16px 48px rgba(86,61,124,.22);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


/* ============================================================
   SHARED UTILITIES
   ============================================================ */

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } }

/* Eyebrow tag (used across all pages) */
.flow-tag {
    display: inline-flex; align-items: center; gap: 7px;
    border: 1px solid var(--border-hi);
    color: var(--purple); background: var(--bg-surface);
    font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 99px;
    box-shadow: 0 2px 8px rgba(86,61,124,.08);
}

/* Serif heading */
.flow-h1 {
    font-family: var(--serif);
    font-size: 52px; font-weight: 400; line-height: 1.1;
    color: var(--text-1); letter-spacing: -.5px;
}
.flow-h1 span { color: var(--purple); font-style: italic; }

.flow-h2 {
    font-family: var(--serif);
    font-size: 32px; font-weight: 400;
    color: var(--text-1); letter-spacing: -.3px; line-height: 1.15;
}

.flow-h3 {
    font-family: var(--serif);
    font-size: 28px; font-weight: 400;
    color: var(--text-1); letter-spacing: -.2px; line-height: 1.2;
}

/* Section sub-text */
.flow-lead {
    font-size: 15.5px; color: var(--text-3);
    line-height: 1.7; max-width: 460px;
    margin: 0 auto;
}

/* Save / status pills */
.pill-save {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--green-bg); border: 1px solid var(--green-border);
    color: var(--green); font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 99px;
}
.pill-info {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--purple-glow); border: 1px solid var(--purple-light);
    color: var(--purple); font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 99px;
}

/* Spinner (reusable) */
.spinner {
    width: 16px; height: 16px;
    border: 2.5px solid rgba(255,255,255,.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    display: none;
    flex-shrink: 0;
}
.spinner--dark {
    border-color: rgba(86,61,124,.2);
    border-top-color: var(--purple);
}

/* Laravel error bag */
.flow-errors {
    background: var(--red-bg); border: 1.5px solid var(--red-border);
    border-radius: 10px; padding: 14px 18px; margin-bottom: 22px;
}
.flow-errors p {
    font-size: 12.5px; color: var(--red); font-weight: 500;
    display: flex; align-items: center; gap: 7px; margin-bottom: 4px;
}
.flow-errors p:last-child { margin-bottom: 0; }

/* Alert banners */
.flow-alert {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 18px; border-radius: 10px;
    font-size: 13px; font-weight: 500;
}
.flow-alert--success { background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green); }
.flow-alert--error   { background: var(--red-bg);   border: 1px solid var(--red-border);   color: var(--red); }
.flow-alert--warning { background: var(--amber-bg); border: 1px solid var(--amber-border); color: var(--amber); }

/* Divider */
.flow-divider { height: 1px; background: var(--border); margin: 22px 0; }


/* ============================================================
   SPLIT-PANEL LAYOUT  (register / payment / setup pages)
   ============================================================ */

.flow-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    background: var(--bg);
    color: var(--text-1);
}

/* ── Left (purple) panel ── */
.flow-left {
    background: var(--purple);
    display: flex; flex-direction: column;
    justify-content: space-between;
    padding: 48px 52px;
    position: relative; overflow: hidden;
}

/* Subtle radial gradients */
.flow-left::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255,255,255,.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 80% 90%, rgba(0,0,0,.15) 0%, transparent 60%);
    pointer-events: none;
}

/* Decorative circles */
.flow-left-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.flow-left-circles span {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.07);
}
.flow-left-circles span:nth-child(1) { width: 420px; height: 420px; bottom: -120px; right: -120px; }
.flow-left-circles span:nth-child(2) { width: 260px; height: 260px; bottom: -20px;  right: 60px; }
.flow-left-circles span:nth-child(3) { width: 140px; height: 140px; top: 60px; left: -40px; }

/* Logo */
.flow-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 18px; font-weight: 800; color: #fff;
    position: relative; z-index: 1; text-decoration: none;
}
.flow-logo-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    display: grid; place-items: center; font-size: 15px;
}

/* Left panel main copy block */
.flow-left-main { position: relative; z-index: 1; }
.flow-left-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.85); font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 99px; margin-bottom: 24px;
}
.flow-left-main h2 {
    font-family: var(--serif);
    font-size: 42px; font-weight: 400; line-height: 1.15;
    color: #fff; margin-bottom: 16px; letter-spacing: -.3px;
}
.flow-left-main h2 em { font-style: italic; color: rgba(255,255,255,.7); }
.flow-left-main p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 360px; }

/* Selected plan badge (shown on all post-pricing steps) */
.flow-plan-badge {
    position: relative; z-index: 1;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px; padding: 16px 20px; margin-top: 36px;
    display: flex; align-items: center; gap: 14px;
}
.flow-plan-badge-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.2);
    display: grid; place-items: center; color: #fff; font-size: 16px; flex-shrink: 0;
}
.flow-plan-badge-label {
    font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 3px;
}
.flow-plan-badge-name  { font-size: 15px; font-weight: 700; color: #fff; }
.flow-plan-badge-price {
    font-family: var(--mono); font-size: 12px;
    color: rgba(255,255,255,.6); margin-top: 2px;
}
.flow-plan-badge-change {
    margin-left: auto; font-size: 11.5px; font-weight: 600;
    color: rgba(255,255,255,.5); text-decoration: none;
    border-bottom: 1px dashed rgba(255,255,255,.25);
    transition: color .15s; white-space: nowrap;
}
.flow-plan-badge-change:hover { color: rgba(255,255,255,.85); }

/* Step progress tracker */
.flow-steps { position: relative; z-index: 1; }
.flow-steps-label {
    font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.flow-steps-row { display: flex; align-items: center; }
.flow-step-item { display: flex; align-items: center; flex: 1; }
.flow-step-item:last-child { flex: none; }
.flow-step-dot {
    width: 28px; height: 28px; border-radius: 50%;
    display: grid; place-items: center; font-size: 11px; font-weight: 700;
    flex-shrink: 0; transition: all .2s;
}
.flow-step-dot.done   { background: rgba(255,255,255,.9); color: var(--purple); }
.flow-step-dot.active { background: #fff; color: var(--purple); box-shadow: 0 0 0 4px rgba(255,255,255,.2); }
.flow-step-dot.future { background: rgba(255,255,255,.12); color: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.15); }
.flow-step-line {
    flex: 1; height: 2px; margin: 0 6px;
    background: rgba(255,255,255,.12); border-radius: 2px;
}
.flow-step-line.done { background: rgba(255,255,255,.5); }
.flow-steps-labels { display: flex; margin-top: 10px; }
.flow-step-label {
    flex: 1; font-size: 10px; font-weight: 600;
    color: rgba(255,255,255,.4); text-align: center; letter-spacing: .3px;
}
.flow-step-label:first-child { text-align: left; }
.flow-step-label:last-child  { text-align: right; flex: none; }
.flow-step-label.active { color: rgba(255,255,255,.85); }

/* ── Right panel ── */
.flow-right {
    display: flex; align-items: center; justify-content: center;
    padding: 48px 52px; background: var(--bg); overflow-y: auto;
}
.flow-right-inner {
    width: 100%; max-width: 460px;
    animation: fadeUp .4s ease both;
}

/* Right panel page title */
.flow-right-title { margin-bottom: 32px; }
.flow-right-title h1 { margin-bottom: 8px; }
.flow-right-title p  { font-size: 14px; color: var(--text-3); line-height: 1.6; }
.flow-right-title a  { color: var(--purple); font-weight: 600; text-decoration: none; }
.flow-right-title a:hover { text-decoration: underline; }


/* ============================================================
   FORM CARD  (white card wrapping each step's form)
   ============================================================ */

.flow-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

/* ── Field ── */
.flow-field { margin-bottom: 18px; }
.flow-field label {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 11.5px; font-weight: 700; letter-spacing: .5px;
    text-transform: uppercase; color: var(--text-3); margin-bottom: 8px;
}
.flow-field label .field-hint {
    font-size: 11px; font-weight: 500; letter-spacing: 0;
    text-transform: none; color: var(--text-3); opacity: .7;
}

.flow-input-wrap { position: relative; }
.flow-input-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--text-3); font-size: 13px; pointer-events: none;
    transition: color .18s;
}
.flow-input {
    width: 100%;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text-1);
    font-family: var(--sans); font-size: 14px;
    padding: 12px 14px 12px 40px;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
}
.flow-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple-glow);
    background: var(--bg-surface);
}
.flow-input-wrap:focus-within .flow-input-icon { color: var(--purple); }
.flow-input::placeholder { color: var(--text-3); font-size: 13.5px; }
.flow-input--no-icon { padding-left: 14px; }
.flow-input--pw { padding-right: 44px; }

/* Validation states */
.flow-input.is-valid   { border-color: rgba(30,126,64,.4); }
.flow-input.is-invalid { border-color: rgba(192,57,43,.4); }

/* Field message */
.flow-field-msg {
    margin-top: 6px; font-size: 12px; font-weight: 500;
    display: none; align-items: center; gap: 5px;
}
.flow-field-msg.show    { display: flex; }
.flow-field-msg.success { color: var(--green); }
.flow-field-msg.error   { color: var(--red); }

/* Password show/hide toggle */
.pw-toggle {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--text-3); font-size: 13px; padding: 4px;
    transition: color .15s;
}
.pw-toggle:hover { color: var(--purple); }

/* Two-column row */
.flow-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Select */
.flow-select {
    appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239b8fba' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px !important;
}

/* Textarea */
.flow-textarea {
    resize: vertical; min-height: 80px; line-height: 1.55;
    padding-top: 12px !important;
}

/* Password strength meter */
.pw-strength-wrap { margin-top: 8px; }
.pw-bars { display: flex; gap: 4px; margin-bottom: 5px; }
.pw-bar {
    flex: 1; height: 3px; border-radius: 3px; background: var(--border);
    transition: background .25s;
}
.pw-bar.weak   { background: var(--red); }
.pw-bar.medium { background: #c28800; }
.pw-bar.strong { background: var(--green); }
.pw-strength-label {
    font-size: 11px; font-weight: 600; color: var(--text-3); transition: color .2s;
}
.pw-strength-label.weak   { color: var(--red); }
.pw-strength-label.medium { color: #c28800; }
.pw-strength-label.strong { color: var(--green); }


/* ============================================================
   BUTTONS
   ============================================================ */

.btn-flow {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    width: 100%; padding: 13px 20px; border-radius: 10px;
    font-family: var(--sans); font-size: 14px; font-weight: 700;
    cursor: pointer; border: none; text-decoration: none;
    transition: background .18s, box-shadow .18s, transform .12s;
    letter-spacing: .1px;
}
.btn-flow:active { transform: scale(.98); }
.btn-flow i { font-size: 11px; transition: transform .18s; }
.btn-flow:hover i { transform: translateX(3px); }
.btn-flow:disabled { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.btn-flow--primary {
    background: var(--purple); color: #fff;
    box-shadow: 0 4px 20px rgba(86,61,124,.3);
}
.btn-flow--primary:hover { background: var(--purple-mid); box-shadow: 0 8px 28px rgba(86,61,124,.4); }

.btn-flow--ghost {
    background: var(--bg-card); color: var(--purple);
    border: 1.5px solid var(--border);
}
.btn-flow--ghost:hover {
    background: var(--purple-glow); border-color: var(--purple-light);
    box-shadow: 0 4px 16px rgba(86,61,124,.1);
}

.btn-flow--outline {
    background: transparent; color: var(--purple);
    border: 1.5px solid var(--purple-light);
}
.btn-flow--outline:hover { background: var(--purple-glow); border-color: var(--purple); }

.btn-flow--sm { padding: 9px 18px; font-size: 13px; width: auto; }

/* Terms note below submit */
.flow-terms {
    margin-top: 16px; text-align: center;
    font-size: 12px; color: var(--text-3); line-height: 1.6;
}
.flow-terms a { color: var(--purple); font-weight: 600; text-decoration: none; }
.flow-terms a:hover { text-decoration: underline; }


/* ============================================================
   PRICING PAGE  (subscription.blade.php)
   ============================================================ */

body.page-pricing {
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    background: var(--bg); color: var(--text-1);
}

.sub-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 52px 24px 96px;
}

/* Hero */
.sub-hero { text-align: center; margin-bottom: 56px; }
.sub-hero .flow-tag { margin-bottom: 24px; animation: fadeUp .35s ease both; }
.sub-hero .flow-h1  { margin-bottom: 16px; animation: fadeUp .35s ease .06s both; }
.sub-hero .flow-lead { margin-bottom: 36px; animation: fadeUp .35s ease .12s both; }

/* Billing toggle */
.billing-wrap { display: flex; align-items: center; justify-content: center; gap: 14px; animation: fadeUp .35s ease .18s both; }
.billing-toggle {
    position: relative; display: inline-flex;
    background: var(--bg-surface); border: 1px solid var(--border);
    border-radius: 99px; padding: 5px;
    box-shadow: 0 2px 10px rgba(86,61,124,.07);
}
.billing-glider {
    position: absolute; top: 5px; bottom: 5px; left: 5px;
    border-radius: 99px; background: var(--purple);
    transition: transform .28s cubic-bezier(.4,0,.2,1), width .28s cubic-bezier(.4,0,.2,1);
    z-index: 0; box-shadow: 0 2px 12px rgba(86,61,124,.35);
}
.billing-btn {
    position: relative; z-index: 1; padding: 9px 22px;
    border: none; background: transparent;
    font-family: var(--sans); font-size: 13px; font-weight: 600;
    color: var(--text-3); cursor: pointer; border-radius: 99px;
    transition: color .2s; white-space: nowrap;
}
.billing-btn.active { color: #fff; }

/* Plan grid */
.plans-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 18px; align-items: end;
}

/* Plan card */
.plan-card {
    background: var(--bg-surface); border: 1.5px solid var(--border);
    border-radius: var(--r); overflow: hidden;
    display: flex; flex-direction: column; position: relative;
    transition: box-shadow .22s, transform .22s, border-color .22s;
    box-shadow: var(--shadow-sm);
    animation: fadeUp .4s ease both;
}
.plan-card:nth-child(1) { animation-delay: .08s; }
.plan-card:nth-child(2) { animation-delay: .16s; }
.plan-card:nth-child(3) { animation-delay: .24s; }
.plan-card:nth-child(4) { animation-delay: .32s; }
.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.plan-card--featured {
    border-color: var(--purple); transform: translateY(-10px);
    box-shadow: 0 0 0 4px var(--purple-pale), var(--shadow-xl);
}
.plan-card--featured:hover {
    transform: translateY(-14px);
    box-shadow: 0 0 0 4px var(--purple-pale), 0 24px 60px rgba(86,61,124,.28);
}

.featured-badge {
    position: absolute; top: 0; right: 20px;
    background: var(--purple); color: #fff; font-size: 10px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 14px 6px; border-radius: 0 0 10px 10px;
    display: flex; align-items: center; gap: 5px;
}

.plan-accent { height: 4px; background: var(--border); }
.plan-card--featured .plan-accent { background: linear-gradient(90deg, var(--purple) 0%, var(--purple-mid) 100%); }

.plan-head { padding: 24px 24px 18px; border-bottom: 1px solid var(--border); }
.plan-card--featured .plan-head { padding-top: 36px; }

.plan-icon-wrap {
    width: 42px; height: 42px; border-radius: 11px;
    border: 1.5px solid var(--border); background: var(--bg-card);
    display: grid; place-items: center; font-size: 17px; color: var(--purple);
    margin-bottom: 14px; transition: transform .2s;
}
.plan-card:hover .plan-icon-wrap { transform: scale(1.06) rotate(-3deg); }
.plan-card--featured .plan-icon-wrap {
    background: var(--purple); border-color: var(--purple); color: #fff;
    box-shadow: 0 6px 20px rgba(86,61,124,.3);
}

.plan-name { font-size: 16px; font-weight: 800; color: var(--text-1); letter-spacing: -.3px; margin-bottom: 5px; }
.plan-desc { font-size: 12.5px; color: var(--text-3); line-height: 1.6; }

.plan-price-block { padding: 20px 24px 16px; border-bottom: 1px solid var(--border); }
.price-row { display: flex; align-items: baseline; gap: 3px; margin-bottom: 5px; }
.price-currency { font-family: var(--mono); font-size: 13px; font-weight: 600; color: var(--text-3); line-height: 1; padding-bottom: 3px; }
.price-amount { font-family: var(--mono); font-size: 36px; font-weight: 700; color: var(--text-1); letter-spacing: -2px; line-height: 1; transition: opacity .18s, transform .18s; }
.plan-card--featured .price-amount { color: var(--purple); }
.price-amount.flip { opacity: 0; transform: translateY(-6px); }
.price-per { font-size: 12px; font-weight: 600; color: var(--text-3); margin-left: 2px; }
.price-yearly-note {
    font-size: 11.5px; color: var(--green); font-weight: 600;
    display: flex; align-items: center; gap: 5px;
    overflow: hidden; max-height: 0; opacity: 0;
    transition: max-height .3s ease, opacity .2s;
}
.price-yearly-note.show { max-height: 30px; opacity: 1; }

.plan-limits { display: flex; flex-wrap: wrap; gap: 6px; padding: 14px 24px; border-bottom: 1px solid var(--border); background: var(--bg-card); }
.limit-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; color: var(--text-2); background: var(--bg-surface); border: 1px solid var(--border); border-radius: 7px; padding: 4px 10px; white-space: nowrap; }
.limit-chip i { font-size: 9.5px; color: var(--purple-light); }
.plan-card--featured .plan-limits { background: rgba(86,61,124,.03); }
.plan-card--featured .limit-chip { background: var(--purple-glow); border-color: var(--purple-light); color: var(--purple); }
.plan-card--featured .limit-chip i { color: var(--purple); }

.plan-features { padding: 18px 24px; flex: 1; display: flex; flex-direction: column; }
.feature-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; font-weight: 500; color: var(--text-2); border-bottom: 1px dashed var(--border); }
.feature-row:last-child { border-bottom: none; }
.feature-check { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; font-size: 8px; background: var(--green-bg); border: 1px solid var(--green-border); color: var(--green); }
.plan-card--featured .feature-check { background: var(--purple-glow); border-color: var(--purple-light); color: var(--purple); }

.plan-cta { padding: 20px 24px 24px; }
.plan-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px 20px; border-radius: 10px; font-family: var(--sans); font-size: 13.5px; font-weight: 700; cursor: pointer; border: none; text-decoration: none; transition: background .18s, box-shadow .18s, transform .12s; letter-spacing: .1px; }
.plan-btn:active { transform: scale(.97); }
.plan-btn i { font-size: 11px; transition: transform .18s; }
.plan-btn:hover i { transform: translateX(3px); }
.plan-btn--ghost { background: var(--bg-card); color: var(--purple); border: 1.5px solid var(--border); }
.plan-btn--ghost:hover { background: var(--purple-glow); border-color: var(--purple-light); box-shadow: 0 4px 16px rgba(86,61,124,.1); }
.plan-btn--primary { background: var(--purple); color: #fff; box-shadow: 0 4px 20px rgba(86,61,124,.35); }
.plan-btn--primary:hover { background: var(--purple-mid); box-shadow: 0 8px 28px rgba(86,61,124,.45); }
.plan-btn--current { background: var(--bg-card); color: var(--text-3); border: 1.5px solid var(--border); cursor: not-allowed; opacity: .7; }

/* Comparison table */
.compare-section { margin-top: 64px; animation: fadeUp .4s ease .4s both; }
.compare-header { text-align: center; margin-bottom: 32px; }
.compare-header h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; color: var(--text-1); margin-bottom: 8px; }
.compare-header p { font-size: 14px; color: var(--text-3); }
.compare-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border: 1.5px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: 0 2px 16px rgba(86,61,124,.07); }
.compare-table thead th { padding: 16px 20px; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .6px; color: var(--text-2); background: var(--bg-card); border-bottom: 1.5px solid var(--border); white-space: nowrap; }
.compare-table thead th:first-child { text-align: left; width: 220px; }
.compare-table thead th.th-featured { color: var(--purple); background: var(--purple-glow); }
.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--bg-card); }
.compare-table td { padding: 13px 20px; font-size: 13px; text-align: center; color: var(--text-2); }
.compare-table td:first-child { text-align: left; font-weight: 600; color: var(--text-1); }
.compare-table td.td-featured { background: rgba(86,61,124,.03); }
.check-yes { color: var(--green); font-size: 14px; }
.check-no  { color: var(--border-hi); font-size: 14px; }
.compare-table .section-row td { background: var(--bg-card); font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-3); padding: 10px 20px; }

/* Trust strip */
.trust-strip { margin-top: 56px; display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; animation: fadeUp .4s ease .5s both; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--text-3); }
.trust-item i { color: var(--purple-light); font-size: 15px; }

.order-summary {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
}
.order-summary-header {
    padding: 14px 20px;
    background: var(--purple-glow);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 10px;
}
.order-summary-header span {
    font-size: 11px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; color: var(--purple);
}
.order-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13.5px;
}
.order-row:last-child { border-bottom: none; }
.order-row-label { color: var(--text-2); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.order-row-label i { color: var(--purple-light); font-size: 12px; width: 14px; text-align: center; }
.order-row-value { font-weight: 700; color: var(--text-1); font-family: var(--mono); font-size: 13px; }
.order-row-value.highlight { color: var(--purple); font-size: 16px; }

.order-total {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    background: var(--purple-glow);
    border-top: 1.5px solid var(--purple-light);
}
.order-total-label {
    font-size: 13px; font-weight: 700; color: var(--purple);
    text-transform: uppercase; letter-spacing: .6px;
}
.order-total-value {
    font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--purple);
    letter-spacing: -1px;
}

/* Secure badges */
.secure-badges {
    display: flex; align-items: center; justify-content: center;
    gap: 20px; flex-wrap: wrap;
    padding: 14px 0 4px;
}
.secure-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 600; color: var(--text-3);
}
.secure-badge i { color: var(--purple-light); font-size: 12px; }

/* Paystack button */
.paystack-btn {
    width: 100%; padding: 15px 20px;
    background: var(--purple); color: #fff;
    font-family: var(--sans); font-size: 15px; font-weight: 800;
    border: none; border-radius: 10px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: background .18s, box-shadow .18s, transform .12s;
    box-shadow: 0 4px 20px rgba(86,61,124,.35);
    letter-spacing: .1px;
    margin-bottom: 12px;
}
.paystack-btn:hover { background: var(--purple-mid); box-shadow: 0 8px 28px rgba(86,61,124,.4); }
.paystack-btn:active { transform: scale(.98); }
.paystack-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.paystack-btn .btn-amount {
    font-family: var(--mono); font-size: 14px; font-weight: 700;
    opacity: .85; padding: 0 12px; border-left: 1px solid rgba(255,255,255,.25);
    margin-left: 4px;
}
.paystack-btn .spinner {
    border-color: rgba(255,255,255,.3);
    border-top-color: #fff;
}

/* Paystack powered note */
.paystack-note {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    font-size: 11.5px; color: var(--text-3); font-weight: 500;
    padding: 2px 0 14px;
}
.paystack-note i { color: var(--green); font-size: 11px; }

/* Left panel — plan details list */
.plan-detail-list { margin-top: 24px; }
.plan-detail-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.plan-detail-item:last-child { border-bottom: none; }
.plan-detail-icon {
    width: 30px; height: 30px; border-radius: 7px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    display: grid; place-items: center; font-size: 12px; color: rgba(255,255,255,.7); flex-shrink: 0;
}
.plan-detail-text { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 500; }
.plan-detail-text strong { color: #fff; font-weight: 700; }

/* Saving chip on yearly */
.saving-chip {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(30,126,64,.2); border: 1px solid rgba(30,126,64,.35);
    color: #5dca7c; font-size: 10.5px; font-weight: 700;
    padding: 3px 9px; border-radius: 99px; margin-left: 8px;
    vertical-align: middle;
}

/* Email prefill note */
.email-prefill-note {
    font-size: 11.5px; color: var(--text-3);
    display: flex; align-items: center; gap: 6px;
    margin-top: 6px;
}
.email-prefill-note i { color: var(--purple-light); }

/* What happens after payment */
.after-payment {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px 20px; margin-top: 20px;
}
.after-payment-title {
    font-size: 11px; font-weight: 700; letter-spacing: .9px;
    text-transform: uppercase; color: var(--text-3); margin-bottom: 12px;
    display: flex; align-items: center; gap: 7px;
}
.after-step {
    display: flex; align-items: center; gap: 10px;
    font-size: 12.5px; font-weight: 500; color: var(--text-2);
    margin-bottom: 8px;
}
.after-step:last-child { margin-bottom: 0; }
.after-step-num {
    width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
    background: var(--purple-glow); border: 1px solid var(--purple-light);
    color: var(--purple); font-size: 10px; font-weight: 700;
    display: grid; place-items: center;
}

/* ── Setup-page additions ── */

/* Logo upload */
.logo-upload-zone {
    border: 2px dashed var(--border-hi);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color .18s, background .18s;
    position: relative;
    background: var(--bg-card);
}
.logo-upload-zone:hover,
.logo-upload-zone.dragging {
    border-color: var(--purple);
    background: var(--purple-glow);
}
.logo-upload-zone input[type="file"] {
    position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.logo-preview-wrap {
    display: none;
    align-items: center; gap: 16px;
    padding: 14px 16px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 12px;
}
.logo-preview-wrap.show { display: flex; }
.logo-preview-img {
    width: 56px; height: 56px; border-radius: 10px;
    object-fit: cover; border: 1px solid var(--border);
    flex-shrink: 0;
}
.logo-preview-info { flex: 1; min-width: 0; }
.logo-preview-name { font-size: 13px; font-weight: 700; color: var(--text-1); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.logo-preview-size { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.logo-preview-remove {
    background: none; border: none; cursor: pointer;
    color: var(--text-3); font-size: 14px; padding: 4px;
    transition: color .15s; flex-shrink: 0;
}
.logo-preview-remove:hover { color: var(--red); }

/* Upload icon area */
.upload-icon-wrap {
    width: 44px; height: 44px; border-radius: 11px;
    background: var(--purple-glow); border: 1px solid var(--purple-light);
    display: grid; place-items: center; margin: 0 auto 12px;
    font-size: 17px; color: var(--purple);
    transition: transform .18s;
}
.logo-upload-zone:hover .upload-icon-wrap { transform: translateY(-2px); }
.upload-label { font-size: 13.5px; font-weight: 700; color: var(--text-1); margin-bottom: 4px; }
.upload-sub   { font-size: 12px; color: var(--text-3); }

/* Main branch card */
.branch-card {
    background: var(--purple-glow);
    border: 1.5px solid var(--purple-light);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 18px;
}
.branch-card-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: var(--purple); color: #fff;
    display: grid; place-items: center; font-size: 14px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(86,61,124,.3);
}
.branch-card-label { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--purple); margin-bottom: 3px; }
.branch-card-desc  { font-size: 12.5px; color: var(--text-2); line-height: 1.5; }

/* Section header inside card */
.form-section-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.form-section-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--purple-glow); border: 1px solid var(--purple-light);
    display: grid; place-items: center; font-size: 13px; color: var(--purple); flex-shrink: 0;
}
.form-section-label { font-size: 13px; font-weight: 700; color: var(--text-1); }
.form-section-sub   { font-size: 12px; color: var(--text-3); margin-top: 1px; }

/* Left panel plan summary */
.plan-limits-list { margin-top: 20px; }
.plan-limit-item {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.plan-limit-item:last-child { border-bottom: none; }
.plan-limit-icon {
    width: 28px; height: 28px; border-radius: 7px;
    background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
    display: grid; place-items: center; font-size: 11px; color: rgba(255,255,255,.7); flex-shrink: 0;
}
.plan-limit-text { font-size: 13px; color: rgba(255,255,255,.75); }
.plan-limit-text strong { color: #fff; }

.expired-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 80px;
}

/* ── Top bar ── */
.expired-topbar {
    position: fixed; top: 0; left: 0; right: 0;
    height: 56px;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(86,61,124,.06);
}
.topbar-logo {
    display: flex; align-items: center; gap: 9px;
    font-size: 16px; font-weight: 800; color: var(--text-1);
    text-decoration: none;
}
.topbar-logo-icon {
    width: 30px; height: 30px; border-radius: 7px;
    background: var(--purple); color: #fff;
    display: grid; place-items: center; font-size: 13px;
}
.topbar-user {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; color: var(--text-2);
}
.topbar-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--purple-glow); border: 1.5px solid var(--purple-light);
    display: grid; place-items: center;
    font-size: 11px; font-weight: 800; color: var(--purple);
}
.topbar-logout {
    font-size: 12px; font-weight: 600; color: var(--text-3);
    text-decoration: none; padding: 6px 12px;
    border: 1px solid var(--border); border-radius: 7px;
    transition: color .15s, border-color .15s;
}
.topbar-logout:hover { color: var(--red); border-color: var(--red-border); }

/* ── Main card ── */
.expired-card {
    width: 100%; max-width: 880px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(86,61,124,.1), 0 1px 4px rgba(86,61,124,.06);
    margin-top: 56px; /* offset for fixed topbar */
    animation: fadeUp .4s ease both;
}

/* ── Card hero ── */
.exp-hero {
    background: var(--purple);
    padding: 48px 48px 56px;
    position: relative; overflow: hidden;
    text-align: center;
}
.exp-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 10%, rgba(255,255,255,.07) 0%, transparent 55%),
        radial-gradient(ellipse 60% 70% at 85% 90%, rgba(0,0,0,.18) 0%, transparent 55%);
}
.exp-hero-circles { position: absolute; inset: 0; overflow: hidden; }
.exp-hero-circles span {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.07);
}
.exp-hero-circles span:nth-child(1) { width: 500px; height: 500px; bottom: -200px; right: -150px; }
.exp-hero-circles span:nth-child(2) { width: 280px; height: 280px; top: -80px; left: -60px; }

.exp-hero-content { position: relative; z-index: 1; }

/* Warning icon */
.exp-icon-ring {
    width: 80px; height: 80px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.exp-icon-ring-inner {
    width: 58px; height: 58px; border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px;
}

.exp-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.9); font-size: 11px; font-weight: 700;
    letter-spacing: 1.3px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 99px; margin-bottom: 18px;
}
.exp-hero-title {
    font-family: var(--serif);
    font-size: 34px; font-weight: 400; color: #fff;
    line-height: 1.15; letter-spacing: -.3px; margin-bottom: 12px;
}
.exp-hero-title em { font-style: italic; color: rgba(255,255,255,.7); }
.exp-hero-sub {
    font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7;
    max-width: 480px; margin: 0 auto;
}

/* ── Expiry summary strip (overlapping) ── */
.exp-summary-wrap {
    background: var(--bg);
    padding: 0 40px;
    margin-top: -26px;
    position: relative;
    z-index: 2;
}
.exp-summary {
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    display: flex; align-items: stretch;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(86,61,124,.1);
}
.exp-summary-cell {
    flex: 1; padding: 18px 22px;
    border-right: 1px solid var(--border);
    display: flex; align-items: center; gap: 14px;
}
.exp-summary-cell:last-child { border-right: none; }
.exp-summary-icon {
    width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
    display: grid; place-items: center; font-size: 14px;
}
.exp-summary-icon--red    { background: var(--red-bg);   border: 1px solid var(--red-border);    color: var(--red); }
.exp-summary-icon--amber  { background: var(--amber-bg); border: 1px solid var(--amber-border);  color: var(--amber); }
.exp-summary-icon--purple { background: var(--purple-glow); border: 1px solid var(--purple-light); color: var(--purple); }
.exp-summary-label { font-size: 10.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.exp-summary-value { font-family: var(--mono); font-size: 14px; font-weight: 700; color: var(--text-1); }
.exp-summary-value--red   { color: var(--red); }
.exp-summary-value--amber { color: var(--amber); }

/* ── Body ── */
.exp-body { padding: 36px 40px; }

/* What they lost access to */
.access-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.access-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 14px;
    font-size: 13px; font-weight: 600; color: var(--text-3);
    transition: border-color .15s;
}
.access-item-icon {
    width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
    display: grid; place-items: center; font-size: 11px;
    background: var(--red-bg); border: 1px solid var(--red-border); color: var(--red);
}

/* ── Plan selection strip ── */
.exp-divider {
    height: 1px; background: var(--border); margin: 32px 0;
}

.plans-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.plan-mini-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: 12px; padding: 16px;
    display: flex; flex-direction: column;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s, transform .18s;
    position: relative;
}
.plan-mini-card:hover {
    border-color: var(--purple-light);
    box-shadow: 0 4px 20px rgba(86,61,124,.1);
    transform: translateY(-2px);
}
.plan-mini-card.selected {
    border-color: var(--purple);
    background: var(--purple-glow);
    box-shadow: 0 4px 20px rgba(86,61,124,.15);
}
.plan-mini-card.featured {
    border-color: var(--purple);
}
.plan-mini-badge {
    position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
    background: var(--purple); color: #fff;
    font-size: 9px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
    padding: 3px 10px; border-radius: 0 0 7px 7px;
    white-space: nowrap;
}
.plan-mini-icon {
    width: 34px; height: 34px; border-radius: 8px;
    background: var(--purple-glow); border: 1px solid var(--purple-light);
    display: grid; place-items: center; font-size: 13px; color: var(--purple);
    margin-bottom: 10px; margin-top: 8px;
}
.plan-mini-card.selected .plan-mini-icon {
    background: var(--purple); color: #fff; border-color: var(--purple);
}
.plan-mini-name  { font-size: 13px; font-weight: 800; color: var(--text-1); margin-bottom: 4px; }
.plan-mini-price { font-family: var(--mono); font-size: 15px; font-weight: 700; color: var(--purple); }
.plan-mini-cycle { font-size: 11px; color: var(--text-3); font-weight: 500; }
.plan-mini-tick  {
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--purple); color: #fff;
    display: none; place-items: center; font-size: 8px;
    position: absolute; top: 10px; right: 10px;
}
.plan-mini-card.selected .plan-mini-tick { display: grid; }

/* Billing toggle mini */
.billing-mini-wrap {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.billing-mini-toggle {
    display: inline-flex; background: var(--bg-surface);
    border: 1px solid var(--border); border-radius: 99px; padding: 3px; position: relative;
}
.billing-mini-glider {
    position: absolute; top: 3px; bottom: 3px; left: 3px;
    border-radius: 99px; background: var(--purple);
    transition: transform .25s cubic-bezier(.4,0,.2,1), width .25s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 2px 8px rgba(86,61,124,.3);
}
.billing-mini-btn {
    position: relative; z-index: 1;
    padding: 7px 16px; border: none; background: transparent;
    font-family: var(--sans); font-size: 12px; font-weight: 600;
    color: var(--text-3); cursor: pointer; border-radius: 99px;
    transition: color .18s;
}
.billing-mini-btn.active { color: #fff; }

/* Renew CTA */
.renew-cta {
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex; align-items: center; gap: 20px;
    margin-top: 28px;
    box-shadow: 0 2px 12px rgba(86,61,124,.06);
}
.renew-cta-text { flex: 1; }
.renew-cta-title { font-size: 16px; font-weight: 800; color: var(--text-1); margin-bottom: 4px; }
.renew-cta-sub   { font-size: 13px; color: var(--text-3); line-height: 1.55; }
.renew-cta-price {
    text-align: right; flex-shrink: 0;
}
.renew-cta-amount {
    font-family: var(--mono); font-size: 22px; font-weight: 700;
    color: var(--purple); letter-spacing: -1px; line-height: 1;
}
.renew-cta-cycle { font-size: 11px; color: var(--text-3); font-weight: 500; margin-top: 3px; }

/* Contact strip */
.exp-contact {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    flex-wrap: wrap; padding: 20px 40px 32px;
    border-top: 1px solid var(--border);
}
.exp-contact-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--text-3);
}
.exp-contact-item i { color: var(--purple-light); }
.exp-contact-item a { color: var(--purple); text-decoration: none; font-weight: 700; }
.exp-contact-item a:hover { text-decoration: underline; }

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .exp-hero { padding: 40px 28px 48px; }
    .exp-summary-wrap { padding: 0 20px; }
    .exp-body { padding: 28px 24px; }
    .exp-summary { flex-direction: column; }
    .exp-summary-cell { border-right: none; border-bottom: 1px solid var(--border); }
    .exp-summary-cell:last-child { border-bottom: none; }
    .access-grid { grid-template-columns: repeat(2, 1fr); }
    .plans-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .renew-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
    .renew-cta-price { text-align: left; }
    .exp-contact { padding: 20px 24px 28px; gap: 16px; }
}
@media (max-width: 480px) {
    .access-grid { grid-template-columns: 1fr; }
    .plans-mini-grid { grid-template-columns: 1fr 1fr; }
    .exp-hero-title { font-size: 26px; }
    .topbar-user span { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Split layout */
@media (max-width: 900px) {
    .flow-split { grid-template-columns: 1fr; }
    .flow-left  { display: none; }
    .flow-right { padding: 40px 24px; }
}
@media (max-width: 480px) {
    .flow-row-2 { grid-template-columns: 1fr; }
    .flow-card  { padding: 24px 20px; }
    .flow-right-inner { max-width: 100%; }
}

/* Pricing */
@media (max-width: 1060px) {
    .plans-grid { grid-template-columns: repeat(2, 1fr); }
    .plan-card--featured { transform: none; }
    .plan-card--featured:hover { transform: translateY(-3px); }
}
@media (max-width: 620px) {
    .plans-grid { grid-template-columns: 1fr; }
    .flow-h1 { font-size: 36px; }
    .compare-table { font-size: 12px; }
    .compare-table thead th, .compare-table td { padding: 10px 12px; }
}