/* ─────────────────────────────────────────────────────────────
   Astrogai brand — consumer (lila) overrides + components.
   Loaded after app.css, so wins on conflicts.
   ───────────────────────────────────────────────────────────── */

:root {
    --ag-bg-1: #0b0f1f;
    --ag-bg-2: #1a1340;
    --ag-bg-3: #050714;
    --ag-purple-100: #f5f3ff;
    --ag-purple-300: #c084fc;
    --ag-purple-400: #a78bfa;
    --ag-purple-500: #8b5cf6;
    --ag-purple-600: #7c3aed;
    --ag-purple-700: #6d28d9;
    --ag-purple-800: #5b21b6;
    --ag-text: #f5f3ff;
    --ag-text-muted: rgba(245, 243, 255, 0.72);
    --ag-text-dim: rgba(245, 243, 255, 0.55);
    --ag-surface: #14102b;
    --ag-surface-2: rgba(255, 255, 255, 0.04);
    --ag-border: rgba(177, 140, 255, 0.18);
    --ag-border-strong: rgba(177, 140, 255, 0.4);
}

body.astrogai-body {
    margin: 0;
    padding-top: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ag-text);
    background: radial-gradient(ellipse at top, var(--ag-bg-2) 0%, var(--ag-bg-1) 50%, var(--ag-bg-3) 100%);
    min-height: 100vh;
}

/* ── Top nav ─────────────────────────────────────────── */
.astrogai-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: rgba(11, 15, 31, 0.65);
    border-bottom: 1px solid var(--ag-border);
}
.astrogai-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}
.astrogai-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.astrogai-brand__logo {
    display: block;
    height: 2.25rem;
    width: auto;
}
.astrogai-nav__links {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}
.astrogai-nav__link {
    color: var(--ag-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.15s ease;
}
.astrogai-nav__link:hover {
    color: var(--ag-text);
}
.astrogai-nav__soon {
    color: var(--ag-purple-300);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Mobile menu toggler — hidden by default; the .astrogai-nav__collapse
 * wrapper carries Bootstrap's .collapse class so the nav links stay
 * hidden until the toggler opens them. On lg+ the wrapper is forced
 * visible and the toggler is hidden, so the row keeps its original look. */
.astrogai-nav__toggler {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--ag-border-strong);
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.astrogai-nav__toggler:hover,
.astrogai-nav__toggler:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(177, 140, 255, 0.6);
    outline: none;
}
.astrogai-nav__toggler-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ag-text);
    border-radius: 1px;
}
@media (min-width: 992px) {
    .astrogai-nav__collapse {
        display: block !important;
    }
}
@media (max-width: 991.98px) {
    .astrogai-nav__inner {
        flex-wrap: wrap;
        row-gap: 0;
    }
    .astrogai-nav__toggler {
        display: inline-flex;
    }
    .astrogai-nav__collapse {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        flex-basis: 100%;
        order: 3;
        background: rgba(11, 15, 31, 0.98);
        border-top: 1px solid var(--ag-border);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.45);
    }
    .astrogai-nav__collapse .astrogai-nav__links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1.1rem 1rem 1.4rem;
        width: 100%;
    }
    .astrogai-nav__collapse .astrogai-nav__link {
        font-size: 1rem;
        padding: 0.85rem 1rem;
        text-align: center;
        border-radius: 8px;
    }
    .astrogai-nav__collapse .astrogai-nav__link:hover,
    .astrogai-nav__collapse .astrogai-nav__link:focus {
        background: rgba(255, 255, 255, 0.05);
    }
    .astrogai-nav__collapse .ag-btn {
        margin: 0.35rem auto;
        padding: 0.75rem 1.75rem;
        align-self: center;
    }
    .astrogai-nav__collapse .dropdown,
    .astrogai-nav__collapse .astrogai-nav__bell-wrap {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    .astrogai-nav__collapse .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        text-align: center;
        margin: 0.25rem 0 0;
    }
    .astrogai-nav__collapse .lang-switcher {
        justify-content: center;
        gap: 0.35rem;
        padding-top: 0.5rem;
    }
    .astrogai-nav__collapse .lang-switcher__link {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

/* ── Pro user banner (astrogai only) ──────────────────── */
.astrogai-probanner {
    border-bottom: 1px solid var(--ag-border);
    background: rgba(124, 58, 237, 0.18);
    font-size: 0.9rem;
}
.astrogai-probanner--paid {
    background: rgba(34, 197, 94, 0.15);
    border-bottom-color: rgba(34, 197, 94, 0.35);
}
.astrogai-probanner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.65rem 0;
    text-align: center;
}
.astrogai-probanner__text {
    color: var(--ag-text);
    opacity: 0.95;
}
.astrogai-probanner__link {
    color: var(--ag-purple-100);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed rgba(245, 243, 255, 0.5);
    padding-bottom: 1px;
    white-space: nowrap;
}
.astrogai-probanner--paid .astrogai-probanner__link {
    color: #d1fae5;
    border-bottom-color: rgba(209, 250, 229, 0.55);
}
.astrogai-probanner__link:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* ── Club membership strip (astrogai, non-members) ────── */
.astrogai-membanner {
    border-bottom: 1px solid var(--ag-border);
    background: linear-gradient(90deg, rgba(124, 58, 237, 0.22), rgba(236, 72, 153, 0.16));
    font-size: 0.9rem;
}
.astrogai-membanner__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.65rem 2rem;
    text-align: center;
    position: relative;
}
.astrogai-membanner__text {
    color: var(--ag-text);
    opacity: 0.95;
}
.astrogai-membanner__link {
    color: var(--ag-purple-100);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed rgba(245, 243, 255, 0.5);
    padding-bottom: 1px;
    white-space: nowrap;
}
.astrogai-membanner__link:hover {
    color: #fff;
    border-bottom-color: #fff;
}
.astrogai-membanner__close {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: var(--ag-text);
    opacity: 0.6;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.5rem;
}
.astrogai-membanner__close:hover {
    opacity: 1;
}

/* ── Main + footer ───────────────────────────────────── */
.astrogai-main {
    min-height: 60vh;
}
.astrogai-footer {
    border-top: 1px solid var(--ag-border);
    padding: 2.5rem 0 3rem;
    margin-top: 4rem;
    color: var(--ag-text-dim);
    font-size: 0.9rem;
}
.astrogai-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.astrogai-footer__brand {
    display: inline-flex;
    align-items: center;
}
.astrogai-footer__logo {
    display: block;
    height: 2rem;
    width: auto;
    opacity: 0.85;
}
.astrogai-footer__link {
    color: var(--ag-purple-300);
    text-decoration: none;
}
.astrogai-footer__link:hover {
    color: var(--ag-purple-100);
}
.astrogai-footer__social {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.astrogai-footer__social-link {
    display: inline-flex;
    color: var(--ag-purple-300);
    transition: color .2s;
}
.astrogai-footer__social-link:hover {
    color: var(--ag-purple-100);
}

/* ── Buttons ─────────────────────────────────────────── */
.ag-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.ag-btn--primary {
    background: linear-gradient(135deg, var(--ag-purple-500), var(--ag-purple-700));
    color: #fff;
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35);
}
.ag-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(124, 58, 237, 0.5);
}
.ag-btn--ghost {
    background: transparent;
    border-color: var(--ag-border-strong);
    color: var(--ag-text);
}

.ag-contact { margin-top: 3rem; }
.ag-contact__heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: .35rem;
    color: var(--ag-text);
}
.ag-contact__lede {
    color: var(--ag-text-muted);
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.ag-astrologer-card {
    background: var(--ag-surface-2);
    border: 1px solid var(--ag-border);
    border-radius: 16px;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.ag-astrologer-card__head {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.ag-astrologer-card__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.ag-astrologer-card__photo--placeholder {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.ag-astrologer-card__name { font-weight: 600; font-size: 1rem; color: var(--ag-text); }
.ag-astrologer-card__title {
    font-size: .8rem;
    color: var(--ag-purple-300);
    margin-top: .1rem;
}
/* The whole teaser card is a link to the full profile (adatlap). */
a.ag-astrologer-card--link {
    text-decoration: none;
    transition: border-color .15s, transform .15s;
}
a.ag-astrologer-card--link:hover {
    border-color: var(--ag-purple-400);
    transform: translateY(-2px);
}
a.ag-astrologer-card--link .ag-btn { pointer-events: none; }
.ag-astrologer-card__bio {
    color: var(--ag-text-muted);
    font-size: .85rem;
    line-height: 1.45;
    margin: 0;
    flex: 1;
}
.ag-astrologer-card__links {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    font-size: 0.85rem;
}
.ag-astrologer-card__links a {
    color: var(--ag-purple-300);
    text-decoration: none;
    border-bottom: 1px dotted rgba(177, 140, 255, 0.4);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
}
.ag-astrologer-card__links a:hover {
    color: var(--ag-text);
    border-bottom-color: var(--ag-purple-300);
}
.ag-astrologer-card__links a span {
    font-size: 0.75em;
    margin-left: 0.15rem;
    opacity: 0.7;
}

/* Form fields inside any ag-astrologer-card (reply form on messages
   thread, etc.) inherit the lila glass treatment — without this the
   Bootstrap default white-on-white renders the textarea unreadable. */
.astrogai-body .ag-astrologer-card .form-label {
    color: var(--ag-text);
    font-weight: 500;
}
.astrogai-body .ag-astrologer-card .form-control {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--ag-text);
}
.astrogai-body .ag-astrologer-card .form-control:focus {
    background: rgba(255,255,255,.09);
    border-color: var(--ag-purple-400);
    box-shadow: 0 0 0 3px rgba(139,92,246,.2);
    color: var(--ag-text);
}
.astrogai-body .ag-astrologer-card .form-control::placeholder {
    color: var(--ag-text-dim);
}

/* Messages list (account_messages thread) inside the lila card —
   the inner anchor uses .text-reset which would otherwise render
   dark-on-dark; force light text and tone .text-muted properly. */
.astrogai-body .ag-astrologer-card .list-group-item {
    background: transparent;
    border-color: var(--ag-border);
    color: var(--ag-text);
}
.astrogai-body .ag-astrologer-card .list-group-item a.text-reset {
    color: var(--ag-text) !important;
}
.astrogai-body .ag-astrologer-card .list-group-item:hover {
    background: rgba(255,255,255,.04);
}
.astrogai-body .text-muted {
    color: var(--ag-text-muted) !important;
}

/* ── Astrologer full profile page (adatlap) ───────────────────────── */
.ag-astrologer__back {
    display: inline-block;
    margin-bottom: 1.25rem;
    color: var(--ag-text-muted);
    text-decoration: none;
    font-size: .9rem;
}
.ag-astrologer__back:hover { color: var(--ag-text); }
.ag-astrologer__header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.ag-astrologer__photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--ag-border);
}
.ag-astrologer__photo--placeholder {
    background: linear-gradient(135deg, #c4b5fd, #a78bfa);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}
.ag-astrologer__name { font-size: 1.7rem; font-weight: 700; color: var(--ag-text); margin: 0; }
.ag-astrologer__title {
    color: var(--ag-purple-300);
    font-size: 1rem;
    margin: .25rem 0 .75rem;
}
.ag-astrologer__bio {
    color: var(--ag-text-muted);
    line-height: 1.55;
    margin: 0;
}
.ag-astrologer__section { margin-bottom: 2rem; }
.ag-astrologer__section-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ag-text);
    margin-bottom: .85rem;
    padding-bottom: .4rem;
    border-bottom: 1px solid var(--ag-border);
}
.ag-astrologer__description {
    color: var(--ag-text-muted);
    line-height: 1.65;
}
.ag-astrologer__services { list-style: none; padding: 0; margin: 0; display: grid; gap: .85rem; }
.ag-astrologer__service {
    background: var(--ag-surface-2);
    border: 1px solid var(--ag-border);
    border-radius: 12px;
    padding: 1rem 1.15rem;
}
.ag-astrologer__service-title { font-weight: 600; color: var(--ag-text); }
.ag-astrologer__service-desc {
    color: var(--ag-text-muted);
    font-size: .9rem;
    line-height: 1.5;
    margin: .35rem 0 0;
}
@media (max-width: 575px) {
    .ag-astrologer__header { flex-direction: column; align-items: center; text-align: center; }
}

/* Message thread bubbles re-themed for the dark astrogai surface so
   the astrologer's reply (.from-them) and the consumer's (.from-me)
   are both readable. */
.astrogai-body .msg-bubble.from-me {
    background: rgba(139, 92, 246, .18);
    border-color: rgba(139, 92, 246, .35);
    color: var(--ag-text);
}
.astrogai-body .msg-bubble.from-them {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: var(--ag-text);
}
.astrogai-body .msg-time {
    color: var(--ag-text-dim);
}
.ag-btn--ghost:hover {
    background: rgba(177, 140, 255, 0.12);
    border-color: var(--ag-purple-300);
}
.ag-btn--disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}
.ag-btn--sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
}

/* ── Hero ────────────────────────────────────────────── */
.ag-hero {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
}
.ag-hero__bg {
    position: absolute;
    inset: -10%;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.35), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(192, 132, 252, 0.25), transparent 55%);
    filter: blur(60px);
    pointer-events: none;
}
.ag-hero__stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 15% 25%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1.5px 1.5px at 70% 65%, rgba(255,255,255,0.55), transparent),
        radial-gradient(1px 1px at 45% 85%, rgba(255,255,255,0.45), transparent),
        radial-gradient(1.5px 1.5px at 88% 28%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 18% 72%, rgba(255,255,255,0.4), transparent);
    pointer-events: none;
    opacity: 0.8;
}
.ag-hero__container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .ag-hero__container {
        grid-template-columns: 1.1fr 1fr;
    }
}
.ag-hero__content {
    max-width: 36rem;
}
.ag-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--ag-border);
    background: var(--ag-surface-2);
    font-size: 0.85rem;
    color: var(--ag-purple-300);
    margin-bottom: 1.25rem;
    font-weight: 500;
}
.ag-hero__badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--ag-purple-300);
    box-shadow: 0 0 8px var(--ag-purple-300);
}
.ag-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    margin: 0 0 1.25rem;
    color: var(--ag-text);
}
.ag-gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--ag-purple-300) 60%, var(--ag-purple-500) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ag-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ag-text-muted);
    margin: 0 0 2rem;
}
.ag-hero__cta {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}
.ag-hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.ag-sphere {
    position: relative;
    width: clamp(220px, 30vw, 360px);
    aspect-ratio: 1;
}
.ag-sphere__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid var(--ag-border-strong);
}
.ag-sphere__ring--r1 { transform: rotate(0deg); }
.ag-sphere__ring--r2 { inset: 15%; transform: rotate(45deg); border-color: var(--ag-border); }
.ag-sphere__core {
    position: absolute;
    inset: 32%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--ag-purple-400), var(--ag-purple-700));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.55);
}
.ag-sphere__symbol {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}
.ag-sphere__float {
    position: absolute;
    font-size: 1.3rem;
    color: var(--ag-purple-300);
    text-shadow: 0 0 12px rgba(177, 140, 255, 0.6);
}
.ag-sphere__float--s1 { top: 6%;  left: 10%; }
.ag-sphere__float--s2 { top: 12%; right: 8%; }
.ag-sphere__float--s3 { bottom: 14%; left: 6%; }
.ag-sphere__float--s4 { bottom: 8%;  right: 12%; }

/* ── Sections ────────────────────────────────────────── */
.ag-section {
    padding: 5rem 0;
    position: relative;
}
.ag-features { background: transparent; }
.ag-how      { background: #fafaf9; color: #1a1340; }
.ag-pricing  { background: #fafaf9; color: #1a1340; padding-top: 1rem; }
.ag-section__head {
    text-align: center;
    margin-bottom: 3rem;
}
.ag-section__label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--ag-purple-500);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.ag-section__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
}
.ag-section__title--light { color: var(--ag-text); }
.ag-section__title--dark  { color: var(--ag-bg-2); }
.ag-section__lede {
    margin-top: 1rem;
    color: rgba(26, 19, 64, 0.7);
    font-size: 1.05rem;
}

/* ── Feature cards ───────────────────────────────────── */
.ag-feat-card {
    background: var(--ag-surface);
    border: 1px solid var(--ag-border);
    border-radius: 18px;
    padding: 1.75rem;
    height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.ag-feat-card:hover {
    transform: translateY(-4px);
    border-color: var(--ag-purple-400);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.2);
}
.ag-feat-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--ag-purple-600), var(--ag-purple-800));
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.ag-feat-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.55rem;
    color: var(--ag-text);
}
.ag-feat-card__desc {
    color: var(--ag-text-muted);
    line-height: 1.55;
    margin: 0;
    font-size: 0.95rem;
}

/* ── How it works ────────────────────────────────────── */
.ag-step {
    text-align: center;
    padding: 1.5rem 1rem;
}
.ag-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ag-purple-500), var(--ag-purple-700));
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}
.ag-step__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--ag-bg-2);
}
.ag-step__desc {
    color: rgba(26, 19, 64, 0.7);
    line-height: 1.55;
    font-size: 0.95rem;
    margin: 0;
}

/* ── Pricing card ────────────────────────────────────── */
.ag-price-card {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(91, 33, 182, 0.08);
}
.ag-price-card__chapter {
    padding: 1.75rem 2rem;
}
.ag-price-card__tag {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--ag-purple-700);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.ag-price-card__tag--paid {
    background: linear-gradient(135deg, var(--ag-purple-500), var(--ag-purple-700));
    color: #fff;
}
.ag-price-card__chapter-title {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--ag-bg-2);
}
.ag-price-card__amount {
    color: var(--ag-purple-700);
    font-size: 1.5rem;
    font-weight: 800;
    white-space: nowrap;
}
.ag-price-card__chapter-desc {
    color: rgba(26, 19, 64, 0.7);
    margin: 0;
    line-height: 1.55;
}
.ag-price-card__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.2), transparent);
}

/* ── Final CTA ───────────────────────────────────────── */
.ag-cta {
    text-align: center;
    padding: 5rem 1rem;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.18), transparent 70%);
}
.ag-cta__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 1rem;
    color: var(--ag-text);
}
.ag-cta__sub {
    color: var(--ag-text-muted);
    font-size: 1.1rem;
    margin: 0 0 2rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

/* ── Auth pages (register / login / verify) ──────────── */
.ag-auth-page {
    padding: 4rem 0;
}
.ag-auth-card {
    background: var(--ag-surface);
    border: 1px solid var(--ag-border);
    border-radius: 22px;
    padding: 2.25rem 2rem;
    box-shadow: 0 30px 60px rgba(11, 15, 31, 0.4);
}
.ag-auth-card--center {
    text-align: center;
}
.ag-auth-card__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--ag-text);
    background: linear-gradient(135deg, #fff, var(--ag-purple-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ag-auth-card__subtitle {
    color: var(--ag-text-muted);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}
.ag-auth-card__glyph {
    font-size: 3rem;
    color: var(--ag-purple-300);
    text-shadow: 0 0 24px rgba(177, 140, 255, 0.5);
    margin-bottom: 0.5rem;
}
.ag-auth-card__glyph--warn {
    color: #fbbf24;
    text-shadow: 0 0 24px rgba(251, 191, 36, 0.5);
}
.ag-auth-card__email {
    color: var(--ag-purple-300);
    font-weight: 600;
    margin: 0 0 1.5rem;
}
.ag-auth-card__footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.92rem;
    color: var(--ag-text-muted);
}
.ag-auth-card__footer a {
    color: var(--ag-purple-300);
    font-weight: 600;
    text-decoration: none;
}
.ag-auth-card__footer a:hover {
    color: var(--ag-purple-100);
}
.ag-auth-form .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--ag-border);
    color: var(--ag-text);
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.ag-auth-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--ag-purple-400);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
    color: var(--ag-text);
    outline: none;
}
.ag-auth-form .form-control::placeholder {
    color: var(--ag-text-dim);
}
.ag-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ag-text-muted);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}
.ag-form-hint {
    color: var(--ag-text-dim);
    font-size: 0.82rem;
    margin-top: 0.4rem;
}
.ag-auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
    color: var(--ag-text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.ag-auth-divider::before,
.ag-auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 2rem);
    height: 1px;
    background: var(--ag-border);
}
.ag-auth-divider::before { left: 0; }
.ag-auth-divider::after  { right: 0; }
.ag-auth-divider span {
    background: var(--ag-surface);
    padding: 0 0.6rem;
}
.ag-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    width: 100%;
    border-radius: 999px;
    background: #fff;
    color: #3c4043;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid #dadce0;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.ag-btn-google:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
    color: #3c4043;
}

/* ── Onboarding form ─────────────────────────────────── */
.ag-onboarding {
    max-width: 720px;
}
.ag-onboarding__intro {
    margin-bottom: 2rem;
    text-align: center;
}
.ag-onboarding__title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    color: var(--ag-text);
}
.ag-onboarding__lede {
    color: var(--ag-text-muted);
    margin: 0 0 0.5rem;
}
.ag-onboarding__warn {
    color: var(--ag-purple-300);
    font-size: 0.9rem;
    margin: 0;
}
.ag-onboarding__callout {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin: 0.75rem 0;
    padding: 0.75rem 1rem;
    background: rgba(124, 58, 237, 0.12);
    border-left: 3px solid var(--ag-purple-300);
    border-radius: 8px;
    color: var(--ag-text);
    font-size: 0.93rem;
    line-height: 1.5;
}
.ag-onboarding__callout-glyph {
    color: var(--ag-purple-300);
    font-size: 1.1rem;
    line-height: 1.3;
}
.ag-onboarding__card {
    background: var(--ag-surface);
    border: 1px solid var(--ag-border);
    border-radius: 18px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
}
.ag-onboarding__section {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ag-text);
    margin: 0 0 1.25rem;
    letter-spacing: 0.02em;
}
.ag-onboarding .form-control {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--ag-border);
    color: var(--ag-text);
    border-radius: 10px;
}
.ag-onboarding .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--ag-purple-400);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.18);
    color: var(--ag-text);
    outline: none;
}
.ag-onboarding .form-control::placeholder {
    color: var(--ag-text-dim);
}
.ag-onboarding__loading {
    color: var(--ag-text-muted);
}
.ag-place-info {
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--ag-border);
    color: var(--ag-text);
    padding: 0.8rem 1rem;
    border-radius: 10px;
}
.ag-place-info__detail {
    color: var(--ag-text-muted);
}
.ag-onboarding__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.ag-confirm-modal {
    background: var(--ag-surface);
    border: 1px solid var(--ag-border-strong);
    border-radius: 18px;
    color: var(--ag-text);
}
.ag-confirm-modal__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.ag-confirm-modal__body {
    color: var(--ag-text-muted);
    margin: 0;
    line-height: 1.55;
}

/* ── Chart + chapters ────────────────────────────────── */
.ag-chart {
    max-width: 760px;
}
.ag-chart__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.ag-chart__heading {
    flex: 1 1 auto;
    min-width: 0;
}
.ag-chart__top-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}
.ag-chart__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: var(--ag-text);
}
.ag-chart__meta {
    color: var(--ag-text-muted);
    margin: 0;
}

/* ----- Dual-chart mode navigation bar (between wheel and AI text) ----- */
.ag-mode-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0 2rem;
}
.ag-mode-bar__btn {
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--ag-border-strong);
    background: rgba(124, 58, 237, 0.06);
    color: var(--ag-text);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.ag-mode-bar__btn:hover {
    background: rgba(124, 58, 237, 0.18);
    border-color: var(--ag-purple-300);
    transform: translateY(-1px);
    color: var(--ag-text);
}
.ag-chapter--single .ag-chapter__body {
    /* Dual-chart reads land as one continuous block, so drop the bottom
       padding the multi-chapter natal report would have used. */
    padding-top: 0.5rem;
}
.ag-wheel__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 0.75rem;
    color: var(--ag-text-muted);
    font-size: 0.88rem;
}
.ag-wheel__legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.35rem;
    vertical-align: -1px;
}
.ag-wheel__legend-dot--inner { background: var(--ag-text); }
.ag-wheel__legend-dot--outer { background: #4f80ff; }

.ag-empty-state {
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 18px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px dashed var(--ag-border-strong);
    color: var(--ag-text-muted);
}

/* ----- /charts list view ----- */
.ag-charts-list__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}
.ag-charts-list__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    margin: 0;
    color: var(--ag-text);
}
.ag-charts-list__lede {
    color: var(--ag-text-muted);
    margin: 0 0 1.5rem;
    max-width: 720px;
}
.ag-chart-card {
    height: 100%;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid var(--ag-border-strong);
    border-radius: 18px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, transform 0.2s;
}
.ag-chart-card:hover {
    border-color: var(--ag-purple-300);
    transform: translateY(-2px);
}
.ag-chart-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.ag-chart-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ag-text);
    margin: 0;
}
.ag-chart-card__tag--self {
    font-size: 0.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.22);
    color: var(--ag-purple-300);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.ag-chart-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0;
    color: var(--ag-text-muted);
    font-size: 0.9rem;
}
.ag-chart-card__meta > div {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
}
.ag-chart-card__meta dt {
    font-weight: 600;
    color: var(--ag-text-muted);
    min-width: 4.5rem;
    margin: 0;
}
.ag-chart-card__meta dd {
    margin: 0;
    color: var(--ag-text);
}
.ag-chart-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}
.ag-chart-card__actions {
    display: flex;
    gap: 0.4rem;
    align-items: center;
}
.ag-btn--danger {
    color: #ff6b8a;
    border-color: rgba(255, 107, 138, 0.35);
    background: rgba(255, 107, 138, 0.06);
}
.ag-btn--danger:hover {
    background: rgba(255, 107, 138, 0.16);
    border-color: rgba(255, 107, 138, 0.6);
    color: #ff8aa3;
}
.ag-chart-card__status {
    font-size: 0.85rem;
    font-weight: 600;
}
.ag-chart-card__status--unlocked { color: var(--ag-purple-300); }
.ag-chart-card__status--locked   { color: var(--ag-text-muted); }

.ag-chapters {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.ag-chapter {
    background: var(--ag-surface);
    border: 1px solid var(--ag-border);
    border-radius: 18px;
    padding: 1.75rem 1.75rem 1.5rem;
    color: var(--ag-text);
}
.ag-chapter__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--ag-text);
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #fff, var(--ag-purple-300));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.ag-chapter__body {
    color: var(--ag-text-muted);
    line-height: 1.7;
    font-size: 1rem;
}
.ag-chapter__body p {
    margin: 0 0 1rem;
}
.ag-chapter__body p:last-child {
    margin-bottom: 0;
}
.ag-chapter__body strong {
    color: var(--ag-text);
    font-weight: 700;
}

/* Locked chapters: fade out the body after a short preview, drop a small
   lock marker, and rely on the paywall card at the bottom for the CTA. */
.ag-chapter--locked {
    position: relative;
    overflow: hidden;
}
.ag-chapter--locked .ag-chapter__body {
    position: relative;
    max-height: 8rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 40%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 0%, #000 40%, transparent 100%);
}
.ag-chapter--locked .ag-chapter__body::after {
    content: '';
    position: absolute;
    inset: 30% 0 0 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.ag-chapter__lock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    color: var(--ag-purple-300);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.ag-chapter__lock-glyph {
    font-size: 0.95rem;
}

/* Decorative blurred bars rendered between the unlocked chapter and the
   paywall CTA — purely cosmetic, no real text underneath. Replaces the
   former chapter-2 preview that used to leak real content into the page. */
.ag-locked-preview {
    margin: 1.75rem 0 0;
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
    background: rgba(124, 58, 237, 0.06);
    border: 1px solid var(--ag-border-strong);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    filter: blur(3.5px);
    opacity: 0.65;
    user-select: none;
    pointer-events: none;
}
.ag-locked-preview__bar {
    height: 0.9rem;
    border-radius: 6px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 60%,
        rgba(255, 255, 255, 0.18) 100%);
}
.ag-locked-preview__bar:nth-child(2) { width: 94%; }
.ag-locked-preview__bar:nth-child(3) { width: 88%; }
.ag-locked-preview__bar:nth-child(4) { width: 76%; }
.ag-locked-preview__bar:nth-child(5) { width: 92%; }
.ag-locked-preview__bar:nth-child(6) { width: 70%; }

/* Paywall CTA — single sticky-ish card after the chapter list. */
.ag-paywall {
    margin-top: 2.5rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(91, 33, 182, 0.32) 100%);
    border: 1px solid var(--ag-border-strong);
    box-shadow: 0 20px 50px rgba(11, 15, 31, 0.45);
    overflow: hidden;
}
.ag-paywall__inner {
    padding: 2rem 1.75rem 1.75rem;
    text-align: center;
}
.ag-paywall__tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--ag-purple-100);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
}
.ag-paywall__title {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    color: var(--ag-text);
}
.ag-paywall__body {
    color: var(--ag-text-muted);
    line-height: 1.6;
    margin: 0 auto 1.5rem;
    max-width: 32rem;
}
.ag-paywall .ag-btn {
    position: relative;
}
.ag-paywall__soon-tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    margin-left: 0.6rem;
}
.ag-paywall__note {
    color: var(--ag-text-dim);
    font-size: 0.82rem;
    margin: 1rem 0 0;
}
.ag-paywall__form {
    margin: 0;
}

/* ── In-content membership promo (above astrologer card) ─ */
.ag-member-promo {
    margin-top: 3rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.16) 0%, rgba(236, 72, 153, 0.18) 100%);
    border: 1px solid var(--ag-border-strong);
    box-shadow: 0 16px 40px rgba(11, 15, 31, 0.35);
}
.ag-member-promo__inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    flex-wrap: wrap;
}
.ag-member-promo__icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.ag-member-promo__text {
    flex: 1 1 18rem;
    min-width: 0;
}
.ag-member-promo__title {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 0.35rem;
    color: var(--ag-text);
}
.ag-member-promo__lede {
    color: var(--ag-text-muted);
    line-height: 1.55;
    margin: 0;
    font-size: 0.95rem;
}
.ag-member-promo__cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.ag-flash {
    padding: 0.9rem 1.25rem;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid var(--ag-border-strong);
    border-radius: 12px;
    color: var(--ag-text-muted);
    margin-bottom: 1.5rem;
}
.ag-flash--success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.45);
    color: #d1fae5;
}

.ag-stream-start {
    margin-top: 1.75rem;
    padding: 1.5rem 1.25rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--ag-border);
    border-radius: 14px;
    text-align: center;
}
.ag-stream-start__lede {
    color: var(--ag-text-muted);
    margin: 0 0 1rem;
    font-size: 0.95rem;
}
.ag-stream-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0.85rem 1.25rem;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid var(--ag-border);
    border-radius: 12px;
    color: var(--ag-text-muted);
    font-size: 0.92rem;
}
.ag-stream-status__spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--ag-border-strong);
    border-top-color: var(--ag-purple-300);
    border-radius: 50%;
    animation: ag-spin 0.8s linear infinite;
}
.ag-stream-status__text {
    margin: 0;
}
@keyframes ag-spin {
    to { transform: rotate(360deg); }
}

/* Bootstrap modal-content override inside lila layout */
.astrogai-body .modal-content {
    background: var(--ag-surface);
    color: var(--ag-text);
    border: 1px solid var(--ag-border-strong);
}
.astrogai-body .modal-content .modal-header,
.astrogai-body .modal-content .modal-footer {
    border-color: var(--ag-border);
}
.astrogai-body .modal-content .btn-close {
    filter: invert(1) grayscale(100%) brightness(2);
}
.astrogai-body .modal-content .form-label {
    color: var(--ag-text);
    font-weight: 500;
}
.astrogai-body .modal-content .form-control {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--ag-text);
}
.astrogai-body .modal-content .form-control:focus {
    background: rgba(255,255,255,.09);
    border-color: var(--ag-purple-400);
    box-shadow: 0 0 0 3px rgba(139,92,246,.2);
    color: var(--ag-text);
}
.astrogai-body .modal-content .form-control::placeholder {
    color: var(--ag-text-dim);
}
.astrogai-body .modal-content .form-check-label {
    color: var(--ag-text-muted);
}
.astrogai-body .modal-content .text-muted {
    color: var(--ag-text-muted) !important;
}
.astrogai-body .modal-backdrop.show {
    opacity: 0.7;
}

/* ── Cross-promo band: astrogai → astrogo (deep blue, pro accent) ── */
.ag-cross-promo {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, #0a1f3d 0%, #163866 100%);
    color: #fff;
}
.ag-cross-promo__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.ag-cross-promo__copy {
    flex: 1 1 360px;
    min-width: 0;
}
.ag-cross-promo__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7dd3fc;
    margin-bottom: .5rem;
}
.ag-cross-promo__title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 .5rem;
    line-height: 1.2;
    color: #fff;
}
.ag-cross-promo__lede {
    color: rgba(255,255,255,.78);
    margin: 0;
    max-width: 38rem;
    line-height: 1.55;
}
.ag-cross-promo__cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: #fff;
    color: #0a1f3d;
    text-decoration: none;
    padding: .9rem 1.8rem;
    border-radius: 50rem;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .35);
    transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}
.ag-cross-promo__cta:hover {
    color: #163866;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .5);
}

/* ── Cross-promo: Tarotgo (mystical amber/burgundy) ── */
.ag-cross-promo--tarot {
    background: linear-gradient(135deg, #2b0a1a 0%, #6b1d3a 55%, #8a3a1f 100%);
}
.ag-cross-promo--tarot .ag-cross-promo__tag {
    color: #ffb88c;
}
.ag-cross-promo--tarot .ag-cross-promo__cta {
    background: linear-gradient(135deg, #f59e0b, #b45309);
    color: #fff;
    box-shadow: 0 6px 24px rgba(245, 158, 11, .35);
}
.ag-cross-promo--tarot .ag-cross-promo__cta:hover {
    color: #fff;
    box-shadow: 0 10px 32px rgba(245, 158, 11, .5);
}

/* ── Hero astrogram visual ── */
@keyframes ag-hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.ag-hero__astro {
    position: relative;
    width: clamp(260px, 32vw, 420px);
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ag-hero__astro-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 65%);
    filter: blur(40px);
    pointer-events: none;
}
.ag-hero__astro-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    animation: ag-hero-float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 50px rgba(11, 15, 31, 0.6));
}

/* ── Feature showcase bands (image + copy) ── */
.ag-showcase { padding: 5rem 0; position: relative; overflow: hidden; }
.ag-showcase__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}
@media (min-width: 992px) {
    .ag-showcase__inner { grid-template-columns: 1fr 1fr; }
    .ag-showcase--reverse .ag-showcase__media { order: 2; }
}
.ag-showcase__media { position: relative; }
.ag-showcase__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid var(--ag-border);
    box-shadow: 0 24px 60px rgba(11, 15, 31, 0.5);
}
.ag-showcase__tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .75rem;
    font-weight: 700;
    color: var(--ag-purple-300);
    margin-bottom: .75rem;
}
.ag-showcase__title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--ag-text);
    line-height: 1.18;
    margin: 0 0 1rem;
}
.ag-showcase__lede { color: var(--ag-text-muted); font-size: 1.05rem; line-height: 1.65; margin: 0 0 1.5rem; }
.ag-showcase__list { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .6rem; }
.ag-showcase__list li { position: relative; padding-left: 1.6rem; color: var(--ag-text-muted); line-height: 1.5; }
.ag-showcase__list li::before { content: '✦'; position: absolute; left: 0; top: 0; color: var(--ag-purple-400); }
.ag-showcase__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--ag-purple-500), var(--ag-purple-700));
    color: #fff;
    text-decoration: none;
    padding: .8rem 1.75rem;
    border-radius: 50rem;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}
.ag-showcase__cta:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(124, 58, 237, .45); }

/* ── Natal wheel + action row on the astrogai chart page ──────── */
.ag-wheel {
    background: #fff;
    border: 1px solid var(--ag-border);
    border-radius: 18px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}
.ag-wheel__canvas svg {
    max-width: 100%;
    height: auto;
}
.ag-chart-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

/* Print: light background, hide controls + paywall + contact widget,
   and let the chart + chapters flow normally across pages. */
@media print {
    body.astrogai-body {
        background: #fff !important;
        color: #222 !important;
    }
    .astrogai-nav, .astrogai-footer, .astrogai-membanner,
    .ag-chart-actions, .ag-paywall, .ag-contact, .ag-flash, .ag-member-promo,
    .chart-print-hide, .astro-chart-zoom {
        display: none !important;
    }
    .ag-wheel, .ag-chapter {
        background: #fff !important;
        border: 1px solid #ddd !important;
        color: #222 !important;
        page-break-inside: avoid;
    }
    .ag-chart__title, .ag-chapter__title {
        color: #0a0a0f !important;
        background: none !important;
        -webkit-text-fill-color: #0a0a0f !important;
    }
    .ag-chart__meta, .ag-chapter__body {
        color: #333 !important;
    }
}

/* ----- Notification bell + account dropdown in astrogai header ----- */
.astrogai-nav__bell {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.6rem;
}
.astrogai-nav__bell svg { display: block; }
.astrogai-nav__bell-wrap .dropdown-menu,
.dropdown .astrogai-notif-menu,
.dropdown .astrogai-account-menu {
    background: var(--ag-surface);
    border: 1px solid var(--ag-border-strong);
    color: var(--ag-text);
    min-width: 280px;
    padding: 0.5rem 0;
}
.astrogai-notif-menu__item {
    display: block;
    padding: 0.6rem 0.9rem;
    color: var(--ag-text);
    text-decoration: none;
}
.astrogai-notif-menu__item:hover {
    background: rgba(124, 58, 237, 0.16);
    color: var(--ag-text);
}
.astrogai-notif-menu__item--unread {
    border-left: 3px solid var(--ag-purple-300);
}
.astrogai-notif-menu__title { font-weight: 600; font-size: 0.92rem; }
.astrogai-notif-menu__body  { color: var(--ag-text-muted); font-size: 0.82rem; margin-top: 0.15rem; }
.astrogai-notif-menu__meta  { color: var(--ag-text-dim); font-size: 0.75rem; margin-top: 0.2rem; }
.astrogai-notif-menu__empty {
    padding: 1rem 0.9rem;
    color: var(--ag-text-muted);
    text-align: center;
    font-size: 0.88rem;
}
.astrogai-notif-menu__see-all {
    display: block;
    text-align: center;
    padding: 0.5rem;
    font-weight: 600;
    color: var(--ag-purple-300);
    text-decoration: none;
}
.astrogai-notif-menu__read-all {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: var(--ag-text-muted, #9ca3af);
    font-weight: 500;
}
.astrogai-notif-menu__read-all:hover {
    color: var(--ag-purple-300);
}
.astrogai-account-menu .dropdown-item {
    color: var(--ag-text);
    padding: 0.5rem 0.9rem;
}
.astrogai-account-menu .dropdown-item:hover {
    background: rgba(124, 58, 237, 0.16);
    color: var(--ag-text);
}

/* ----- Footer nav ----- */
.astrogai-footer__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    margin-top: 0.5rem;
}

/* ----- Account profile page ----- */
.ag-account__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--ag-text);
    margin-bottom: 2rem;
}
.ag-account__card {
    background: var(--ag-surface-2);
    border: 1px solid var(--ag-border);
    border-radius: 18px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.ag-account__card--danger {
    border-color: rgba(255, 107, 138, 0.35);
    background: rgba(255, 107, 138, 0.04);
}
.ag-account__section {
    color: var(--ag-text);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.ag-account__section--danger { color: #ff8aa3; }
.ag-account__hint {
    color: var(--ag-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.ag-account .form-control,
.ag-account .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--ag-border);
    color: var(--ag-text);
}
.ag-account .form-control:disabled {
    background: rgba(255, 255, 255, 0.03);
    color: var(--ag-text-dim);
}
.ag-account .form-check-input {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--ag-border-strong);
}
.ag-account .form-check-input:checked {
    background-color: var(--ag-purple-300);
    border-color: var(--ag-purple-300);
}
.ag-account .form-check-label { color: var(--ag-text); }
.ag-form-label { color: var(--ag-text); font-weight: 500; margin-bottom: 0.25rem; }

/* ----- Notifications list ----- */
.ag-notif-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ag-notif-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: var(--ag-surface-2);
    border: 1px solid var(--ag-border);
    border-radius: 14px;
    color: var(--ag-text);
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s;
}
.ag-notif-item:hover {
    border-color: var(--ag-purple-300);
    transform: translateY(-1px);
    color: var(--ag-text);
}
.ag-notif-item--unread { border-left: 3px solid var(--ag-purple-300); }
.ag-notif-item__title { font-weight: 600; }
.ag-notif-item__body  { color: var(--ag-text-muted); font-size: 0.88rem; margin-top: 0.25rem; }
.ag-notif-item__meta  { color: var(--ag-text-dim); font-size: 0.78rem; text-align: right; flex-shrink: 0; }
.ag-notif-item__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ag-purple-300);
    margin-top: 0.35rem;
}

/* ----- Subscription / klubbtagság page ----- */
.ag-tier-card { display: flex; flex-direction: column; gap: 1rem; height: 100%; }
.ag-tier-card--current { border-color: var(--ag-purple-300); }
.ag-tier-card__name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ag-text);
    margin: 0;
}
.ag-tier-card__prices { display: flex; flex-direction: column; gap: 0.15rem; }
.ag-tier-card__price-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ag-purple-300);
}
.ag-tier-card__price-period {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ag-text-muted);
}
.ag-tier-card__price-alt {
    font-size: 0.85rem;
    color: var(--ag-text-muted);
}
.ag-tier-card__features {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--ag-text);
    font-size: 0.92rem;
    line-height: 1.4;
    flex: 1;
}
.ag-tier-card__features li::before {
    content: '✦';
    color: var(--ag-purple-300);
    margin-right: 0.5rem;
}

/* ----- Landing page sub-head + featured tier ----- */
.ag-section__sub-head {
    margin: 3rem 0 0;
    text-align: center;
}
.ag-section__sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ag-text);
    margin-bottom: .5rem;
}
.ag-tier-card--featured {
    border-color: var(--ag-purple-300);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.18);
    position: relative;
}
.ag-tier-card--featured::before {
    content: '★';
    position: absolute;
    top: -.75rem;
    right: 1rem;
    background: var(--ag-purple-300);
    color: #0b0f1f;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ----- Membership tier cards on the LIGHT pricing section.
   The base .ag-account__card / .ag-tier-card styling lives on the dark
   account-page surface; here we override the colors so the same markup
   reads on the cream landing-page background. ----- */
.ag-pricing .ag-account__card {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.25);
    color: #1a1340;
}
.ag-pricing .ag-account__card.ag-tier-card--featured {
    background: linear-gradient(160deg, #ffffff 0%, #f6f1ff 100%);
    border-color: var(--ag-purple-500);
    box-shadow: 0 14px 38px rgba(124, 58, 237, 0.22);
}
.ag-pricing .ag-tier-card__name        { color: #1a1340; }
.ag-pricing .ag-tier-card__price-main  { color: var(--ag-purple-700); }
.ag-pricing .ag-tier-card__price-alt   { color: #5b5670; }
.ag-pricing .ag-tier-card__features    { color: #1a1340; }
.ag-pricing .ag-tier-card__features strong { color: var(--ag-purple-700); }
.ag-pricing .ag-section__sub-title     { color: #1a1340; }

/* ── Static pages (FAQ / About / GDPR / Terms) on the dark astrogai surface.
   Base .static-body color is var(--clr-gray-600) — unreadable on purple. ── */
body.astrogai-body .static-page h1            { color: var(--ag-text); }
body.astrogai-body .static-page .static-body  { color: var(--ag-text); }
body.astrogai-body .static-page .static-body h2,
body.astrogai-body .static-page .static-body h3 { color: var(--ag-text); }
body.astrogai-body .static-page .static-body a { color: var(--ag-purple-300); }
body.astrogai-body .static-page .static-body a:hover { color: var(--ag-purple-400); }

/* ── Jónás fertility calendar ─────────────────────────────────────────── */
.ag-mode-bar__btn--feature {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.14), rgba(124, 58, 237, 0.14));
    border-color: var(--ag-purple-300);
    font-weight: 600;
}
.ag-mode-bar__btn--feature:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.26), rgba(124, 58, 237, 0.26));
}
.ag-jonas-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0 0;
    padding: 1.1rem 1.35rem;
    border-radius: 18px;
    border: 1px solid var(--ag-purple-300);
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.10), rgba(124, 58, 237, 0.12));
    text-decoration: none;
    color: var(--ag-text);
    transition: transform 0.2s, box-shadow 0.2s;
}
.ag-jonas-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(124, 58, 237, 0.18);
    color: var(--ag-text);
}
.ag-jonas-card__emoji { font-size: 2rem; line-height: 1; }
.ag-jonas-card__text { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.ag-jonas-card__title { font-weight: 700; font-size: 1.05rem; }
.ag-jonas-card__body { font-size: 0.92rem; opacity: 0.85; }
.ag-jonas-card__cta {
    flex-shrink: 0;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: var(--ag-purple-400, #7c3aed);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}
@media (max-width: 575px) {
    .ag-jonas-card { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* Jónás calendar — dark-theme panel + table (Bootstrap .table defaults to a
   light bg, which made light muted text invisible; override its CSS vars). */
.ag-jonas-panel {
    padding: 1.1rem 1.35rem;
    border-radius: 18px;
    border: 1px solid var(--ag-border-strong);
    background: rgba(124, 58, 237, 0.08);
    color: var(--ag-text);
}
.ag-jonas-panel__label { color: var(--ag-text-muted); font-size: 0.85rem; }
.ag-jonas-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--ag-text);
    --bs-table-striped-color: var(--ag-text);
    --bs-table-hover-color: var(--ag-text);
    --bs-table-hover-bg: rgba(124, 58, 237, 0.14);
    --bs-table-border-color: rgba(245, 243, 255, 0.14);
    color: var(--ag-text);
}
.ag-jonas-table thead th {
    background: rgba(124, 58, 237, 0.16);
    color: var(--ag-text);
    border-bottom: 1px solid var(--ag-purple-300);
    font-weight: 600;
}
.ag-jonas-table td,
.ag-jonas-table th { border-color: rgba(245, 243, 255, 0.12); }
.ag-jonas-table td { color: var(--ag-text); }
.ag-jonas-table__muted { color: var(--ag-text-muted); }

/* ── Follow-up questions (shared component, Astrogai theme) ── */
.followup { margin-top: 2rem; }
.followup__card { border: 1px solid var(--ag-border); border-radius: 1rem; background: rgba(255,255,255,0.03); }
.followup__header { padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--ag-border); font-weight: 600; color: var(--ag-text); }
.followup__body { padding: 1.5rem; }
.followup__list { display: flex; flex-direction: column; gap: 1.25rem; }
.followup__item { padding-bottom: 1.25rem; border-bottom: 1px solid var(--ag-border); }
.followup__item:last-child { border-bottom: 0; padding-bottom: 0; }
.followup__q { margin: 0 0 .4rem; color: var(--ag-text); }
.followup__a { line-height: 1.75; color: var(--ag-text-muted); }
.followup__a p { margin: 0 0 .6rem; }
.followup__a p:last-child { margin-bottom: 0; }
.followup__form { margin-top: 1.5rem; }
.followup__label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: .4rem; color: var(--ag-text); }
.followup__row { display: flex; gap: .6rem; align-items: flex-start; }
.followup__input { flex: 1; padding: .6rem .85rem; border: 1px solid var(--ag-border-strong); border-radius: .6rem; font: inherit; resize: vertical; background: rgba(0,0,0,0.25); color: var(--ag-text); }
.followup__input::placeholder { color: var(--ag-text-dim); }
.followup__input:focus { outline: none; border-color: var(--ag-purple-400); box-shadow: 0 0 0 .2rem rgba(139,92,246,.25); }
.followup__send { flex-shrink: 0; padding: .6rem 1.25rem; border: 0; border-radius: .6rem; background: var(--ag-purple-600); color: #fff; cursor: pointer; font-weight: 600; transition: background .2s; }
.followup__send:hover { background: var(--ag-purple-500); }
.followup__send:disabled { opacity: .6; cursor: default; }
.followup__remaining { margin: .6rem 0 0; font-size: .85rem; color: var(--ag-text-dim); }
.followup__upsell { padding: 1.1rem 1.25rem; border-radius: .75rem; background: rgba(139,92,246,.12); border: 1px solid var(--ag-border); color: var(--ag-text-muted); }
.followup__upsell-text { margin: 0 0 .85rem; color: var(--ag-text); }
.followup__spinner { display: inline-block; width: 1rem; height: 1rem; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: followup-spin .75s linear infinite; vertical-align: middle; }
@keyframes followup-spin { to { transform: rotate(360deg); } }

/* ── Testimonials (landing) ──────────────────────────── */
.ag-testimonials { background: transparent; }
.ag-testimonial-carousel {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 0 3.5rem;
}
.ag-testimonial-viewport {
    overflow: hidden;
    border-radius: 18px;
}
.ag-testimonial-track {
    position: relative;
    min-height: 240px;
}
.ag-testimonial-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease;
}
.ag-testimonial-slide.is-active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}
.ag-testimonial-card {
    background: var(--ag-surface);
    border: 1px solid var(--ag-border);
    border-radius: 18px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 24px 60px rgba(11, 15, 31, 0.5);
    text-align: center;
    position: relative;
}
.ag-testimonial-quote {
    position: absolute;
    top: -.6rem;
    left: 1.5rem;
    font-size: 4rem;
    line-height: 1;
    color: var(--ag-purple-400);
    opacity: .35;
    font-family: serif;
    user-select: none;
}
.ag-testimonial-text {
    font-size: 1.05rem;
    color: var(--ag-text);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-style: italic;
}
.ag-testimonial-meta {
    border-top: 1px solid var(--ag-border);
    padding-top: 1rem;
}
.ag-testimonial-name {
    font-weight: 700;
    color: var(--ag-text);
    font-size: .95rem;
}
.ag-testimonial-role {
    color: var(--ag-text-dim);
    font-size: .825rem;
    margin-top: .15rem;
}
.ag-testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--ag-border);
    background: var(--ag-surface);
    color: var(--ag-text);
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease;
    box-shadow: 0 8px 24px rgba(11, 15, 31, 0.4);
    z-index: 2;
}
.ag-testimonial-nav:hover {
    color: var(--ag-purple-300);
    border-color: var(--ag-border-strong);
    transform: translateY(-50%) scale(1.05);
}
.ag-testimonial-nav.prev { left: 0; }
.ag-testimonial-nav.next { right: 0; }
.ag-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.75rem;
}
.ag-testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: var(--ag-border);
    cursor: pointer;
    transition: all .2s ease;
    padding: 0;
}
.ag-testimonial-dot:hover { background: var(--ag-border-strong); }
.ag-testimonial-dot.is-active {
    background: var(--ag-purple-500);
    transform: scale(1.25);
}
@media (max-width: 575.98px) {
    .ag-testimonial-carousel { padding: 0 2.5rem; }
    .ag-testimonial-nav { width: 36px; height: 36px; font-size: 1.3rem; }
    .ag-testimonial-card { padding: 2rem 1.25rem 1.5rem; }
    .ag-testimonial-text { font-size: 1rem; }
}
