/* Features Page Styles */

/* Features Hero Section - 100vh Full Height - Account for notification banner + navbar */
.features-hero {
    min-height: 100vh;
    padding: 0;
    background: var(--bg-color);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    /* Account for notification banner (40px) + navbar (72px) = 112px */
    padding-top: 112px;
    box-sizing: border-box;
    transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When banner is hidden, only account for navbar */
body.banner-hidden .features-hero {
    padding-top: 72px;
}

.features-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-4) 80px;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (min-width: 1024px) {
    .features-hero-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-20);
        padding: 0 var(--space-16);
    }
}

.features-hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-hero-title {
    font-size: var(--h1-size-mobile);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-6);
    color: var(--text-color);
    letter-spacing: -0.03em;
    margin-top: 0;
}

.features-hero-title .gradient-highlight {
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    display: inline-block;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    /* text-shadow: 0 0 30px rgba(168, 85, 247, 0.5), 0 0 60px rgba(240, 147, 251, 0.3), 0 0 90px rgba(255, 107, 53, 0.2); */
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.4));
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@media (min-width: 768px) {
    .features-hero-title {
        font-size: var(--h1-size);
    }
}

.features-hero-subtitle {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: var(--space-10);
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.01em;
    max-width: 600px;
    margin-top: 0;
}

.features-hero-points {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-4);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.features-hero-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    color: #1a1a1a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.features-hero-points li:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
}

.features-hero-point-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    font-size: 10px;
}

.features-hero-point-text {
    color: #1a1a1a;
}

.features-hero-tagline {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin: 0 0 var(--space-10);
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .features-hero-subtitle {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-12);
    }
    .features-hero-points {
        font-size: 15px;
        gap: 10px;
        margin-bottom: var(--space-4);
    }
    .features-hero-points li {
        padding: 9px 16px;
    }
    .features-hero-point-icon {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 11px;
    }
    .features-hero-tagline {
        font-size: var(--font-size-xl);
        margin-bottom: var(--space-12);
    }
}

.features-hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
    margin-top: 0;
}

@media (min-width: 480px) {
    .features-hero-cta {
        flex-direction: row;
        gap: var(--space-5);
    }
}

/* Buttons use standard btn-primary and btn-secondary from main.css */

/* Right Side - Devices Visual */
.features-hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    padding-top: 0;
}

.devices-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

/* Desktop Monitor */
.device-desktop {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.desktop-frame {
    position: relative;
    width: 100%;
}

.desktop-screen {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    position: relative;
}

.desktop-header {
    background: #f8f9fa;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.desktop-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    letter-spacing: -0.01em;
}

.desktop-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: top center;
}

.desktop-stand {
    width: 200px;
    height: 20px;
    background: linear-gradient(180deg, #cbd5e1 0%, #94a3b8 100%);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
    position: relative;
    top: -2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.desktop-stand::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 8px;
    background: #64748b;
    border-radius: 0 0 4px 4px;
}

/* Phone Device */
.device-phone-mobile {
    position: relative;
    z-index: 3;
    width: 220px;
    height: 450px;
    flex-shrink: 0;
}

/* Phone Content Styles */
.phone-content {
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px 4px;
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.phone-status-icons {
    display: flex;
    gap: 4px;
    color: var(--text-color);
    font-size: 10px;
}

.phone-nav-bar {
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-bottom: 1px solid var(--border-color);
}

.phone-nav-title {
    font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

.phone-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #f8f9fa;
}

.phone-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.phone-stat-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.phone-stat-value {
    font-size: 16px;
    font-weight: var(--font-weight-bold);
    color: #667eea;
    margin-bottom: 4px;
}

.phone-stat-label {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phone-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 6px;
    height: 80px;
    background: #ffffff;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.phone-chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20%;
    max-width: 20px;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.phone-list-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: 12px;
    flex-shrink: 0;
}

.phone-list-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-list-name {
    font-size: 13px;
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.phone-list-time {
    font-size: 11px;
    color: var(--text-light);
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .devices-container {
        max-width: 1200px;
        height: 650px;
    }

    .device-desktop {
        max-width: 1100px;
    }
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #1f2937;
    border-radius: 24px;
    padding: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1) inset;
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #374151;
    border-radius: 2px;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.phone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Features Detailed Section (Alternating Layout) */
.features-detailed-section {
    padding: 70px 0;
    background: #ffffff;
    position: relative;
}

.features-detailed-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.features-detailed-item:last-child {
    margin-bottom: 0;
}

.features-detailed-item-reverse {
    direction: rtl;
}

.features-detailed-item-reverse>* {
    direction: ltr;
}

.features-detailed-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-detailed-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin: 0;
}

.features-detailed-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

.features-detailed-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.features-detailed-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.features-detailed-item:hover .features-detailed-image {
    transform: scale(1.05);
}

/* Features List Section Redesigned */
.features-list-section-redesigned {
    padding: 70px 0;
    background: var(--bg-light);
    position: relative;
}

.features-list-section-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.features-list-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-list-category-redesigned {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.features-list-category-redesigned:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(168, 85, 247, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a855f7 0%, #667eea 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.category-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0;
}

.features-list-items-redesigned {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list-item-redesigned {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-color);
    transition: all 0.2s ease;
    padding: 8px 0;
}

.features-list-item-redesigned i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

.features-list-item-redesigned:hover {
    color: #a855f7;
    padding-left: 4px;
}

.features-list-item-redesigned:hover i {
    color: #a855f7;
}

/* Features CTA Section */
.features-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #667eea 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.features-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.features-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.features-cta-title {
    font-size: var(--h1-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.features-cta-title .gradient-highlight {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.features-cta-subtitle {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-12);
    font-weight: var(--font-weight-normal);
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features-cta-buttons {
    display: flex;
    gap: var(--space-5);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.features-cta-buttons .btn-primary {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.features-cta-buttons .btn-primary:hover {
    background: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.features-cta-buttons .btn-secondary {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.features-cta-buttons .btn-secondary:hover {
    background: #f9fafb !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (min-width: 1440px) {
    .features-hero {
        min-height: 100vh;
        /* Account for notification banner (40px) + navbar (72px) = 112px */
        padding-top: 112px;
        padding-bottom: 0;
    }

    body.banner-hidden .features-hero {
        padding-top: 72px;
    }

    .features-hero-wrapper {
        gap: var(--space-16);
        padding: 0 var(--space-16) 80px;
    }

    .devices-container {
        min-height: 600px;
        max-width: 1400px;
    }

    .device-desktop {
        max-width: 1400px;
    }
}

@media (max-width: 1024px) {
    .features-hero {
        min-height: 100vh;
        /* Account for notification banner (40px) + navbar (64px) = 104px */
        padding-top: 104px;
        padding-bottom: 0;
    }

    body.banner-hidden .features-hero {
        padding-top: 64px;
    }

    .features-hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-16);
        padding: 0 var(--space-10) 60px;
    }

    .features-hero-title {
        font-size: var(--h1-size);
    }

    .features-hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .features-hero-points {
        font-size: 14px;
    }
    .features-hero-points li {
        padding: 7px 12px;
    }
    .features-hero-point-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
        font-size: 9px;
    }

    .features-hero-tagline {
        font-size: var(--font-size-lg);
    }

    .features-hero-visual {
        min-height: auto;
        margin-top: var(--space-8);
        margin-bottom: 0;
    }

    .devices-container {
        min-height: auto;
        padding-bottom: 0;
    }

    .device-desktop {
        max-width: 100%;
    }

    .features-detailed-section {
        padding: 80px 0;
    }

    .features-detailed-item {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
        direction: ltr;
    }

    .features-detailed-item-reverse {
        direction: ltr;
    }

    .features-detailed-title {
        font-size: 36px;
    }

    .features-detailed-description {
        font-size: 17px;
    }

    .features-list-section-redesigned {
        padding: 80px 0;
    }

    .features-list-grid-redesigned {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }

    .features-cta-section {
        padding: var(--space-16) 0;
    }

    .features-cta-title {
        font-size: var(--h2-size-mobile);
    }

    .features-cta-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-10);
    }
}

@media (max-width: 768px) {
    .features-hero {
        min-height: 100vh;
        /* Account for notification banner (36px) + navbar (64px) = 100px */
        padding-top: 100px;
        padding-bottom: 0;
    }

    body.banner-hidden .features-hero {
        padding-top: 64px;
    }

    .features-hero-wrapper {
        padding: 0 var(--space-6) 50px;
        gap: var(--space-6);
    }

    .features-hero-title {
        font-size: var(--h1-size-mobile);
    }

    .features-hero-subtitle {
        font-size: var(--font-size-base);
    }

    .features-hero-points {
        font-size: 13px;
    }
    .features-hero-points li {
        padding: 6px 10px;
    }
    .features-hero-point-icon {
        width: 16px;
        height: 16px;
        min-width: 16px;
        font-size: 8px;
    }

    .features-hero-tagline {
        font-size: var(--font-size-base);
    }

    .features-hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .features-hero-cta .btn {
        width: 100%;
    }

    .features-hero-visual {
        min-height: auto;
        margin-top: var(--space-4);
        padding-top: var(--space-3);
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .devices-container {
        min-height: auto;
        padding-top: var(--space-2);
        padding-bottom: 0;
    }

    .device-desktop {
        max-width: 100%;
        margin-bottom: 0;
    }

    .desktop-image {
        aspect-ratio: 16 / 11;
        object-fit: contain;
        object-position: top center;
    }

    .desktop-screen {
        overflow: visible;
    }

    .desktop-stand {
        margin-bottom: 0;
    }

    .features-detailed-section {
        padding: 60px 0;
    }

    .features-detailed-item {
        margin-bottom: 60px;
        padding: 0;
    }

    .features-detailed-title {
        font-size: 28px;
    }

    .features-detailed-description {
        font-size: 16px;
    }

    .features-list-section-redesigned {
        padding: 60px 0;
    }

    .features-list-grid-redesigned {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-list-category-redesigned {
        padding: 24px;
    }

    .category-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .category-title {
        font-size: 14px;
    }

    .features-cta-section {
        padding: 60px 0;
    }

    .features-cta-title {
        font-size: 32px;
    }

    .features-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .features-cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .features-hero {
        min-height: 100vh;
        /* Account for notification banner (32px) + navbar (60px) = 92px */
        padding-top: 92px;
        padding-bottom: 0;
    }

    body.banner-hidden .features-hero {
        padding-top: 60px;
    }

    .features-hero-wrapper {
        padding: 0 var(--space-4) 40px;
        gap: var(--space-6);
    }

    .features-hero-title {
        font-size: var(--h1-size-mobile);
        margin-bottom: var(--space-5);
    }

    .features-hero-subtitle {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-8);
    }

    .features-hero-points {
        font-size: 12px;
    }
    .features-hero-points li {
        padding: 5px 10px;
    }
    .features-hero-point-icon {
        width: 14px;
        height: 14px;
        min-width: 14px;
        font-size: 7px;
    }

    .features-hero-tagline {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-8);
    }

    .features-hero-cta {
        width: 100%;
    }

    .features-hero-cta .btn {
        width: 100%;
    }

    .features-hero-visual {
        min-height: auto;
        margin-top: var(--space-4);
        padding-top: var(--space-3);
    }

    .devices-container {
        min-height: 250px;
    }

    .desktop-image {
        object-fit: contain;
        object-position: top center;
    }

    .desktop-screen {
        overflow: visible;
    }

    .features-detailed-section {
        padding: 50px 0;
    }

    .features-detailed-item {
        margin-bottom: 50px;
    }

    .features-detailed-title {
        font-size: 24px;
    }

    .features-detailed-description {
        font-size: 15px;
    }

    .features-list-section-redesigned {
        padding: 50px 0;
    }

    .features-list-category-redesigned {
        padding: 20px;
    }

    .category-header {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .category-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .category-title {
        font-size: 12px;
    }

    .features-list-item-redesigned {
        font-size: 14px;
        gap: 10px;
    }

    .features-cta-section {
        padding: 50px 0;
    }

    .features-cta-title {
        font-size: 28px;
    }

    .features-cta-subtitle {
        font-size: 16px;
    }
}

/* Checkout Savings Section */
.checkout-savings-section {
    padding: var(--space-12) 0;
    background: var(--bg-light);
    position: relative;
    overflow: visible;
}

.checkout-savings-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Centered Header Section */
.checkout-savings-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-8);
    position: relative;
    z-index: 1;
    padding: 0 var(--space-4);
}

.checkout-savings-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
    text-align: center;
}

.checkout-savings-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Visual Side - Centered */
.checkout-savings-visual {
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6);
    max-width: 1400px;
    margin: 0 auto;
}

.checkout-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Person Image - Centered */
.checkout-person-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkout-person-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 2;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Offer Notification */
.checkout-offer-notification {
    position: absolute;
    bottom: 15%;
    left: 35%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.95) 0%, rgba(240, 147, 251, 0.95) 100%);
    border-radius: 50px;
    padding: var(--space-3) var(--space-5);
    box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.offer-notification-content {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: #ffffff;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    white-space: nowrap;
}

.offer-notification-content i {
    font-size: var(--font-size-base);
    color: #10b981;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checkout UI Panels */
.checkout-ui-panel {
    position: absolute;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    padding: var(--space-5);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.checkout-panel-left {
    left: 5%;
    top: 10%;
    width: 360px;
    animation-delay: 0s;
    padding: var(--space-6);
}

.checkout-panel-summary {
    bottom: 5%;
    right: 5%;
    width: 300px;
    animation-delay: 1s;
    padding: var(--space-5);
}

/* Panel Header */
.checkout-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.checkout-panel-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.checkout-panel-dots {
    font-size: var(--font-size-xl);
    color: var(--text-light);
    line-height: 1;
    cursor: pointer;
}

/* Client Info */
.checkout-client-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.checkout-client-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.checkout-client-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.checkout-client-name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.checkout-client-since {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

/* Checkout Items */
.checkout-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-icon {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-top: var(--space-1);
    flex-shrink: 0;
}

.checkout-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.checkout-item-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.checkout-item-meta {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.checkout-item-pricing {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-2);
}

.checkout-price-original {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-decoration: line-through;
}

.checkout-price-discounted {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

/* Discount Badge */
.checkout-discount-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    padding: var(--space-1) var(--space-3);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: #059669;
    white-space: nowrap;
    margin-top: var(--space-2);
}

.checkout-discount-badge i {
    font-size: 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.checkout-discount-badge i:hover {
    opacity: 1;
}

/* Summary Panel */
.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-summary-row:last-of-type {
    border-bottom: none;
    padding-bottom: var(--space-4);
    margin-bottom: var(--space-4);
}

.checkout-summary-total {
    border-top: 2px solid var(--border-color);
    padding-top: var(--space-4);
    margin-top: var(--space-2);
}

.checkout-summary-label {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--text-color);
}

.checkout-summary-value {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

.checkout-summary-discount {
    color: #059669;
}

/* Payment Button */
.checkout-payment-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-6);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.checkout-payment-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-savings-section {
        padding: var(--space-8) 0;
    }

    .checkout-savings-header {
        margin-bottom: var(--space-6);
    }

    .checkout-savings-title {
        font-size: var(--h2-size-mobile);
    }

    .checkout-savings-description {
        font-size: var(--font-size-lg);
    }

    .checkout-savings-visual {
        min-height: 550px;
        padding: var(--space-10);
    }

    .checkout-person-image {
        max-width: 100%;
    }

    .checkout-person-img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .checkout-panel-left {
        left: 0;
        width: 320px;
    }

    .checkout-panel-summary {
        right: 0;
        width: 280px;
    }

    .checkout-offer-notification {
        left: -10%;
    }
}

@media (max-width: 768px) {
    .checkout-savings-section {
        padding: var(--space-6) 0;
    }

    .checkout-savings-header {
        margin-bottom: var(--space-5);
        padding: 0 var(--space-4);
    }

    .checkout-savings-title {
        font-size: var(--h3-size-mobile);
    }

    .checkout-savings-description {
        font-size: var(--font-size-base);
    }

    .checkout-savings-visual {
        min-height: 500px;
        padding: var(--space-8);
    }

    .checkout-person-image {
        max-width: 100%;
    }

    .checkout-person-img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .checkout-panel-left {
        left: 0;
        top: 5%;
        width: 280px;
        padding: var(--space-4);
    }

    .checkout-panel-summary {
        bottom: 0;
        right: 0;
        width: 260px;
        padding: var(--space-4);
    }

    .checkout-offer-notification {
        left: 0;
        bottom: 15%;
        padding: var(--space-2) var(--space-4);
    }

    .offer-notification-content {
        font-size: 11px;
    }

    .checkout-client-avatar {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }

    .checkout-client-name {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .checkout-savings-section {
        padding: var(--space-5) 0;
    }

    .checkout-savings-header {
        margin-bottom: var(--space-4);
        padding: 0 var(--space-4);
    }

    .checkout-savings-title {
        font-size: var(--h3-size-mobile);
    }

    .checkout-savings-description {
        font-size: var(--font-size-sm);
    }

    .checkout-savings-visual {
        min-height: 450px;
        padding: var(--space-6);
    }

    .checkout-person-image {
        max-width: 100%;
    }

    .checkout-person-img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
    }

    .checkout-panel-left {
        width: 240px;
        padding: var(--space-3);
        top: -100px;
    }

    .checkout-panel-summary {
        width: 220px;
        padding: var(--space-3);
    }

    .checkout-offer-notification {
        padding: var(--space-2) var(--space-3);
        bottom: 10%;
    }

    .offer-notification-content {
        font-size: 10px;
    }

    .offer-notification-content i {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .checkout-client-avatar {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-sm);
    }

    .checkout-client-name {
        font-size: var(--font-size-sm);
    }

    .checkout-item-name {
        font-size: var(--font-size-sm);
    }

    .checkout-price-discounted {
        font-size: var(--font-size-base);
    }

    .checkout-summary-label {
        font-size: var(--font-size-sm);
    }

    .checkout-summary-value {
        font-size: var(--font-size-base);
    }

    .checkout-payment-button {
        padding: var(--space-3) var(--space-4);
        font-size: 11px;
    }
}

/* Gift Cards Section */
.gift-cards-section {
    /* padding: var(--space-20) 0; */
    background: var(--bg-color);
    position: relative;
    overflow: visible;
}

.gift-cards-section .container {
    overflow: visible;
}

.gift-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gift-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-20);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--space-4);
    overflow: visible;
}

@media (min-width: 1024px) {
    .gift-cards-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-24);
        padding: 0 var(--space-16);
    }
}

/* Content Side */
.gift-cards-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.gift-cards-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.gift-cards-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    margin-bottom: var(--space-4);
}

.gift-cards-description:last-of-type {
    margin-bottom: 0;
}

/* Visual Side */
.gift-cards-visual {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-12);
    overflow: visible;
}

.gift-cards-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-12) var(--space-16);
    overflow: visible;
    min-height: 600px;
}

/* Gift Card UI Elements */
.gift-card-ui {
    position: absolute;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    padding: var(--space-6);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gift-card-ui:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2),
        0 12px 32px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Top Left - Gift Card Offer */
.gift-card-offer {
    top: 90;
    left: -15%;
    width: 280px;
    animation-delay: 0s;
    padding: var(--space-8);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: absolute;
    overflow: hidden;
    z-index: 3;
}

.gift-card-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.gift-card-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(240, 147, 251, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gift-card-offer-badge i {
    font-size: var(--font-size-sm);
    color: #f093fb;
}

.gift-card-offer-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-3);
}

.gift-card-offer-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.gift-card-offer-value {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
}

.gift-card-offer-price {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.gift-card-offer-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: var(--space-5);
}

.gift-card-select-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-6);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    position: relative;
    overflow: hidden;
}

.gift-card-select-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.gift-card-select-button:hover::before {
    left: 100%;
}

.gift-card-select-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.gift-card-select-button i {
    transition: transform 0.3s ease;
}

.gift-card-select-button:hover i {
    transform: translateX(4px);
}

/* Bottom Left - Gift Card Details */
.gift-card-details {
    bottom: 5%;
    left: 40%;
    width: 260px;
    animation-delay: 1s;
    padding: var(--space-8);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
    position: absolute;
    overflow: hidden;
    z-index: 2;
}

.gift-card-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
}

.gift-card-details-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-5);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.gift-card-details-icon i {
    font-size: var(--font-size-2xl);
    color: #10b981;
}

.gift-card-details-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.gift-card-number-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gift-card-number {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

.gift-card-balance {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.gift-card-balance-label {
    font-size: var(--font-size-base);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
}

.gift-card-balance-amount {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

.gift-card-purchase-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gift-card-date-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: var(--font-weight-medium);
}

.gift-card-date-value {
    font-size: var(--font-size-sm);
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
}

/* Right Side - Decorative Card */
.gift-card-decorative {
    top: 50%;
    right: -20%;
    transform: translateY(-50%);
    width: 200px;
    height: 280px;
    animation-delay: 0.5s;
    padding: var(--space-8);
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    border: 4px solid #fbbf24;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
    z-index: 4;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.4),
        0 0 0 3px rgba(251, 191, 36, 0.3),
        inset 0 0 0 2px rgba(251, 191, 36, 0.2);
}

.gift-card-decorative::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.gift-card-decorative-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.gift-card-decorative-star {
    font-size: var(--font-size-3xl);
    color: #fbbf24;
    opacity: 0.9;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.gift-card-decorative-text {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(251, 191, 36, 0.4);
    line-height: var(--line-height-relaxed);
    transform: rotate(-2deg);
    font-style: italic;
}

.gift-card-decorative-subtitle {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: 0.05em;
    margin-top: var(--space-2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gift-cards-section {
        padding: var(--space-10) 0;
    }

    .gift-cards-wrapper {
        gap: var(--space-12);
    }

    .gift-cards-title {
        font-size: var(--h2-size-mobile);
    }

    .gift-cards-description {
        font-size: var(--font-size-lg);
    }

    .gift-cards-visual {
        min-height: 550px;
        padding: var(--space-10);
        overflow: visible;
    }

    .gift-cards-visual-container {
        padding: var(--space-6);
    }

    .gift-cards-main-image {
        max-width: 500px;
    }

    .gift-card-offer {
        left: -10%;
        width: 260px;
    }

    .gift-card-details {
        left: -10%;
        bottom: 5%;
        width: 240px;
    }

    .gift-card-decorative {
        right: -8%;
        top: 50%;
        transform: translateY(-50%);
        width: 180px;
        height: 250px;
    }

    .gift-cards-visual-container {
        padding: var(--space-8) var(--space-10);
    }
}

@media (max-width: 768px) {
    .gift-cards-section {
        padding: var(--space-10) 0;
    }

    .gift-cards-wrapper {
        gap: var(--space-10);
    }

    .gift-cards-title {
        font-size: var(--h3-size-mobile);
    }

    .gift-cards-description {
        font-size: var(--font-size-base);
    }

    .gift-cards-visual {
        min-height: 500px;
        padding: var(--space-8);
        overflow: visible;
    }

    .gift-cards-visual-container {
        padding: var(--space-4);
    }

    .gift-card-offer {
        left: -5%;
        top: 0;
        width: 240px;
        padding: var(--space-5);
    }

    .gift-card-details {
        left: -5%;
        bottom: 0;
        width: 220px;
        padding: var(--space-5);
    }

    .gift-card-decorative {
        right: -5%;
        top: 50%;
        transform: translateY(-50%);
        width: 160px;
        height: 220px;
        padding: var(--space-5);
    }

    .gift-card-decorative-text {
        font-size: var(--font-size-xl);
    }

    .gift-cards-visual-container {
        padding: var(--space-6) var(--space-8);
    }

    .gift-card-decorative-text {
        font-size: var(--font-size-lg);
    }

    .gift-card-offer-price {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 480px) {
    .gift-cards-section {
        padding: var(--space-8) 0;
    }

    .gift-cards-wrapper {
        gap: var(--space-8);
        padding: 0 var(--space-4);
    }

    .gift-cards-title {
        font-size: var(--h3-size-mobile);
    }

    .gift-cards-description {
        font-size: var(--font-size-sm);
    }

    .gift-cards-visual {
        min-height: 450px;
        padding: var(--space-6);
        overflow: visible;
    }

    .gift-cards-visual-container {
        padding: var(--space-3);
    }

    .gift-card-offer {
        left: -3%;
        top: 0;
        width: 200px;
        padding: var(--space-4);
    }

    .gift-card-offer-title {
        font-size: var(--font-size-base);
    }

    .gift-card-offer-price {
        font-size: var(--font-size-xl);
    }

    .gift-card-details {
        left: -3%;
        bottom: 0;
        width: 200px;
        padding: var(--space-4);
    }

    .gift-card-decorative {
        right: -3%;
        top: 50%;
        transform: translateY(-50%);
        width: 140px;
        height: 200px;
        padding: var(--space-4);
    }

    .gift-card-decorative-text {
        font-size: var(--font-size-lg);
    }

    .gift-card-decorative-star {
        font-size: var(--font-size-2xl);
    }

    .gift-cards-visual-container {
        padding: var(--space-4) var(--space-6);
    }

    .gift-card-decorative-text {
        font-size: var(--font-size-base);
    }

    .gift-card-select-button {
        padding: var(--space-2) var(--space-4);
        font-size: var(--font-size-sm);
    }
}

/* Staff & Role Management Section */
.staff-management-section {
    padding: var(--space-20) 0;
    background: var(--bg-light);
    position: relative;
    overflow: visible;
}

.staff-management-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.staff-management-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-20);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--space-4);
}

@media (min-width: 1024px) {
    .staff-management-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: var(--space-24);
        padding: 0 var(--space-16);
    }
}

/* Content Side */
.staff-management-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.staff-management-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.staff-management-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.staff-management-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    max-width: 600px;
}

/* Visual Side */
.staff-management-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
}

.staff-management-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.staff-management-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .staff-management-section {
        padding: var(--space-10) 0;
    }

    .staff-management-wrapper {
        gap: var(--space-12);
    }

    .staff-management-title {
        font-size: var(--h2-size-mobile);
    }

    .staff-management-description {
        font-size: var(--font-size-lg);
    }

    .staff-management-visual {
        padding: var(--space-6);
    }
}

@media (max-width: 768px) {
    .staff-management-section {
        padding: var(--space-10) 0;
    }

    .staff-management-wrapper {
        gap: var(--space-10);
    }

    .staff-management-title {
        font-size: var(--h3-size-mobile);
    }

    .staff-management-description {
        font-size: var(--font-size-base);
    }

    .staff-management-visual {
        padding: var(--space-4);
    }
}

@media (max-width: 480px) {
    .staff-management-section {
        padding: var(--space-8) 0;
    }

    .staff-management-wrapper {
        gap: var(--space-8);
        padding: 0 var(--space-4);
    }

    .staff-management-title {
        font-size: var(--h3-size-mobile);
    }

    .staff-management-description {
        font-size: var(--font-size-sm);
    }

    .staff-management-visual {
        padding: var(--space-3);
    }
}

/* Flexible Subscription Plans Section */
.subscription-plans-section {
    padding: var(--space-20) 0;
    background: var(--bg-color);
    position: relative;
    overflow: visible;
}

.subscription-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.subscription-plans-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-20);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--space-4);
}

@media (min-width: 1024px) {
    .subscription-plans-wrapper {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-24);
        padding: 0 var(--space-16);
    }
}

/* Content Side */
.subscription-plans-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.subscription-plans-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.subscription-plans-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.subscription-plans-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    max-width: 600px;
}

/* Visual Side - Image */
.subscription-plans-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    order: 0;
}

@media (min-width: 1024px) {
    .subscription-plans-visual {
        order: 0;
    }
}

.subscription-plans-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.subscription-plans-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

/* Content Side - Order for mobile */
.subscription-plans-content {
    order: 1;
}

@media (min-width: 1024px) {
    .subscription-plans-content {
        order: 1;
    }
}

/* Responsive Design for Subscription Plans */
@media (max-width: 1024px) {
    .subscription-plans-section {
        padding: var(--space-10) 0;
    }

    .subscription-plans-wrapper {
        gap: var(--space-12);
    }

    .subscription-plans-title {
        font-size: var(--h2-size-mobile);
    }

    .subscription-plans-description {
        font-size: var(--font-size-lg);
    }

    .subscription-plans-visual {
        padding: var(--space-6);
    }
}

@media (max-width: 768px) {
    .subscription-plans-section {
        padding: var(--space-10) 0;
    }

    .subscription-plans-wrapper {
        gap: var(--space-10);
    }

    .subscription-plans-title {
        font-size: var(--h3-size-mobile);
    }

    .subscription-plans-description {
        font-size: var(--font-size-base);
    }

    .subscription-plans-visual {
        padding: var(--space-4);
    }
}

@media (max-width: 480px) {
    .subscription-plans-section {
        padding: var(--space-8) 0;
    }

    .subscription-plans-wrapper {
        gap: var(--space-8);
        padding: 0 var(--space-4);
    }

    .subscription-plans-title {
        font-size: var(--h3-size-mobile);
    }

    .subscription-plans-description {
        font-size: var(--font-size-sm);
    }

    .subscription-plans-visual {
        padding: var(--space-3);
    }
}

/* Smart Analytics & Reporting Section */
.analytics-reporting-section {
    padding: var(--space-20) 0;
    background: var(--bg-light);
    position: relative;
    overflow: visible;
}

.analytics-reporting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 147, 251, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.analytics-reporting-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-20);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 var(--space-4);
}

@media (min-width: 1024px) {
    .analytics-reporting-wrapper {
        grid-template-columns: 1.2fr 1fr;
        gap: var(--space-24);
        padding: 0 var(--space-16);
    }
}

/* Visual Side (Reporting Cards on Left) */
.analytics-reporting-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    order: 1;
}

@media (min-width: 1024px) {
    .analytics-reporting-visual {
        order: 0;
    }
}

/* Reporting Cards Container */
.reporting-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .reporting-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .reporting-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
        max-width: 1200px;
    }
}

/* Reporting Card Base Styles */
.reporting-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reporting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.reporting-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: var(--border-color);
}

/* Card Header */
.reporting-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.reporting-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
}

.reporting-card-icon i {
    font-size: 18px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.reporting-card-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Value */
.reporting-card-value {
    font-size: 36px;
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
    line-height: 1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .reporting-card-value {
        font-size: 28px;
    }
}

/* Card Change Indicator */
.reporting-card-change {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
}

.reporting-card-change-positive {
    color: #10b981;
}

.reporting-card-change i {
    font-size: 12px;
}

.reporting-card-period {
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    margin-left: var(--space-1);
}

/* Chart Bars */
.reporting-card-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
    margin-top: var(--space-4);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #a855f7 0%, #f093fb 50%, #ff6b35 100%);
    border-radius: 4px 4px 0 0;
    min-height: 8px;
    transition: all 0.3s ease;
}

.reporting-card:hover .chart-bar {
    opacity: 0.9;
}

/* Stats Grid */
.reporting-card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.reporting-stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

/* Staff Performance List */
.reporting-card-staff-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.staff-performance-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-3);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.staff-performance-item:hover {
    background: var(--bg-subtle);
    transform: translateX(4px);
}

.staff-info {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.staff-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
}

.staff-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.staff-name {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--text-color);
}

.staff-role {
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

.staff-metrics {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.staff-revenue {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

.staff-appointments {
    font-size: var(--font-size-xs);
    color: var(--text-light);
}

/* Breakdown Items */
.reporting-card-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-3);
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.breakdown-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.breakdown-value {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-color);
}

/* Card Variants */
.reporting-card-primary {
    grid-column: span 1;
}

.reporting-card-secondary {
    grid-column: span 1;
}

.reporting-card-tertiary {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .reporting-card-tertiary {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .reporting-card-tertiary {
        grid-column: span 1;
    }
}

.reporting-card-quaternary {
    grid-column: span 1;
}

/* Content Side (Text on Right) */
.analytics-reporting-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    order: 0;
}

@media (min-width: 1024px) {
    .analytics-reporting-content {
        order: 1;
    }
}

.analytics-reporting-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.analytics-reporting-title {
    font-size: var(--h2-size);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-snug);
    color: var(--text-color);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.analytics-reporting-description {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    font-weight: var(--font-weight-normal);
    max-width: 600px;
}

/* Responsive Design for Analytics */
@media (max-width: 1024px) {
    .analytics-reporting-section {
        padding: var(--space-10) 0;
    }

    .analytics-reporting-wrapper {
        gap: var(--space-12);
    }

    .analytics-reporting-title {
        font-size: var(--h2-size-mobile);
    }

    .analytics-reporting-description {
        font-size: var(--font-size-lg);
    }

    .analytics-reporting-visual {
        padding: var(--space-6);
    }

    .reporting-cards-container {
        gap: var(--space-5);
    }

    .reporting-card {
        padding: var(--space-5);
    }
}

@media (max-width: 768px) {
    .analytics-reporting-section {
        padding: var(--space-10) 0;
    }

    .analytics-reporting-wrapper {
        gap: var(--space-10);
    }

    .analytics-reporting-title {
        font-size: var(--h3-size-mobile);
    }

    .analytics-reporting-description {
        font-size: var(--font-size-base);
    }

    .analytics-reporting-visual {
        padding: var(--space-4);
    }

    .reporting-cards-container {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .reporting-card {
        padding: var(--space-4);
    }

    .reporting-card-value {
        font-size: 32px;
    }

    .reporting-card-tertiary {
        grid-column: span 1;
    }

    .staff-performance-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-3);
    }

    .staff-metrics {
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .analytics-reporting-section {
        padding: var(--space-8) 0;
    }

    .analytics-reporting-wrapper {
        gap: var(--space-8);
        padding: 0 var(--space-4);
    }

    .analytics-reporting-title {
        font-size: var(--h3-size-mobile);
    }

    .analytics-reporting-description {
        font-size: var(--font-size-sm);
    }

    .analytics-reporting-visual {
        padding: var(--space-3);
    }

    .reporting-cards-container {
        gap: var(--space-3);
    }

    .reporting-card {
        padding: var(--space-3);
    }

    .reporting-card-value {
        font-size: 24px;
    }

    .reporting-card-header {
        margin-bottom: var(--space-3);
    }

    .reporting-card-icon {
        width: 36px;
        height: 36px;
    }

    .reporting-card-icon i {
        font-size: 16px;
    }

    .reporting-card-chart {
        height: 50px;
        gap: 4px;
    }

    .staff-avatar {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-xs);
    }

    .staff-name {
        font-size: var(--font-size-sm);
    }

    .staff-revenue {
        font-size: var(--font-size-sm);
    }
}