/* Company Dashboard Styles */

/* Modern Fonts - Inter + Space Grotesk */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Reset & Global styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #025982;
    --primary-dark: #01425e;
    --primary-light: #f0f7fb;
    --primary-rgb: 2, 89, 130;
    --accent-color: #ff6b6b;
    --accent-hover: #ff5252;
    --text-primary: #333333;
    --text-secondary: #6c757d;
    --text-light: #8a94a6;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --bg-gradient-light: linear-gradient(135deg, #f8f9fa 0%, #e9f2f9 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --transition-speed: 0.3s;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.preloader::after {
    content: '';
    width: 40px;
    height: 40px;
    border: 3px solid rgba(var(--primary-rgb), 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--bg-gradient);
    z-index: 99998;
    width: 0%;
    transition: width 0.1s linear;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout styles */
.company-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg-white);
}

.company-content {
    flex: 1;
}

.company-footer {
    margin-top: auto;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    text-align: center;
    padding: 10rem 1rem 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fb 100%);
    margin-bottom: 5rem;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    clip-path: polygon(40% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    animation: fadeInUp 1.2s ease;
}

.hero-description {
    margin: 0 auto 3rem;
    max-width: 48rem;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    animation: fadeInUp 1.2s ease 0.2s both;
    padding: 0 10px;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

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

.hero-stat-value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 0.25rem;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.4s both;
}

.hero-cta .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.25);
    position: relative;
    overflow: hidden;
}

.hero-cta .btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.35);
}

.hero-cta .btn-hero-primary:hover::before {
    left: 100%;
}

.hero-cta .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-sans);
    text-decoration: none;
    transition: var(--transition);
}

.hero-cta .btn-hero-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(var(--primary-rgb), 0.2);
}

.hero-shape-1, .hero-shape-2 {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero-shape-1 {
    top: -5%;
    right: -3%;
    width: 25%;
    height: 40%;
    background: rgba(2, 89, 130, 0.1);
}

.hero-shape-2 {
    bottom: -10%;
    left: -8%;
    width: 35%;
    height: 50%;
    background: rgba(2, 89, 130, 0.05);
}

/* Section Styles */
.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.3;
    padding: 0.15em 0;
}

.section-title:after {
    display: none !important;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 48rem;
    margin: 2rem auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Dashboard Sections */
.dashboard-section, .dashboard-benefits-section, .data-visualization-section {
    padding: 6rem 0;
}

/* Dashboard Metrics */
.dashboard-metrics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 12px rgba(2, 89, 130, 0.2);
}

.metric-icon svg {
    color: white;
}

.metric-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.metric-change {
    font-size: 0.9rem;
    font-weight: 500;
}

.metric-change.positive {
    color: #4caf50;
}

.metric-change.negative {
    color: #f44336;
}

/* Dashboard Benefits Section */
.dashboard-benefits-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, #ffffff 100%);
    margin: 6rem 0;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.dashboard-benefits-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover::after {
    width: 200%;
    height: 200%;
    bottom: -50%;
}

.benefit-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 6px 12px rgba(2, 89, 130, 0.2);
    transition: transform var(--transition-speed) ease;
}

.benefit-icon svg {
    color: white;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-content {
    text-align: center;
    width: 100%;
}

.benefit-content h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.benefit-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Data Visualization Section */
.data-visualization-section {
    padding: 6rem 0;
}

/* Charts Section */
.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.chart-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chart-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.chart-wrapper:hover::before {
    transform: scaleX(1);
}

.chart-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.chart-placeholder {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart-placeholder img {
    max-width: 100%;
    height: auto;
}

/* Chart Fallbacks */
.chart-fallback {
    width: 100%;
    text-align: center;
}

.bar-chart, .funnel-chart {
    width: 100%;
    margin: 0 auto;
}

.bar-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.bar-label {
    width: 120px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.bar-track {
    flex-grow: 1;
    height: 12px;
    background: var(--bg-light);
    border-radius: 6px;
    margin: 0 1rem;
}

.bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 6px;
}

.bar-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    width: 40px;
    text-align: right;
}

.funnel-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 85%;
    margin: 0 auto;
}

.funnel-step {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: width 0.5s;
}

.funnel-label {
    font-weight: 500;
}

.funnel-value {
    font-weight: 600;
}

/* AI Analytics Section */
.ai-analytics-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    margin: 6rem 0;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.ai-analytics-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    opacity: 0.8;
}

.ai-analytics-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2.5rem;
    align-items: center;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.analytics-content {
    padding-right: 1.5rem;
}

.analytics-content .section-title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    padding: 0.15em 0;
}

.analytics-content .section-title:after {
    left: 0;
    transform: none;
}

.analytics-content .section-description {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
    color: var(--text-secondary);
}

.analytics-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    padding-left: 1.2rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.3rem 1.8rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.12);
}

.highlight-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

.analytics-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dashboard-screenshot {
    width: 100%;
    max-width: 1500px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 3px solid rgba(255, 255, 255, 0.8);
    object-fit: contain;
}

.dashboard-screenshot:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-caption {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 700px;
}

.image-caption strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

/* Detailed Scoring Section */
.detailed-scoring-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fb 100%);
    margin: 8rem 0;
    position: relative;
    overflow: visible;
}

.detailed-scoring-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
    opacity: 0.7;
}

.detailed-scoring-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    gap: 3rem;
}

.scoring-content {
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.scoring-content .section-title {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    padding: 0.15em 0;
}

.scoring-content .section-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 0 3.5rem 0;
    color: var(--text-secondary);
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.scoring-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 0;
    width: 100%;
    max-width: 1200px;
}

.scoring-highlights .highlight-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 2.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.detailed-image-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 1rem;
}

.detailed-screenshot {
    width: 100%;
    max-width: 1500px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    border: 2px solid rgba(255, 255, 255, 0.9);
    object-fit: contain;
}

.detailed-screenshot:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Animation */
.benefit-item, .metric-card, .chart-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.benefit-item.animate-in, .metric-card.animate-in, .chart-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Large Screen Optimization */
@media (min-width: 1441px) {
    .ai-analytics-container {
        max-width: 1900px;
        gap: 3rem;
        grid-template-columns: 1fr 1.25fr;
    }
    
    .dashboard-screenshot {
        max-width: 1700px;
    }
    
    .analytics-content .section-title {
        font-size: 2.2rem;
    }
    
    .analytics-content .section-description {
        font-size: 1.1rem;
    }
    
    .highlight-item {
        padding: 1.5rem 2rem;
        font-size: 1rem;
    }
    
    /* Detailed Scoring Section - Large Screens */
    .detailed-scoring-section {
        padding: 10rem 0;
        margin: 10rem 0;
    }
    
    .detailed-scoring-container {
        max-width: 1800px;
        gap: 4rem;
        padding: 0 4rem;
    }
    
    .scoring-content {
        max-width: 1200px;
    }
    
    .detailed-screenshot {
        max-width: 1700px;
        width: 100%;
    }
    
    .scoring-content .section-title {
        font-size: 3.2rem;
        margin-bottom: 3rem;
    }
    
    .scoring-content .section-description {
        font-size: 1.3rem;
        margin: 0 0 4rem 0;
        max-width: 1000px;
    }
    
    .scoring-highlights {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1400px;
        gap: 3rem;
    }
    
    .scoring-highlights .highlight-item {
        padding: 3rem 3.5rem;
        font-size: 1.15rem;
    }
}

/* Enhanced Responsive Styles */
@media (max-width: 1440px) {
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    
    .hero-section {
        padding: 7.5rem 1.5rem 5.5rem;
        min-height: 100vh;
    }
    
    .ai-analytics-container {
        max-width: 1500px;
        gap: 2.2rem;
        grid-template-columns: 1fr 1.25fr;
    }
    
    .dashboard-screenshot {
        max-width: 1300px;
    }
    
    /* Detailed Scoring Section - 1440px */
    .detailed-scoring-section {
        padding: 8rem 0;
        margin: 8rem 0;
    }
    
    .detailed-scoring-container {
        max-width: 1400px;
        gap: 2.5rem;
        padding: 0 3rem;
    }
    
    .scoring-content {
        max-width: 1000px;
    }
    
    .detailed-screenshot {
        max-width: 1300px;
        width: 100%;
    }
    
    .scoring-content .section-title {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
    }
    
    .scoring-content .section-description {
        font-size: 1.2rem;
        margin: 0 0 3.5rem 0;
        max-width: 900px;
    }
    
    .scoring-highlights {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2.2rem;
        max-width: 1100px;
    }
    
    .charts-container {
        grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding: 0 2rem;
    }
    
    .hero-section {
        padding: 7rem 1.5rem 5rem;
        min-height: 100vh;
    }
    
    .dashboard-section, 
    .dashboard-benefits-section, 
    .data-visualization-section {
        padding: 5.5rem 0;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        margin: 1.75rem auto 2.5rem;
    }
    
    .charts-container {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
    
    .dashboard-benefits-section {
        margin: 5rem 0;
    }
    
    /* Detailed Scoring Section - 1280px */
    .detailed-scoring-section {
        padding: 6rem 0;
        margin: 6rem 0;
    }
    
    .detailed-scoring-container {
        gap: 2.5rem;
        padding: 0 2.5rem;
    }
    
    .scoring-content {
        max-width: 900px;
    }
    
    .detailed-screenshot {
        max-width: 1200px;
        width: 100%;
    }
    
    .scoring-content .section-title {
        font-size: 2.5rem;
        margin-bottom: 2.2rem;
    }
    
    .scoring-content .section-description {
        font-size: 1.15rem;
        margin: 0 0 3rem 0;
        max-width: 800px;
    }
    
    .scoring-highlights {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        max-width: 1000px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 6rem 1.5rem 4rem;
        min-height: 100vh;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .section-description {
        font-size: 1.05rem;
    }
    
    .dashboard-section, 
    .dashboard-benefits-section, 
    .data-visualization-section {
        padding: 5rem 0;
    }
    
    /* AI Analytics Section for tablets */
    .ai-analytics-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .analytics-content {
        padding-right: 0;
    }
    
    .analytics-content .section-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .analytics-content .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .analytics-content .section-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .analytics-highlights {
        padding-left: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Hide image on tablets */
    .analytics-image {
        display: none;
    }
    
    /* Detailed Scoring Section - 1024px */
    .detailed-scoring-section {
        padding: 5rem 0;
        margin: 5rem 0;
    }
    
    .detailed-scoring-container {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .scoring-content {
        max-width: 700px;
    }
    
    .scoring-content .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .scoring-content .section-description {
        font-size: 1.1rem;
        margin: 0 0 2.5rem 0;
        max-width: 650px;
    }
    
    .scoring-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .scoring-highlights .highlight-item {
        padding: 1.8rem 2.2rem;
        font-size: 1rem;
    }
    
    /* Hide detailed image on tablets */
    .detailed-image-container {
        display: none;
    }
    
    .dashboard-metrics-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }
    
    .metric-icon {
        width: 55px;
        height: 55px;
    }
    
    .metric-value {
        font-size: 1.85rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .charts-container {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .chart-wrapper {
        padding: 1.75rem;
    }
    
    .dashboard-benefits-section {
        padding: 6rem 0;
        margin: 4.5rem 0;
    }
    
    .benefit-content h3 {
        font-size: 1.25rem;
    }
    
    .benefit-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-section {
        padding: 7rem 1rem 3.5rem;
        margin-bottom: 3rem;
        min-height: 55vh;
    }

    .hero-stats-row {
        gap: 1.5rem;
    }

    .hero-stat-value {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    /* AI Analytics Section Responsive */
    .ai-analytics-container {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        padding: 0 1rem;
    }
    
    .analytics-content {
        padding-right: 0;
    }
    
    .analytics-content .section-title {
        text-align: center;
        font-size: 1.85rem;
    }
    
    .analytics-content .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .analytics-content .section-description {
        text-align: center;
        font-size: 1rem;
    }
    
    .analytics-highlights {
        padding-left: 0;
    }
    
    /* Hide image on mobile */
    .analytics-image {
        display: none;
    }
    
    /* Detailed Scoring Section - 768px */
    .detailed-scoring-section {
        padding: 4rem 0;
        margin: 4rem 0;
    }
    
    .detailed-scoring-container {
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .scoring-content {
        max-width: 100%;
    }
    
    .scoring-content .section-title {
        font-size: 2rem;
        margin-bottom: 1.8rem;
    }
    
    .scoring-content .section-description {
        font-size: 1.05rem;
        margin: 0 0 2rem 0;
        max-width: 100%;
    }
    
    .scoring-highlights {
        grid-template-columns: 1fr;
        gap: 1.3rem;
        max-width: 100%;
    }
    
    .scoring-highlights .highlight-item {
        padding: 1.5rem 2rem;
        font-size: 0.95rem;
    }
    
    /* Hide detailed image on mobile */
    .detailed-image-container {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .section-title:after {
        width: 4rem;
    }
    
    .section-description {
        font-size: 1rem;
        margin: 1.5rem auto 2.25rem;
    }
    
    .dashboard-section, 
    .data-visualization-section {
        padding: 4rem 0;
    }
    
    .dashboard-benefits-section {
        padding: 4.5rem 0;
        margin: 3.5rem 0;
    }
    
    .dashboard-metrics-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1.25rem;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
    }
    
    .metric-title {
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .chart-wrapper {
        padding: 1.5rem;
    }
    
    .chart-title {
        font-size: 1.15rem;
    }
    
    .bar-item {
        max-width: 95%;
    }
    
    .bar-label {
        width: 100px;
        font-size: 0.85rem;
    }
    
    .funnel-chart {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 5rem 0.75rem 3rem;
        min-height: 100vh;
        margin-bottom: 2.5rem;
    }
    
    .ai-analytics-section {
        padding: 4rem 0;
        margin: 3rem 0;
    }
    
    .analytics-content .section-title {
        font-size: 1.65rem;
    }
    
    .analytics-content .section-description {
        font-size: 0.95rem;
    }
    
    .highlight-item {
        padding: 1.25rem;
        font-size: 0.95rem;
    }
    
    /* Detailed Scoring Section - 576px */
    .detailed-scoring-section {
        padding: 3rem 0;
        margin: 3rem 0;
    }
    
    .detailed-scoring-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .scoring-content .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .scoring-content .section-description {
        font-size: 1rem;
        margin: 0 0 1.8rem 0;
    }
    
    .scoring-highlights {
        gap: 1.2rem;
    }
    
    .scoring-highlights .highlight-item {
        padding: 1.3rem 1.6rem;
        font-size: 0.9rem;
    }
    
    
    .image-caption {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.65rem;
    }
    
    .section-description {
        font-size: 0.95rem;
        margin: 1.25rem auto 2rem;
    }
    
    .dashboard-section, 
    .data-visualization-section {
        padding: 3.5rem 0;
    }
    
    .dashboard-benefits-section {
        padding: 4rem 0;
        margin: 3rem 0;
        border-radius: var(--border-radius);
    }
    
    .dashboard-metrics-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .benefit-content h3 {
        font-size: 1.15rem;
    }
    
    .benefit-content p {
        font-size: 0.95rem;
    }
    
    .chart-wrapper {
        padding: 1.25rem;
    }
    
    .chart-placeholder {
        min-height: 200px;
    }
    
    .chart-title {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .bar-item {
        margin-bottom: 0.75rem;
    }
    
    .bar-track {
        height: 10px;
        margin: 0 0.75rem;
    }
    
    .bar-label {
        width: 90px;
        font-size: 0.8rem;
    }
    
    .bar-value {
        font-size: 0.8rem;
        width: 35px;
    }
    
    .funnel-step {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 4.5rem 0.5rem 2.5rem;
        min-height: 100vh;
    }
    
    /* Detailed Scoring Section - 480px */
    .detailed-scoring-section {
        padding: 2.5rem 0;
        margin: 2.5rem 0;
    }
    
    .detailed-scoring-container {
        gap: 1.8rem;
        padding: 0 1rem;
    }
    
    .scoring-content .section-title {
        font-size: 1.6rem;
        margin-bottom: 1.3rem;
    }
    
    .scoring-content .section-description {
        font-size: 0.9rem;
        margin: 0 0 1.5rem 0;
    }
    
    .scoring-highlights .highlight-item {
        padding: 1.2rem 1.4rem;
        font-size: 0.85rem;
    }
    
    .dashboard-metrics-container {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .metric-card {
        padding: 1.25rem;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-value {
        font-size: 1.65rem;
    }
}

@media (max-width: 375px) {
    .hero-section {
        padding: 4.5rem 0.5rem 2.5rem;
        min-height: 100vh;
    }
    
    .hero-content {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.85rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .dashboard-section, 
    .data-visualization-section {
        padding: 3rem 0;
    }
    
    .dashboard-benefits-section {
        padding: 3.5rem 0;
        margin: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title:after {
        width: 3.5rem;
        height: 0.2rem;
    }
    
    /* Detailed Scoring Section - 375px */
    .detailed-scoring-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .detailed-scoring-container {
        gap: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .scoring-content .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .scoring-content .section-description {
        font-size: 0.85rem;
        margin: 0 0 1.3rem 0;
    }
    
    .scoring-highlights .highlight-item {
        padding: 1rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .benefit-item, 
    .chart-wrapper {
        padding: 1rem;
    }
    
    .chart-placeholder {
        min-height: 180px;
    }
}