/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Bai Jamjuree', 'Trebuchet MS', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #113DC2, #D53DB8, #3FE4F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #113DC2;
}

.nav-link::after {
    content: '';
    position: absolute;    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

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

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.6);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* AI Brain Visualization */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-brain {
    position: relative;
    width: 400px;
    height: 400px;
}

.brain-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 50px; left: 170px; animation-delay: 0s; }
.node-2 { top: 150px; left: 50px; animation-delay: 0.4s; }
.node-3 { top: 150px; right: 50px; animation-delay: 0.8s; }
.node-4 { bottom: 100px; left: 100px; animation-delay: 1.2s; }
.node-5 { bottom: 100px; right: 100px; animation-delay: 1.6s; }

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.brain-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.3));
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-1 {
    top: 80px;
    left: 200px;
    width: 120px;
    transform: rotate(45deg);
}

.connection-2 {
    top: 180px;
    left: 110px;
    width: 180px;
    transform: rotate(0deg);
}

.connection-3 {
    bottom: 130px;
    left: 130px;
    width: 140px;
    transform: rotate(-30deg);
}

@keyframes connectionFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-10px) rotate(45deg); }
    60% { transform: translateY(-5px) rotate(45deg); }
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
}
.section-subtitle.dark {
    color: #ccc;
}

/* Strategic Necessity Section */
.necessity-section {
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #113DC2;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 3rem;
    color: #113DC2;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    overflow: hidden;
}

.content-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: #22c55e;
    font-size: 1.2rem;
}

.transformation-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.transformation-step {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    margin: 0 auto 1rem;
}

.step-title {
    font-weight: 600;
    color: #333;
}

.transformation-arrow {
    font-size: 2rem;
    color: #113DC2;
    font-weight: bold;
}

/* Balance Section */
.balance-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.balance-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.balance-section .container {
    position: relative;
    z-index: 2;
}

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

.balance-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.balance-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.balance-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Modern Balance Scale */
.balance-scale-modern {
    position: relative;
    height: 300px;
    margin: 2rem 0;
}

.scale-beam {
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 3px;
    transform: translateY(-50%);
    animation: beamBalance 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.scale-pivot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 40px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.scale-side {
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
}

.scale-left {
    left: 0;
    animation: scaleFloat 3s ease-in-out infinite;
}

.scale-right {
    right: 0;
    animation: scaleFloat 3s ease-in-out infinite reverse;
}

.scale-platform {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: linear-gradient(90deg, #374151, #6b7280);
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scale-chain {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, #9ca3af, #6b7280);
    transform: translateX(-50%);
    border-radius: 1px;
}

.scale-weight {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: weightPulse 2s ease-in-out infinite;
}

.speed-weight {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.control-weight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.scale-label {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
}

.scale-description {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    opacity: 0.8;
    white-space: nowrap;
}

/* Balance Indicators */
.balance-indicators {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.indicator:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.speed-indicator {
    justify-content: flex-end;
    text-align: right;
}

.control-indicator {
    justify-content: flex-start;
    text-align: left;
}

.indicator-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.speed-indicator .indicator-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.control-indicator .indicator-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.indicator-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.indicator-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Balance Meter */
.balance-meter {
    display: flex;
    justify-content: center;
}

.meter-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

.meter-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.meter-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 8;
}

.meter-progress {
    fill: none;
    stroke: #fbbf24;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 141.5;
    animation: meterFill 3s ease-in-out infinite;
}

.meter-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fbbf24;
}

.meter-center i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: block;
}

.meter-center span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Copilot Section */
.copilot-section {
    background: #f8fafc;
}

.copilot-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.copilot-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.copilot-card:hover {
    transform: translateY(-5px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.microsoft-icon {
    background: linear-gradient(135deg, #0078d4, #106ebe);
}

.sap-icon {
    background: linear-gradient(135deg, #113DC2, #D53DB8);
}

.card-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.card-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.connection-line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.connection-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: rotate 4s linear infinite;
}

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

.unified-experience {
    text-align: center;
}

.experience-box {
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.copilot-box {
    background: linear-gradient(135deg, #c1e4ff, #ecc4ff);
    padding: 3rem;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.joule-box {
    background: linear-gradient(90deg, #7328e9, #9808cd);
    padding: 3rem;
    color: white;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.joule-box p {
  color: white;
}

.experience-box h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.experience-box p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}
/* MCP Section */
.mcp-section {
    background: white;
}

.mcp-diagram {
    position: relative;
    height: 400px;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mcp-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.mcp-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.mcp-connections {
    position: relative;
    width: 100%;
    height: 100%;
}

.mcp-system {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.3s ease;
    z-index: 99;
}

.mcp-system:hover {
    transform: scale(1.05);
}

.mcp-system[data-position="top-left"] {
    top: 20px;
    left: 20px;
}

.mcp-system[data-position="top-right"] {
    top: 20px;
    right: 20px;
}

.mcp-system[data-position="bottom-left"] {
    bottom: 20px;
    left: 20px;
}

.mcp-system[data-position="bottom-right"] {
    bottom: 20px;
    right: 20px;
}

.mcp-system i {
    font-size: 2rem;
    color: #113DC2;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem;
}

.benefit-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Industry Section */
.industry-section {
    background: #f8fafc;
}

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

.industry-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem;
}

.industry-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.industry-card p {
    color: #666;
    line-height: 1.6;
}

/* Innovation Section */
.innovation-section {
    background: white;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.innovation-text h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.innovation-text h3 {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 2rem;
}

.innovation-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-content p {
    color: #666;
    margin: 0;
}

.triple-a {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.a-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.a-item:hover {
    transform: translateX(10px);
}

.a-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.a-item h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.a-item p {
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Future Section */
.future-section {
    background: linear-gradient(135deg, #35A840 0%, #3FE4F0 100%);
    color: white;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    flex: 1;
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    margin: 0;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.float-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    animation: float var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

.float-element:nth-child(1) {
    top: 20%;
    left: 10%;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 15%;
}

.float-element:nth-child(3) {
    bottom: 30%;
    left: 80%;
}

/* Animations */
@keyframes beamBalance {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-50%) rotate(1deg); }
}

@keyframes scaleFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes weightPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

@keyframes meterFill {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 141.5; }
    100% { stroke-dashoffset: 283; }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.1;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.3;
    }
}

/* Responsive Design for Balance Section */
@media (max-width: 768px) {
    .balance-text h2 {
        font-size: 2rem;
    }
    
    .balance-scale-modern {
        height: 250px;
    }
    
    .balance-indicators {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .speed-indicator,
    .control-indicator {
        justify-content: center;
        text-align: center;
    }
    
    .indicator {
        flex-direction: column;
        text-align: center;
    }
    
    .scale-side {
        width: 100px;
    }
    
    .scale-platform {
        width: 80px;
    }
    
    .scale-weight {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .balance-section {
        padding: 4rem 0;
    }
    
    .balance-text h2 {
        font-size: 1.8rem;
    }
    
    .balance-text p {
        font-size: 1rem;
    }
    
    .balance-scale-modern {
        height: 200px;
    }
    
    .meter-circle {
        width: 100px;
        height: 100px;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* AOS Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Effort/Impact Analysis Section */
.effort-impact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 0;
}

.impact-matrix {
    max-width: 1000px;
    margin: 0 auto;
}

.matrix-header {
    text-align: center;
    margin-bottom: 3rem;
}

.matrix-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
}

.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.matrix-quadrant {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #113DC2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.matrix-quadrant:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.matrix-quadrant.high-impact.low-effort {
    border-left-color: #D53DB8;
    background: linear-gradient(-45deg, #D53DB8 0%, #3FE4F0 100%);
    color: white;
}

.matrix-quadrant.high-impact.high-effort {
    border-left-color: #35A840;
    background: linear-gradient(-45deg, #35A840 0%, #3FE4F0 100%);
    color: white;
}

.matrix-quadrant.low-impact.low-effort {
    border-left-color: #113DC2;
    background: linear-gradient(-45deg, #113DC2 0%, #D53DB8 100%);
    color: white;
}

.matrix-quadrant.low-impact.high-effort {
    border-left-color: #3FE4F0;
    background: linear-gradient(-45deg, #3FE4F0 0%, #113DC2 100%);
    color: white;
}

.matrix-quadrant h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.matrix-quadrant.high-impact.low-effort h4,
.matrix-quadrant.high-impact.high-effort h4,
.matrix-quadrant.low-impact.low-effort h4,
.matrix-quadrant.low-impact.high-effort h4 {
    color: white;
    font-weight: 600;
}

.matrix-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.matrix-item {
    font-size: 0.95rem;
    color: #4b5563;
    padding-left: 1rem;
    position: relative;
}

.matrix-quadrant.high-impact.low-effort .matrix-item,
.matrix-quadrant.high-impact.high-effort .matrix-item,
.matrix-quadrant.low-impact.low-effort .matrix-item,
.matrix-quadrant.low-impact.high-effort .matrix-item {
    color: rgba(255, 255, 255, 0.9);
}

.matrix-item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #113DC2;
    font-weight: bold;
}

.matrix-quadrant.high-impact.low-effort .matrix-item::before,
.matrix-quadrant.high-impact.high-effort .matrix-item::before,
.matrix-quadrant.low-impact.low-effort .matrix-item::before,
.matrix-quadrant.low-impact.high-effort .matrix-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Cost of Doing Nothing Section */
.cost-nothing-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* CTAC Dynamic Slash Pattern */
.cost-nothing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    background-image: 
        /* Verticale slashes bij 25 graden rotatie */
        repeating-linear-gradient(
            25deg,
            transparent,
            transparent 7px,
            rgba(255, 255, 255, 0.6) 7px,
            rgba(255, 255, 255, 0.6) 8px,
            transparent 8px,
            transparent 40px
        ),
        repeating-linear-gradient(
            115deg,
            transparent,
            transparent 7px,
            rgba(255, 255, 255, 0.3) 7px,
            rgba(255, 255, 255, 0.3) 8px,
            transparent 8px,
            transparent 40px
        );
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 1;
}

.cost-nothing-section .container {
    position: relative;
    z-index: 2;
}

.cost-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.125rem;
    color: #e2e8f0;
}

.impact-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.impact-area {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.impact-area:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #113DC2;
}

.impact-area h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.impact-area p {
    color: #cbd5e1;
    line-height: 1.6;
}

.cost-conclusion {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cost-conclusion p {
    font-size: 1.125rem;
    color: #e2e8f0;
}

/* Connected AI Section */
.connected-ai-section {
    background: white;
    padding: 6rem 0;
}

.connected-ai-content {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.approach-intro h3 {
    color: #113DC2;
    font-size: 1.5rem;
    margin-top: 2rem;
}

.enablement-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #113DC2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 4px solid #D53DB8;
}

.step-item:nth-child(even):hover {
    transform: translateX(-10px);
}

.step-icon {
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Agentic AI Section */
.agentic-ai-section {
    background: linear-gradient(135deg, #fafafa 0%, #f4f4f5 100%);
    padding: 6rem 0;
}

.agentic-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.125rem;
    color: #4b5563;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.capability-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.capability-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.capability-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.capability-item p {
    color: #64748b;
    line-height: 1.6;
}

.agentic-benefits {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
}

.agentic-benefits h3 {
    text-align: center;
    color: #1e293b;
    margin-bottom: 2rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.benefit-point:hover {
    background: #e2e8f0;
}

.benefit-point i {
    color: #113DC2;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-point span {
    color: #374151;
    line-height: 1.5;
}

/* Data Lifeblood Section */
.data-lifeblood-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 0;
}

.data-intro {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.125rem;
    color: #e2e8f0;
}

.data-flow {
    margin: 4rem 0;
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.flow-step {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 200px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.flow-step.highlight {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.flow-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.flow-step h4 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.flow-arrow {
    font-size: 2rem;
    color: #113DC2;
    font-weight: bold;
}

.platform-integration {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-integration h3 {
    text-align: center;
    color: #f1f5f9;
    margin-bottom: 2rem;
}

.platform-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.platform-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.platform-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.platform-icon.microsoft-fabric {
    background: linear-gradient(135deg, #0078d4, #106ebe);
    color: white;
}

.platform-icon.sap-btp {
    background: linear-gradient(135deg, #0faaff, #0e4b99);
    color: white;
}

.platform-content h4 {
    color: #f1f5f9;
    margin-bottom: 0.5rem;
}

.platform-content p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Enhanced Industry Section */
.industry-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: #64748b;
}

.industry-card .case-example {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #113DC2;
    font-size: 0.9rem;
    line-height: 1.5;
}

.industry-card .case-example strong {
    color: #113DC2;
}

/* Quotes Section */
.quotes-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.quote-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #113DC2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.quote-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #113DC2;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    font-weight: 600;
    color: #113DC2;
    margin-bottom: 0.5rem;
}

.quote-source {
    font-size: 0.9rem;
    color: #6b7280;
}

.quote-source a {
    color: #113DC2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quote-source a:hover {
    color: #D53DB8;
    text-decoration: underline;
}

/* Single Quote Styling */
.single-quote {
    margin: 3rem 0;
    padding: 2rem 0;
}

.quote-card.centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-card.large {
    padding: 3rem;
    font-size: 1.2rem;
}

.quote-card.large .quote-text {
    font-size: 1.3rem;
    line-height: 1.7;
}

/* Quote with Avatar Styling */
.quote-card.with-avatar {
    position: relative;
    padding-top: 4rem;
}

.quote-avatar {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.avatar-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.avatar-image:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.quote-card.with-avatar .quote-text {
    margin-top: 1rem;
    text-align: center;
}

.quote-card.with-avatar .quote-author {
    text-align: center;
    margin-top: 1.5rem;
}

.quote-card.with-avatar .quote-source {
    text-align: center;
}

/* Responsive adjustments for avatar quotes */
@media (max-width: 768px) {
    .quote-card.with-avatar {
        padding-top: 3.5rem;
    }
    
    .quote-avatar {
        top: -25px;
    }
    
    .avatar-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .quote-card.with-avatar {
        padding-top: 3rem;
    }
    
    .quote-avatar {
        top: -20px;
    }
    
    .avatar-image {
        width: 50px;
        height: 50px;
        border: 3px solid white;
    }
}

/* Solution Logos */
.solution-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    padding: 2rem 0;
}

.solution-logo {
    height: 60px;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(0.2);
}

.solution-logo:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* Business AI Canvas Section */
.canvas-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
}

.canvas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.canvas-section .container {
    position: relative;
    z-index: 2;
}

.canvas-section .section-title,
.canvas-section .section-subtitle {
    color: white;
    text-align: center;
}

.canvas-intro {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 2rem 0 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.canvas-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.canvas-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.canvas-feature:hover {
    transform: translateY(-5px);
}

.canvas-feature .feature-icon {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.canvas-feature h4 {
    color: white;
    margin-bottom: 1rem;
}

.canvas-feature p {
    color: rgba(255, 255, 255, 0.9);
}

.canvas-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.canvas-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.canvas-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.canvas-cta .btn {
    background: #FFD700;
    color: #333;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.canvas-cta .btn:hover {
    background: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Quote CEO Section */
.quote-ceo-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 0;
}

.quote-ceo-section .quote-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #FFD700;
    color: white;
    backdrop-filter: blur(10px);
}

.quote-ceo-section .quote-text {
    color: white;
}

.quote-ceo-section .quote-author {
    color: #FFD700;
}

.quote-ceo-section .quote-source {
    color: rgba(255, 255, 255, 0.7);
}

/* Avatar Pop-up */
.avatar-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.avatar-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    animation: pulse 2s infinite;
}

.avatar-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.4);
}

.avatar-button i {
    color: white;
    font-size: 1.5rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    }
    50% {
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.6), 0 0 0 10px rgba(0, 102, 204, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    }
}

.avatar-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

.avatar-chat.hidden {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    pointer-events: none;
}

.chat-header {
    background: linear-gradient(135deg, #113DC2, #D53DB8);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chat-title h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-title p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-body {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    max-width: 90%;
}

.bot-message {
    background: #f1f5f9;
    color: #334155;
    margin-right: auto;
}

.user-message {
    background: #113DC2;
    color: white;
    margin-left: auto;
}

.chat-input-area {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input:focus {
    border-color: #113DC2;
}

.chat-input:disabled {
    background: #f8fafc;
    color: #94a3b8;
}

.chat-send {
    background: #113DC2;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.chat-send:hover:not(:disabled) {
    background: #0052a3;
}

.chat-send:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
}

.chat-disclaimer {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 6px;
    text-align: center;
}

.chat-disclaimer small {
    color: #92400e;
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .ai-brain {
        width: 300px;
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid,
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .copilot-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .connection-line {
        order: 2;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
        flex-direction: column !important;
        align-items: flex-start;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .matrix-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-areas {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-item:nth-child(even) {
        border-left: 4px solid #D53DB8;
        border-right: none;
    }
    
    .capability-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .flow-diagram {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .platform-benefits {
        grid-template-columns: 1fr;
    }
    
    .platform-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .avatar-popup {
        bottom: 15px;
        right: 15px;
    }
    
    .avatar-button {
        width: 50px;
        height: 50px;
    }
    
    .avatar-button i {
        font-size: 1.2rem;
    }
    
    .avatar-chat {
        width: calc(100vw - 30px);
        right: -15px;
    }
    
    .quote-card {
        padding: 1.5rem;
    }
    
    .canvas-cta {
        padding: 2rem;
    }
    
    .canvas-cta h3 {
        font-size: 1.5rem;
    }
}

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

.quote-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}
