/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --dark-blue: #1e293b;
    --light-blue: #3b82f6;
    --accent-orange: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-gray: #6b7280;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --border-gray: #e5e7eb;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Header */
header {
    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(0, 0, 0, 0.05);
    padding: 1rem 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.3rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 0;
    transition: padding 0.3s ease;
}

header.scrolled nav {
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.logo img {
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    transform: scale(0.9);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.1);
}

.nav-links a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: var(--primary-blue);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Navigation Layout */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 4rem;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-contact {
    padding: 0.8rem 2.5rem;
    font-size: 0.9rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    white-space: nowrap;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-contact.active {
    background: var(--dark-blue);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
}

/* Product Page Styles */
.product-hero {
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.gradient-text {
    background: linear-gradient(45deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 30%;
    right: -15%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    top: 60%;
    left: -10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
    color: var(--text-light);
    font-size: 0.95rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:before {
    content: "✓";
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Industries Section */
.industries-section {
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.industry-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.industry-features span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Screenshots Section */
.screenshots-grid {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.screenshot-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.screenshot-card.featured {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.screenshot-card:nth-child(even) {
    direction: rtl;
}

.screenshot-card:nth-child(even) .screenshot-details {
    direction: ltr;
}

.screenshot-image {
    position: relative;
    overflow: hidden;
}

.screenshot-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-image img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.screenshot-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.screenshot-details {
    padding: 2rem;
}

.screenshot-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.screenshot-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.screenshot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Integration Section */
.integration-section {
    background: var(--light-gray);
}

.integration-content {
    margin-top: 3rem;
}

.integration-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.integration-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.integration-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.integration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Integration Visual */
.integration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.api-showcase {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.api-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.api-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.api-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #10B981;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.api-endpoints {
    margin-bottom: 1.5rem;
}

.endpoint-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.method {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    min-width: 50px;
    text-align: center;
}

.method.get {
    background: #10B981;
}

.method.post {
    background: #3B82F6;
}

.method.put {
    background: #F59E0B;
}

.path {
    color: var(--text-dark);
    font-weight: 600;
}

.api-response {
    background: #1F2937;
    border-radius: 8px;
    padding: 1rem;
    color: var(--white);
}

.response-header {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #10B981;
}

.response-code {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #E5E7EB;
}

.integration-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.integration-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-icon {
    font-size: 2rem;
}

.category-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.integration-category p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Sophisticated Features Section */
.sophisticated-features {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.sophisticated-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.decorative-line .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.decorative-line .diamond {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 300;
}

/* CTA Section decorative line override */
.cta-banner .decorative-line .line {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.cta-banner .decorative-line .diamond {
    color: rgba(255, 255, 255, 0.8);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.sophisticated-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.sophisticated-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.sophisticated-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sophisticated-card:hover::before {
    transform: scaleX(1);
}

.sophisticated-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 20px rgba(59, 130, 246, 0.1);
}

.card-header {
    padding: 2rem 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-family: 'Arial', sans-serif;
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.sophisticated-card:hover .feature-icon-wrapper {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.feature-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.card-content {
    padding: 0 2rem 2rem;
}

.sophisticated-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.sophisticated-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    font-size: 1rem;
}

.feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    color: var(--primary-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.sophisticated-card:hover .highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 51, 234, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

/* Staggered animation on load */
.sophisticated-card:nth-child(1) { animation-delay: 0.1s; }
.sophisticated-card:nth-child(2) { animation-delay: 0.2s; }
.sophisticated-card:nth-child(3) { animation-delay: 0.3s; }
.sophisticated-card:nth-child(4) { animation-delay: 0.4s; }
.sophisticated-card:nth-child(5) { animation-delay: 0.5s; }
.sophisticated-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sophisticated-card {
    animation: slideInUp 0.6s ease-out both;
}

/* Enhanced Features Section */
.enhanced-features {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.enhanced-feature {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.enhanced-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.feature-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-logo {
    width: 60px;
    height: auto;
    object-fit: contain;
}

.enhanced-feature h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.enhanced-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 25%, rgba(51, 65, 85, 0.8) 50%, rgba(30, 41, 59, 0.85) 75%, rgba(15, 23, 42, 0.9) 100%),
        url('../images/hero section.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 0;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-dashboard {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-dashboard::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(168, 85, 247, 0.5));
    border-radius: 22px;
    z-index: -1;
}

.dashboard-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red { background: #ef4444; }
.dashboard-dot.yellow { background: #f59e0b; }
.dashboard-dot.green { background: #10b981; }

.dashboard-title {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #bfdbfe;
    margin-bottom: 0.25rem;
}

/* Ensure dashboard stats values use light blue */
.dashboard-stats .stat-value {
    color: #bfdbfe !important;
}

.stat-label {
    font-size: 0.8rem;
    color: #000000;
}

/* Ensure dashboard stats always use black text */
.dashboard-stats .stat-label {
    color: #000000 !important;
}

.dashboard-chart {
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.chart-header h4 {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
}

.chart-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

.chart-content {
    height: 80px;
}

.chart-bars {
    display: flex;
    align-items: end;
    justify-content: space-between;
    height: 60px;
    gap: 4px;
    margin-bottom: 8px;
}

.chart-bar {
    background: linear-gradient(to top, #3b82f6, #60a5fa);
    border-radius: 2px 2px 0 0;
    flex: 1;
    min-height: 10px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.chart-bar:hover {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.3) 50%, transparent 70%);
    animation: chartAnimation 3s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.floating-icon:nth-child(4) {
    bottom: 20%;
    right: 25%;
    animation-delay: 1s;
}

.floating-icon:nth-child(5) {
    bottom: 40%;
    left: 5%;
    animation-delay: 3s;
}

/* Features Section - Sophisticated Left-Right Layout */
.features-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.features-content {
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 5rem;
}

.features-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    line-height: 1.2;
}

.features-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.features-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 2rem;
}

.feature-tab {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.feature-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.feature-tab.active::before {
    opacity: 0.05;
}

.feature-tab:hover::before {
    opacity: 0.03;
}

.feature-tab.active {
    border-color: var(--primary-blue);
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

.feature-tab:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-tab-content {
    position: relative;
    z-index: 2;
}

.feature-icon-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-tab-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.feature-tab h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.2;
}

.feature-tab p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.feature-details {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.feature-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1, #3b82f6);
}

.feature-detail {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.feature-detail.active {
    display: block;
}

.feature-detail-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-detail-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-purple) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.feature-detail-title {
    flex: 1;
}

.feature-detail h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.feature-detail .subtitle {
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.feature-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.feature-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--primary-blue);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.4);
}

.benefit-text {
    color: var(--dark-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.learn-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    color: #ffffff !important;
}

/* Old Features Section (Legacy) */
.features {
    background: var(--light-gray);
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-list {
    list-style: none;
}

.feature-item {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover,
.feature-item.active {
    border-left-color: var(--primary-blue);
    box-shadow: var(--shadow);
    transform: translateX(10px);
}

.feature-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    min-height: 300px;
}

/* Stats Section - Redesigned */
.stats-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-grid)"/></svg>');
    z-index: 1;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.stats-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.stat-card-new {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform 0.8s ease;
}

.stat-card-new:hover::before {
    transform: translateX(100%) translateY(100%);
}

.stat-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.1rem;
    color: #000000 !important;
    position: relative;
    z-index: 2;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* FAQ Section */
.faq-container {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(147, 51, 234, 0.03));
    border-radius: 25px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* Mobile responsive FAQ grid */
@media (max-width: 768px) {
    .faq-container {
        padding: 1.5rem;
        margin-top: 2rem;
        border-radius: 15px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: 15px;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .faq-icon {
        margin-left: 0;
        align-self: flex-end;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 1rem 1.5rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .faq-answer-content::before {
        left: 1.5rem;
        right: 1.5rem;
    }
}

/* iPhone 14 Pro Max and similar large phones */
@media (max-width: 480px) {
    .faq-container {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 1rem 1.25rem 1.25rem;
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .faq-answer-content::before {
        left: 1.25rem;
        right: 1.25rem;
    }
}

.faq-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
}

.faq-item {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--dark-blue);
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
    color: var(--primary-blue);
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    margin-left: 2rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-blue);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    color: white;
    border-color: transparent;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(248, 250, 252, 0.5);
}

.faq-item.active .faq-answer {
    max-height: none;
}

.faq-answer-content {
    padding: 1.5rem 2rem 2rem;
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
}

.faq-answer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.faq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-stat:hover {
    transform: translateY(-3px);
}

.faq-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.faq-stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.cta-banner h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Product Page Styles */
.product-hero {
    background: var(--light-gray);
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--white);
}

.product-hero .hero-text {
    color: var(--white);
}

.product-hero .hero-stats {
    color: var(--white);
}

.product-hero .stat-number {
    color: var(--white) !important;
    font-size: 2rem;
    font-weight: 800;
}

.product-hero .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
}

/* Ensure stats are visible with highest specificity */
#product-hero-section .stat-number {
    color: #ffffff !important;
    font-size: 2rem !important;
    font-weight: 800 !important;
}

#product-hero-section .stat-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
}

.system-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.system-image {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.system-image:hover {
    transform: translateY(-5px);
}

.system-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.system-image-caption {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

/* Services Pages */
.service-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6rem 0 4rem;
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
}

/* Consulting Page Specific Styles */
.consulting-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.consulting-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.consulting-hero .hero-pattern {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 30px 30px;
    width: 100%;
    height: 100%;
}

.consulting-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consulting-hero .hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.consulting-hero .hero-text p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Consulting Visual Styles */
.consulting-visual {
    position: relative;
    height: 450px;
    max-width: 500px;
    margin: 0 auto;
}

.consulting-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: absolute;
    color: var(--text-dark);
    overflow: hidden;
}

.consulting-card.main-card {
    width: 280px;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1.25rem;
}

.consulting-card.side-card {
    width: 180px;
    height: 110px;
    padding: 0.85rem;
}

.consulting-card.side-card:nth-of-type(2) {
    top: 15px;
    right: 15px;
}

.consulting-card.side-card:nth-of-type(3) {
    bottom: -5px;
    left: 15px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.card-header h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.2;
}

.card-header h5 {
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    text-align: center;
    width: 100%;
    line-height: 1.2;
}

.card-status {
    padding: 0.2rem 0.6rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
}

.card-status.in-progress {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
}

.progress-section {
    margin-top: 0.5rem;
}

.progress-item {
    margin-bottom: 0.75rem;
}

.progress-item span {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    color: var(--text-gray);
    line-height: 1.2;
}

.progress-bar {
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1s ease;
}

.roi-metric {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.25rem;
}

.roi-value {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    white-space: nowrap;
}

.roi-timeframe {
    font-size: 0.7rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
    line-height: 1;
}

.timeline-phases {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    gap: 0.25rem;
    padding: 0 0.25rem;
}

.phase {
    flex: 1;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phase.completed {
    background: #10b981;
    color: white;
}

.phase.active {
    background: var(--primary-blue);
    color: white;
}

.phase.upcoming {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-gray);
}

/* Value Proposition Styles */
.value-proposition {
    padding: 6rem 0;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.value-points {
    margin-top: 2rem;
}

.value-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-icon {
    font-size: 2rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 15px;
}

.value-content-text h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.value-content-text p {
    color: var(--text-gray);
    margin: 0;
}

/* Impact Dashboard Styles */
.impact-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-dashboard h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.impact-metric {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(59, 130, 246, 0.05);
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.impact-metric .metric-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: block;
}

.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
}

.metric-trend.positive {
    color: #10b981;
}

/* Consulting Services Grid */
.consulting-services {
    padding: 6rem 0;
    background: var(--light-gray);
}

.consulting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.consulting-service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consulting-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.consulting-service-card .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: auto;
    height: auto;
    background: none;
    color: initial;
}

.consulting-service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.consulting-service-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-outcome {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    border-left: 4px solid #10b981;
    font-size: 0.9rem;
}

.service-outcome strong {
    color: #10b981;
}

/* Methodology Styles */
.methodology {
    padding: 6rem 0;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.methodology-phases {
    margin-top: 2rem;
}

.phase-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.phase-content h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.phase-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.phase-duration {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Methodology Visual */
.methodology-diagram {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.diagram-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.timeline-chart {
    position: relative;
    margin: 3rem 0;
}

.timeline-axis {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 20px;
}

.timeline-axis::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.axis-point {
    background: white;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
    line-height: 1;
    padding: 0.25rem;
}

.timeline-metrics {
    margin-top: 1rem;
}

.metric-line {
    margin-bottom: 3rem;
    position: relative;
    height: 50px;
}

.metric-line::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--progress, 0%);
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 2s ease;
}

.metric-line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: -1;
}

.timeline-metrics .metric-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    line-height: 20px;
}

/* Industry Expertise Styles */
.industry-expertise {
    padding: 6rem 0;
    background: var(--light-gray);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.industry-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.industry-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.industry-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-stats {
    display: flex;
    justify-content: space-around;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.industry-stats .stat {
    text-align: center;
}

.industry-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.industry-stats .stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* CTA Consulting Styles */
.cta-consulting {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    opacity: 0.8;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-text {
    font-size: 0.9rem;
}

/* Section Headers for Consulting Page */
.services-header,
.expertise-header,
.features-header,
.value-header,
.methodology-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2,
.expertise-header h2,
.features-header h2,
.value-header h2,
.methodology-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-header .decorative-line,
.expertise-header .decorative-line,
.features-header .decorative-line,
.value-header .decorative-line,
.methodology-header .decorative-line {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    max-width: 200px;
}

.services-header p,
.expertise-header p,
.features-header p,
.value-header p,
.methodology-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

/* About Page */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    height: 250px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
}

.team-info {
    padding: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: 20px;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Contact Page - Restructured Hero */
.contact-hero {
    background: linear-gradient(135deg, #4682B4 0%, #1E3A8A 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    padding-bottom: 4rem;
}

.contact-hero .container {
    position: relative;
    z-index: 10;
}

.contact-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Hero Description */
.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.95) !important;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 3rem;
}

/* Primary CTA Section */
.hero-cta-primary {
    margin-bottom: 2rem;
}

.btn-hero {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    display: inline-block;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.cta-benefits {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85) !important;
    margin-top: 1rem;
    font-style: italic;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff !important;
}

/* Force hero content to be white, but be specific to avoid header */
.contact-hero .hero-content,
.contact-hero .hero-content *,
.contact-hero .container > .hero-content h1,
.contact-hero .container > .hero-content p,
.contact-hero .container > .hero-content span,
.contact-hero .container > .hero-content div {
    color: #ffffff !important;
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.contact-section {
    padding: 5rem 0;
    background: white; /* Ensure white background */
    color: var(--text-dark); /* Ensure dark text */
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    color: var(--text-dark); /* Ensure dark text */
}

.contact-info-card h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
    color: var(--text-dark); /* Ensure dark text */
}

.contact-form h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.contact-form > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* reCAPTCHA and Form Notes */
.g-recaptcha {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.form-note {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
}

/* Button Loading State */
.btn-loading {
    display: none;
}

.btn-primary.loading .btn-text {
    display: none;
}

.btn-primary.loading .btn-loading {
    display: inline;
}

/* Mobile Form Responsiveness */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: center;
    }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    color: var(--text-dark); /* Ensure dark text */
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-item strong {
    color: var(--text-dark); /* Ensure dark text for labels */
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1.5rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-blue);
}

.map-section {
    background: var(--light-gray);
    padding: 5rem 0;
    color: var(--text-dark); /* Ensure dark text */
}

.map-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.map-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Static Map Styles */
.static-map {
    position: relative;
    width: 100%;
    height: 450px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.static-map:hover .map-overlay {
    opacity: 1;
}

.static-map:hover .map-image {
    transform: scale(1.05);
}

.location-info {
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(30, 58, 138, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-orange);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-directions:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

/* Fallback for missing image */
.static-map::before {
    content: "📍 Office Location Map";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    color: var(--text-light);
    z-index: -1;
}

.map-footer {
    background: var(--light-gray);
    padding: 0.75rem;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.map-footer a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.map-footer a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes chartAnimation {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow);
        border-radius: 0 0 15px 15px;
        display: none;
    }
    
    .nav-center.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-links li {
        padding: 1rem;
        border-bottom: 1px solid var(--border-gray);
    }
    
    /* Mobile Dropdown Styles */
    .dropdown {
        position: relative;
    }
    
    .dropdown-content {
        position: static !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        background: #f8fafc !important;
        margin-left: 1rem;
        padding: 0.5rem 0;
        border-left: 3px solid var(--primary-blue);
    }
    
    .dropdown-content a {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem;
        color: var(--text-gray) !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-content a:hover,
    .dropdown-content a.active {
        background: var(--primary-blue) !important;
        color: white !important;
    }
    
    /* Contact page specific mobile dropdown fix */
    body.contact-page .dropdown-content a {
        color: #6b7280 !important;
        background: #f8fafc !important;
    }
    
    body.contact-page .dropdown-content a:hover {
        background: var(--primary-blue) !important;
        color: white !important;
    }
    
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        cursor: pointer;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
    
    .btn-contact {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Product Page Mobile Styles */
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .stat {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-cards {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .screenshot-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .screenshot-card:nth-child(even) {
        direction: ltr;
    }
    
    .integration-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-visual {
        padding: 1rem;
    }
    
    .api-showcase {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .api-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .endpoint-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .method {
        align-self: flex-start;
    }
    
    .integration-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sophisticated-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2.5rem;
    }
    
    .sophisticated-card {
        border-radius: 16px;
    }
    
    .card-header {
        padding: 1.5rem 1.5rem 1rem;
        gap: 1rem;
    }
    
    .feature-number {
        font-size: 2rem;
        top: 1rem;
        right: 1.5rem;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .sophisticated-card h3 {
        font-size: 1.25rem;
    }
    
    .sophisticated-card p {
        font-size: 0.95rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .enhanced-features {
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .enhanced-feature {
        padding: 2rem 1.5rem;
    }
    
    .enhanced-feature h3 {
        font-size: 1.3rem;
    }
    
    .enhanced-feature p {
        font-size: 1rem;
    }
    
    .hero {
        padding-top: 120px;
        min-height: calc(100vh - 120px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero .subtitle {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-dashboard {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-list {
        position: static;
        order: 2;
    }
    
    .feature-details {
        order: 1;
        min-height: auto;
        padding: 2rem;
    }
    
    .feature-benefits {
        grid-template-columns: 1fr;
    }
    
    .feature-detail h3 {
        font-size: 1.5rem;
    }
    
    .feature-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .features-header h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stats-header h2 {
        font-size: 2.5rem;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 22px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0%;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    /* Consulting Mobile Styles */
    .consulting-hero .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-text {
        flex: none;
        max-width: 100%;
    }
    
    .hero-visual {
        display: none;
    }
    
    .consulting-visual {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .consulting-card.main-card {
        grid-column: 1;
    }
    
    .consulting-card.side-card {
        padding: 1rem;
    }
    
    .value-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .value-text,
    .value-visual {
        flex: none;
        max-width: 100%;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .impact-dashboard {
        padding: 1.5rem;
        border-radius: 15px;
        margin: 1rem 0;
    }
    
    .impact-dashboard h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .impact-metric {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .metric-value {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .impact-metric .metric-label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .metric-trend {
        font-size: 0.75rem;
    }
    
    .methodology-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .methodology-text,
    .methodology-visual {
        flex: none;
        max-width: 100%;
    }
    
    .timeline-axis {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .axis-point {
        position: static;
        transform: none;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
    
    .hero {
        padding-top: 140px;
        min-height: calc(100vh - 140px);
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .sophisticated-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .sophisticated-card {
        border-radius: 12px;
    }
    
    .card-header {
        padding: 1.25rem 1.25rem 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .feature-number {
        font-size: 1.8rem;
        position: static;
        margin-bottom: 0.5rem;
    }
    
    .feature-icon-wrapper {
        width: 55px;
        height: 55px;
        border-radius: 12px;
    }
    
    .feature-icon {
        font-size: 1.6rem;
    }
    
    .card-content {
        padding: 0 1.25rem 1.25rem;
        text-align: center;
    }
    
    .sophisticated-card h3 {
        font-size: 1.2rem;
    }
    
    .sophisticated-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .feature-highlights {
        justify-content: center;
    }
    
    .highlight {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .decorative-line .line {
        width: 40px;
    }
    
    .enhanced-features {
        gap: 1.5rem;
    }
    
    .enhanced-feature {
        padding: 1.5rem 1rem;
    }
    
    .feature-logo {
        width: 50px;
    }
    
    .enhanced-feature h3 {
        font-size: 1.2rem;
    }
    
    .enhanced-feature p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Consulting Mobile Styles - 480px */
    .consulting-hero .hero-content {
        padding-top: 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-text .subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .consulting-visual {
        padding: 1rem;
    }
    
    .consulting-card {
        padding: 1rem;
    }
    
    .progress-section {
        gap: 0.75rem;
    }
    
    .progress-item span {
        font-size: 0.8rem;
    }
    
    .roi-value {
        font-size: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .impact-dashboard {
        padding: 1rem;
        border-radius: 12px;
        margin: 0.75rem 0;
    }
    
    .impact-dashboard h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .impact-metric {
        padding: 1rem;
        border-radius: 10px;
    }
    
    .metric-value {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }
    
    .impact-metric .metric-label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .metric-trend {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }
    
    .phase-item {
        gap: 1rem;
    }
    
    .phase-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .timeline-chart {
        margin: 2rem 0;
    }
    
    .timeline-metrics {
        gap: 1rem;
    }
}

/* Academy Page Styles */
.academy-hero {
    background: var(--gradient-primary);
    color: white;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Academy Section Headers with Title Bars */
.section-header {
    position: relative;
    margin-bottom: 2rem;
}

.section-header h2,
.section-header h3 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-header h2::after,
.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.stats-dashboard .section-header h3::after {
    width: 60px;
    height: 3px;
}

/* Training Topics Title Bars */
.training-topics h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.training-topics h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 1px;
}

/* Benefits Section Title Bars */
.benefit-content h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.benefit-content h4::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    border-radius: 1px;
}

.academy-visual {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
    height: 400px;
}

.academy-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.academy-card.main-card {
    grid-column: 1;
    grid-row: 1 / 3;
}

.academy-card.side-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.academy-card h4, .academy-card h5 {
    color: var(--text-dark);
    margin: 0 0 1rem 0;
}

/* Academy Dashboard Card Content */
.academy-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-gray);
}

.academy-card .card-header h4 {
    color: var(--text-dark);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.academy-card .card-status {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.academy-card .progress-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.academy-card .progress-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.academy-card .progress-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.academy-card .progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-gray);
    border-radius: 4px;
    overflow: hidden;
}

.academy-card .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.cert-metric, .duration-info {
    text-align: center;
}

.cert-value, .duration-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.cert-label, .duration-label {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Training Programs Styles */
.training-programs {
    padding: 6rem 0;
    background: #f8fafc;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.training-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.training-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.training-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.training-level {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.training-content {
    padding: 2rem;
}

.training-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.training-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.training-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.detail-icon {
    font-size: 1rem;
}

.training-topics h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.training-topics ul {
    list-style: none;
    padding: 0;
}

.training-topics li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.training-topics li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.training-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid var(--border-gray);
}

/* Learning Paths Styles */
.learning-paths {
    padding: 6rem 0;
}

.paths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.path-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.path-card:hover {
    border-color: var(--primary-blue);
}

.path-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.path-header h3 {
    color: var(--text-dark);
    margin: 0;
}

.path-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
}

.path-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.flow-step.completed .step-number {
    background: #10b981;
}

.step-title {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-gray);
}

.flow-arrow {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: bold;
}

.path-duration {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.75rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 1rem;
}

/* Training Benefits Styles */
.training-benefits {
    padding: 6rem 0;
    background: #f8fafc;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    background: rgba(59, 130, 246, 0.1);
    padding: 1rem;
    border-radius: 15px;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.stats-dashboard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-dashboard h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    background: rgba(59, 130, 246, 0.05);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* CTA Academy Styles */
.cta-academy {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-academy h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-academy p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 3px solid var(--border-gray);
    border-top: 3px solid var(--primary-blue);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .cta-banner,
    header,
    footer {
        background: none !important;
        color: black !important;
    }
    
    .btn {
        border: 1px solid black;
        background: none;
        color: black;
    }
}

/* Academy Mobile Responsive Styles */
@media (max-width: 768px) {
    .academy-visual {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }

    .academy-card.main-card {
        order: 1;
    }

    .academy-card.side-card {
        order: 2;
        padding: 1rem;
    }

    .cert-value, .duration-value {
        font-size: 2rem;
    }

    .training-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .training-card {
        margin: 0 1rem;
    }

    .training-header {
        padding: 1.5rem;
    }

    .training-icon {
        font-size: 2.5rem;
    }

    .training-content {
        padding: 1.5rem;
    }

    .training-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .paths-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .path-card {
        margin: 0 1rem;
        padding: 1.5rem;
    }

    .path-flow {
        flex-direction: column;
        gap: 0.5rem;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .benefits-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .academy-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 4rem;
    }

    .training-programs,
    .learning-paths,
    .training-benefits,
    .cta-academy {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .academy-card {
        padding: 1rem;
    }

    .training-header {
        padding: 1rem;
    }

    .training-content {
        padding: 1rem;
    }

    .path-card {
        padding: 1rem;
    }

    .benefits-grid {
        gap: 1.5rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        align-self: center;
    }
}

/* About Us Page Styles - Enhanced Hero */
.about-hero-enhanced {
    background: var(--gradient-primary);
    color: white;
    padding: 10rem 0 8rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-hero-enhanced .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
}

.about-hero-enhanced .hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.2) 1px, transparent 0);
    background-size: 30px 30px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

.about-hero-enhanced h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #60A5FA, #A78BFA, #F472B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-btn {
    min-width: 200px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary.hero-btn {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.btn-secondary.hero-btn {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary.hero-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

.trust-indicators {
    text-align: center;
}

.trust-text {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-logo {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Enhanced Foundation Section */
.foundation-enhanced {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.foundation-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.foundation-header {
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
}

.foundation-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.foundation-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.foundation-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.foundation-card-enhanced {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.foundation-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.foundation-card-enhanced.mission-card {
    border-top: 4px solid #3b82f6;
}

.foundation-card-enhanced.vision-card {
    border-top: 4px solid #8b5cf6;
}

.foundation-card-enhanced.values-card {
    border-top: 4px solid #f59e0b;
}

.card-header {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.card-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 3rem;
    position: relative;
    z-index: 2;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.1;
}

.mission-card .icon-bg {
    background: #3b82f6;
}

.vision-card .icon-bg {
    background: #8b5cf6;
}

.values-card .icon-bg {
    background: #f59e0b;
}

.card-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.card-content {
    padding: 0 2rem 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-footer {
    margin-top: 1.5rem;
}

.mission-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight-item {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.vision-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.metric-icon {
    font-size: 1.25rem;
}

.metric-text {
    font-weight: 500;
    color: var(--text-gray);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

.value-icon {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.value-text {
    font-weight: 500;
    color: var(--text-gray);
}

/* Foundation Impact Section */
.foundation-impact {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.impact-content {
    margin-bottom: 3rem;
}

.impact-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.impact-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(59, 130, 246, 0.05);
    transition: transform 0.3s ease;
}

.impact-item:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.impact-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.impact-text strong {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.impact-text span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Mobile Responsiveness for Enhanced Foundation */
@media (max-width: 1024px) {
    .foundation-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .foundation-enhanced {
        padding: 6rem 0;
    }
    
    .foundation-header {
        margin-bottom: 3rem;
    }
    
    .foundation-header h2 {
        font-size: 2.25rem;
    }
    
    .foundation-header p {
        font-size: 1.1rem;
    }
    
    .foundation-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .card-header,
    .card-content {
        padding: 1.5rem;
    }
    
    .foundation-impact {
        padding: 2rem 1.5rem;
    }
    
    .impact-content h3 {
        font-size: 1.5rem;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .impact-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .foundation-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-header,
    .card-content {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.25rem;
    }
    
    .foundation-impact {
        padding: 1.5rem 1rem;
    }
}

/* Our Founders Section */
.founders-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(59, 130, 246, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.founders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(59, 130, 246, 0.1) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.3;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.founder-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.founder-card:hover::before {
    transform: scaleX(1);
}

.founder-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--light-gray);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.4s ease;
}

/* Alternative: If faces are still cut off, use this approach */
.founder-image img.portrait-photo {
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

/* Specific positioning for each founder if needed */
.founder-image img[alt*="Kumarason"] {
    object-position: center 25%;
}

.founder-image img[alt*="Mahesu"] {
    object-position: center 20%;
}

.founder-card:hover .founder-image img {
    transform: scale(1.05);
}

.founder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(147, 51, 234, 0.8));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* Removed hover overlay effect */
/* .founder-card:hover .founder-overlay {
    opacity: 1;
} */

.founder-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.social-icon {
    font-size: 1.5rem;
}

.founder-info {
    padding: 2.5rem;
}

.founder-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.founder-role {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.expertise-tag {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    transform: translateY(-2px);
}

/* Founders Mobile Responsiveness */
@media (max-width: 768px) {
    .founders-section {
        padding: 6rem 0;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .founder-image {
        height: 300px;
    }
    
    .founder-info {
        padding: 2rem;
    }
    
    .founder-info h3 {
        font-size: 1.5rem;
    }
    
    .founder-role {
        font-size: 1rem;
    }
    
    .founder-bio {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .founders-section {
        padding: 4rem 0;
    }
    
    .founders-grid {
        gap: 2rem;
    }
    
    .founder-image {
        height: 250px;
    }
    
    .founder-info {
        padding: 1.5rem;
    }
    
    .founder-info h3 {
        font-size: 1.3rem;
    }
    
    .expertise-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Foundation Section */
.about-foundation {
    padding: 6rem 0;
}

.foundation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.foundation-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.foundation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.foundation-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.foundation-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.foundation-card p {
    line-height: 1.7;
    margin-bottom: 0;
}

.values-list {
    text-align: left;
    margin-top: 1rem;
}

.value-item {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Story Section */
.about-story {
    background: #f8fafc;
    padding: 6rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-text {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.story-image-placeholder {
    background: white;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
    color: var(--primary-blue);
}

.placeholder-text {
    color: var(--text-gray);
    font-weight: 500;
}

/* Leadership Team */
.leadership-team {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    margin-bottom: 2rem;
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-icon {
    font-size: 3rem;
    color: white;
}

.member-info h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.member-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.member-info p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-expertise span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Company Culture */
.company-culture {
    padding: 6rem 0;
    background: white;
}

.culture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.culture-values {
    margin-top: 2rem;
}

.culture-value {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.culture-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.culture-content-text h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.culture-content-text p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.stats-dashboard {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.stats-dashboard .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-dashboard h3 {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    background: rgba(59, 130, 246, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* CTA About */
.cta-about {
    background: var(--gradient-primary);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

/* Mobile Responsiveness for About Page */
@media (max-width: 768px) {
    .about-hero,
    .about-hero-enhanced {
        padding: 6rem 0 4rem;
        min-height: 80vh;
    }
    
    .about-hero h1,
    .about-hero-enhanced h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .about-hero p,
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* iPhone 14 Pro Max and similar large phones */
@media (max-width: 480px) {
    .about-hero-enhanced {
        padding: 5rem 0 3rem;
        min-height: 70vh;
    }
    
    .about-hero-enhanced h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .hero-actions {
        padding: 0 1rem;
    }
    
    .trust-indicators {
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .trust-logos {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .trust-logo {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        flex: 1 1 calc(50% - 0.25rem);
        min-width: auto;
    }
    
    .foundation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .foundation-card {
        padding: 2.5rem 1.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-highlights {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 1.5rem 0.5rem;
    }
    
    .highlight-number {
        font-size: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .culture-value {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-about h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    /* Contact Page Mobile - Restructured */
    .contact-hero {
        min-height: 70vh;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .contact-hero .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-cta-primary {
        margin-bottom: 2rem;
    }
    
    .btn-hero {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
    
    .trust-item {
        flex-direction: row;
        gap: 1rem;
    }
    
    .trust-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .trust-text {
        font-size: 0.9rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-card, .contact-form {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 60vh;
        padding-top: 90px;
    }
    
    .contact-hero .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta-primary {
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 300px;
    }
    
    .trust-item {
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
    }
    
    .trust-icon {
        font-size: 1.3rem;
    }
    
    .trust-text {
        font-size: 0.85rem;
    }
    
    .cta-benefits {
        font-size: 0.85rem !important;
    }
    
    .contact-info-card, .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* AI Features Section */
.ai-features-section {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ai-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.ai-features-content {
    position: relative;
    z-index: 2;
}

.ai-features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-features-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.2;
}

.ai-features-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.ai-features-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6, #06b6d4);
    border-radius: 20px 20px 0 0;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.ai-feature-icon {
    margin-bottom: 2rem;
}

.ai-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    position: relative;
}

.ai-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    animation: ai-glow 3s ease-in-out infinite alternate;
}

@keyframes ai-glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.05); }
}

.ai-icon {
    font-size: 2.5rem;
    color: white;
}

.ai-feature-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.ai-feature-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.ai-feature-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ai-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.ai-benefit-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.ai-benefit-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Responsive Design for AI Features */
@media (max-width: 768px) {
    .ai-features-section {
        padding: 4rem 0;
    }
    
    .ai-features-header h2 {
        font-size: 2.2rem;
    }
    
    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ai-feature-card {
        padding: 2rem;
    }
    
    .ai-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .ai-icon {
        font-size: 2rem;
    }
    
    .ai-feature-content h3 {
        font-size: 1.5rem;
    }
    
    .ai-feature-content p {
        font-size: 1rem;
    }
}

/* Enhanced AI Detail Section (Product Page) */
.ai-detail-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.ai-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.ai-detail-content {
    position: relative;
    z-index: 2;
}

.ai-detail-header {
    text-align: center;
    margin-bottom: 5rem;
}

.ai-detail-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-detail-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ai-showcase-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ai-showcase-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

.ai-showcase-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-showcase-icon .ai-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    position: relative;
}

.ai-showcase-icon .ai-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #06b6d4);
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
    animation: ai-pulse 3s ease-in-out infinite;
}

@keyframes ai-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.ai-showcase-icon .ai-icon {
    font-size: 2.5rem;
    color: white;
}

.ai-showcase-title h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.ai-showcase-title p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

.ai-transformation-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.transformation-side {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.transformation-side.input-side {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.3) 0%, rgba(51, 65, 85, 0.3) 100%);
    border-left: 4px solid #64748b;
}

.transformation-side.output-side {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-left: 4px solid #3b82f6;
}

.side-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.side-icon {
    font-size: 1.5rem;
}

.side-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.transformation-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chat-bubble {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.message-avatar {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.message-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
}

.work-order-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.work-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wo-number {
    font-weight: 600;
    color: #06b6d4;
    font-size: 1rem;
}

.priority-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.priority-badge.medium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.work-order-details {
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
}

.detail-row .label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.detail-row .value {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.work-order-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.technician-note {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.note-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-name {
    color: #06b6d4;
    font-weight: 600;
    font-size: 0.9rem;
}

.completion-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.note-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
}

.history-record {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.asset-tag {
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.record-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.field-group {
    margin-bottom: 1rem;
}

.field-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
}

.field-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.field-value {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.recommendation-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.rec-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rec-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.transformation-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.ai-processor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    animation: processor-glow 2s ease-in-out infinite alternate;
}

@keyframes processor-glow {
    0% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.4); }
    100% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

.processor-icon {
    font-size: 2rem;
    color: white;
}

.processor-text {
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.processing-dots {
    display: flex;
    gap: 0.3rem;
}

.processing-dots span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: processing-bounce 1.4s ease-in-out infinite both;
}

.processing-dots span:nth-child(1) { animation-delay: -0.32s; }
.processing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes processing-bounce {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Responsive Design for Enhanced AI Section */
@media (max-width: 1200px) {
    .ai-transformation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transformation-center {
        order: 2;
    }
    
    .transformation-side.output-side {
        order: 3;
    }
    
    .ai-processor {
        padding: 1rem;
        border-radius: 20px;
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .ai-detail-section {
        padding: 4rem 0;
    }
    
    .ai-detail-header h2 {
        font-size: 2.5rem;
    }
    
    .ai-showcase-section {
        padding: 2rem;
    }
    
    .ai-showcase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ai-showcase-title h3 {
        font-size: 1.8rem;
    }
    
    .transformation-side {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .work-order-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .record-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
