/* ============================================================================
   UTILITIES & MISSING CLASSES
   ============================================================================ */

/* Typography Utilities */
.section-label {
    display: inline-block;
    font-size: var(--text-small);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    color: var(--color-primary);
    margin-bottom: var(--space-4);
}
.section-label-light {
    color: var(--color-primary-light);
}

/* Hero Section Specifics */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: var(--text-small);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-sm);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
}
.hero-subtitle {
    font-size: var(--text-body-lg);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    max-width: 520px;
}
.hero-svg {
    width: 100%;
    max-width: 550px;
    height: auto;
}

/* About Section Specifics */
.about-lead {
    font-size: var(--text-h4);
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

/* Feature Section Specifics */
.feature-card-wide {
    grid-column: 1 / -1;
}

/* Premium Experience Orbs */
.premium-center-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(2, 98, 211, 0.3);
}
.orb-ring-1 {
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
    border-top-color: var(--color-primary-light);
}
.orb-ring-2 {
    width: 75%;
    height: 75%;
    animation: rotate 15s linear infinite reverse;
    border-right-color: var(--color-accent-emerald);
}
.orb-ring-3 {
    width: 50%;
    height: 50%;
    animation: rotate 20s linear infinite;
    border-bottom-color: var(--color-accent-orange);
}
.orb-core {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow-blue);
    z-index: 2;
}

/* Why Choose Specifics */
.comparison-title {
    font-size: var(--text-h4);
    margin-bottom: var(--space-6);
    text-align: center;
}

/* Statistics Specifics */
.stat-number-highlight {
    font-family: var(--font-heading);
    font-size: var(--text-display);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

/* Ecosystem Specifics */
.ecosystem-lines-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Partners Specifics */
.partner-logo-item {
    font-size: var(--text-h4);
    font-weight: 700;
    color: var(--color-text-muted);
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
}

/* Download App Specifics */
.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--gradient-glow);
    border-radius: 50%;
    z-index: -1;
}
.download-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.download-qr {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.qr-placeholder {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: var(--radius-sm);
    padding: var(--space-2);
}
.qr-label {
    font-size: var(--text-small);
    color: var(--color-text-light);
}

/* Newsletter Specifics */
.newsletter-disclaimer {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-4);
}
