/* ───────────────────────────────────────────────
   PREMIUM HOMEPAGE — Design System
   ─────────────────────────────────────────────── */
:root {
    --premium-gold: #d4af37;
    --premium-gold-light: #f0d080;
    --premium-gold-dark: #b8942e;
    --premium-dark: #0f1923;
    --premium-dark-2: #1a1a2e;
    --premium-accent: #e8d5a3;
    --premium-glass: rgba(255, 255, 255, 0.06);
    --premium-glass-border: rgba(255, 255, 255, 0.10);
    --premium-radius: 16px;
    --premium-radius-sm: 10px;
}

.text-gold-premium {
    background: linear-gradient(135deg, var(--premium-gold-light), var(--premium-gold), var(--premium-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Theme Presets ────────────────────────────── */
/* Auriu (default) — already the base */

.premium-theme--sapphire {
    --premium-gold: #4a7db4;
    --premium-gold-light: #7faed4;
    --premium-gold-dark: #2c5f8a;
    --premium-accent: #a8c8e8;
}

.premium-theme--emerald {
    --premium-gold: #2d8f5e;
    --premium-gold-light: #5cb884;
    --premium-gold-dark: #1e6b45;
    --premium-accent: #a8e0c0;
}

.premium-theme--royal {
    --premium-gold: #8b5cf6;
    --premium-gold-light: #a78bfa;
    --premium-gold-dark: #6d28d9;
    --premium-accent: #d4c0f0;
}

.premium-theme--warm {
    --premium-gold: #c9754a;
    --premium-gold-light: #e8956a;
    --premium-gold-dark: #a85c35;
    --premium-accent: #f0d0b8;
}

.premium-theme--midnight {
    --premium-gold: #3b5998;
    --premium-gold-light: #6b8fc4;
    --premium-gold-dark: #1a2a5e;
    --premium-accent: #b0c8e8;
}

/* ── Hero Section ─────────────────────────────── */
.premium-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--premium-dark);
    padding: 4.5rem 0 2.5rem;
}

.premium-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.premium-hero__gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 10% 20%, color-mix(in srgb, var(--premium-gold) 10%, transparent) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 80%, rgba(26, 26, 46, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(15, 25, 35, 1) 0%, transparent 80%);
    animation: premiumGradientShift 12s ease-in-out infinite alternate;
}

.premium-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: premiumOrbFloat 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes premiumGradientShift {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
    100% { transform: scale(1) rotate(-1deg); }
}

.premium-hero__orb--1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--premium-gold), transparent);
    animation-duration: 10s;
    opacity: 0.12;
}

.premium-hero__orb--2 {
    bottom: -15%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--premium-gold), transparent);
    animation-duration: 14s;
    animation-delay: -3s;
    opacity: 0.08;
}

.premium-hero__orb--3 {
    top: 40%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--premium-accent), transparent);
    animation-duration: 12s;
    animation-delay: -6s;
    opacity: 0.06;
}

@keyframes premiumOrbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -30px) scale(1.15); }
}

/* Particles */
.premium-hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.premium-hero__particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--premium-gold);
    border-radius: 50%;
    opacity: 0;
    animation: premiumParticleFade 4s ease-in-out infinite;
}

@keyframes premiumParticleFade {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-120px) scale(1); }
}

.premium-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 25, 35, 0.4) 50%, var(--premium-dark) 100%);
    pointer-events: none;
}

.premium-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: stretch;
}

.premium-hero__main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Spotlight */
.premium-hero__spotlight {
    display: block;
    padding: 2rem 2.2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid var(--premium-glass-border);
    border-radius: var(--premium-radius);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.premium-hero__spotlight::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: linear-gradient(180deg, var(--premium-gold), var(--premium-gold-dark));
    border-radius: 0 3px 3px 0;
    transition: opacity 0.3s ease;
}

.premium-hero__spotlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--premium-radius);
    background: radial-gradient(ellipse 600px 300px at 20% 50%, rgba(212,175,55,0.04) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-hero__spotlight:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.premium-hero__spotlight:hover::after { opacity: 1; }

.premium-hero__spotlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--premium-gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    width: fit-content;
}

.premium-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.premium-hero__title--sabbath {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.premium-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0.6rem 0 0;
    max-width: 640px;
    position: relative;
    z-index: 1;
}

.premium-hero__spotlight-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.25rem;
    position: relative;
    z-index: 1;
}

.premium-hero__spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.premium-hero__spotlight-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--premium-gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    transition: all 0.25s ease;
}

.premium-hero__spotlight:hover .premium-hero__spotlight-cta {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    gap: 0.55rem;
}

.premium-hero__spotlight-cta svg {
    transition: transform 0.25s ease;
}

.premium-hero__spotlight:hover .premium-hero__spotlight-cta svg {
    transform: translateX(3px);
}

/* Hero Sabbath */
.premium-hero__sabbath {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 2rem 2.2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(242, 215, 128, 0.2);
    border-radius: var(--premium-radius);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.premium-hero__sabbath:hover {
    border-color: rgba(242, 215, 128, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.premium-hero__sabbath-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid rgba(242, 215, 128, 0.25);
    border-radius: 999px;
    background: rgba(242, 215, 128, 0.1);
    color: var(--premium-gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

/* Verse card */
.premium-hero__verse {
    position: relative;
    padding: 1.5rem 1.8rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid var(--premium-glass-border);
    border-radius: var(--premium-radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.premium-hero__verse:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.premium-hero__verse-glow {
    position: absolute;
    top: -60%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05), transparent);
    pointer-events: none;
}

.premium-hero__verse-header {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--premium-gold-light);
    opacity: 0.7;
}

.premium-hero__verse-header svg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.premium-hero__verse-body {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.premium-hero__verse-body:hover {
    transform: translateY(-2px);
}

.premium-hero__verse-quote {
    font-size: 3rem;
    line-height: 0.8;
    color: var(--premium-gold);
    opacity: 0.3;
    font-family: 'Playfair Display', Georgia, serif;
    margin-bottom: -0.5rem;
}

.premium-hero__verse-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 0.5rem;
    border: none;
    padding: 0;
}

.premium-hero__verse-ref {
    font-size: 0.85rem;
    font-style: normal;
    color: var(--premium-gold-light);
    opacity: 0.7;
    font-weight: 600;
}

.premium-hero__verse-footer {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
}

/* Prayer panel */
.premium-hero__prayers {
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid var(--premium-glass-border);
    border-radius: var(--premium-radius);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    position: relative;
    overflow: hidden;
    align-self: start;
}

.premium-hero__prayers-viewport {
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    /* Fallback înainte ca JS să calculeze dimensiunea exactă */
    height: 420px;
}

.premium-hero__prayers-track {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-hero__prayers-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--premium-gold-light);
    letter-spacing: 0.04em;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.premium-prayer-card {
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--premium-radius-sm);
    transition: all 0.25s ease;
}

.premium-prayer-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.15);
}

.premium-prayer-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.premium-prayer-card__name {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.premium-prayer-card__date {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
}

.premium-prayer-card__text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.55;
    margin: 0 0 0.55rem;
}

.premium-prayer-card__actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-prayer-card__count {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.premium-prayer-card__btn {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--premium-gold-light);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.premium-prayer-card__btn:hover:not(:disabled) {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.35);
}

.premium-prayer-card__btn:disabled {
    opacity: 0.5;
    cursor: default;
}

/* Submit prayer button */
.premium-prayer-submit-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--premium-radius-sm);
    color: var(--premium-gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.premium-prayer-submit-btn:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.10));
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-1px);
}

.premium-prayer-submit-btn__chevron {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.premium-prayer-submit-btn[aria-expanded="true"] .premium-prayer-submit-btn__chevron {
    transform: rotate(180deg);
}

.premium-prayer-submit-btn svg:first-child {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Prayer form */
.premium-prayer-form-wrap {
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, margin 0.3s ease;
    max-height: 0;
    opacity: 0;
    margin: 0;
}

.premium-prayer-form-wrap[hidden] {
    display: block !important;
    max-height: 0;
    opacity: 0;
    margin: 0;
    pointer-events: none;
}

.premium-prayer-form-wrap.premium-prayer-form-wrap--open {
    max-height: 500px;
    opacity: 1;
    margin-bottom: 0.65rem;
}

.premium-prayer-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--premium-radius-sm);
}

.premium-prayer-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.premium-prayer-form__field {
    display: flex;
    flex-direction: column;
}

.premium-prayer-form__input,
.premium-prayer-form__textarea {
    width: 100%;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.premium-prayer-form__input::placeholder,
.premium-prayer-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.premium-prayer-form__input:focus,
.premium-prayer-form__textarea:focus {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.08);
}

.premium-prayer-form__textarea {
    resize: vertical;
    min-height: 60px;
}

.premium-prayer-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #b89028, #c49b2c, #d4af37);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.15);
    align-self: flex-start;
}

.premium-prayer-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.premium-prayer-form__submit:active {
    transform: translateY(0);
}

.premium-hero__prayers-footer {
    flex-shrink: 0;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
}

.premium-hero__prayers-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--premium-gold-light);
    text-decoration: none;
    padding: 0.25rem 0;
    transition: gap 0.2s ease;
}

.premium-hero__prayers-link:hover {
    gap: 0.55rem;
    color: var(--premium-gold);
}

.premium-hero__prayers-link svg {
    transition: transform 0.2s ease;
}

.premium-hero__prayers-link:hover svg {
    transform: translateX(3px);
}

.premium-hero__prayers-empty {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    padding: 1rem 0;
}

/* Scroll hint */
.premium-hero__scroll-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: premiumScrollBounce 2.5s ease-in-out infinite;
    z-index: 2;
}

@keyframes premiumScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

.premium-hero__scroll-hint svg {
    animation: premiumScrollArrow 2.5s ease-in-out infinite;
}

@keyframes premiumScrollArrow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ── Quick Access ─────────────────────────────── */
.premium-quick {
    padding: 0;
    background: var(--premium-dark);
    position: relative;
    z-index: 2;
    margin-top: -2rem;
}

.premium-quick__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.premium-quick__card {
    display: block;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
    border: 1px solid var(--premium-glass-border);
    border-radius: var(--premium-radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-quick__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-quick__card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.premium-quick__card:hover::before {
    opacity: 1;
}

.premium-quick__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.premium-quick__icon--bible {
    background: rgba(212, 175, 55, 0.15);
    color: var(--premium-gold-light);
}

.premium-quick__icon--study {
    background: rgba(100, 200, 150, 0.15);
    color: #6ec9a0;
}

.premium-quick__icon--prayer {
    background: rgba(255, 150, 100, 0.15);
    color: #f0a070;
}

.premium-quick__icon--sermon {
    background: rgba(100, 150, 255, 0.15);
    color: #80b0f0;
}

.premium-quick__card:hover .premium-quick__icon {
    transform: scale(1.1) translateY(-2px);
}

.premium-quick__card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.35rem;
}

.premium-quick__card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.premium-quick__arrow {
    display: inline-flex;
    align-items: center;
    margin-top: 0.85rem;
    color: var(--premium-gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.premium-quick__card:hover .premium-quick__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ── Generic Premium Sections ─────────────────── */
.premium-section {
    padding: 5rem 0;
    background: #fff;
}

.premium-section:nth-child(even) {
    background: #faf8f5;
}

.premium-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.premium-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.08);
    color: var(--premium-gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.premium-section__badge--white {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: var(--premium-gold-light);
}

.premium-section__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #1a0f08;
    margin: 0 0 0.75rem;
    line-height: 1.2;
}

.premium-section__subtitle {
    font-size: 1.05rem;
    color: #5a4f45;
    line-height: 1.65;
    margin: 0;
}

.premium-section__action {
    text-align: center;
    margin-top: 3rem;
}

/* ── Premium Buttons ──────────────────────────── */
.premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    border: 2px solid transparent;
}

.premium-btn svg {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.premium-btn:hover svg {
    transform: translateX(3px);
}

.premium-btn--gold {
    background: linear-gradient(135deg, #b89028, #c49b2c, #d4af37);
    color: #fff;
    border-color: #b89028;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.premium-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.35);
}

.premium-btn--outline {
    background: transparent;
    color: var(--premium-gold-dark);
    border-color: rgba(212, 175, 55, 0.3);
}

.premium-btn--outline:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--premium-gold);
    transform: translateY(-2px);
}

.premium-btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}

.premium-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.premium-btn--lg {
    padding: 0.95rem 2.2rem;
    font-size: 1rem;
}

/* ── Paradox Section ──────────────────────────── */
.premium-paradox {
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.premium-paradox__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.premium-paradox__card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.75rem;
    background: #fff;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 4px rgba(212, 175, 55, 0.06);
}

.premium-paradox__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--premium-gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-paradox__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
}

.premium-paradox__card:hover::before { opacity: 1; }

.premium-paradox__card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.03), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-paradox__card:hover .premium-paradox__card-glow { opacity: 1; }

.premium-paradox__card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--premium-gold);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.premium-paradox__card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a0f08;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.premium-paradox__card:hover .premium-paradox__card-title { color: var(--premium-gold-dark); }

.premium-paradox__card-text {
    font-size: 0.88rem;
    color: #5a4f45;
    line-height: 1.65;
    margin: 0 0 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-paradox__card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--premium-gold-dark);
    transition: gap 0.25s ease;
    margin-top: auto;
}

.premium-paradox__card:hover .premium-paradox__card-cta { gap: 0.7rem; }

.premium-paradox__card-cta svg {
    transition: transform 0.25s ease;
}

.premium-paradox__card:hover .premium-paradox__card-cta svg { transform: translateX(3px); }

/* ── Books Section ────────────────────────────── */
.premium-books {
    background: #fff;
}

.premium-books__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.premium-book-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 42, 74, 0.06);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(26, 42, 74, 0.03);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.premium-book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 42, 74, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.premium-book-card__cover {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f5f0e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-book-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-book-card:hover .premium-book-card__img { transform: scale(1.06); }

.premium-book-card__fallback {
    font-size: 3rem;
    opacity: 0.4;
}

.premium-book-card__audio {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(26, 42, 74, 0.1);
    color: var(--premium-gold-dark);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.premium-book-card:hover .premium-book-card__audio {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(26, 42, 74, 0.14);
}

.premium-book-card__info {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.premium-book-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2a4a;
    margin: 0;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-book-card__excerpt {
    font-size: 0.75rem;
    color: #6b6b6b;
    line-height: 1.5;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.premium-book-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--premium-gold-dark);
    margin-top: 0.4rem;
    transition: gap 0.25s ease;
}

.premium-book-card:hover .premium-book-card__cta { gap: 0.55rem; }

.premium-book-card__cta svg {
    transition: transform 0.25s ease;
}

.premium-book-card:hover .premium-book-card__cta svg { transform: translateX(3px); }

/* ── De Ce Section ────────────────────────────── */
.premium-dece {
    background: #faf8f5;
}

.premium-dece__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.premium-dece__card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26, 42, 74, 0.06);
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 2px 12px rgba(26, 42, 74, 0.03);
}

.premium-dece__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 42, 74, 0.08);
    border-color: rgba(212, 175, 55, 0.15);
}

.premium-dece__thumb-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f0ece4;
}

.premium-dece__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.premium-dece__card:hover .premium-dece__thumb { transform: scale(1.06); }

.premium-dece__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5rem;
}

.premium-dece__duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    padding: 0.2rem 0.5rem;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    backdrop-filter: blur(4px);
}

.premium-dece__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.85);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: #1a2a4a;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.premium-dece__card:hover .premium-dece__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.premium-dece__play svg {
    width: 22px;
    height: 22px;
    margin-left: 2px;
}

.premium-dece__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a2a4a;
    line-height: 1.4;
    margin: 0;
    padding: 0.85rem 1rem 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Community CTA Banner ─────────────────────── */
.premium-community {
    background: var(--premium-dark);
    padding: 5rem 0;
}

.premium-community__banner {
    position: relative;
    padding: 4rem 3rem;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #0f1923);
    border: 1px solid rgba(212, 175, 55, 0.12);
    text-align: center;
}

.premium-community__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 30% 40%, rgba(212, 175, 55, 0.05), transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(212, 175, 55, 0.03), transparent 60%);
    pointer-events: none;
}

.premium-community__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.premium-community__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.premium-community__text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin: 0 0 2rem;
}

.premium-community__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1024px) {
    .premium-hero__grid {
        grid-template-columns: 1fr;
    }
.premium-hero__prayers {
    /* max-height eliminat — înălțimea e controlată precis de JS pe viewport */
}
    .premium-quick__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .premium-books__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }
    .premium-hero__scroll-hint { display: none; }
    .premium-hero__grid {
        gap: 1.25rem;
    }
    .premium-hero__spotlight {
        padding: 1.5rem;
    }
    .premium-hero__verse {
        padding: 1.25rem;
    }
.premium-hero__prayers {
    padding: 1rem;
}
    .premium-quick {
        margin-top: -1rem;
    }
    .premium-quick__card {
        padding: 1.25rem;
    }
    .premium-quick__icon {
        width: 40px;
        height: 40px;
    }
    .premium-paradox__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .premium-books__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .premium-dece__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .premium-section {
        padding: 3.5rem 0;
    }
    .premium-community__banner {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .premium-quick__grid {
        grid-template-columns: 1fr;
    }
    .premium-paradox__grid {
        grid-template-columns: 1fr;
    }
    .premium-books__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .premium-dece__grid {
        grid-template-columns: 1fr;
    }
    .premium-community__actions {
        flex-direction: column;
        align-items: center;
    }
    .premium-btn--lg {
        width: 100%;
        justify-content: center;
    }
    .premium-prayer-form__row {
        grid-template-columns: 1fr;
    }
}

/* ── Scroll Reveal Animation ──────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .premium-paradox__card,
    .premium-book-card,
    .premium-dece__card,
    .premium-quick__card,
    .premium-community__banner {
        opacity: 0;
        transform: translateY(30px);
        animation: premiumReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }

    .premium-paradox__card:nth-child(1) { animation-delay: 0.1s; }
    .premium-paradox__card:nth-child(2) { animation-delay: 0.2s; }
    .premium-paradox__card:nth-child(3) { animation-delay: 0.3s; }

    .premium-book-card:nth-child(1) { animation-delay: 0.05s; }
    .premium-book-card:nth-child(2) { animation-delay: 0.1s; }
    .premium-book-card:nth-child(3) { animation-delay: 0.15s; }
    .premium-book-card:nth-child(4) { animation-delay: 0.2s; }
    .premium-book-card:nth-child(5) { animation-delay: 0.25s; }
    .premium-book-card:nth-child(6) { animation-delay: 0.3s; }
    .premium-book-card:nth-child(7) { animation-delay: 0.35s; }
    .premium-book-card:nth-child(8) { animation-delay: 0.4s; }

    .premium-dece__card:nth-child(1) { animation-delay: 0.05s; }
    .premium-dece__card:nth-child(2) { animation-delay: 0.1s; }
    .premium-dece__card:nth-child(3) { animation-delay: 0.15s; }
    .premium-dece__card:nth-child(4) { animation-delay: 0.2s; }
    .premium-dece__card:nth-child(5) { animation-delay: 0.25s; }
    .premium-dece__card:nth-child(6) { animation-delay: 0.3s; }

    .premium-quick__card:nth-child(1) { animation-delay: 0.1s; }
    .premium-quick__card:nth-child(2) { animation-delay: 0.2s; }
    .premium-quick__card:nth-child(3) { animation-delay: 0.3s; }
    .premium-quick__card:nth-child(4) { animation-delay: 0.4s; }

    .premium-community__banner { animation-delay: 0.2s; }
}

@keyframes premiumReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


