/*
 * Prop Firms Premium Styles - 9.2/10 Design Standard
 * Based on ReadyToDeploy best practices
 * Version: 1.0.0
 */

/* ==========================================================================
   1. DESIGN TOKENS - ENHANCED
   ========================================================================== */

:root {
    /* Premium transitions */
    --t5-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --t5-ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --t5-ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Transition speeds */
    --t5-duration-fast: 0.25s;
    --t5-duration-normal: 0.4s;
    --t5-duration-slow: 0.7s;
    --t5-duration-slower: 1.4s;

    /* Premium shadows - Dark theme optimized */
    --t5-shadow-card: 0 4px 20px -4px rgba(0, 0, 0, 0.4);
    --t5-shadow-card-hover: 0 20px 50px -12px rgba(0, 0, 0, 0.6);
    --t5-shadow-card-featured: 0 8px 32px -8px rgba(212, 175, 55, 0.15);

    /* Gold accent for premium */
    --t5-gold: #D4AF37;
    --t5-gold-light: #E5C158;
    --t5-gold-glow: rgba(212, 175, 55, 0.15);

    /* Gradient backgrounds */
    --t5-gradient-card: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    --t5-gradient-icon-blue: linear-gradient(135deg, rgba(0, 87, 204, 0.15) 0%, rgba(51, 120, 217, 0.08) 100%);
    --t5-gradient-icon-green: linear-gradient(135deg, rgba(31, 218, 154, 0.15) 0%, rgba(74, 237, 181, 0.08) 100%);
    --t5-gradient-icon-gold: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(229, 193, 88, 0.08) 100%);
    --t5-gradient-icon-red: linear-gradient(135deg, rgba(255, 75, 75, 0.15) 0%, rgba(255, 107, 107, 0.08) 100%);
}

/* ==========================================================================
   2. PREMIUM ANIMATIONS
   ========================================================================== */

/* Base fade-in */
.t5-fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--t5-duration-slower) var(--t5-ease-out-expo),
                transform var(--t5-duration-slower) var(--t5-ease-out-expo);
}

.t5-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scale in */
.t5-scale-in {
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 1.3s var(--t5-ease-out-expo),
                transform 1.3s var(--t5-ease-out-expo);
}

.t5-scale-in.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered delays */
.t5-stagger-1 { transition-delay: 0.05s; }
.t5-stagger-2 { transition-delay: 0.1s; }
.t5-stagger-3 { transition-delay: 0.15s; }
.t5-stagger-4 { transition-delay: 0.2s; }
.t5-stagger-5 { transition-delay: 0.25s; }
.t5-stagger-6 { transition-delay: 0.3s; }

/* Auto-stagger children */
.t5-stagger-children > *:nth-child(1) { transition-delay: 0.05s; }
.t5-stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.t5-stagger-children > *:nth-child(3) { transition-delay: 0.15s; }
.t5-stagger-children > *:nth-child(4) { transition-delay: 0.2s; }
.t5-stagger-children > *:nth-child(5) { transition-delay: 0.25s; }
.t5-stagger-children > *:nth-child(6) { transition-delay: 0.3s; }

/* Mobile: Opacity-only animations */
@media (max-width: 767px) {
    .t5-fade-in,
    .t5-scale-in {
        transform: none !important;
        transition: opacity 0.8s ease-out !important;
    }

    .t5-fade-in.is-visible,
    .t5-scale-in.is-visible {
        transform: none !important;
    }
}

/* ==========================================================================
   3. PREMIUM CARD PATTERNS
   ========================================================================== */

/* Base card - refined */
.t5-card {
    background: var(--t5-bg-card);
    background-image: var(--t5-gradient-card);
    border: 1px solid var(--t5-border);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--t5-duration-fast) var(--t5-ease-smooth);
}

/* Desktop hover */
@media (hover: hover) and (min-width: 768px) {
    .t5-card:hover {
        border-color: rgba(0, 87, 204, 0.3);
        box-shadow: var(--t5-shadow-card-hover);
        transform: translateY(-4px);
    }
}

/* Mobile - no transforms */
@media (max-width: 767px) {
    .t5-card {
        padding: 20px;
        border-radius: 14px;
    }

    .t5-card:hover {
        transform: none !important;
    }
}

/* Featured card */
.t5-card--featured {
    border: 2px solid var(--t5-gold);
    box-shadow: var(--t5-shadow-card-featured);
}

@media (hover: hover) and (min-width: 768px) {
    .t5-card--featured:hover {
        border-color: var(--t5-gold-light);
        box-shadow: 0 24px 60px -16px rgba(212, 175, 55, 0.25);
    }
}

/* ==========================================================================
   4. ICON CONTAINERS - GRADIENT STYLE
   ========================================================================== */

.t5-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    transition: all var(--t5-duration-fast) var(--t5-ease-smooth);
}

.t5-icon--blue {
    background: var(--t5-gradient-icon-blue);
    color: var(--t5-primary-light);
}

.t5-icon--green {
    background: var(--t5-gradient-icon-green);
    color: var(--t5-green);
}

.t5-icon--gold {
    background: var(--t5-gradient-icon-gold);
    color: var(--t5-gold);
}

.t5-icon--red {
    background: var(--t5-gradient-icon-red);
    color: var(--t5-red);
}

/* Small icon variant */
.t5-icon--sm {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.t5-icon--sm svg {
    width: 20px;
    height: 20px;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .t5-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .t5-icon svg {
        width: 22px;
        height: 22px;
    }
}

/* ==========================================================================
   5. PREMIUM LISTING CARDS
   ========================================================================== */

.t5-listing-card {
    background: var(--t5-bg-card);
    background-image: var(--t5-gradient-card);
    border: 1px solid var(--t5-border);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all var(--t5-duration-fast) var(--t5-ease-smooth);
}

/* Desktop hover - premium lift */
@media (hover: hover) and (min-width: 768px) {
    .t5-listing-card:hover {
        border-color: rgba(0, 87, 204, 0.25);
        box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
        transform: translateY(-6px);
    }

    .t5-listing-card:hover .t5-listing-card__logo {
        transform: scale(1.05);
    }
}

/* Featured card - gold treatment */
.t5-listing-card--featured {
    border: 2px solid var(--t5-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, var(--t5-bg-card) 100%);
    box-shadow: 0 8px 32px -8px rgba(212, 175, 55, 0.12);
}

@media (hover: hover) and (min-width: 768px) {
    .t5-listing-card--featured:hover {
        border-color: var(--t5-gold-light);
        box-shadow: 0 28px 60px -16px rgba(212, 175, 55, 0.2);
    }
}

/* Logo container */
.t5-listing-card__logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform var(--t5-duration-fast) var(--t5-ease-smooth);
}

.t5-listing-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.t5-listing-card__logo span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/* Badge */
.t5-listing-card__badge {
    position: absolute;
    top: -11px;
    left: 28px;
    background: linear-gradient(135deg, var(--t5-gold) 0%, var(--t5-gold-light) 100%);
    color: var(--t5-bg-dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Header */
.t5-listing-card__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.t5-listing-card__info {
    flex: 1;
    min-width: 0;
}

.t5-listing-card__info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--t5-text-primary);
    letter-spacing: -0.01em;
}

.t5-listing-card__info h3 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t5-duration-fast) ease;
}

.t5-listing-card__info h3 a:hover {
    color: var(--t5-primary-light);
}

.t5-listing-card__info p {
    font-size: 13px;
    color: var(--t5-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Rating */
.t5-listing-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: var(--t5-text-primary);
    padding: 6px 10px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.t5-listing-card__rating .t5-star {
    color: var(--t5-gold);
    font-size: 14px;
}

/* Highlight */
.t5-listing-card__highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--t5-gradient-icon-green);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t5-green);
    margin-bottom: 24px;
}

.t5-listing-card__highlight svg {
    flex-shrink: 0;
}

/* Note */
.t5-listing-card__note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 12px;
    color: var(--t5-gold);
    margin-bottom: 16px;
}

/* Specs grid */
.t5-listing-card__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.t5-listing-card__specs--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.t5-listing-card__spec {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.t5-listing-card__spec-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--t5-text-muted);
    font-weight: 500;
}

.t5-listing-card__spec-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--t5-text-secondary);
    line-height: 1.3;
}

/* Footer */
.t5-listing-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--t5-border);
    margin-top: auto;
}

.t5-listing-card__price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.t5-listing-card__price-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--t5-text-muted);
}

.t5-listing-card__price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--t5-text-primary);
    letter-spacing: -0.02em;
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .t5-listing-card {
        padding: 22px;
        border-radius: 16px;
    }

    .t5-listing-card:hover {
        transform: none !important;
    }

    .t5-listing-card__logo {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .t5-listing-card__specs--compact {
        grid-template-columns: repeat(2, 1fr);
    }

    .t5-listing-card__badge {
        left: 22px;
    }
}

/* ==========================================================================
   6. PREMIUM COMPARISON TABLE
   ========================================================================== */

.t5-comparison-table-wrapper {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    background: var(--t5-bg-card);
    border: 1px solid var(--t5-border);
    box-shadow: var(--t5-shadow-card);
}

.t5-comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.t5-comparison-table th {
    padding: 18px 22px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--t5-text-muted);
    background: var(--t5-bg-elevated);
    border-bottom: 1px solid var(--t5-border);
}

.t5-comparison-table th:first-child {
    border-radius: 19px 0 0 0;
}

.t5-comparison-table th:last-child {
    border-radius: 0 19px 0 0;
}

.t5-comparison-table td {
    padding: 18px 22px;
    font-size: 14px;
    color: var(--t5-text-secondary);
    border-bottom: 1px solid var(--t5-border);
    vertical-align: middle;
    transition: background var(--t5-duration-fast) ease;
}

.t5-comparison-table tr:last-child td {
    border-bottom: none;
}

@media (hover: hover) and (min-width: 768px) {
    .t5-comparison-table tbody tr:hover td {
        background: rgba(0, 87, 204, 0.04);
    }
}

/* Firm name cell */
.t5-firm-name {
    display: flex;
    align-items: center;
    gap: 14px;
}

.t5-firm-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform var(--t5-duration-fast) var(--t5-ease-smooth);
}

@media (hover: hover) {
    .t5-comparison-table tbody tr:hover .t5-firm-logo {
        transform: scale(1.08);
    }
}

.t5-firm-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.t5-firm-logo span {
    text-transform: uppercase;
    font-size: 14px;
}

.t5-firm-name strong {
    color: var(--t5-text-primary);
    font-size: 14px;
    font-weight: 600;
}

.t5-firm-name strong a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t5-duration-fast) ease;
}

.t5-firm-name strong a:hover {
    color: var(--t5-primary-light);
}

.t5-firm-note {
    display: block;
    font-size: 11px;
    color: var(--t5-gold);
    margin-top: 3px;
    font-weight: 500;
}

/* Drawdown badge */
.t5-drawdown-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--t5-bg-elevated);
    border: 1px solid var(--t5-border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--t5-text-muted);
}

/* ==========================================================================
   7. PREMIUM HERO SECTION
   ========================================================================== */

.t5-propfirms-hero {
    position: relative;
    padding: 140px 0 60px;
    background: var(--t5-bg-dark);
    overflow: hidden;
}

@media (min-width: 768px) {
    .t5-propfirms-hero {
        padding: 160px 0 80px;
    }
}

@media (min-width: 1024px) {
    .t5-propfirms-hero {
        padding: 180px 0 100px;
    }
}

/* Background elements */
.t5-propfirms-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.t5-propfirms-hero__grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.t5-propfirms-hero__candles {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    opacity: 0.5;
}

.t5-propfirms-hero__candles svg {
    width: 100%;
    height: 100%;
}

.t5-propfirms-hero__glow {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    filter: blur(40px);
}

/* Hero header */
.t5-propfirms-hero .t5-section-header {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 48px;
}

.t5-propfirms-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.t5-propfirms-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--t5-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   8. PREMIUM SECTIONS
   ========================================================================== */

.t5-propfirms-featured {
    background: linear-gradient(180deg, var(--t5-bg-card) 0%, var(--t5-bg-dark) 100%);
}

.t5-propfirms-all {
    background: var(--t5-bg-dark);
}

.t5-section-header--left {
    text-align: left;
}

.t5-section-header--left h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.t5-section-header--left p {
    color: var(--t5-text-secondary);
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.7;
}

/* Listing grid */
.t5-listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .t5-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (min-width: 1024px) {
    .t5-listing-grid--featured {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   9. PREMIUM GUIDE SECTION
   ========================================================================== */

.t5-propfirms-guide {
    background: linear-gradient(180deg, var(--t5-bg-card) 0%, var(--t5-bg-elevated) 100%);
}

.t5-propfirms-guide__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .t5-propfirms-guide__grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start;
    }
}

.t5-propfirms-guide__content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

/* Steps */
.t5-propfirms-guide__steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.t5-propfirms-guide__step {
    display: flex;
    gap: 18px;
    padding: 20px;
    background: var(--t5-bg-dark);
    border: 1px solid var(--t5-border);
    border-radius: 14px;
    transition: all var(--t5-duration-fast) var(--t5-ease-smooth);
}

@media (hover: hover) and (min-width: 768px) {
    .t5-propfirms-guide__step:hover {
        border-color: rgba(212, 175, 55, 0.3);
        transform: translateX(8px);
    }
}

.t5-propfirms-guide__num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--t5-gold) 0%, var(--t5-gold-light) 100%);
    color: var(--t5-bg-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.t5-propfirms-guide__step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--t5-text-primary);
}

.t5-propfirms-guide__step p {
    font-size: 14px;
    color: var(--t5-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* CTA Card - Premium */
.t5-propfirms-guide__cta-card {
    background: linear-gradient(145deg, var(--t5-bg-dark) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 2px solid var(--t5-gold);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    box-shadow: 0 12px 48px -12px rgba(212, 175, 55, 0.15);
}

.t5-propfirms-guide__cta-icon {
    width: 88px;
    height: 88px;
    background: var(--t5-gradient-icon-gold);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: var(--t5-gold);
}

.t5-propfirms-guide__cta-icon svg {
    width: 44px;
    height: 44px;
}

.t5-propfirms-guide__cta-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--t5-text-primary);
    letter-spacing: -0.01em;
}

.t5-propfirms-guide__cta-card > p {
    font-size: 15px;
    color: var(--t5-text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.t5-propfirms-guide__cta-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    text-align: left;
}

.t5-propfirms-guide__cta-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--t5-text-secondary);
}

.t5-propfirms-guide__cta-features svg {
    color: var(--t5-green);
    flex-shrink: 0;
}

.t5-propfirms-guide__cta-note {
    margin-top: 18px;
    font-size: 13px;
    color: var(--t5-text-muted);
}

/* ==========================================================================
   10. PREMIUM BUTTONS
   ========================================================================== */

.t5-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--t5-font);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--t5-duration-fast) var(--t5-ease-smooth);
}

.t5-btn--primary {
    background: linear-gradient(135deg, var(--t5-primary) 0%, var(--t5-primary-light) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 87, 204, 0.3);
}

@media (hover: hover) {
    .t5-btn--primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 87, 204, 0.4);
    }
}

.t5-btn--outline {
    background: transparent;
    color: var(--t5-text-primary);
    border: 1px solid var(--t5-border);
}

@media (hover: hover) {
    .t5-btn--outline:hover {
        border-color: var(--t5-primary);
        color: var(--t5-primary-light);
        background: rgba(0, 87, 204, 0.05);
    }
}

.t5-btn--lg {
    padding: 18px 36px;
    font-size: 15px;
    border-radius: 14px;
}

.t5-btn--sm {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 10px;
    gap: 6px;
}

.t5-btn--full {
    width: 100%;
    justify-content: center;
}

.t5-btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--t5-duration-fast) ease;
}

@media (hover: hover) {
    .t5-btn:hover svg {
        transform: translateX(3px);
    }
}

/* Mobile - no transforms */
@media (max-width: 767px) {
    .t5-btn:hover {
        transform: none !important;
    }

    .t5-btn:hover svg {
        transform: none !important;
    }
}

/* ==========================================================================
   11. STAR RATINGS
   ========================================================================== */

.t5-star {
    color: var(--t5-border);
    font-size: 16px;
    line-height: 1;
}

.t5-star--filled {
    color: var(--t5-gold);
}

/* ==========================================================================
   12. MOBILE OPTIMIZATIONS
   ========================================================================== */

@media (max-width: 767px) {
    /* Remove hover transforms */
    .t5-listing-card:hover,
    .t5-propfirms-guide__step:hover,
    .t5-card:hover {
        transform: none !important;
    }

    /* Reduce shadows */
    .t5-listing-card--featured {
        box-shadow: 0 4px 20px -8px rgba(212, 175, 55, 0.1);
    }

    /* Adjust spacing */
    .t5-propfirms-hero {
        padding: 120px 0 48px;
    }

    .t5-propfirms-guide__cta-features {
        grid-template-columns: 1fr;
    }

    .t5-propfirms-guide__cta-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .t5-propfirms-guide__step {
        padding: 16px;
    }

    .t5-propfirms-guide__step:hover {
        transform: none !important;
    }
}

/* ==========================================================================
   13. UTILITY CLASSES
   ========================================================================== */

.t5-text-gradient {
    background: linear-gradient(135deg, var(--t5-primary) 0%, var(--t5-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.t5-text-gold {
    color: var(--t5-gold);
}

.t5-text-green {
    color: var(--t5-green);
}

.t5-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
