/* Google Material Design Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --google-blue: #4285f4;
    --google-blue-dark: #1a73e8;
    --google-blue-light: #8ab4f8;
    --google-blue-50: #e8f0fe;
    
    /* Secondary Colors */
    --google-green: #34a853;
    --google-green-dark: #137333;
    --google-green-light: #81c995;
    --google-green-50: #e6f4ea;
    
    /* Status Colors */
    --google-red: #ea4335;
    --google-red-dark: #d33b2c;
    --google-red-light: #f28b82;
    --google-red-50: #fce8e6;
    
    --google-yellow: #fbbc04;
    --google-yellow-dark: #f9ab00;
    --google-yellow-light: #fdd663;
    --google-yellow-50: #fef7e0;
    
    --google-orange: #ff6d01;
    --google-orange-dark: #e8710a;
    --google-orange-light: #ff8f65;
    --google-orange-50: #feefe3;
    
    /* Neutral Colors */
    --google-grey-50: #f8f9fa;
    --google-grey-100: #f1f3f4;
    --google-grey-200: #e8eaed;
    --google-grey-300: #dadce0;
    --google-grey-400: #bdc1c6;
    --google-grey-500: #9aa0a6;
    --google-grey-600: #80868b;
    --google-grey-700: #5f6368;
    --google-grey-800: #3c4043;
    --google-grey-900: #202124;
    
    /* Text Colors */
    --text-primary: #202124;
    --text-secondary: #5f6368;
    --text-disabled: #9aa0a6;
    --text-inverse: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f1f3f4;
    --bg-dark: #202124;
    
    /* Border Colors */
    --border-light: #e8eaed;
    --border-medium: #dadce0;
    --border-strong: #bdc1c6;
    
    /* Shadow Elevations */
    --shadow-1: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-2: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    --shadow-3: 0 4px 8px 3px rgba(60, 64, 67, 0.15), 0 1px 3px rgba(60, 64, 67, 0.3);
    --shadow-4: 0 6px 10px 4px rgba(60, 64, 67, 0.15), 0 2px 3px rgba(60, 64, 67, 0.3);
    
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    
    /* Typography */
    --font-google-sans: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-roboto: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Roboto Mono', 'Monaco', 'Menlo', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-standard: 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    --transition-emphasized: 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Base Typography */
html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-roboto);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-google-sans);
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}

h1 { font-size: 2.5rem; font-weight: 400; }
h2 { font-size: 2rem; font-weight: 400; }
h3 { font-size: 1.75rem; font-weight: 500; }
h4 { font-size: 1.5rem; font-weight: 500; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1.125rem; font-weight: 500; }

p {
    margin: 0 0 var(--space-md) 0;
    line-height: 1.6;
}

a {
    color: var(--google-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--google-blue-dark);
    text-decoration: underline;
}

strong {
    font-weight: 500;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Header */
.header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-google-sans);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.logo .material-icons {
    font-size: 2rem;
    color: var(--google-blue);
}

.header-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Score Badge */
.score-badge {
    display: inline-flex;
    align-items: baseline;
    background: var(--google-blue-50);
    color: var(--google-blue-dark);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 500;
    gap: 2px;
}

.score-badge.critical {
    background: var(--google-red-50);
    color: var(--google-red-dark);
}

.score-badge.poor {
    background: var(--google-red-50);
    color: var(--google-red-dark);
}

.score-badge.average {
    background: var(--google-orange-50);
    color: var(--google-orange-dark);
}

.score-badge.warning {
    background: var(--google-yellow-50);
    color: var(--google-yellow-dark);
}

.score-badge.good {
    background: var(--google-green-50);
    color: var(--google-green-dark);
}

.score-badge.excellent {
    background: var(--google-blue-50);
    color: var(--google-blue-dark);
}

.score-value {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-google-sans);
}

.score-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Navigation Tabs */
.nav-tabs {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 73px;
    z-index: 999;
    box-shadow: var(--shadow-1);
}

.tabs {
    display: flex;
    gap: var(--space-xs);
    padding: var(--space-md) 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tab-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    font-family: var(--font-google-sans);
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    white-space: nowrap;
    min-height: 48px;
    text-decoration: none;
}

.tab-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    text-decoration: none;
}

.tab-link.active {
    background: var(--google-blue);
    color: var(--text-inverse);
    box-shadow: var(--shadow-2);
}

.tab-link .material-icons {
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--google-blue-50) 0%, var(--bg-secondary) 100%);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border-light);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Hero (for sub-pages) */
.page-hero {
    background: var(--bg-secondary);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border-light);
}

.page-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-2xl);
}

.page-info h1 {
    margin-bottom: var(--space-md);
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.page-meta > span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xs);
}

.page-priority.critical {
    background: var(--google-red-50);
    color: var(--google-red-dark);
    border-color: var(--google-red-light);
}

/* Key Metrics Grid */
.key-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
}

/* Metrics Grid - Homepage (5 items in a row) */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.metric-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-2);
    text-align: center;
    transition: all var(--transition-standard);
    border: 1px solid var(--border-light);
}

.metric-card:hover {
    box-shadow: var(--shadow-3);
    transform: translateY(-2px);
}

.metric-icon {
    margin-bottom: var(--space-md);
}

.metric-icon .material-icons {
    font-size: 2.5rem;
    color: var(--google-blue);
}

.metric-card.critical .metric-icon .material-icons {
    color: var(--google-red);
}

.metric-card.warning .metric-icon .material-icons {
    color: var(--google-yellow);
}

.metric-card.good .metric-icon .material-icons {
    color: var(--google-green);
}

.metric-card.excellent .metric-icon .material-icons {
    color: var(--google-blue);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-google-sans);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.metric-unit {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.metric-status {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: var(--space-sm);
}

.metric-card.excellent .metric-status {
    color: var(--google-green-dark);
}

.metric-card.warning .metric-status {
    color: var(--google-orange-dark);
}

/* Metric Header */
.metric-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.metric-header span:last-child {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Critical Alert */
.critical-alert {
    background: var(--google-red-50);
    border: 1px solid var(--google-red-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.critical-alert .material-icons {
    color: var(--google-red);
    font-size: 1.5rem;
    margin-top: 2px;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    color: var(--google-red-dark);
    display: block;
    margin-bottom: var(--space-xs);
    font-family: var(--font-google-sans);
    font-weight: 500;
}

/* Main Content */
.main {
    padding: var(--space-2xl) 0;
    min-height: 60vh;
}

/* Section Layouts */
.section {
    margin-bottom: var(--space-3xl);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl); /* Increased from var(--space-xl) */
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-primary);
    font-family: var(--font-google-sans);
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

.section-meta {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.section-meta .material-icons {
    font-size: 1.125rem;
}

/* Cards */
.card, .summary-card, .issue-card, .rec-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-standard);
}

.card:hover, .summary-card:hover {
    box-shadow: var(--shadow-3);
}

.card-header, .issue-header, .rec-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.card-header .material-icons {
    color: var(--google-blue);
    font-size: 1.5rem;
}

.card-header h3, .card-header h4 {
    font-family: var(--font-google-sans);
    font-weight: 500;
    color: var(--text-primary);
}

.card-content, .issue-content, .rec-content {
    padding: var(--space-lg);
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

th {
    background: var(--bg-secondary);
    padding: var(--space-md);
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-google-sans);
    border-bottom: 2px solid var(--border-light);
}

/* First column left-aligned, others right-aligned */
th:not(:first-child) {
    text-align: right;
}

td {
    padding: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

td:not(:first-child) {
    text-align: right;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background: var(--bg-secondary);
}

/* SWOT Grid - 2x2 layout */
.swot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.swot-section {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--border-light);
}

.swot-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-light);
}

.swot-section.strengths .swot-header {
    border-bottom-color: var(--google-green);
}

.swot-section.weaknesses .swot-header {
    border-bottom-color: var(--google-red);
}

.swot-section.opportunities .swot-header {
    border-bottom-color: var(--google-blue);
}

.swot-section.threats .swot-header {
    border-bottom-color: var(--google-orange);
}

.swot-section .material-icons {
    font-size: 1.5rem;
}

.swot-section.strengths .material-icons {
    color: var(--google-green);
}

.swot-section.weaknesses .material-icons {
    color: var(--google-red);
}

.swot-section.opportunities .material-icons {
    color: var(--google-blue);
}

.swot-section.threats .material-icons {
    color: var(--google-orange);
}

.swot-section ul {
    list-style: none;
    padding: 0;
}

.swot-section li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.swot-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.swot-section.strengths li::before {
    color: var(--google-green);
}

.swot-section.weaknesses li::before {
    color: var(--google-red);
}

.swot-section.opportunities li::before {
    color: var(--google-blue);
}

.swot-section.threats li::before {
    color: var(--google-orange);
}

/* Score Circles - Fixed centering */
.score-circle, .score-circle-large, .score-circle-xlarge {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: var(--google-blue-50);
    border: 3px solid var(--google-blue);
    font-family: var(--font-google-sans);
}

ul{
    padding-left:20px;
}

.score-circle {
    width: 80px;
    height: 80px;
}

.score-circle-large {
    width: 120px;
    height: 120px;
    border-width: 4px;
    margin: auto;
}

.score-circle-xlarge {
    width: 160px;
    height: 160px;
    border-width: 5px;
    margin: auto;
}

.score-circle .score,
.score-circle-large .score,
.score-circle-xlarge .score {
    font-weight: 700;
    color: var(--google-blue-dark);
}

.score-circle .score {
    font-size: 1.5rem;
}

.score-circle-large .score {
    font-size: 2.5rem;
}

.score-circle-xlarge .score {
    font-size: 3.5rem;
}

.score-circle .max,
.score-circle-large .max,
.score-circle-xlarge .max {
    color: var(--text-secondary);
    margin-left: 2px;
}

.score-circle .max {
    font-size: 1rem;
}

.score-circle-large .max {
    font-size: 1.5rem;
}

.score-circle-xlarge .max {
    font-size: 2rem;
}

/* Results Grid - 3 cards in a row */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.result-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    border: 1px solid var(--border-light);
}

.result-card h4 {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.score-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Status Badges */
.status-badge, .priority-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.critical, .priority-badge.critical {
    background: var(--google-red-50);
    color: var(--google-red-dark);
    border: 1px solid var(--google-red-light);
}

.status-badge.warning, .priority-badge.warning {
    background: var(--google-yellow-50);
    color: var(--google-yellow-dark);
    border: 1px solid var(--google-yellow-light);
}

.status-badge.good, .priority-badge.good {
    background: var(--google-green-50);
    color: var(--google-green-dark);
    border: 1px solid var(--google-green-light);
}

.status-badge.excellent, .priority-badge.excellent {
    background: var(--google-blue-50);
    color: var(--google-blue-dark);
    border: 1px solid var(--google-blue-light);
}

.status-badge.average, .priority-badge.average {
    background: var(--google-orange-50);
    color: var(--google-orange-dark);
    border: 1px solid var(--google-orange-light);
}

.status-badge.poor, .priority-badge.poor {
    background: var(--google-red-50);
    color: var(--google-red-dark);
    border: 1px solid var(--google-red-light);
}

/* Growth Indicator */
.growth-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin: var(--space-md) 0;
}

.growth-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--google-green-dark);
    font-family: var(--font-google-sans);
}

.growth-indicator .material-icons {
    font-size: 2rem;
    color: var(--google-green);
}

/* Issue Cards */
.critical-issues {
    margin-top: var(--space-xl);
}

.issue-card {
    margin-bottom: var(--space-lg);
}

.issue-card.critical .issue-header {
    background: var(--google-red-50);
}

.issue-header .material-icons {
    color: var(--google-red);
    font-size: 1.5rem;
}

.issue-header h3, .issue-header h4 {
    flex: 1;
}

.impact-section, .solution-section {
    margin-top: var(--space-md);
}

.impact-section h4, .impact-section h5,
.solution-section h4, .solution-section h5 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.impact-section ul, .solution-section ul {
    list-style: none;
    padding-left: var(--space-lg);
}

.impact-section li, .solution-section li {
    position: relative;
    padding: var(--space-xs) 0;
}

.impact-section li::before {
    content: '•';
    position: absolute;
    left: -var(--space-lg);
    color: var(--google-red);
    font-weight: bold;
}

.code-block {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: var(--space-md);
    margin: var(--space-sm) 0;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    overflow-x: auto;
}

.expected-result {
    margin-top: var(--space-md);
    padding: var(--space-sm);
    background: var(--google-green-50);
    border-radius: var(--radius-sm);
    color: var(--google-green-dark);
    font-weight: 500;
}

/* Comparison Table */
.comparison-table table {
    margin-top: var(--space-md);
}

.bad {
    color: var(--google-red-dark);
    background: var(--google-red-50);
}

.good {
    color: var(--google-green-dark);
    background: var(--google-green-50);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-md);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--google-red-dark);
    font-family: var(--font-google-sans);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Quick Wins */
.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.win-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-2);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-standard);
}

.win-card:hover {
    box-shadow: var(--shadow-3);
    transform: translateY(-2px);
}

.win-icon {
    width: 64px;
    height: 64px;
    background: var(--google-green-50);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.win-icon .material-icons {
    font-size: 2rem;
    color: var(--google-green);
}

.win-card h3 {
    margin-bottom: var(--space-sm);
    font-size: 1.25rem;
}

.win-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

.impact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm);
    background: var(--google-green-50);
    border-radius: var(--radius-sm);
    color: var(--google-green-dark);
    font-weight: 500;
    font-size: 0.875rem;
}

.impact .material-icons {
    font-size: 1.25rem;
}

/* Timeline Grid - Vertical layout */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.timeline-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--border-light);
}

.timeline-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--border-light);
}

.timeline-period {
    background: var(--google-blue);
    color: var(--text-inverse);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.875rem;
}

.timeline-card ul {
    list-style: none;
    padding: 0;
}

.timeline-card li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.timeline-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--google-blue);
    font-weight: bold;
}

.timeline-card strong {
    color: var(--google-blue-dark);
}

/* Performance Details */
.performance-details {
    margin-top: var(--space-xl);
}

.resources-chart {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-md);
}

.resource-bar {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.resource-type {
    min-width: 100px;
    font-size: 0.875rem;
    font-weight: 500;
}

.bar-wrapper {
    flex: 1;
    height: 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.bar {
    height: 100%;
    background: var(--google-blue);
    transition: width var(--transition-standard);
}

.resource-count {
    min-width: 80px;
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* SEO Issues */
.seo-issues {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.current-state, .problem, .recommendation {
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    margin: var(--space-sm) 0;
}

.current-state.bad {
    background: var(--google-red-50);
    color: var(--google-red-dark);
}

.problem {
    background: var(--google-yellow-50);
    color: var(--google-yellow-dark);
}

.recommendation.good {
    background: var(--google-green-50);
    color: var(--google-green-dark);
}

/* Image Stats */
.image-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.stat-circle {
    text-align: center;
}

.stat-circle .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--google-orange-dark);
    display: block;
}

.stat-circle .stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.stat-description strong {
    color: var(--google-orange-dark);
}

/* Tech Issues Grid */
.tech-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.tech-issue {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.tech-issue .material-icons {
    color: var(--google-orange);
    font-size: 1.5rem;
}

.tech-issue strong {
    display: block;
    margin-bottom: var(--space-xs);
}

.tech-issue p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* UX Strengths */
.strength-categories {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.strength-category {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
}

.strength-category h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    color: var(--google-green-dark);
}

.strength-category .material-icons {
    color: var(--google-green);
}

.strength-category ul {
    list-style: none;
    padding: 0;
}

.strength-category li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.strength-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--google-green);
    font-weight: bold;
}

/* CTA Demo Button */
.cta-demo {
    background: var(--google-green);
    color: var(--text-inverse);
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: var(--space-md);
}

.cta-demo:hover {
    background: var(--google-green-dark);
    box-shadow: var(--shadow-2);
}

/* Functionality Grid */
.functionality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.func-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.func-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.func-header .material-icons {
    color: var(--google-blue);
    font-size: 1.5rem;
}

.func-header h3 {
    flex: 1;
    font-size: 1.125rem; /* Slightly smaller to prevent wrapping */
}

.status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status.excellent {
    background: var(--google-green-50);
    color: var(--google-green-dark);
}

.status.good {
    background: var(--google-blue-50);
    color: var(--google-blue-dark);
}

.func-card ul {
    padding: var(--space-lg);
    list-style: none;
}

.func-card li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-lg);
    position: relative;
}

.func-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--google-green);
    font-weight: bold;
}

/* Content Blocks */
.content-blocks {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.content-block {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
}

.block-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.block-header .material-icons {
    color: var(--google-blue);
    font-size: 1.5rem;
}

.content-list {
    margin-top: var(--space-md);
}

.content-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

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

.content-item .status {
    font-size: 0.75rem;
}

/* Conversion Funnel */
.funnel-steps {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    overflow-x: auto;
    padding: var(--space-lg) 0;
}

.funnel-step {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 1px solid var(--border-light);
    min-width: 200px;
    min-height: 263px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--google-blue);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto var(--space-md);
}

.step-content strong {
    display: block;
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.step-status {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.step-status.excellent {
    background: var(--google-green-50);
    color: var(--google-green-dark);
}

.step-status.good {
    background: var(--google-blue-50);
    color: var(--google-blue-dark);
}

.funnel-arrow {
    font-size: 2rem;
    color: var(--google-blue);
}

/* Conversion Barriers */
.barriers-grid {
    display: grid;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.barrier-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.barrier-item.high {
    border-left: 4px solid var(--google-red);
}

.barrier-item.medium {
    border-left: 4px solid var(--google-orange);
}

.barrier-item .material-icons {
    color: var(--google-orange);
    font-size: 1.5rem;
}

/* Score Summary */
.score-summary {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.score-breakdown h3 {
    margin-bottom: var(--space-lg);
}

.score-items {
    display: grid;
    gap: var(--space-md);
}

.score-item {
    display: grid;
    grid-template-columns: 150px 1fr 100px;
    align-items: center;
    gap: var(--space-md);
}

.score-item .category {
    font-weight: 500;
}

.score-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.score-bar .bar {
    height: 100%;
    transition: width var(--transition-standard);
}

.score-bar .bar.excellent {
    background: var(--google-green);
}

.score-bar .bar.good {
    background: var(--google-blue);
}

.score-bar .bar.average {
    background: var(--google-orange);
}

.score-bar .bar.poor {
    background: var(--google-orange-dark);
}

.score-bar .bar.critical {
    background: var(--google-red);
}

.score-value {
    text-align: right;
    font-weight: 500;
}

.score-value.excellent {
    color: var(--google-green-dark);
}

.score-value.good {
    color: var(--google-blue-dark);
}

.score-value.average {
    color: var(--google-orange-dark);
}

.score-value.poor, .score-value.critical {
    color: var(--google-red-dark);
}

.overall-summary {
    text-align: center;
}

.overall-summary h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
}

.overall-summary p {
    color: var(--text-secondary);
}

/* Key Actions */
.key-actions {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.key-actions h4, .key-actions h5 {
    margin-bottom: var(--space-md);
}

.key-actions ol {
    padding-left: var(--space-xl);
}

.key-actions li {
    padding: var(--space-sm) 0;
}

/* Conclusion section spacing */
.conclusion {
    margin-top: var(--space-3xl); /* Added extra spacing before conclusion */
}

/* Priority Matrix */
.priority-matrix {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.priority-group {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2);
}

.priority-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-bottom: 2px solid;
}

.priority-group.critical .priority-header {
    background: var(--google-red-50);
    border-bottom-color: var(--google-red);
}

.priority-group.high .priority-header {
    background: var(--google-orange-50);
    border-bottom-color: var(--google-orange);
}

.priority-group.medium .priority-header {
    background: var(--google-yellow-50);
    border-bottom-color: var(--google-yellow);
}

.priority-group.low .priority-header {
    background: var(--google-blue-50);
    border-bottom-color: var(--google-blue);
}

.priority-header .material-icons {
    font-size: 1.5rem;
}

.priority-group.critical .priority-header .material-icons {
    color: var(--google-red);
}

.priority-group.high .priority-header .material-icons {
    color: var(--google-orange);
}

.priority-group.medium .priority-header .material-icons {
    color: var(--google-yellow);
}

.priority-group.low .priority-header .material-icons {
    color: var(--google-blue);
}

.priority-header h3 {
    flex: 1;
}

.timeline {
    padding: var(--space-xs) var(--space-md);
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
}

.recommendation-cards {
    padding: var(--space-lg);
    display: grid;
    gap: var(--space-lg);
}

.rec-card {
    border: 1px solid var(--border-light);
}

.rec-header {
    position: relative;
}

.rec-number {
    width: 32px;
    height: 32px;
    background: var(--google-blue);
    color: var(--text-inverse);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.rec-header h4 {
    flex: 1;
}

.time-estimate {
    padding: var(--space-xs) var(--space-md);
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.solution, .examples, .checklist {
    margin-top: var(--space-md);
}

.solution h5, .examples h5, .checklist h5 {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.expected-impact {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: var(--google-green-50);
    border-radius: var(--radius-sm);
    color: var(--google-green-dark);
    font-weight: 500;
}

.expected-impact .material-icons {
    font-size: 1.25rem;
}

/* ROI Calculator */
.roi-calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-xl);
}

.roi-inputs, .roi-results {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
}

.investment-breakdown {
    margin-top: var(--space-lg);
}

.investment-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border-light);
}

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

.investment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--border-medium);
    font-weight: 700;
}

.total-amount {
    font-size: 1.5rem;
    color: var(--google-blue-dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.result-card {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid var(--border-light);
}

.result-card.highlight {
    background: var(--google-green-50);
    border-color: var(--google-green);
}

.result-metric {
    margin-bottom: var(--space-sm);
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--google-green-dark);
    font-family: var(--font-google-sans);
}

.result-detail p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.roi-summary {
    display: flex;
    justify-content: space-around;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 2px solid var(--border-light);
}

.roi-metric {
    text-align: center;
}

.roi-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.roi-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--google-green-dark);
    font-family: var(--font-google-sans);
}

/* Metrics Dashboard */
.metrics-dashboard {
    display: grid;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.metric-group {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border-light);
}

.metric-group h3 {
    margin-bottom: var(--space-lg);
}

.metrics-list {
    display: grid;
    gap: var(--space-lg);
}

.metric-item {
    display: grid;
    gap: var(--space-sm);
}

.metric-name {
    font-weight: 500;
}

.metric-progress {
    display: grid;
    gap: var(--space-sm);
}

.progress-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--google-blue);
    transition: width var(--transition-standard);
}

.progress-bar.negative .progress {
    background: var(--google-red);
}

.current, .target {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Final Recommendations */
.recommendation-summary {
    margin-top: var(--space-xl);
}

.key-points {
    display: grid;
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.point {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--google-blue);
}

.point .material-icons {
    color: var(--google-blue);
    font-size: 1.5rem;
}

.action-plan {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--google-blue-50);
    border-radius: var(--radius-md);
}

.action-plan h4 {
    margin-bottom: var(--space-md);
}

.action-plan ol {
    padding-left: var(--space-xl);
}

.action-plan li {
    padding: var(--space-sm) 0;
}

.success-factors {
    margin-top: var(--space-xl);
}

.success-factors h4 {
    margin-bottom: var(--space-md);
}

.success-factors ul {
    list-style: none;
    padding: 0;
}

.success-factors li {
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
}

.success-factors li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--google-green);
    font-weight: bold;
}

/* Footer */
.footer {
    background: var(--google-grey-900);
    color: var(--text-inverse);
    padding: var(--space-3xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h4 {
    font-family: var(--font-google-sans);
    font-weight: 500;
    margin-bottom: var(--space-md);
    color: var(--text-inverse);
}

.footer-section p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-md);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    padding: var(--space-xs) 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    color: var(--google-blue-light);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--google-blue);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .key-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .swot-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .score-summary {
        grid-template-columns: 1fr;
    }
    
    .roi-calculator {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .key-metrics {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .swot-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs {
        padding: var(--space-sm) 0;
    }
    
    .tab-link {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.8rem;
        min-height: 40px;
    }
    
    .tab-link .material-icons {
        font-size: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
    
    .timeline-grid,
    .wins-grid,
    .functionality-grid,
    .tech-issues-grid {
        grid-template-columns: 1fr;
    }
    
    .funnel-steps {
        flex-direction: column;
    }
    
    .funnel-arrow {
        transform: rotate(90deg);
    }
    
    .investment-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero {
        padding: var(--space-xl) 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .metric-card {
        padding: var(--space-md);
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .tabs {
        gap: 2px;
    }
    
    .tab-link {
        padding: var(--space-sm);
        font-size: 0.75rem;
        min-height: 36px;
    }
    
    .tab-link span:not(.material-icons) {
        display: none;
    }
    
    .critical-alert {
        flex-direction: column;
        text-align: center;
    }
    
    .score-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 500px;
    }
}

/* Print Styles */
@media print {
    .nav-tabs,
    .header {
        position: static;
    }
    
    .hero {
        page-break-inside: avoid;
    }
    
    .metric-card,
    .issue-card,
    .rec-card {
        page-break-inside: avoid;
        break-inside: avoid;
    }
    
    * {
        color-adjust: exact;
        print-color-adjust: exact;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1 { font-size: 24pt; }
    h2 { font-size: 20pt; }
    h3 { font-size: 16pt; }
    h4 { font-size: 14pt; }
    h5 { font-size: 12pt; }
    h6 { font-size: 11pt; }
}

/* Accessibility */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus States */
button:focus,
.tab-link:focus,
a:focus {
    outline: 2px solid var(--google-blue);
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --shadow-1: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
        --shadow-2: 0 1px 2px 0 rgba(0, 0, 0, 0.5), 0 2px 6px 2px rgba(0, 0, 0, 0.25);
        --shadow-3: 0 4px 8px 3px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.5);
        --border-light: #000000;
        --border-medium: #000000;
    }
    
    .metric-card,
    .card,
    .summary-card {
        border: 2px solid var(--border-light);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}