/* Premium Hero Header */
.service-loading-state,
.service-message-state {
    padding: 120px 0;
    text-align: center;
}

.service-message-title {
    margin-bottom: 16px;
    color: var(--c-text);
}

.service-message-title--error {
    color: var(--c-primary);
}

.service-message-copy {
    color: var(--c-text-light);
}

.service-message-link {
    margin-top: 12px;
}

.premium-hero-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 4px solid var(--c-primary);
}

.hero-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    margin-bottom: 24px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb-separator-icon {
    width: 14px;
    margin: 0 8px;
    vertical-align: middle;
    opacity: 0.7;
}

.detail-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    font-weight: 800;
    line-height: 1.2;
}

.detail-summary {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-action-icon {
    width: 18px;
    vertical-align: middle;
}

.hero-action-icon--leading {
    margin-right: 8px;
}

.hero-action-icon--trailing {
    margin-left: 8px;
}

.hero-action-icon--lg {
    width: 20px;
}

.glass-btn {
    background: var(--c-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(192,10,39,0.3);
    border: 2px solid var(--c-primary);
    transition: all 0.3s ease;
}
.glass-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192,10,39,0.5);
}

.glass-btn-outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}
.glass-btn-outline:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
}


/* Premium Layout Grid */
.premium-layout {
    padding: 80px 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.premium-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.premium-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Glass Card */
.glass-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.card-header--with-divider {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.card-header h2 {
    font-size: 2rem;
    color: var(--c-text);
    margin: 0;
}
.card-header h3 {
    font-size: 1.5rem;
    color: var(--c-text);
    margin: 0;
}

.rich-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--c-text);
    margin-bottom: 24px;
    text-align: justify;
    word-spacing: normal;
    letter-spacing: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.premium-list-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(192, 10, 39, 0.1);
    color: var(--c-primary);
}

.premium-list-check {
    width: 16px;
    height: 16px;
}

.premium-list-text {
    font-weight: 500;
    color: var(--c-text);
}

.feature-icon-badge {
    background: rgba(192, 10, 39, 0.1);
    padding: 12px;
    border-radius: 12px;
    display: flex;
}

.feature-icon {
    color: var(--c-primary);
    width: 24px;
    height: 24px;
}

.premium-video-embed {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.premium-video-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--c-text-light);
    text-align: center;
}

.video-caption-icon {
    width: 14px;
    vertical-align: middle;
    margin-right: 4px;
}

.step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--c-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.step-copy {
    margin: 0;
    padding-top: 4px;
    font-weight: 500;
}

.step-line {
    width: 2px;
    height: 24px;
    background: rgba(0,0,0,0.1);
    margin: 4px 0 4px 13px;
}

.sidebar-divider {
    margin: 32px 0;
    border: none;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.help-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.wa-icon-glow {
    background: #e8f8f0;
    padding: 12px;
    border-radius: 12px;
}

.wa-icon {
    color: #25D366;
    width: 24px;
    height: 24px;
}

.quick-help-title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--c-text);
}

.quick-help-subtitle {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: var(--c-text-light);
}

.quick-help-link {
    width: 100%;
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
}

.premium-cta-banner {
    background: linear-gradient(135deg, var(--c-primary), #1e293b);
    padding: 64px 32px;
    border-radius: 24px;
    margin-bottom: 64px;
    text-align: center;
    color: white;
}

.premium-cta-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.premium-cta-copy {
    color: rgba(255,255,255,0.8);
    margin: 0 auto 32px;
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
}

.premium-cta-button {
    background: white;
    color: var(--c-primary);
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
}

        @media (max-width: 900px) {
            .premium-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .premium-hero-header {
                padding: 120px 0 60px;
            }
            .detail-title {
                font-size: 2.2rem;
                text-align: left;
            }
            .detail-summary {
                text-align: justify;
                font-size: 1rem;
            }
            .breadcrumb {
                text-align: left;
            }
            .hero-actions {
                justify-content: flex-start;
            }
            .glass-card { padding: 24px; }
            .card-header h2 { font-size: 1.6rem; }
            .premium-cta-title { font-size: 2rem; }
            .premium-cta-banner { padding: 48px 24px; }
        }

        @media (max-width: 500px) {
            .hero-actions { flex-direction: column; }
            .glass-btn, .glass-btn-outline { width: 100%; display: block; text-align: center; }
            .service-loading-state,
            .service-message-state { padding: 96px 0; }
        }

/* ── Footer layout ─────────────────────────────────────── */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-tagline {
    text-align: left;
    max-width: 400px;
    color: var(--c-text-light);
}

.footer-col-heading {
    margin-bottom: 20px;
}

.footer-nav-list {
    list-style: none;
    color: var(--c-text-light);
    line-height: 2;
}

.footer-contact-block {
    text-align: left;
    font-size: 0.9rem;
    color: var(--c-text-light);
    line-height: 1.8;
}

.footer-contact-icon {
    width: 14px;
    vertical-align: middle;
    margin-right: 8px;
    color: var(--c-primary);
}

.footer-contact-link {
    color: inherit;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding-top: 30px;
    text-align: center;
    color: var(--c-text-light);
    font-size: 0.9rem;
}
