/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0a192f;
    --primary-blue: #112240;
    --accent-blue: #2563eb;
    --accent-silver: #94a3b8;
    --light-blue: #233554;
    --text-white: #ffffff;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    --shadow-sm: 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);
}

body.premium-corporate {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.premium-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Animation */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-core {
    position: relative;
    width: 200px;
    height: 200px;
}

.corporate-loader {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.office-structure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 80px;
}

.workspace-floor {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15px;
    background: var(--accent-blue);
    border-radius: 3px;
    animation: workspace-flow 2s infinite linear;
}

.meeting-room {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 25px;
    height: 25px;
    background: var(--light-blue);
    border-radius: 5px;
    transform: rotate(0deg);
    animation: meeting-pulse 1.5s infinite alternate;
}

.executive-suite {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 3px;
    animation: executive-glow 2s infinite alternate;
}

.corporate-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
}

.productivity-chart {
    position: absolute;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 3px solid var(--accent-blue);
    border-radius: 8px;
}

.productivity-chart:first-child {
    top: 20px;
    left: 20px;
    animation: chart-grow 4s infinite alternate;
}

.productivity-chart:nth-child(2) {
    bottom: 20px;
    right: 20px;
    animation: chart-grow 3s infinite alternate-reverse;
}

.data-stream {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 4px;
    animation: data-stream-move 2s infinite linear;
}

.loader-text {
    margin-top: 30px;
    font-size: 18px;
    color: var(--accent-blue);
    letter-spacing: 2px;
    animation: text-pulse 2s infinite alternate;
}

/* Enhanced Hero Section - Dark Background */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    overflow: hidden;
    color: var(--text-white);
}

.hero-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation: orbit-rotate 20s infinite linear;
}

.ring-2 {
    width: 500px;
    height: 500px;
    animation: orbit-rotate 25s infinite linear reverse;
}

.ring-3 {
    width: 700px;
    height: 700px;
    animation: orbit-rotate 30s infinite linear;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

/* Office-themed particles */
.particle.pen {
    width: 12px;
    height: 2px;
    background: var(--accent-blue);
    transform: rotate(45deg);
    animation: pen-float 15s infinite linear;
}

.particle.document {
    width: 8px;
    height: 10px;
    background: var(--text-white);
    border: 1px solid var(--accent-blue);
    animation: document-float 20s infinite linear;
}

.particle.chart {
    width: 10px;
    height: 6px;
    background: transparent;
    border: 1px solid var(--accent-silver);
    border-radius: 2px;
    animation: chart-float 18s infinite linear;
}

.particle.briefcase {
    width: 12px;
    height: 8px;
    background: var(--accent-silver);
    border-radius: 2px;
    animation: briefcase-float 22s infinite linear;
}

.particle.coffee {
    width: 6px;
    height: 8px;
    background: #8B4513;
    border-radius: 50% 50% 0 0;
    animation: coffee-float 25s infinite linear;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text-content {
    z-index: 2;
}

.corporate-breadcrumb {
    margin-bottom: 30px;
}

.corporate-breadcrumb ol {
    display: flex;
    list-style: none;
    gap: 10px;
    font-size: 0.9rem;
}

.corporate-breadcrumb a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}

.corporate-breadcrumb a:hover {
    color: var(--text-white);
}

.corporate-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--text-gray);
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.title-line {
    display: block;
    transform: translateY(20px);
    opacity: 0;
    animation: title-line-appear 0.8s forwards;
}

.title-line.accent {
    color: var(--accent-silver);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 90%;
    line-height: 1.8;
}

.critical-indicators {
    display: flex;
    gap: 30px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(17, 34, 64, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
}

.indicator:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.indicator-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: 50%;
    color: var(--accent-blue);
    font-size: 1.2rem;
}

.indicator-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.indicator-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-visual-content {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corporate-visualization {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.office-layout {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
}

.workspace-floor {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: var(--primary-blue);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(37, 99, 235, 0.3);
}

/* Office Desk */
.desk-cluster {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 25px;
}

.desk {
    width: 60px;
    height: 40px;
    background: var(--light-blue);
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desk::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-silver);
    border-radius: 2px;
}

/* Office Items on Desk */
.desk-item {
    position: absolute;
    background: var(--text-white);
    border-radius: 2px;
}

.desk-item.monitor {
    width: 25px;
    height: 18px;
    background: var(--text-white);
    border: 1px solid var(--accent-blue);
    border-radius: 3px;
}

.desk-item.monitor::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--primary-dark);
    border-radius: 1px;
    animation: screen-flicker 3s infinite;
}

.desk-item.keyboard {
    width: 20px;
    height: 8px;
    background: var(--accent-silver);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.desk-item.pen-holder {
    width: 6px;
    height: 10px;
    background: var(--accent-silver);
    top: -15px;
    right: 5px;
    border-radius: 1px;
}

.desk-item.pen-holder::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 1px;
}

.desk-item.coffee-mug {
    width: 8px;
    height: 10px;
    background: var(--text-white);
    border: 1px solid var(--accent-silver);
    top: -15px;
    left: 5px;
    border-radius: 2px 2px 0 0;
}

.desk-item.coffee-mug::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #8B4513;
    border-radius: 1px;
}

/* Office Chair */
.desk-chair {
    position: absolute;
    width: 25px;
    height: 30px;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.chair-seat {
    position: absolute;
    bottom: 0;
    width: 25px;
    height: 8px;
    background: var(--accent-silver);
    border-radius: 2px 2px 0 0;
}

.chair-back {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
    background: var(--accent-silver);
    border-radius: 2px;
}

.chair-base {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 5px;
    background: var(--text-gray);
    border-radius: 2px;
}

/* Meeting Table */
.meeting-area {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 50px;
}

.conference-table {
    width: 100px;
    height: 30px;
    background: var(--light-blue);
    border-radius: 5px;
    position: relative;
}

.conference-table::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-silver);
    border-radius: 2px;
}

.table-laptop {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 20px;
    height: 12px;
    background: var(--text-white);
    border: 1px solid var(--accent-blue);
    border-radius: 2px;
}

.table-documents {
    position: absolute;
    top: 5px;
    right: 15px;
    width: 15px;
    height: 10px;
    background: var(--text-white);
    border: 1px solid var(--accent-blue);
    border-radius: 1px;
}

/* Office Plant */
.office-plant {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 15px;
    height: 25px;
}

.plant-pot {
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 8px;
    background: var(--accent-silver);
    border-radius: 2px 2px 0 0;
}

.plant-stem {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 12px;
    background: #228B22;
}

.plant-leaves {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #32CD32;
    border-radius: 50%;
    animation: plant-sway 4s infinite ease-in-out;
}

/* Air Conditioning Unit */
.ac-unit {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 25px;
    background: var(--light-blue);
    border: 2px solid var(--accent-blue);
    border-radius: 5px;
    animation: ac-cooling 2s infinite alternate;
}

.ac-vent {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    height: 8px;
    background: var(--primary-dark);
    border-radius: 2px;
    overflow: hidden;
}

.ac-vent::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    animation: vent-airflow 2s infinite linear;
}

/* Office Lighting */
.office-lighting {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-silver) 20%, 
        var(--accent-silver) 80%, 
        transparent 100%);
    border-radius: 2px;
    opacity: 0.3;
    animation: lighting-pulse 3s infinite alternate;
}

/* Data Network Visualization */
.data-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.network-node {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: node-pulse 2s infinite;
}

.network-connection {
    position: absolute;
    height: 2px;
    background: var(--accent-blue);
    transform-origin: left center;
    opacity: 0.3;
    animation: data-transmit 3s infinite;
}

.corporate-performance {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
}

.performance-panel {
    display: flex;
    justify-content: space-around;
    background: rgba(17, 34, 64, 0.8);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.performance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.performance-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.performance-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.performance-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.performance-status.optimal {
    background: var(--accent-blue);
    box-shadow: 0 0 5px var(--accent-blue);
}

/* Corporate Areas Section - White Background */
.corporate-areas-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.area-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.5s ease;
}

.area-card:hover::before {
    left: 100%;
}

.area-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.area-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 2rem;
    transition: var(--transition);
}

.area-card:hover .area-icon {
    background: var(--accent-blue);
    color: var(--bg-white);
    transform: rotateY(180deg);
}

.area-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.area-card p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.area-spec {
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Impact Section - Light Background */
.impact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.impact-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.impact-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.impact-visual {
    margin-bottom: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

.productivity-metric {
    position: relative;
    width: 100%;
    height: 100%;
}

.metric-gauge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
}

.performance-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
    transform-origin: left center;
    animation: performance-rise 2s infinite alternate;
}

.error-reduction {
    position: relative;
    width: 100%;
    height: 100%;
}

.error-chart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    border: 2px solid var(--text-gray);
    border-radius: 5px;
}

.reduction-trend {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 2px;
    background: var(--accent-blue);
    animation: trend-down 2s infinite alternate;
}

.energy-savings {
    position: relative;
    width: 100%;
    height: 100%;
}

.savings-meter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
}

.cost-reduction {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: savings-pulse 2s infinite alternate;
}

.satisfaction-metric {
    position: relative;
    width: 100%;
    height: 100%;
}

.satisfaction-gauge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid var(--text-gray);
    border-radius: 50%;
}

.happiness-index {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: happiness-glow 2s infinite alternate;
}

.impact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 15px;
    line-height: 1;
}

.impact-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.impact-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.impact-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.impact-stats .stat {
    background: rgba(37, 99, 235, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Solutions Showcase - White Background */
.solutions-showcase {
    padding: 100px 0;
    background: var(--bg-white);
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
}

.showcase-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .card-glow {
    opacity: 1;
}

.card-inner {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--bg-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.5rem;
    margin-right: 15px;
}

.icon-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    animation: icon-pulse 2s infinite;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.card-description {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.card-ideal {
    background: rgba(37, 99, 235, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--accent-blue);
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.feature-list i {
    color: var(--accent-blue);
    margin-right: 10px;
    margin-top: 3px;
}

.business-benefits {
    background: rgba(37, 99, 235, 0.03);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-blue);
}

.business-benefits h4 {
    color: var(--accent-blue);
    margin-bottom: 8px;
    font-size: 1rem;
}

.business-benefits p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.card-footer {
    display: flex;
    justify-content: flex-end;
}

.performance-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Features Section - Light Background */
.features-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.features-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.feature-visual {
    margin-bottom: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

.cognitive-performance {
    position: relative;
    width: 100%;
    height: 100%;
}

.brain-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 50px;
    border: 2px solid var(--text-gray);
    border-radius: 50% 50% 40% 40%;
}

.neural-activity {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    animation: neural-pulse 3s infinite;
}

.roi-metrics {
    position: relative;
    width: 100%;
    height: 100%;
}

.roi-chart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    border: 2px solid var(--text-gray);
    border-radius: 5px;
}

.investment-return {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 2px;
    background: var(--accent-blue);
    animation: roi-growth 2s infinite alternate;
}

.business-continuity {
    position: relative;
    width: 100%;
    height: 100%;
}

.timeline-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 4px;
    background: var(--text-gray);
    border-radius: 2px;
}

.continuity-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-blue);
    border-radius: 8px;
    animation: shield-protect 2s infinite alternate;
}

.support-network {
    position: relative;
    width: 100%;
    height: 100%;
}

.support-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.response-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    animation: network-expand 3s infinite;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.feature-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature-stats .stat {
    background: rgba(37, 99, 235, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Case Studies Section - White Background */
.case-studies-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.case-studies-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-studies-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.case-studies-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px 30px;
    transition: var(--transition);
    border: 1px solid var(--bg-lighter);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.case-study-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: var(--shadow-lg);
}

.case-study-visual {
    margin-bottom: 25px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-animation {
    position: relative;
    width: 100px;
    height: 100px;
}

.building-structure {
    position: relative;
    width: 100%;
    height: 100%;
}

.floor-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 5px 5px 0 0;
}

.energy-flow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 30px;
    background: var(--accent-blue);
    animation: energy-stream 2s infinite alternate;
}

.coworking-space {
    position: relative;
    width: 100%;
    height: 100%;
}

.member-cluster {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.member-cluster::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: member-pulse 2s infinite;
}

.satisfaction-meter {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 2px;
    animation: satisfaction-rise 2s infinite alternate;
}

.headquarters-building {
    position: relative;
    width: 100%;
    height: 100%;
}

.air-quality-flow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: 5px;
}

.health-metrics {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 30px;
    background: var(--accent-blue);
    border-radius: 3px;
    animation: health-improve 2s infinite alternate;
}

.case-study-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-study-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.case-study-result {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 15px;
}

.case-study-desc {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex: 1;
}

.case-study-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.case-study-stats .stat {
    background: rgba(37, 99, 235, 0.1);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* CTA Section - Light Background */
.cta-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-call {
    background: var(--accent-blue);
    color: var(--bg-white);
}

.cta-call:hover {
    background: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cta-email {
    background: transparent;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.cta-email:hover {
    background: var(--accent-blue);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Animations */
@keyframes workspace-flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes meeting-pulse {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(0deg) scale(1.1); }
}

@keyframes executive-glow {
    0% { box-shadow: 0 0 5px var(--accent-silver); }
    100% { box-shadow: 0 0 15px var(--accent-silver); }
}

@keyframes chart-grow {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes data-stream-move {
    0% { transform: translate(-50%, -50%); }
    100% { transform: translate(calc(-50% + 20px), -50%); }
}

@keyframes text-pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pen-float {
    0% { transform: rotate(45deg) translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: rotate(45deg) translateY(-100px) translateX(50px); opacity: 0; }
}

@keyframes document-float {
    0% { transform: rotate(-15deg) translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: rotate(-15deg) translateY(-120px) translateX(-30px); opacity: 0; }
}

@keyframes chart-float {
    0% { transform: rotate(10deg) translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: rotate(10deg) translateY(-150px) translateX(40px); opacity: 0; }
}

@keyframes briefcase-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-130px) translateX(-50px); opacity: 0; }
}

@keyframes coffee-float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-140px) translateX(60px); opacity: 0; }
}

@keyframes screen-flicker {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes plant-sway {
    0%, 100% { transform: translateX(-50%) rotate(-5deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

@keyframes ac-cooling {
    0% { box-shadow: 0 0 5px var(--accent-blue); }
    100% { box-shadow: 0 0 20px var(--accent-blue); }
}

@keyframes vent-airflow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes lighting-pulse {
    0% { opacity: 0.2; }
    100% { opacity: 0.4; }
}

@keyframes node-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

@keyframes data-transmit {
    0% { transform: scaleX(0); opacity: 0; }
    50% { transform: scaleX(1); opacity: 0.5; }
    100% { transform: scaleX(0); opacity: 0; }
}

@keyframes title-line-appear {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes performance-rise {
    0% { transform: translate(-50%, -50%) rotate(-45deg); }
    100% { transform: translate(-50%, -50%) rotate(45deg); }
}

@keyframes trend-down {
    0% { transform: translate(-50%, -50%) rotate(10deg); }
    100% { transform: translate(-50%, -50%) rotate(-10deg); }
}

@keyframes savings-pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes happiness-glow {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

@keyframes neural-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.1); opacity: 0; }
}

@keyframes roi-growth {
    0% { transform: translate(-50%, -50%) scaleX(0.8); }
    100% { transform: translate(-50%, -50%) scaleX(1.2); }
}

@keyframes shield-protect {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes network-expand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

@keyframes energy-stream {
    0% { height: 20px; }
    100% { height: 40px; }
}

@keyframes member-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes satisfaction-rise {
    0% { width: 20px; }
    100% { width: 40px; }
}

@keyframes health-improve {
    0% { transform: translate(-50%, -50%) scaleY(0.8); }
    100% { transform: translate(-50%, -50%) scaleY(1.2); }
}

@keyframes icon-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-content {
        height: 400px;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .premium-container {
        padding: 0 15px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .critical-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid,
    .features-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-header h2,
    .impact-header h2,
    .showcase-title,
    .features-header h2,
    .case-studies-header h2,
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .card-inner {
        padding: 20px;
    }
    
    .area-card,
    .impact-card,
    .feature-card,
    .case-study-card {
        padding: 30px 20px;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
    
    .desk-cluster {
        gap: 15px;
    }
    
    .desk {
        width: 50px;
        height: 35px;
    }
}