 :root {
    /* Colors */
    --primary: #0ea5e9;
    --primary-light: rgba(14, 165, 233, 0.1);
    --primary-dark: #0284c7;
    --secondary: #6366f1;
    --secondary-light: rgba(99, 102, 241, 0.1);
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.1);
    --danger: #ef4444;
    --danger-light: rgba(239, 68, 68, 0.1);
    
    /* Background Colors */
    --bg-dark: #0f172a;
    --bg-darker: #060818;
    --bg-light: #1e293b;
    --bg-lighter: #334155;
    
    /* Text Colors */
    --text-dark: #f8fafc;
    --text-light: #94a3b8;
    --text-lighter: #64748b;
    
    /* Border Colors */
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Dimensions */
    --border-radius-sm: 6px;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Box Shadow */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Section Styles */
section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Hero Section */
.reporting-hero-section {
    padding: 120px 0 80px;
    background-color: var(--bg-dark);
    position: relative;
}

.reporting-hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reporting-hero__content {
    position: relative;
    z-index: 2;
}

.reporting-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.reporting-hero__title-accent {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.reporting-hero__title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 10px;
    background-color: var(--primary-light);
    z-index: -1;
    border-radius: 10px;
}

.reporting-hero__subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.reporting-hero__cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.reporting-hero__image {
    position: relative;
    z-index: 2;
}

/* Button Styles */
.reporting-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.reporting-btn svg {
    margin-left: 0.5rem;
}

.reporting-btn--primary {
    background-color: var(--primary);
    color: white;
}

.reporting-btn--primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
    box-shadow: var(--shadow-md);
}

.reporting-btn--secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.reporting-btn--secondary svg {
    margin-right: 0.5rem;
    margin-left: 0;
}

.reporting-btn--secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.reporting-btn--cta {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Report Dashboard Preview */
.reporting-dashboard-preview {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    height: 1060px;
}

.reporting-dashboard-preview__layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transform-style: preserve-3d;
}

.reporting-dashboard-preview__layer--back {
    transform: translateZ(-60px);
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.reporting-dashboard-preview__layer--middle {
    transform: translateZ(-30px);
    background-color: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reporting-dashboard-preview__layer--front {
    transform: translateZ(0);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.reporting-dashboard-preview__decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    overflow: hidden;
}

.reporting-dashboard-preview__circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(14, 165, 233, 0.05) 100%);
    opacity: 0.7;
}

.reporting-dashboard-preview__circle:nth-child(1) {
    width: 180px;
    height: 180px;
    top: -60px;
    left: -60px;
    animation: float-bob-x 6s infinite ease-in-out;
}

.reporting-dashboard-preview__circle:nth-child(2) {
    width: 120px;
    height: 120px;
    bottom: 40px;
    right: -40px;
    animation: float-bob-y 8s infinite ease-in-out;
}

.reporting-dashboard-preview__circle:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: -30px;
    left: 30%;
    animation: float-bob-x 7s infinite ease-in-out reverse;
}

/* Report Dashboard Card */
.reporting-dashboard-card {
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: card-slide-up 1s forwards ease-out;
}

.reporting-dashboard-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.reporting-dashboard-card__title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.reporting-dashboard-card__controls {
    display: flex;
    gap: 0.75rem;
}

.reporting-dashboard-card__control-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
    border-radius: var(--border-radius-sm);
    padding: 0.4rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.reporting-dashboard-card__control-btn:hover {
    background-color: var(--bg-lighter);
    color: var(--text-dark);
}

.reporting-dashboard-card__control-btn svg {
    width: 18px;
    height: 18px;
}

.reporting-dashboard-card__period {
    display: flex;
    gap: 0.5rem;
}

.reporting-dashboard-card__period-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-light);
    transition: var(--transition);
}

.reporting-dashboard-card__period-btn:hover {
    background-color: var(--bg-lighter);
    color: var(--text-dark);
}

.reporting-dashboard-card__period-btn--active {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.reporting-dashboard-card__content {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Report Chart Item */
.reporting-chart-item {
    background-color: var(--bg-dark);
    border-radius: var(--border-radius);
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.reporting-chart-item--full {
    grid-column: 1 / -1;
}

.reporting-chart-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.reporting-chart-item__title {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
    display: flex;
    align-items: center;
}

.reporting-chart-item__title svg {
    margin-right: 0.75rem;
    color: var(--primary);
}

.reporting-chart-item__legend {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.reporting-chart-item__legend-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.reporting-chart-item__legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.reporting-chart-item__legend-color--blue {
    background-color: var(--primary);
}

.reporting-chart-item__legend-color--purple {
    background-color: var(--secondary);
}

.reporting-chart-item__legend-color--green {
    background-color: var(--success);
}

.reporting-chart-item__legend-color--orange {
    background-color: var(--warning);
}

.reporting-chart-item__content {
    position: relative;
    height:152px;
}

.reporting-chart-item__chart {
    position: relative;
    width: 100%;
    height: 100%;
}

.reporting-chart-item__grid line {
    stroke: var(--border-color);
    stroke-width: 1;
    stroke-dasharray: 2,2;
}

.reporting-chart-item__metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.reporting-chart-item__metric {
    text-align: center;
}

.reporting-chart-item__metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.reporting-chart-item__metric-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Insights */
.reporting-insights {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    margin-top: 1.5rem;
    grid-column: 1 / -1;
}

.reporting-insights__header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.reporting-insights__header svg {
    margin-right: 0.75rem;
}

.reporting-insights__header h4 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-dark);
}

.reporting-insights__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.reporting-insights__item {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
}

.reporting-insights__icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.reporting-insights__icon--high {
    background-color: var(--danger);
}

.reporting-insights__icon--medium {
    background-color: var(--warning);
}

.reporting-insights__icon--low {
    background-color: var(--success);
}

/* Section Header */
.reporting-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.reporting-section-header__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reporting-section-header__subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Features Section */
.reporting-features-section {
    background-color: var(--bg-darker);
    position: relative;
}

.reporting-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.reporting-feature-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.reporting-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.reporting-feature-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.reporting-feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.reporting-feature-card__icon--blue {
    background-color: var(--primary-light);
    color: var(--primary);
}

.reporting-feature-card__icon--purple {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.reporting-feature-card__icon--orange {
    background-color: var(--warning-light);
    color: var(--warning);
}

.reporting-feature-card__icon--green {
    background-color: var(--success-light);
    color: var(--success);
}

.reporting-feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.reporting-feature-card__description {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Report Types Section */
.reporting-types-section {
    background-color: var(--bg-dark);
    position: relative;
}

.reporting-types-container {
    position: relative;
}

.reporting-types-tabs {
    display: flex;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.reporting-types-tabs__item {
    flex: 1;
    padding: 1rem;
    text-align: center;
    background-color: transparent;
    border: none;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    cursor: pointer;
}

.reporting-types-tabs__item--active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: rgba(14, 165, 233, 0.05);
}

.reporting-types-tabs__item:hover:not(.reporting-types-tabs__item--active) {
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.05);
}

.reporting-types-content {
    position: relative;
}

.reporting-types-tab {
    display: none;
    animation: fade-in 0.5s ease-out forwards;
}

.reporting-types-tab--active {
    display: block;
}

.reporting-type-showcase {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.reporting-type-showcase__image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.reporting-type-showcase__image img {
    width: 100%;
    height: auto;
    display: block;
}

.reporting-type-showcase__content {
    flex: 1;
}

.reporting-type-showcase__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.reporting-type-showcase__description {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.reporting-type-showcase__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.reporting-type-showcase__feature {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.reporting-type-showcase__feature svg {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary);
}

/* Customization Section */
.reporting-customization-section {
    background-color: var(--bg-darker);
    position: relative;
    overflow: hidden;
    
}

.reporting-customization-section__shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(14, 165, 233, 0.05) 100%);
    opacity: 0.5;
}

.reporting-customization-section__shape--1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.reporting-customization-section__shape--2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
}

.reporting-customization-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.reporting-customization__content {
    flex: 1;
}

.reporting-customization__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.reporting-customization__subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.reporting-customization__steps {
    counter-reset: step;
}

.reporting-customization__step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.reporting-customization__step:last-child {
    margin-bottom: 0;
}

.reporting-customization__step-number {
    counter-increment: step;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    margin-right: 1.5rem;
}

.reporting-customization__step-number::before {
    content: counter(step);
}

.reporting-customization__step-content {
    flex: 1;
}

.reporting-customization__step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.reporting-customization__step-description {
    font-size: 1rem;
    color: var(--text-light);
}

.reporting-customization__preview {
    flex: 1;
    position: relative;
}

.reporting-customization__image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.reporting-customization__builder {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    width: 90%;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.reporting-customization__builder-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.reporting-customization__builder-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.reporting-customization__builder-title svg {
    margin-right: 0.5rem;
    color: var(--primary);
}

.reporting-customization__builder-controls {
    display: flex;
    gap: 0.5rem;
}

.reporting-customization__builder-control {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.reporting-customization__builder-control--red {
    background-color: var(--danger);
}

.reporting-customization__builder-control--yellow {
    background-color: var(--warning);
}

.reporting-customization__builder-control--green {
    background-color: var(--success);
}

.reporting-customization__builder-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.reporting-customization__builder-option {
    background-color: var(--bg-dark);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.reporting-customization__builder-option:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.reporting-customization__builder-option--active {
    background-color: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

/* CTA Section */
.reporting-cta-section {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.reporting-cta-box {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.reporting-cta-box__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

.reporting-cta-box__description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reporting-cta-box__stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.reporting-cta-box__stat {
    text-align: center;
}

.reporting-cta-box__stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.reporting-cta-box__stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.reporting-cta-box__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

@keyframes line-draw {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes card-slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes float-bob-x {
    0% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(-10px);
    }
}

@keyframes progress-grow {
    from {
        width: 0;
    }
}

@keyframes chart-bar-grow {
    from {
        height: 0;
    }
    to {
        height: var(--height, inherit);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 5px 0 rgba(14, 165, 233, 0.3);
    }
    50% {
        box-shadow: 0 0 20px 0 rgba(14, 165, 233, 0.5);
    }
    100% {
        box-shadow: 0 0 5px 0 rgba(14, 165, 233, 0.3);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .reporting-hero__title {
        font-size: 3rem;
    }
    
    .reporting-type-showcase {
        flex-direction: column;
    }
    
    .reporting-type-showcase__image {
        margin-bottom: 2rem;
    }
    
    .reporting-customization-container {
        flex-direction: column;
    }
    
    .reporting-customization__content {
        margin-bottom: 3rem;
    }
}

@media (max-width: 992px) {
    .reporting-hero__title {
        font-size: 2.5rem;
    }
    
    .reporting-hero__cta {
        flex-direction: column;
    }
    
    .reporting-hero__cta .reporting-btn {
        width: 100%;
    }
    
    .reporting-dashboard-card__content {
        grid-template-columns: 1fr;
    }
    
    .reporting-cta-box__actions {
        flex-direction: column;
    }
    
    .reporting-cta-box__actions .reporting-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .reporting-hero__title {
        font-size: 2rem;
    }
    
    .reporting-dashboard-card__header {
        flex-wrap: wrap;
    }
    
    .reporting-dashboard-card__controls {
        width: 100%;
        margin-top: 1rem;
        justify-content: flex-end;
    }
    
    .reporting-types-tabs {
        flex-wrap: wrap;
    }
    
    .reporting-types-tabs__item {
        flex: auto;
        min-width: 120px;
    }
    
    .reporting-cta-box__stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .reporting-hero__title {
        font-size: 1.75rem;
    }
    
    .reporting-dashboard-preview__layer--front {
        padding: 10px;
    }
    
    .reporting-dashboard-card {
        max-width: 100%;
    }
    
    .reporting-dashboard-card__period {
        display: none;
    }
    
    .reporting-cta-box {
        padding: 2rem 1rem;
    }
    
    .reporting-cta-box__title {
        font-size: 1.5rem;
    }
    
    .reporting-customization__builder {
        width: 100%;
    }
    
    .reporting-customization__builder-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    .reporting-dashboard-preview__layer--back {
        background: linear-gradient(135deg, #0d1321 0%, #0f172a 100%);
    }
    
    .reporting-dashboard-card {
        background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    }
    
    .reporting-feature-card:hover,
    .reporting-chart-item:hover {
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.2);
    }
}

/* Animation Control (for reduced motion preference) */
@media (prefers-reduced-motion: reduce) {
    .float-bob-x,
    .float-bob-y,
    .reporting-chart-item__line,
    .reporting-chart-item__area,
    .pulse-glow,
    .card-slide-up,
    .fade-in,
    .progress-grow,
    .chart-bar-grow {
        animation: none !important;
        transition: none !important;
    }
}