.aura-hero.section {
    padding: 120px 0 72px;
    background: var(--color-light);
}

.aura-pill {
    background: rgba(82, 201, 141, 0.15);
    color: var(--color-accent);
}

.btn-healing {
    background: #0ba360;
    border-color: #0ba360;
    color: #fff;
    box-shadow: 0 8px 20px rgba(11, 163, 96, 0.25);
    cursor: pointer !important;
}

.btn-healing:hover,
.btn-healing:focus {
    background: #099154;
    border-color: #099154;
    color: #fff;
    cursor: pointer !important;
}

.btn-healing:disabled {
    background: rgba(11, 163, 96, 0.65);
    border-color: rgba(11, 163, 96, 0.65);
    cursor: not-allowed !important;
}

.bg-healing {
    background-color: #0ba360 !important;
}

.aura-typing-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 18px;
    margin-bottom: 12px;
}

.aura-typing-indicator span {
    width: 8px;
    height: 8px;
    background: #6c757d;
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite;
}

.aura-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.aura-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-bounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

/* Voice Recording Styles */
.aura-voice-btn {
    transition: all 0.3s ease;
    font-size: 1.2rem;
    border-color: #dee2e6;
}

.aura-voice-btn:hover {
    background: #f8f9fa;
    border-color: #0ba360;
    transform: scale(1.05);
}

.aura-voice-btn.recording {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
    animation: pulse-recording 1.5s infinite;
}

.aura-voice-btn.recording:before {
    content: '⏹️';
    font-size: 1.2rem;
}

@keyframes pulse-recording {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
}

.aura-hero h1 {
    font-weight: 700;
    font-size: 2.75rem;
    line-height: 1.2;
}

.aura-hero-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(45, 104, 115, 0.12);
    box-shadow: 0 24px 45px rgba(28, 72, 85, 0.08);
}

.aura-hero-headline {
    display: flex;
    align-items: center;
    gap: 16px;
}

.aura-hero-headline .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.8px;
    box-shadow: 0 15px 30px #4c6fff33;
}

.aura-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aura-checklist li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.aura-workbench.section {
    padding: 60px 0 140px;
}

.aura-pane {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(56, 166, 166, 0.14);
    box-shadow: 0 24px 50px rgba(28, 72, 85, 0.08);
}

.aura-chat-log {
    flex: 1;
    overflow-y: auto;
    border-radius: 14px;
    background: #f2f9f8;
    border: 1px solid rgba(56, 166, 166, 0.16);
    padding: 20px;
    margin-bottom: 24px;
    min-height: 420px;
    box-shadow: inset 0 1px 0 rgba(28, 72, 85, 0.04);
}

.aura-chat-log::-webkit-scrollbar {
    width: 6px;
}

.aura-chat-log::-webkit-scrollbar-thumb {
    background: rgba(56, 166, 166, 0.45);
    border-radius: 8px;
}

.aura-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.aura-msg {
    display: flex;
    margin-bottom: 12px;
    position: relative;
}

.aura-msg-bubble {
    padding: 14px 20px;
    border-radius: 20px;
    max-width: 85%;
    line-height: 1.5;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    box-shadow: 0 20px 38px rgba(36, 54, 101, 0.08);
}

.aura-msg-user {
    justify-content: flex-end;
}

.aura-msg-user .aura-msg-bubble {
    background: var(--color-primary);
    color: var(--color-white);
}

.aura-msg-assistant .aura-msg-bubble {
    background: #f7fffe;
    color: #27464d;
    border: 1px solid rgba(56, 166, 166, 0.12);
}

.aura-msg-typing .aura-msg-bubble {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    background: rgba(76, 111, 255, 0.12);
    color: #243665;
    border: none;
}

.aura-typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: auraBounce 1.2s infinite ease-in-out;
}

.aura-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.aura-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes auraBounce {
    0%, 80%, 100% { transform: scale(0.7); opacity: 0.35; }
    40% { transform: scale(1); opacity: 1; }
}

.aura-typing-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
}

.aura-chat-form {
    border: 2px solid rgba(56, 166, 166, 0.35);
    border-radius: 16px;
    padding: 16px;
    background: var(--color-white);
    box-shadow: 0 6px 16px rgba(28, 72, 85, 0.08);
}

.aura-chat-form .input-group {
    border: 1px solid rgba(56, 166, 166, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-white);
}

.aura-chat-form .input-group-text {
    background: var(--color-white);
    border: none;
    padding: 12px 16px;
}

.aura-chat-form .input-group-text i {
    font-size: 1.25rem;
    color: var(--color-primary);
}

.aura-chat-form .form-control {
    border: none;
    padding: 12px 16px;
    background: var(--color-white);
    font-size: 1rem;
    animation: none;
}

.aura-chat-form .form-control:focus {
    box-shadow: none;
    border: none;
    background: var(--color-white);
    outline: none;
    animation: blinkCursor 1s infinite;
}

@keyframes blinkCursor {
    0%, 49% {
        border-right: 2px solid var(--color-primary);
    }
    50%, 100% {
        border-right: 2px solid transparent;
    }
}

.aura-chat-form .btn-primary {
    border-radius: 0;
    border: none;
    border-left: 1px solid rgba(56, 166, 166, 0.2);
    padding: 12px 28px;
    background: var(--color-primary);
    font-weight: 600;
    transition: all 0.2s ease;
}

.aura-chat-form .btn-primary:hover {
    background: #4a98c7;
}

.aura-chat-form .btn-primary:disabled {
    background: rgba(93, 173, 226, 0.55);
    border-color: rgba(56, 166, 166, 0.2);
    box-shadow: none;
}

.aura-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.aura-quick-chip {
    border-radius: 999px;
    border: 1px solid #dbe4ff;
    background: #f5f8ff;
    color: #33427a;
    transition: all 0.2s ease;
    font-weight: 600;
    padding: 8px 18px;
}

.aura-quick-chip:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.aura-summary-card,
.aura-matches-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(56, 166, 166, 0.12);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 24px 50px rgba(36, 54, 101, 0.08);
}

.aura-match-card {
    border: 1px solid rgba(56, 166, 166, 0.16);
    border-radius: 16px;
    padding: 18px;
    background: #f7fffe;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aura-match-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(28, 72, 85, 0.12);
}

.aura-match-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.aura-match-initials {
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.aura-match-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
}

.aura-match-reasons li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.aura-match-reasons li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.aura-consent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aura-consent-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.aura-consent-box {
    border: 2px solid rgba(15, 61, 48, 0.25);
    border-radius: 12px;
    padding: 16px 18px;
    background: rgba(15, 61, 48, 0.04);
}

.aura-consent-frame {
    border: 2px solid rgba(15, 61, 48, 0.35);
    border-radius: 12px;
    padding: 12px 16px;
    background: rgba(15, 61, 48, 0.05);
    position: relative;
    z-index: 1;
}
.aura-consent-frame .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    width: 100%;
}
.aura-consent-check {
    margin: 0;
    flex: 1;
    cursor: pointer;
}
.aura-consent-frame .form-check-input {
    margin-top: 0;
    border: 2px solid rgba(15, 61, 48, 0.5);
    cursor: pointer;
}

.aura-consent-actions {
    max-width: 320px;
    margin: 0 auto;
}

.aura-lock-wrapper {
    position: relative;
    border-radius: 16px;
}

.aura-lock-content {
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.aura-lock-wrapper.locked .aura-lock-content {
    filter: blur(3px);
    opacity: 0.35;
    pointer-events: none;
}

.aura-lock-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: inherit;
    padding: 28px 24px;
    gap: 12px;
    z-index: 2;
    cursor: pointer;
}

.aura-lock-overlay p {
    max-width: 320px;
}

.aura-lock-overlay .btn {
    min-width: 140px;
}

.aura-lock-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(56, 166, 166, 0.18);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.aura-lock-hint {
    letter-spacing: 0.02em;
    font-weight: 600;
}

.aura-locked-card {
    border: 1px dashed rgba(15, 61, 48, 0.25);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: rgba(15, 61, 48, 0.02);
}

.aura-locked-card button {
    white-space: nowrap;
}

.aura-card-reason {
    font-weight: 600;
}

.aura-currency-group .btn {
    min-width: 64px;
}

.aura-voice-btn {
    font-size: 1.1rem;
    min-width: 48px;
}

.aura-voice-btn.active,
.aura-voice-btn:focus {
    color: #0f3d30;
    border-color: #0f3d30;
    background: rgba(15, 61, 48, 0.1);
}

.aura-guest-upsell {
    background: var(--color-white);
    border: 1px solid rgba(56, 166, 166, 0.16);
    border-radius: 16px;
    padding: 28px;
}

.aura-account-modal {
    display: flex;
    flex-direction: column;
}

.aura-account-options {
    display: grid;
    gap: 16px;
}

@media (min-width: 576px) {
    .aura-account-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.aura-account-card {
    border: 1px solid rgba(39, 64, 112, 0.1);
    border-radius: 16px;
    padding: 20px;
    background: #f8fbfd;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.aura-account-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 28px rgba(93, 173, 226, 0.18);
    transform: translateY(-3px);
}

.aura-account-card-guest {
    background: #ffffff;
}

.aura-account-card-account {
    background: rgba(82, 201, 141, 0.12);
    border-color: rgba(82, 201, 141, 0.35);
}

.aura-account-card-account .btn-primary {
    box-shadow: 0 6px 18px rgba(82, 201, 141, 0.25);
}

.aura-account-card-account .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(82, 201, 141, 0.35);
}

.aura-account-card-header {
    margin-bottom: 12px;
}

.aura-account-chip {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-secondary);
    background: rgba(39, 64, 112, 0.08);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.aura-account-chip-highlight {
    background: rgba(82, 201, 141, 0.24);
    color: var(--color-secondary);
}

.aura-account-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aura-account-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.aura-account-benefits li:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .aura-pane {
        padding: 24px;
        min-height: auto;
    }

    .aura-summary-card,
    .aura-matches-card {
        padding: 20px;
        min-height: auto;
    }

    .aura-lock-overlay {
        padding: 24px 20px;
    }
}

@media (max-width: 575.98px) {
    .aura-hero h1 {
        font-size: 2rem;
    }

    .aura-chat-log {
        max-height: 360px;
        min-height: 320px;
    }

    .aura-msg-bubble {
        max-width: 100%;
    }
}

.aura-history-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #edf1ff;
    box-shadow: 0 12px 30px rgba(36, 54, 101, 0.06);
    min-height: 520px;
}

.aura-history-empty {
    border: 1px dashed rgba(76, 111, 255, 0.25);
    border-radius: 16px;
    background: #f8faff;
}

.aura-session-item {
    border-radius: 14px;
    border: 1px solid transparent;
    padding: 14px 16px;
    background: #f8fafc;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.aura-session-item:hover {
    border-color: rgba(76, 111, 255, 0.32);
    background: #eef2ff;
}

.aura-session-item.active {
    border-color: #4c6fff;
    background: #eef2ff;
    color: #243665;
}

.aura-status-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.aura-status-info {
    background: #eef2ff;
    color: #4c6fff;
}

.aura-status-success {
    background: #d7f7e6;
    color: #1f8a5a;
}

.aura-status-warning {
    background: #fff4d6;
    color: #b7791f;
}

.aura-status-danger {
    background: #fde2e1;
    color: #c53030;
}

.aura-products-card,
.aura-events-card,
.aura-blogs-card,
.aura-podcasts-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #edf1ff;
    box-shadow: 0 12px 30px rgba(36, 54, 101, 0.06);
}

.aura-product-card,
.aura-event-card,
.aura-blog-card,
.aura-podcast-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(76, 111, 255, 0.08);
    background: #f9fbff;
}

.aura-product-thumb,
.aura-event-thumb,
.aura-blog-thumb,
.aura-podcast-thumb {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
}

.aura-podcast-thumb.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #4c6fff;
    font-size: 1.6rem;
}

.aura-product-body,
.aura-event-body,
.aura-blog-body,
.aura-podcast-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.aura-premium-highlight {
    border: 1px solid rgba(76, 111, 255, 0.25);
    border-radius: 16px;
    padding: 16px;
    background: #f5f7ff;
}

@media (max-width: 991px) {
    .aura-history-card {
        min-height: auto;
    }
    .aura-product-card,
    .aura-event-card,
    .aura-blog-card,
    .aura-podcast-card {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

.aura-session-snippet {
    margin-top: 8px;
    line-height: 1.35;
}


.aura-history-reminder {
    margin-top: 16px;
}

.aura-history-reminder .alert {
    border-radius: 14px;
    background: #fff4d6;
    border-color: rgba(242, 141, 53, 0.35);
}

#auraPaywallBanner {
    border-radius: 14px;
}

.aura-hero-highlights {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aura-hero-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #243665;
    font-weight: 500;
}

.aura-hero-highlights li .icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Currency Switcher Styles */
.aura-currency-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
}

.aura-curr-btn {
    padding: 6px 14px;
    border-radius: 8px;
    border: 2px solid rgba(56, 166, 166, 0.3);
    background: white;
    color: #38A6A6;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
}

.aura-curr-btn:hover {
    background: rgba(56, 166, 166, 0.1);
    border-color: #38A6A6;
}

.aura-curr-btn.active {
    background: linear-gradient(135deg, #38A6A6 0%, #52C98D 100%);
    color: white;
    border-color: transparent;
}
