/**
 * El Bayan Academy - Editorial Luxury Theme
 * Navy Royal (#1E40AF) + Silver (#94A3B8) + Academic Journal Style
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
    /* Primary Navy Palette */
    --elb-navy: #1E40AF;
    --elb-navy-dark: #1E3A8A;
    --elb-navy-deeper: #1E293B;
    --elb-navy-darkest: #0F172A;
    --elb-navy-light: #3B82F6;
    --elb-navy-pale: #DBEAFE;

    /* Silver Palette */
    --elb-silver: #94A3B8;
    --elb-silver-light: #CBD5E1;
    --elb-silver-dark: #64748B;
    --elb-silver-deeper: #475569;
    --elb-silver-metallic: linear-gradient(135deg, #E2E8F0 0%, #94A3B8 50%, #64748B 100%);

    /* Editorial Neutrals */
    --elb-cream: #FEFCE8;
    --elb-off-white: #F8FAFC;
    --elb-paper: #FFFFFF;
    --elb-ink: #0F172A;
    --elb-ink-light: #334155;
    --elb-ink-muted: #64748B;
    --elb-border: #E2E8F0;

    /* Editorial Gradients */
    --gradient-navy: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    --gradient-royal: linear-gradient(135deg, #1E293B 0%, #1E40AF 50%, #3B82F6 100%);
    --gradient-silver: linear-gradient(135deg, #F1F5F9 0%, #CBD5E1 50%, #94A3B8 100%);
    --gradient-metallic: linear-gradient(135deg, #94A3B8 0%, #CBD5E1 25%, #FFFFFF 50%, #CBD5E1 75%, #94A3B8 100%);

    /* Editorial Shadows */
    --shadow-paper: 0 1px 2px rgba(15, 23, 42, 0.05), 0 1px 4px rgba(15, 23, 42, 0.05);
    --shadow-lift: 0 8px 30px rgba(30, 64, 175, 0.08);
    --shadow-deep: 0 20px 50px rgba(30, 64, 175, 0.15);
    --shadow-inset: inset 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-silver: 0 4px 20px rgba(148, 163, 184, 0.3);

    /* Typography Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.375rem;
    --text-2xl: 1.75rem;
    --text-3xl: 2.25rem;
    --text-4xl: 3rem;
    --text-5xl: 4rem;
    --text-6xl: 5rem;

    /* Editorial Radius (Sharp/subtle) */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 8px;
    --radius-xl: 12px;
}

/* ============================================
   BASE - Editorial Typography
   ============================================ */
body {
    font-family: 'IBM Plex Sans Arabic', 'Inter', system-ui, sans-serif !important;
    font-size: 17px;
    line-height: 1.75;
    color: var(--elb-ink);
    background: var(--elb-paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'IBM Plex Sans Arabic', 'Cormorant Garamond', serif !important;
    font-weight: 700;
    color: var(--elb-navy-darkest);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, var(--text-6xl));
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, var(--text-4xl));
    font-weight: 700;
}

/* Editorial Lead Paragraph */
.editorial-lead {
    font-family: 'Cormorant Garamond', 'IBM Plex Sans Arabic', serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--elb-navy-deeper);
    font-style: italic;
    padding-inline-start: 1.5rem;
    border-inline-start: 4px solid var(--elb-silver);
    margin: 2rem 0;
}

/* Editorial Drop Cap */
.editorial-content p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    float: inline-start;
    margin: 0.5rem 0.75rem 0 0;
    color: var(--elb-navy);
    padding: 0.25rem 0.5rem 0 0;
}

/* ============================================
   EDITORIAL LAYOUT
   ============================================ */
.tahfez-container,
.elb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.elb-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HEADER - Editorial Masthead
   ============================================ */
.site-header {
    background: var(--elb-paper);
    border-bottom: 1px solid var(--elb-border);
    box-shadow: var(--shadow-paper);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-bar {
    background: var(--elb-navy-darkest);
    color: var(--elb-silver-light);
    padding: 0.6rem 0;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 3px double var(--elb-silver);
}

.main-navigation ul li a {
    color: var(--elb-ink);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--elb-navy);
    transition: width 0.3s;
}

.main-navigation ul li a:hover {
    color: var(--elb-navy);
}

.main-navigation ul li a:hover::after {
    width: 80%;
}

/* Logo - Editorial Masthead Style */
.elb-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    padding: 0.5rem 0;
}

.elb-brand-mark {
    width: 60px;
    height: 60px;
    background: var(--elb-navy);
    color: var(--elb-silver-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    position: relative;
    box-shadow: var(--shadow-paper);
}

.elb-brand-mark::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid var(--elb-silver);
    pointer-events: none;
}

.elb-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.elb-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--elb-navy-darkest);
    letter-spacing: -0.01em;
}

.elb-brand-tagline {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--elb-silver-dark);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ============================================
   EDITORIAL SECTIONS
   ============================================ */
section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* Editorial Kicker (small text above headline) */
.section-kicker,
.section-eyebrow {
    display: inline-block;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--elb-navy);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--elb-silver);
    display: inline-block;
}

.section-header h2,
.section-title {
    font-family: 'Playfair Display', 'IBM Plex Sans Arabic', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    color: var(--elb-navy-darkest);
    margin: 0.5rem 0 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-header p,
.section-subtitle {
    font-family: 'Cormorant Garamond', 'IBM Plex Sans Arabic', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--elb-ink-light);
    line-height: 1.6;
    margin: 0;
}

/* Editorial rule (horizontal divider) */
.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--elb-navy);
    margin: 2rem auto 0;
}

/* ============================================
   EDITORIAL BUTTONS
   ============================================ */
.tahfez-btn,
.elb-btn,
button.tahfez-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.tahfez-btn-primary,
.elb-btn-primary {
    background: var(--elb-navy);
    color: var(--elb-paper) !important;
    box-shadow: var(--shadow-lift);
    border: 2px solid var(--elb-navy);
}

.tahfez-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.tahfez-btn-primary:hover {
    background: var(--elb-navy-dark);
    color: var(--elb-paper) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-deep);
}

.tahfez-btn-primary:hover::before {
    left: 100%;
}

.tahfez-btn-gold,
.elb-btn-silver {
    background: var(--gradient-metallic);
    color: var(--elb-navy-darkest) !important;
    box-shadow: var(--shadow-silver);
    border: 2px solid var(--elb-silver);
    font-weight: 700;
}

.tahfez-btn-gold:hover {
    background: var(--elb-silver-light);
    transform: translateY(-2px);
    color: var(--elb-navy-darkest) !important;
    box-shadow: 0 10px 30px rgba(148, 163, 184, 0.5);
}

.tahfez-btn-outline,
.elb-btn-outline {
    background: transparent;
    color: var(--elb-navy) !important;
    border: 2px solid var(--elb-navy);
}

.tahfez-btn-outline:hover {
    background: var(--elb-navy);
    color: var(--elb-paper) !important;
    transform: translateY(-2px);
}

/* ============================================
   EDITORIAL CARDS - Magazine Style
   ============================================ */
.tahfez-card,
.elb-card {
    background: var(--elb-paper);
    border: 1px solid var(--elb-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-paper);
    transition: all 0.3s ease;
    position: relative;
}

.tahfez-card::before,
.elb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--elb-navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.tahfez-card:hover,
.elb-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-deep);
    border-color: var(--elb-navy-light);
}

.tahfez-card:hover::before,
.elb-card:hover::before {
    transform: scaleX(1);
}

/* ============================================
   HERO - Editorial Magazine Cover
   ============================================ */
.hero-section,
.tahfez-hero {
    background: var(--elb-off-white);
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--elb-border);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 49%, var(--elb-border) 49%, var(--elb-border) 51%, transparent 51%),
        linear-gradient(0deg, transparent 49%, var(--elb-border) 49%, var(--elb-border) 51%, transparent 51%);
    background-size: 80px 80px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-section::after {
    content: 'EL BAYAN';
    position: absolute;
    top: 40%;
    right: -5%;
    font-family: 'Playfair Display', serif;
    font-size: 10rem;
    font-weight: 900;
    color: var(--elb-border);
    opacity: 0.3;
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
    transform: rotate(-8deg);
}

/* ============================================
   PORTAL CTA - Editorial Feature Spread
   ============================================ */
.tahfez-portal-cta-section {
    background: var(--elb-navy-darkest);
    color: var(--elb-paper);
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
    border-top: 8px solid var(--elb-navy);
    border-bottom: 3px double var(--elb-silver);
}

.tahfez-portal-cta-section::before {
    content: 'PORTAL';
    position: absolute;
    top: 3rem;
    right: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(148, 163, 184, 0.05);
    letter-spacing: -0.03em;
    pointer-events: none;
    line-height: 1;
}

.portal-cta-title {
    font-family: 'Playfair Display', 'IBM Plex Sans Arabic', serif !important;
    font-weight: 800;
    color: var(--elb-paper) !important;
}

.portal-cta-subtitle {
    font-family: 'Cormorant Garamond', 'IBM Plex Sans Arabic', serif !important;
    font-style: italic;
    color: var(--elb-silver-light) !important;
    font-size: 1.35rem !important;
}

.portal-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-md);
    position: relative;
    padding: 3rem 2rem !important;
}

.portal-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-metallic);
}

.portal-cta-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--elb-silver);
    transform: translateY(-8px);
}

.portal-cta-icon-student {
    background: var(--gradient-metallic) !important;
    color: var(--elb-navy-darkest) !important;
    border-radius: var(--radius-md) !important;
}

.portal-cta-icon-teacher {
    background: var(--elb-paper) !important;
    color: var(--elb-navy) !important;
    border-radius: var(--radius-md) !important;
}

.portal-cta-btn-primary {
    background: var(--gradient-metallic) !important;
    color: var(--elb-navy-darkest) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portal-cta-btn-gold {
    background: var(--elb-paper) !important;
    color: var(--elb-navy) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-check {
    background: rgba(148, 163, 184, 0.2) !important;
    color: var(--elb-silver-light) !important;
    border-radius: 3px !important;
}

/* ============================================
   PRICING - Editorial Comparison Table
   ============================================ */
.tahfez-pricing-section {
    background: var(--elb-off-white);
    position: relative;
}

.pricing-card {
    background: var(--elb-paper);
    border: 1px solid var(--elb-border);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--shadow-paper);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--elb-navy);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: var(--elb-navy);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: var(--elb-navy-darkest);
    color: var(--elb-paper);
    border: 2px solid var(--elb-silver);
    transform: scale(1.05);
    box-shadow: var(--shadow-deep);
}

.pricing-card.featured::before {
    opacity: 1;
    height: 8px;
    background: var(--gradient-metallic);
}

.pricing-card.featured .plan-name,
.pricing-card.featured .plan-desc {
    color: var(--elb-paper) !important;
}

.plan-name {
    font-family: 'Playfair Display', 'IBM Plex Sans Arabic', serif !important;
    font-weight: 700 !important;
    font-size: 1.75rem !important;
    letter-spacing: -0.01em;
}

.plan-price .amount {
    font-family: 'Playfair Display', serif !important;
    background: var(--elb-navy);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.pricing-card.featured .plan-price .amount {
    background: var(--gradient-metallic) !important;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-badge {
    background: var(--gradient-metallic) !important;
    color: var(--elb-navy-darkest) !important;
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.7rem !important;
    padding: 0.4rem 1rem !important;
    border-radius: var(--radius-sm) !important;
}

.plan-cta-btn {
    background: var(--elb-navy) !important;
    color: var(--elb-paper) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
}

.plan-cta-btn:hover:not(:disabled) {
    background: var(--elb-navy-dark) !important;
}

.pricing-card.featured .plan-cta-btn {
    background: var(--gradient-metallic) !important;
    color: var(--elb-navy-darkest) !important;
}

.plan-icon-default {
    background: var(--elb-navy-pale) !important;
    color: var(--elb-navy) !important;
    border-radius: 50% !important;
}

/* Billing Toggle - Editorial Style */
.toggle-btn.active {
    background: var(--elb-navy) !important;
    color: var(--elb-paper) !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.save-badge {
    background: var(--elb-silver) !important;
    color: var(--elb-navy-darkest) !important;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    letter-spacing: 0.05em;
}

/* ============================================
   PORTAL AUTH BUTTONS
   ============================================ */
.portal-btn-primary {
    background: var(--elb-navy) !important;
    color: var(--elb-paper) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.portal-btn-outline {
    color: var(--elb-navy) !important;
    border: 2px solid var(--elb-navy) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.role-teacher {
    background: var(--elb-silver) !important;
    color: var(--elb-navy-darkest) !important;
}

.role-student {
    background: var(--elb-navy) !important;
    color: var(--elb-paper) !important;
}

/* ============================================
   TEACHER DASHBOARD - Editorial Layout
   ============================================ */
.teacher-sidebar {
    background: var(--elb-paper);
    border: 1px solid var(--elb-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-paper);
    position: relative;
}

.teacher-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--elb-navy);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.teacher-sidebar .avatar-wrapper img {
    border-color: var(--elb-navy) !important;
    border-width: 3px !important;
    border-radius: 50% !important;
}

.teacher-sidebar .teacher-name {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    color: var(--elb-navy-darkest);
}

.teacher-sidebar .teacher-role {
    color: var(--elb-silver-dark) !important;
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.teacher-nav a.active {
    background: var(--elb-navy) !important;
    color: var(--elb-paper) !important;
    border-radius: var(--radius-sm) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.teacher-stat-card {
    background: var(--elb-off-white) !important;
    border: 1px solid var(--elb-border);
    border-radius: var(--radius-md) !important;
    border-inline-start: 4px solid var(--elb-navy) !important;
}

.teacher-stat-card .stat-value {
    font-family: 'Playfair Display', serif !important;
    color: var(--elb-navy-darkest) !important;
    font-weight: 800;
}

.teacher-stat-card .stat-icon {
    color: var(--elb-navy) !important;
}

/* ============================================
   FOOTER - Editorial Colophon
   ============================================ */
.site-footer {
    background: var(--elb-navy-darkest);
    color: var(--elb-silver-light);
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 6px solid var(--elb-navy);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--elb-silver);
}

.site-footer h4 {
    color: var(--elb-paper);
    font-family: 'Playfair Display', serif;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--elb-silver-dark);
    letter-spacing: -0.01em;
}

.site-footer a {
    color: var(--elb-silver-light);
    transition: color 0.3s;
}

.site-footer a:hover {
    color: var(--elb-silver);
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid var(--elb-silver-dark);
    padding-top: 2rem;
    margin-top: 3rem;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* ============================================
   EDITORIAL FORMS
   ============================================ */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="url"],
textarea,
select {
    padding: 0.85rem 1rem;
    border: 1px solid var(--elb-border);
    border-radius: var(--radius-sm);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 1rem;
    background: var(--elb-paper);
    transition: all 0.3s;
    width: 100%;
    box-shadow: var(--shadow-inset);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--elb-navy);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1), var(--shadow-inset);
}

label {
    font-family: 'IBM Plex Sans Arabic', sans-serif !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em;
    color: var(--elb-navy-darkest);
}

/* ============================================
   EDITORIAL COMPONENTS
   ============================================ */

/* Blockquote - Magazine style */
blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-style: italic;
    line-height: 1.5;
    color: var(--elb-navy-deeper);
    padding: 2rem;
    border-inline-start: 5px solid var(--elb-silver);
    background: var(--elb-off-white);
    position: relative;
    margin: 2rem 0;
}

blockquote::before {
    content: '"';
    position: absolute;
    top: -1rem;
    inset-inline-start: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--elb-silver);
    line-height: 1;
    opacity: 0.5;
}

/* Editorial Number/Stat */
.stat-huge {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--elb-navy);
    line-height: 1;
    letter-spacing: -0.03em;
}

.stat-huge-label {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--elb-silver-dark);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Editorial Rule */
.editorial-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    text-align: center;
}

.editorial-rule::before,
.editorial-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--elb-border);
    max-width: 200px;
}

.editorial-rule-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--elb-navy);
    margin: 0 2rem;
    font-style: italic;
}

/* Article Bylines */
.article-byline {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.85rem;
    color: var(--elb-silver-dark);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--elb-border);
}

.article-byline strong {
    color: var(--elb-navy-darkest);
    font-weight: 600;
}

/* Status Pills - Editorial */
.status-pill {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem !important;
    border-radius: var(--radius-sm) !important;
    border: 1px solid;
}

.status-pill.status-active {
    background: var(--elb-navy-pale) !important;
    color: var(--elb-navy-darkest) !important;
    border-color: var(--elb-navy);
}

/* Editorial Badges */
.elb-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    background: var(--elb-navy-pale);
    color: var(--elb-navy-darkest);
    border: 1px solid var(--elb-navy);
    border-radius: var(--radius-sm);
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.elb-badge.silver {
    background: var(--elb-silver-light);
    color: var(--elb-navy-darkest);
    border-color: var(--elb-silver-dark);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    section { padding: 4rem 0; }
    .hero-section { padding: 4rem 0 3rem; }
    .hero-section::after { font-size: 5rem; }
    .pricing-card.featured { transform: scale(1); }
    .editorial-content p:first-of-type::first-letter { font-size: 3rem; }
    blockquote { font-size: 1.3rem; padding: 1.5rem; }
}

/* ============================================
   UTILITY
   ============================================ */
.text-navy { color: var(--elb-navy) !important; }
.text-silver { color: var(--elb-silver) !important; }
.bg-navy { background: var(--elb-navy) !important; }
.bg-silver { background: var(--elb-silver-metallic) !important; }
.font-serif { font-family: 'Playfair Display', serif !important; }
.font-editorial { font-family: 'Cormorant Garamond', serif !important; }
