@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
    min-height: 100vh;
    background: #FFFFFF;
    color: #1D1D1F;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* REVOLUTIONARY NAVBAR */
.modern-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 1px 0px rgba(255, 255, 255, 0.8),
        inset 0 1px 0px rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    animation: navFloat 3s ease-in-out infinite;
}

@keyframes navFloat {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-3px); }
}

.modern-nav:hover {
    transform: translateX(-50%) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 1px 0px rgba(255, 255, 255, 0.9),
        inset 0 1px 0px rgba(255, 255, 255, 0.3);
}

.nav-logo-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
}

.nav-logo-modern img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.nav-logo-modern:hover img {
    transform: rotate(5deg) scale(1.1);
}

.nav-brand-text {
    font-weight: 700;
    font-size: 14px;
    color: #1D1D1F;
    letter-spacing: -0.5px;
    position: relative;
    overflow: hidden;
}

.nav-brand-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #007AFF, #5856D6);
    transition: width 0.3s ease;
}

.nav-logo-modern:hover .nav-brand-text::after {
    width: 100%;
}

.nav-links-modern {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link-modern {
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    color: #1D1D1F;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    background: transparent;
}

.nav-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-link-modern:hover::before {
    left: 100%;
}

.nav-link-modern:hover {
    background: rgba(0, 122, 255, 0.05);
    transform: translateY(-2px);
    color: #007AFF;
}

.nav-cta-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

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

.nav-cta-modern:hover::before {
    left: 100%;
}

.nav-cta-modern:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.nav-cta-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-cta-modern:hover .nav-cta-icon {
    transform: translateX(2px);
}

/* ACTIVE PAGE INDICATOR */
.nav-link-modern.active-page {
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    position: relative;
}

.nav-link-modern.active-page::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #007AFF;
    border-radius: 50%;
}

.nav-cta-modern.active-page {
    background: linear-gradient(135deg, #34C759 0%, #30D158 100%);
}

/* REVOLUTIONARY HERO ANIMATIONS */
@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4),
                    0 20px 60px rgba(0, 122, 255, 0.1);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(0, 122, 255, 0),
                    0 20px 60px rgba(0, 122, 255, 0.2);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes morphing {
    0%, 100% { border-radius: 20px 40px 30px 50px; }
    25% { border-radius: 50px 20px 40px 30px; }
    50% { border-radius: 30px 50px 20px 40px; }
    75% { border-radius: 40px 30px 50px 20px; }
}

/* ADVANCED GRADIENT BACKGROUNDS */
.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(88, 86, 214, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(52, 199, 89, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 250, 252, 0.9) 100%);
    pointer-events: none;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* MODERN CARD LAYOUTS */
.card-stack {
    position: relative;
    perspective: 1000px;
}

.card-stack .card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
}

.card-stack .card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(2deg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* MAGNETIC BUTTON EFFECTS */
.magnetic-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

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

.magnetic-button:hover::before {
    left: 100%;
}

.magnetic-button:hover {
    transform: translateY(-2px) scale(1.02);
}

/* ADVANCED TYPOGRAPHY */
.text-gradient {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 50%, #FF2D92 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* INNOVATIVE SCROLL ANIMATIONS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.animate {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.scroll-reveal.animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-reveal.animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal.animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal.animate:nth-child(4) { transition-delay: 0.4s; }

/* INTERACTIVE PARTICLES */
.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 122, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* MICRO-INTERACTIONS */
.micro-bounce {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.micro-bounce:hover {
    transform: scale(1.05);
}

.micro-bounce:active {
    transform: scale(0.95);
}

/* APPLE-INSPIRED DESIGN SYSTEM */

/* Premium Typography Scale */
.display-large {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
}

.display-medium {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.body-large {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.body {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

.caption {
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 400;
    color: #86868B;
}

/* Apple-style Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin: 4rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bento-item {
    background: #F5F5F7;
    border-radius: 18px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-item.large {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 320px;
}

.bento-item.medium {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 320px;
}

.bento-item.small {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 150px;
}

.bento-item:hover {
    transform: translateY(-2px);
    background: #FFFFFF;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 4px rgba(0, 0, 0, 0.02);
}

/* Apple-style Timeline */
.apple-timeline {
    padding: 6rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}

.timeline-step {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-step:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 48px;
    height: 48px;
    background: #007AFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.step-description {
    font-size: 16px;
    line-height: 1.5;
    color: #86868B;
}

/* Apple-style Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 4rem auto;
    max-width: 1200px;
}

.feature-item {
    background: #F5F5F7;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-item:hover {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 4px rgba(0, 0, 0, 0.02);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.feature-description {
    font-size: 14px;
    line-height: 1.4;
    color: #86868B;
}

/* Apple-style Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin: 4rem auto;
    max-width: 1200px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #F5F5F7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #007AFF;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.service-subtitle {
    font-size: 14px;
    color: #86868B;
    margin: 4px 0 0 0;
}

.service-description {
    font-size: 16px;
    line-height: 1.5;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 14px;
    color: #86868B;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #007AFF;
    border-radius: 50%;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #007AFF;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Liquid Layout */
.liquid-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.liquid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(88, 86, 214, 0.1) 0%, transparent 50%);
    animation: liquidFlow 15s ease-in-out infinite;
}

@keyframes liquidFlow {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(88, 86, 214, 0.1) 0%, transparent 50%);
    }
    33% { 
        background: 
            radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 20% 20%, rgba(255, 45, 146, 0.1) 0%, transparent 50%);
    }
    66% { 
        background: 
            radial-gradient(circle at 50% 20%, rgba(255, 45, 146, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(0, 122, 255, 0.1) 0%, transparent 50%);
    }
}

/* Isometric Cards */
.iso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
    margin: 4rem 0;
}

.iso-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    transform: rotateX(15deg) rotateY(-5deg);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 20px 40px rgba(0, 122, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.iso-card:hover {
    transform: rotateX(0deg) rotateY(0deg) translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 122, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* Stacked Layers Effect */
.stack-container {
    position: relative;
    margin: 4rem auto;
    max-width: 800px;
}

.stack-layer {
    position: absolute;
    width: 100%;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.6s ease;
    cursor: pointer;
}

.stack-layer:nth-child(1) {
    z-index: 3;
    transform: translateY(0px) rotate(0deg);
}

.stack-layer:nth-child(2) {
    z-index: 2;
    transform: translateY(20px) rotate(-2deg);
    background: rgba(255, 255, 255, 0.6);
}

.stack-layer:nth-child(3) {
    z-index: 1;
    transform: translateY(40px) rotate(1deg);
    background: rgba(255, 255, 255, 0.4);
}

.stack-container:hover .stack-layer:nth-child(1) {
    transform: translateY(-20px) rotate(2deg);
}

.stack-container:hover .stack-layer:nth-child(2) {
    transform: translateY(0px) rotate(-1deg);
}

.stack-container:hover .stack-layer:nth-child(3) {
    transform: translateY(20px) rotate(3deg);
}

.main-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.landing-page {
    position: absolute;
    width: 100%;
    height: 100vh;
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 2;
    overflow: hidden;
}

.landing-page.hidden {
    transform: scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.container {
    display: flex;
    height: 100vh;
    position: relative;
}

.section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: #FFFFFF; /* Section background to white */
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 230, 230, 0.2); /* Subtle light-grey overlay */
    transition: all 0.4s ease;
    z-index: 1;
}

.ai-section {
    border-right: 1px solid rgba(220, 220, 220, 0.7); /* Lighter border */
}

.section:hover {
    flex: 1.15;
}

/* Focus Effect - Dim the non-hovered section */
.container:hover .section:not(:hover) {
    opacity: 0.6;
    filter: blur(1px);
    transform: scale(0.98);
}

.container:hover .section:not(:hover) .visual-element {
    opacity: 0.3;
}

/* Enhanced focus on hovered section */
.section:hover {
    opacity: 1;
    filter: none;
    transform: scale(1);
    z-index: 5;
}

.section:hover .visual-element {
    opacity: 1;
}

.section:hover::before {
    background-color: rgba(220, 220, 220, 0.1); /* Lighter base for glass */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.section-content {
    position: relative;
    z-index: 3;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    max-width: 420px;
    padding: 0 2rem;
}

.section:hover .section-content {
    transform: translateY(-8px) scale(1.02);
}

.icon-container {
    width: 72px;
    height: 72px;
    margin: 0 auto 2.5rem;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.015); /* Less dark icon bg on white */
    border: 1px solid rgba(0, 0, 0, 0.03); /* Lighter icon border */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.icon-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent); /* Lighter shine */
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.section:hover .icon-container {
    background: rgba(0, 0, 0, 0.025); /* Less dark icon bg on hover */
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Softer shadow */
}

.section:hover .icon-container::after {
    opacity: 1;
}

.icon {
    width: 28px;
    height: 28px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.section:hover .icon {
    opacity: 1;
    transform: scale(1.1);
}

.ai-icon {
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2L13.09 8.36L16 5L12.64 6.91L19 8L12.64 9.09L16 12L13.09 10.09L12 16L10.91 10.09L8 12L11.36 9.09L5 8L11.36 6.91L8 5L10.91 8.36L12 2Z' stroke='%23007aff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.cyber-icon {
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10V8C6 5.79086 7.79086 4 10 4H14C16.2091 4 18 5.79086 18 8V10M3 10H21L20 20H4L3 10Z' stroke='%23ff6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='15' r='2' stroke='%23ff6b6b' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.title {
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1D1D1F; /* Title color, though overridden by gradient */
    letter-spacing: -2px;
    line-height: 1;
    transition: all 0.4s ease;
}

.section:hover .title {
    transform: scale(1.05);
}

.ai-section .title {
    background: linear-gradient(135deg, #007aff, #0072C3); /* Adjusted for contrast */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cyber-section .title {
    background: linear-gradient(135deg, #E55A5A, #D9703A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sub-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    color: #666666;
    margin-top: 0.5rem;
}

.section:hover .subtitle {
    color: #333333; /* Even darker subtitle on hover */
}

.cta-button {
    padding: 0.9rem 2.2rem;
    background: #1D1D1F;
    border: 1px solid #1D1D1F;
    border-radius: 50px;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button .arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

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

.cta-button:hover {
    background-color: #2D2D30 !important;
    border: 1px solid #2D2D30;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover .arrow {
    transform: translateX(3px);
}

.cta-button:hover::before {
    left: 100%;
}
.cta-button:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.25);
}

.hero-header {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
}

.logo {
    background: linear-gradient(135deg, #1D1D1F 0%, #007AFF 50%, #E55A5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 0.5rem;
    position: relative;
}

.tagline {
    color: #86868B;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

.section-divider {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(204, 204, 204, 0.06) 20%,
        rgba(204, 204, 204, 0.09) 50%,
        rgba(204, 204, 204, 0.06) 80%,
        transparent 100%); /* Darker divider */
    z-index: 5;
}

/* INNOVATIVE CONTENT PAGES */
.content-page {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #FFFFFF; /* Content page background to white */
    transform: translateY(100%);
    transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 3;
    overflow-y: auto;
    overflow-x: hidden;
}

.content-page.active {
    transform: translateY(0);
}

/* AI-INSPIRED DASHBOARD NAVIGATION */
.dashboard-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(245, 245, 247, 0.85); /* Light, slightly transparent nav bg */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08); /* Darker border for nav */
    border-radius: 50px;
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
    font-family: 'JetBrains Mono', monospace;
}

.nav-back {
    color: #555555; /* Darker gray for nav link */
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.nav-back:hover {
    color: #0056b3;
    background-color: rgba(220, 220, 220, 0.3); /* Light greyish transparent */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05); /* Subtle dark border */
    padding: 0.3rem 0.5rem; /* Ensure padding for bg */
    border-radius: 8px; /* Ensure radius for bg */
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555555; /* Darker gray for status text */
    font-size: 0.8rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

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

.nav-logo {
    color: #1D1D1F; /* Dark nav logo text */
    font-weight: 600;
    font-size: 0.9rem;
}

/* HERO SECTION - IMMERSIVE SPLIT SCREEN */
.hero-immersive {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%); /* Light gradient for hero left */
    padding: 8rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-right {
    background: #F0F0F0; /* Light gray for hero right */
    position: relative;
    overflow: hidden;
}

.hero-title-large {
    font-size: 5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 2rem;
    color: #1D1D1F; /* Dark hero title (overridden by gradients) */
    letter-spacing: -3px;
}

.ai-content .hero-title-large {
    background: linear-gradient(135deg, #007aff 0%, #0072C3 100%); /* Adjusted for contrast */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cyber-content .hero-title-large {
    background: linear-gradient(135deg, #ff4757 0%, #D94F60 100%); /* Adjusted for contrast */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-large {
    font-size: 1.3rem;
    color: #555555; /* Darker hero subtitle */
    line-height: 1.5;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-cta-advanced {
    padding: 1.2rem 3rem;
    background: transparent;
    border: 2px solid #2A3439; /* Darker Anthracite border for contrast */
    border-radius: 50px;
    color: #2A3439; /* Darker Anthracite color for contrast */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.hero-cta-advanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #2A3439; /* Darker Anthracite background for fill */
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-cta-advanced:hover::before {
    left: 0;
}

.hero-cta-advanced:hover {
    color: #FFFFFF; /* White text on accent fill */
    transform: translateY(-2px);
.hero-cta-advanced:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.25);
}

.cyber-content .hero-cta-advanced:focus {
    outline-color: #ff4757; /* Cyber-themed focus */
    box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.25);
}
    background-color: rgba(255, 255, 255, 0.1); /* Very subtle glass over the ::before fill */
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 50px; /* Ensure it matches element for backdrop */
}

.cyber-content .hero-cta-advanced {
    border-color: #2A3439; /* Darker Anthracite border */
    color: #2A3439; /* Darker Anthracite color */
}

.cyber-content .hero-cta-advanced::before {
    background: #2A3439; /* Darker Anthracite background for fill */
}

/* INTERACTIVE DATA VISUALIZATION */
.data-viz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-container {
    width: 400px;
    height: 400px;
    position: relative;
}

.data-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.5s ease;
    cursor: pointer;
}

.data-point:hover {
    transform: scale(1.5);
    box-shadow: 0 0 15px currentColor;
}

.ai-content .data-point {
    background-color: #007aff;
}

.cyber-content .data-point {
    background-color: #ff4757;
}

.data-point-label {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(29, 29, 31, 0.85); /* Dark label bg */
    color: #FFFFFF; /* White label text */
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    font-family: 'JetBrains Mono', monospace;
}

.data-point:hover .data-point-label {
    opacity: 1;
    visibility: visible;
}

/* SERVICES SECTION - DIAGONAL LAYOUT */
.services-diagonal {
    background: #F5F5F7; /* Light gray background for services */
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.services-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(165deg, #FFFFFF 50%, transparent 50%); /* White diagonal overlay */
    z-index: 0;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

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

.services-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1D1D1F; /* Dark header text */
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}

.services-header p {
    font-size: 1.1rem;
    color: #555555; /* Darker paragraph text */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 4rem; /* Space between showcases */
}

.service-info {
    background: #FFFFFF; /* White background for service info */
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07); /* Softer shadow */
    transition: all 0.4s ease;
}

.service-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Enhanced shadow on hover */
}

.service-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1D1D1F; /* Dark heading text */
}

.ai-content .service-info h3 {
    color: #007aff; /* AI accent for heading */
}

.cyber-content .service-info h3 {
    color: #ff4757; /* Cyber accent for heading */
}

.service-info p {
    font-size: 0.95rem;
    color: #555555; /* Darker paragraph text */
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-features li {
    font-size: 0.9rem;
    color: #333333; /* Even darker list item text */
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '';
    margin-right: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
}

.ai-content .service-features li::before {
    color: #007aff; /* AI accent for checkmark */
}

.cyber-content .service-features li::before {
    color: #ff4757; /* Cyber accent for checkmark */
}

.service-visual {
    background: #1E2528; /* Dark Anthracite for visual background */
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Ensure visual has some height */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Softer shadow */
}

.terminal {
    width: 100%;
    max-width: 450px;
    background: #161A1D; /* Darker terminal background */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    overflow: hidden;
    font-family: 'JetBrains Mono', monospace;
}

.terminal-header {
    background: #2A3439; /* Dark Anthracite for terminal header */
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.terminal-content {
    padding: 1.5rem;
    color: #E0E0E0; /* Light gray terminal text */
    font-size: 0.85rem;
    line-height: 1.6;
    white-space: pre-wrap; /* Preserve formatting */
}

.terminal-content .prompt {
    color: #00ff88; /* Green prompt */
}

.terminal-content .comment {
    color: #888888; /* Gray comment */
}

.terminal-content .keyword {
    color: #00AEEF; /* Blue keyword */
}

.terminal-content .string {
    color: #FFD700; /* Yellow string */
}

/* METRICS SECTION - CLEAN GRID */
.metrics-section {
    padding: 6rem 2rem;
    background: #FFFFFF; /* White background for metrics */
}

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

.metric-card {
    background: #F5F5F7; /* Light gray for metric card background */
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05); /* Subtle border */
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); /* Softer shadow on hover */
}

.metric-card .value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ai-content .metric-card .value {
    color: #007aff; /* AI accent for metric value */
}

.cyber-content .metric-card .value {
    color: #ff4757; /* Cyber accent for metric value */
}

.metric-card .label {
    font-size: 1rem;
    color: #555555; /* Darker label text */
    line-height: 1.4;
}

/* IMMERSIVE CTA SECTION */
.cta-immersive {
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-content .cta-immersive {
    background: linear-gradient(135deg, #0072C3 0%, #00508F 100%); /* AI-themed gradient background */
}

.cyber-content .cta-immersive {
    background: linear-gradient(135deg, #D94F60 0%, #B83B4A 100%); /* Cyber-themed gradient background */
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #FFFFFF; /* White heading text */
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85); /* Slightly transparent white paragraph text */
    line-height: 1.7;
    margin-bottom: 3rem;
}

.cta-immersive-button {
    padding: 1.2rem 3.5rem;
    background: #FFFFFF; /* White button background */
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* Subtle shadow */
}

.ai-content .cta-immersive-button {
    color: #007aff; /* AI accent for button text */
}

.cyber-content .cta-immersive-button {
    color: #ff4757; /* Cyber accent for button text */
}

.cta-immersive-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2); /* Enhanced shadow on hover */
}
.cta-immersive-button:focus {
    outline: 2px solid #FFFFFF;
    outline-offset: 3px;
}

/* FOOTER - MINIMALIST & MODERN */
.footer-minimal {
    padding: 4rem 2rem;
    text-align: center;
    background: #F5F5F7; /* Light gray footer background */
    border-top: 1px solid rgba(0,0,0,0.05); /* Subtle top border */
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1D1D1F; /* Dark logo text */
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.footer-links {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #555555; /* Darker link text */
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007aff; /* AI accent for link hover */
}

.footer-social {
    margin-bottom: 2rem;
}

.social-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #FFFFFF; /* White background for social icon */
    border-radius: 50%;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* Subtle shadow */
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: #555555; /* Darker icon fill */
    transition: fill 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1); /* Enhanced shadow on hover */
}

.social-icon:hover svg {
    fill: #007aff; /* AI accent for icon fill on hover */
}

.footer-copyright {
    font-size: 0.85rem;
    color: #888888; /* Gray copyright text */
}

/* RESPONSIVE DESIGN ADJUSTMENTS */
@media (max-width: 1024px) {
    .title { font-size: 3rem; }
    .subtitle { font-size: 1rem; }
    .hero-title-large { font-size: 4rem; }
    .hero-subtitle-large { font-size: 1.1rem; }
    .services-header h2 { font-size: 2.4rem; }
    .cta-content h2 { font-size: 2.8rem; }
    .hero-left { padding: 6rem 3rem; }
    .viz-container { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
    .container { flex-direction: column; }
    .ai-section { border-right: none; border-bottom: 1px solid rgba(220, 220, 220, 0.7); }
    .section { flex: 1 !important; } /* Override hover flex grow */
    .section:hover { flex: 1 !important; }
    .section-divider { display: none; }
    .logo { font-size: 1rem; top: 1.5rem; }
    .title { font-size: 2.5rem; }
    .subtitle { font-size: 0.9rem; margin-bottom: 2rem; }
    .cta-button { padding: 0.7rem 1.5rem; font-size: 0.9rem; }

    .hero-immersive { grid-template-columns: 1fr; height: auto; }
    .hero-left { padding: 4rem 2rem; text-align: center; }
    .hero-right { min-height: 300px; }
    .hero-title-large { font-size: 3rem; }
    .hero-subtitle-large { font-size: 1rem; max-width: none; }
    .hero-cta-advanced { align-self: center; padding: 1rem 2.5rem; }
    .dashboard-nav { padding: 0.6rem 1.5rem; gap: 1rem; top: 1.5rem; }
    .nav-back { font-size: 0.8rem; }
    .nav-logo { font-size: 0.8rem; }
    .nav-status { font-size: 0.75rem; }

    .services-diagonal { padding: 4rem 0; }
    .services-header h2 { font-size: 2rem; }
    .services-header p { font-size: 1rem; }
    .service-showcase { grid-template-columns: 1fr; } /* Stack service cards */
    .service-info { padding: 2rem; }
    .service-info h3 { font-size: 1.6rem; }
    .service-visual { min-height: 250px; }

    .metrics-section { padding: 4rem 1.5rem; }
    .metric-card .value { font-size: 2.5rem; }
    .metric-card .label { font-size: 0.9rem; }

    .cta-immersive { padding: 6rem 1.5rem; }
    .cta-content h2 { font-size: 2.5rem; }
    .cta-content p { font-size: 1.1rem; }
    .cta-immersive-button { padding: 1rem 3rem; }

    .footer-minimal { padding: 3rem 1.5rem; }
    .footer-links a { margin: 0 0.5rem; display: block; margin-bottom: 0.5rem; }
}

@media (max-width: 480px) {
    body { font-size: 15px; } /* Base font size adjustment */
    .logo { display: none; } /* Hide logo on very small screens for space */
    .title { font-size: 2rem; letter-spacing: -1px; }
    .subtitle { font-size: 0.85rem; }
    .icon-container { width: 60px; height: 60px; margin-bottom: 2rem; }
    .icon { width: 24px; height: 24px; }

    .hero-title-large { font-size: 2.5rem; letter-spacing: -1.5px; }
    .hero-subtitle-large { font-size: 0.9rem; }
    .dashboard-nav {
        width: calc(100% - 2rem);
        left: 1rem;
        transform: translateX(0);
        padding: 0.5rem 1rem;
    }
    .nav-back { display: none; } /* Hide back button, rely on browser back */
    .nav-status { display: none; } /* Hide status on very small screens */

    .services-header h2 { font-size: 1.8rem; }
    .services-header p { font-size: 0.9rem; }
    .service-info h3 { font-size: 1.4rem; }
    .service-info p, .service-features li { font-size: 0.85rem; }

    .cta-content h2 { font-size: 2rem; }
    .cta-content p { font-size: 1rem; }
    .cta-immersive-button { padding: 0.9rem 2.5rem; font-size: 0.9rem; }
}

/* Advanced Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.scroll-reveal.animate {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal.slide-left {
    transform: translateX(-30px);
}

.scroll-reveal.slide-left.animate {
    transform: translateX(0);
}

.scroll-reveal.slide-right {
    transform: translateX(30px);
}

.scroll-reveal.slide-right.animate {
    transform: translateX(0);
}

.scroll-reveal.scale-up {
    transform: scale(0.9);
}

.scroll-reveal.scale-up.animate {
    transform: scale(1);
}

.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }

/* Enhanced Glass Morphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Magnetic Hover Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.magnetic:hover {
    transform: scale(1.05);
}

/* Pulse Animation for CTAs */
.pulse-cta {
    position: relative;
    overflow: hidden;
}

.pulse-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.pulse-cta:hover::before {
    width: 300px;
    height: 300px;
}

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

/* Smooth Scroll for anchor links if needed */
html {
    scroll-behavior: smooth;
}

/* Subtle gradient overlay effect */
.gradient-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.08;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 122, 255, 0.6) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(88, 86, 214, 0.5) 0%, transparent 70%),
        radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.4) 0%, transparent 60%);
    animation: gradientFlow 30s ease-in-out infinite;
    filter: blur(100px);
}

@keyframes gradientFlow {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(-10%, 5%) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(5%, -10%) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(10%, 10%) rotate(270deg) scale(1.05);
    }
}

/* Additional style for the new anchor wrapper */
.section-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%; /* Ensure it fills the parent .section div */
    width: 100%; /* Ensure it fills the parent .section div */
    display: flex; /* To center content like the original .section */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Visual Elements - Full Section Background */
.visual-element {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: fadeIn 1.5s ease 1s forwards;
    pointer-events: none;
    z-index: 1;
    transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.ai-visual {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.015), rgba(0, 212, 255, 0.015));
}

.cyber-visual {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.015), rgba(255, 140, 66, 0.015));
}

.cyber-visual .matrix-container {
    width: 100%;
    height: 100%;
}

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

.ai-visual canvas {
    width: 100%;
    height: 100%;
}

.matrix-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.matrix-stream {
    position: absolute;
    top: -100%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #FF6B6B;
    opacity: 0.12;
    line-height: 1.8;
    animation: matrixFall 12s linear infinite;
    text-shadow: 0 0 2px rgba(255, 107, 107, 0.15);
    white-space: pre;
    letter-spacing: 1px;
}

@keyframes matrixFall {
    to {
        top: 100%;
    }
}

/* Enhanced Particle Effects */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.4) 0%, rgba(0, 86, 204, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: floatAdvanced 25s infinite linear;
    filter: blur(0.5px);
}

.particle.cyber {
    background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, rgba(185, 28, 28, 0.2) 50%, transparent 100%);
}

.particle:nth-child(odd) {
    animation-delay: -5s;
    animation-duration: 30s;
}

.particle:nth-child(even) {
    animation-delay: -10s;
    animation-duration: 20s;
}

@keyframes floatAdvanced {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) translateX(20px) rotate(45deg) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) translateX(80px) rotate(315deg) scale(1);
    }
    100% {
        transform: translateY(-20vh) translateX(100px) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    opacity: 0.05;
    animation: floatSlow 15s ease-in-out infinite;
    pointer-events: none;
}

.floating-element.ai {
    color: #007AFF;
}

.floating-element.cyber {
    color: #DC2626;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(5deg);
    }
    66% {
        transform: translateY(10px) rotate(-3deg);
    }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #007AFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyber {
    background: linear-gradient(135deg, #FF4B4B, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact CTA */
.contact-button-container {
    position: fixed;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.contact-cta {
    background: linear-gradient(135deg, #007AFF, #E55A5A);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.contact-cta:hover {
    background: linear-gradient(135deg, #0051FF, #D9703A) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* AI PAGE STYLES - OpenAI/Apple Design */
.ai-page {
    min-height: 100vh;
    background: #FAFAFA;
    color: #1D1D1F;
    position: relative;
}

.ai-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.02;
}

.ai-background canvas {
    width: 100%;
    height: 100%;
}

.ai-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

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

.ai-nav-back {
    color: #007AFF;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.ai-nav-back:hover {
    opacity: 0.7;
}

.ai-nav-brand {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1D1D1F;
    letter-spacing: -0.02em;
}

.ai-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.ai-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: #000000;
}

.ai-title-emphasis {
    color: #007AFF;
}

.ai-subtitle {
    font-size: 1.375rem;
    color: #6B7280;
    margin-bottom: 3rem;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.ai-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.ai-cta-primary {
    background: #000000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-cta-primary:hover {
    background: #1D1D1F;
    transform: translateY(-1px);
    color: white;
}

.ai-trust-indicator {
    color: #9CA3AF;
    font-size: 0.875rem;
    font-weight: 400;
}

.ai-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.ai-services-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.ai-services-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.ai-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.ai-service-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s ease;
    position: relative;
}

.ai-service-card:hover {
    border-color: #D1D5DB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ai-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    background: #F3F4F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}




.ai-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
    letter-spacing: -0.01em;
}

.ai-card-description {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.ai-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.ai-feature {
    color: #9CA3AF;
    font-size: 0.875rem;
    padding-left: 1rem;
    position: relative;
    line-height: 1.5;
}

.ai-feature::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #D1D5DB;
}

.ai-card-cta {
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.ai-card-cta:hover {
    color: #0056CC;
}

.ai-cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
}

.ai-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.ai-cta-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.ai-cta-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
}

.ai-cta-button {
    background: #000000;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.ai-cta-button:hover {
    background: #1D1D1F;
    transform: translateY(-1px);
    color: white;
}

@media (max-width: 768px) {
    .ai-title {
        font-size: 2.5rem;
    }
    
    .ai-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-nav {
        padding: 1.5rem 2rem;
    }
    
    .ai-hero {
        padding: 3rem 2rem 4rem;
    }
}

/* ====== AI ULTRA-REFINED PAGE STYLES ====== */
.ai-ultra-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #1A1A1A;
    background: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ai-ultra-page .ambient-intelligence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02;
    pointer-events: none;
}

.ai-ultra-page #aiCanvas {
    width: 100%;
    height: 100%;
}

.ai-ultra-page .light-rays {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ai-ultra-page .ray {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #007AFF, transparent);
    opacity: 0.1;
    animation: rayMove 12s linear infinite;
    animation-delay: var(--delay);
}

.ai-ultra-page .ray:nth-child(1) { left: 20%; }
.ai-ultra-page .ray:nth-child(2) { left: 50%; }
.ai-ultra-page .ray:nth-child(3) { left: 80%; }

@keyframes rayMove {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100vh); }
}

/* AI Ultra Navigation */
.ai-ultra-page .ai-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(0, 122, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.08);
}

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

.ai-ultra-page .nav-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #6B7280;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.ai-ultra-page .nav-back:hover {
    color: #007AFF;
    transform: translateX(-2px);
}

.ai-ultra-page .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #1A1A1A;
}

.ai-ultra-page .nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.ai-ultra-page .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #007AFF;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.ai-ultra-page .nav-cta:hover {
    background: #0056CC;
    transform: translateY(-1px);
}

/* Hero Section */
.ai-ultra-page .hero {
    padding: 2rem 2rem 4rem;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 122, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 86, 204, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #FAFBFF 0%, #F5F8FF 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.ai-ultra-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 122, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 86, 204, 0.06) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        opacity: 0.5;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.1) rotate(2deg);
    }
}

.ai-ultra-page .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ai-ultra-page .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 122, 255, 0.1);
    color: #007AFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
}

.ai-ultra-page .label-dot {
    width: 6px;
    height: 6px;
    background: #007AFF;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.ai-ultra-page .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ai-ultra-page .hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: lineReveal 0.8s ease forwards;
}

.ai-ultra-page .hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.ai-ultra-page .hero-title .line:nth-child(2) { animation-delay: 0.2s; }
.ai-ultra-page .hero-title .line:nth-child(3) { animation-delay: 0.3s; }

.ai-ultra-page .hero-title .gradient {
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-ultra-page .hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.ai-ultra-page .hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 122, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 122, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.ai-ultra-page .hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

.ai-ultra-page .stat {
    text-align: center;
}

.ai-ultra-page .stat-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #007AFF;
    display: block;
    margin-bottom: 0.25rem;
}

.ai-ultra-page .stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400;
}

.ai-ultra-page .stat-divider {
    width: 1px;
    height: 2rem;
    background: #E5E7EB;
}

.ai-ultra-page .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-ultra-page .btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #007AFF;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ai-ultra-page .btn-primary:hover {
    background: #0056CC;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
}

.ai-ultra-page .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1A1A1A;
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.ai-ultra-page .btn-secondary:hover {
    border-color: #007AFF;
    color: #007AFF;
}

/* ====== AI ULTRA PAGE EXPANDED STYLES ====== */
.ai-ultra-page .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-ultra-page .ai-display {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.ai-ultra-page .display-screen {
    width: 400px;
}

.ai-ultra-page .code-window {
    background: #1E1E1E;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ai-ultra-page .window-header {
    background: #2D2D30;
    padding: 0.75rem 1rem;
    display: flex;
    gap: 0.5rem;
}

.ai-ultra-page .window-header span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FF5F57;
}

.ai-ultra-page .window-header span:nth-child(2) {
    background: #FEBC2E;
}

.ai-ultra-page .window-header span:nth-child(3) {
    background: #28CA42;
}

.ai-ultra-page .code-content {
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

.ai-ultra-page .code-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ai-ultra-page .line-number {
    color: #858585;
    margin-right: 1rem;
    width: 20px;
    text-align: right;
}

.ai-ultra-page .keyword {
    color: #569CD6;
}

.ai-ultra-page .function {
    color: #DCDCAA;
}

.ai-ultra-page .method {
    color: #4EC9B0;
}

.ai-ultra-page .comment {
    color: #6A9955;
}

.ai-ultra-page .display-metrics {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-ultra-page .metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-ultra-page .metric-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

.ai-ultra-page .metric-bar {
    flex: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    margin-left: 1rem;
    overflow: hidden;
}

.ai-ultra-page .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #007AFF, #0056CC);
    width: var(--width);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Services Section */
.ai-ultra-page .services {
    padding: 6rem 2rem;
    background: #FAFBFF;
}

.ai-ultra-page .services-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.ai-ultra-page .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    letter-spacing: -0.02em;
}

.ai-ultra-page .section-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

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

.ai-ultra-page .service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 122, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.ai-ultra-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.02) 0%, rgba(0, 86, 204, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.ai-ultra-page .service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 86, 204, 0.05), transparent);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.ai-ultra-page .service-card.featured {
    border-color: #007AFF;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.1);
}

.ai-ultra-page .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 122, 255, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

.ai-ultra-page .service-card:hover::before {
    opacity: 1;
}

.ai-ultra-page .service-card:hover::after {
    opacity: 1;
}

.ai-ultra-page .service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.1);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1), rgba(0, 86, 204, 0.05));
}

.ai-ultra-page .service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #007AFF;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ai-ultra-page .service-icon {
    width: 48px;
    height: 48px;
    background: #F3F4F6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ai-ultra-page .service-icon svg {
    color: #007AFF;
}

.ai-ultra-page .service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.ai-ultra-page .service-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ai-ultra-page .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.ai-ultra-page .service-features li {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.ai-ultra-page .service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 600;
}

.ai-ultra-page .service-price {
    margin-bottom: 1rem;
}

.ai-ultra-page .price-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.ai-ultra-page .price-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-left: 0.5rem;
}

/* Workshop Formats Section */
.ai-ultra-page .workshop-formats {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.ai-ultra-page .formats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-ultra-page .formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-ultra-page .format-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 122, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    backdrop-filter: blur(20px);
    text-align: center;
}

.ai-ultra-page .format-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.15);
}

.ai-ultra-page .format-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.ai-ultra-page .format-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.ai-ultra-page .format-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ai-ultra-page .format-details {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.ai-ultra-page .detail {
    text-align: center;
}

.ai-ultra-page .detail-label {
    font-size: 0.75rem;
    color: #6B7280;
    display: block;
    margin-bottom: 0.25rem;
}

.ai-ultra-page .detail-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #007AFF;
}

/* Process Section */
.ai-ultra-page .process {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.ai-ultra-page .process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ai-ultra-page .process-timeline {
    position: relative;
    margin-top: 4rem;
}

.ai-ultra-page .timeline-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 120px);
    background: linear-gradient(to bottom, #007AFF, #0056CC);
    z-index: 1;
}

.ai-ultra-page .process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.ai-ultra-page .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.ai-ultra-page .step-marker {
    width: 60px;
    height: 60px;
    background: #007AFF;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 2rem;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
}

.ai-ultra-page .step-content {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 2rem;
    max-width: 300px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ai-ultra-page .step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.ai-ultra-page .step-content p {
    color: #6B7280;
    font-size: 0.875rem;
}

/* AI Playground */
.ai-ultra-page .ai-playground {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.ai-ultra-page .playground-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ai-ultra-page .playground-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-ultra-page .playground-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.ai-ultra-page .playground-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ai-ultra-page .playground-card {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.ai-ultra-page .playground-card.full-width {
    grid-column: 1 / -1;
}

.ai-ultra-page .playground-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ai-ultra-page .playground-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.ai-ultra-page .playground-card .card-icon {
    width: 40px;
    height: 40px;
    background: #F3F4F6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-ultra-page .playground-card .status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    animation: pulse 2s ease-in-out infinite;
}

.ai-ultra-page .playground-card .status-indicator.processing {
    background: #F59E0B;
}

.ai-ultra-page .playground-card .status-indicator.ready {
    background: #007AFF;
}

.ai-ultra-page .demo-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    resize: vertical;
    min-height: 80px;
}

.ai-ultra-page .demo-input:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

/* Demo Section */
.ai-ultra-page .demo {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.ai-ultra-page .demo-container {
    max-width: 800px;
    margin: 0 auto;
}

.ai-ultra-page .demo-content {
    text-align: center;
}

.ai-ultra-page .demo-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

.ai-ultra-page .demo-window {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    margin-top: 3rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ai-ultra-page .demo-header {
    background: #F8FAFC;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ai-ultra-page .demo-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.ai-ultra-page .demo-info {
    display: flex;
    flex-direction: column;
}

.ai-ultra-page .demo-name {
    font-weight: 600;
    color: #111827;
}

.ai-ultra-page .demo-status {
    font-size: 0.75rem;
    color: #10B981;
}

.ai-ultra-page .demo-chat {
    padding: 2rem;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-ultra-page .chat-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.ai-ultra-page .chat-message.ai {
    justify-content: flex-start;
}

.ai-ultra-page .chat-message.user {
    justify-content: flex-end;
}

.ai-ultra-page .chat-message p {
    background: #F3F4F6;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    max-width: 70%;
    margin: 0;
}

.ai-ultra-page .chat-message.user p {
    background: #007AFF;
    color: white;
}

.ai-ultra-page .demo-input {
    display: flex;
    padding: 1rem 1.5rem;
    border-top: 1px solid #E5E7EB;
    gap: 1rem;
}

.ai-ultra-page .demo-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 0.875rem;
}

.ai-ultra-page .demo-input button {
    background: #007AFF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ai-ultra-page .demo-input button:hover {
    background: #0056CC;
}

/* Final CTA */
.ai-ultra-page .final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    color: white;
    text-align: center;
}

.ai-ultra-page .cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.ai-ultra-page .cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.ai-ultra-page .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ai-ultra-page .cta-actions {
    margin-bottom: 2rem;
}

.ai-ultra-page .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #007AFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ai-ultra-page .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ai-ultra-page .cta-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.ai-ultra-page .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.ai-ultra-page .contact-link:hover {
    opacity: 1;
}

.ai-ultra-page .trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.ai-ultra-page .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

/* ====== CYBERSECURITY SECURE PAGE STYLES ====== */
/* Cyber Secure Navigation */
.cyber-secure-page .cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    transition: all 0.3s ease;
}

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

.cyber-secure-page .nav-back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #6B7280;
    font-weight: 400;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.cyber-secure-page .nav-back:hover {
    color: #DC2626;
    transform: translateX(-2px);
}

.cyber-secure-page .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #1A1A1A;
}

.cyber-secure-page .nav-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.cyber-secure-page .security-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6B7280;
}

.cyber-secure-page .status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
}

.cyber-secure-page .status-indicator.secure {
    background: #10B981;
    animation: pulse 2s ease-in-out infinite;
}

.cyber-secure-page .hero {
    padding: 2rem 2rem 4rem;
    background: 
        radial-gradient(circle at 25% 75%, rgba(220, 38, 38, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(185, 28, 28, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
}

.cyber-secure-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(185, 28, 28, 0.04) 0%, transparent 40%);
    animation: securityPulse 6s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes securityPulse {
    0% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.05) rotate(-1deg);
    }
}

.cyber-secure-page .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cyber-secure-page .security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    color: #DC2626;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.cyber-secure-page .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cyber-secure-page .hero-title .line {
    display: block;
}

.cyber-secure-page .hero-title .gradient {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.cyber-secure-page .hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cyber-secure-page .security-metrics {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.cyber-secure-page .metric {
    text-align: center;
}

.cyber-secure-page .metric-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #DC2626;
    display: block;
    margin-bottom: 0.25rem;
}

.cyber-secure-page .metric-label {
    font-size: 0.75rem;
    color: #6B7280;
    font-weight: 400;
}

.cyber-secure-page .metric-divider {
    width: 1px;
    height: 2rem;
    background: #E5E7EB;
}

.cyber-secure-page .hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cyber-secure-page .btn-primary,
.cyber-secure-page .btn-secondary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cyber-secure-page .btn-primary {
    background: #DC2626;
    color: white;
}

.cyber-secure-page .btn-primary:hover {
    background: #B91C1C;
    transform: translateY(-1px);
}

.cyber-secure-page .btn-secondary {
    color: #1A1A1A;
    border: 1px solid #E5E7EB;
}

.cyber-secure-page .btn-secondary:hover {
    border-color: #DC2626;
    color: #DC2626;
}

.cyber-secure-page .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-secure-page .security-dashboard {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    width: 400px;
}

.cyber-secure-page .dashboard-header {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.cyber-secure-page .dashboard-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.cyber-secure-page .status-indicators {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cyber-secure-page .indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: #6B7280;
}

.cyber-secure-page .indicator-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Services Section */
.cyber-secure-page .services {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.cyber-secure-page .services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cyber-secure-page .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cyber-secure-page .service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(220, 38, 38, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.cyber-secure-page .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02) 0%, rgba(185, 28, 28, 0.01) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.cyber-secure-page .service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05), transparent);
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cyber-secure-page .service-card.featured {
    border-color: #DC2626;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.1);
}

.cyber-secure-page .service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(220, 38, 38, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08);
}

.cyber-secure-page .service-card:hover::before {
    opacity: 1;
}

.cyber-secure-page .service-card:hover::after {
    opacity: 1;
}

.cyber-secure-page .service-card:hover .service-icon {
    transform: translateY(-2px) scale(1.1);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(185, 28, 28, 0.05));
}

.cyber-secure-page .service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #DC2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cyber-secure-page .service-icon {
    width: 48px;
    height: 48px;
    background: #FEF2F2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cyber-secure-page .service-icon svg {
    color: #DC2626;
}

.cyber-secure-page .service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.cyber-secure-page .service-card p {
    color: #6B7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cyber-secure-page .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.cyber-secure-page .service-features li {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.cyber-secure-page .service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    color: #DC2626;
    font-weight: 600;
}

.cyber-secure-page .service-price {
    margin-bottom: 1rem;
}

.cyber-secure-page .price-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.cyber-secure-page .price-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-left: 0.5rem;
}

/* Security Center */
.cyber-secure-page .security-center {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.cyber-secure-page .center-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cyber-secure-page .center-header {
    text-align: center;
    margin-bottom: 4rem;
}

.cyber-secure-page .center-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
}

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

.cyber-secure-page .center-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cyber-secure-page .center-card.full-width {
    grid-column: 1 / -1;
}

.cyber-secure-page .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.cyber-secure-page .card-icon {
    width: 40px;
    height: 40px;
    background: #FEF2F2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyber-secure-page .card-icon svg {
    color: #DC2626;
}

/* Trust Section */
.cyber-secure-page .trust-section {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.cyber-secure-page .trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cyber-secure-page .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cyber-secure-page .compliance-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.cyber-secure-page .compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cyber-secure-page .compliance-icon {
    width: 60px;
    height: 60px;
    background: #FEF2F2;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.cyber-secure-page .compliance-icon svg {
    color: #DC2626;
}

.cyber-secure-page .compliance-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
}

.cyber-secure-page .compliance-card p {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cyber-secure-page .compliance-status {
    display: inline-block;
    background: #DCFCE7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cyber-secure-page .compliance-status.verified {
    background: #DCFCE7;
    color: #166534;
}

.cyber-secure-page .trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.cyber-secure-page .trust-stat {
    text-align: center;
}

.cyber-secure-page .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DC2626;
    display: block;
    margin-bottom: 0.5rem;
}

.cyber-secure-page .stat-label {
    color: #6B7280;
    font-size: 1rem;
}

/* Final CTA */
.cyber-secure-page .final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    color: white;
    text-align: center;
}

.cyber-secure-page .cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cyber-secure-page .cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cyber-secure-page .cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cyber-secure-page .cta-actions {
    margin-bottom: 2rem;
}

.cyber-secure-page .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #DC2626;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cyber-secure-page .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cyber-secure-page .cta-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cyber-secure-page .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.cyber-secure-page .contact-link:hover {
    opacity: 1;
}

.cyber-secure-page .emergency-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

/* ====== CYBERSECURITY ADVANCED SOC STYLES ====== */
.cyber-advanced-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0F172A;
    color: #F8FAFC;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.cyber-advanced-page .security-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.cyber-advanced-page #threatCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

/* Cyber Advanced Navigation */
.cyber-advanced-page .command-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #334155;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ====== CYBERSECURITY TRUST & SECURITY STYLES ====== */
.cyber-secure-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #1A1A1A;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.cyber-secure-page .ambient-intelligence {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.02;
    pointer-events: none;
}

.cyber-secure-page .security-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
}

.cyber-secure-page #securityCanvas {
    width: 100%;
    height: 100%;
}

/* Cyber Secure Navigation */
.cyber-secure-page .cyber-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

/* ====== PULSE ANIMATIONS ====== */
@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

@keyframes threatPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.4);
        opacity: 0.7;
    }
}

/* ====== CONTACT PAGE OVERRIDES ====== */
.contact-page {
    background: #F8FAFC;
    min-height: 100vh;
}

.contact-page .form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-page .form-group {
    margin-bottom: 1.5rem;
}

.contact-page .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.contact-page .form-input,
.contact-page .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.contact-page .form-input:focus,
.contact-page .form-textarea:focus {
    outline: none;
    border-color: #007AFF;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.contact-page .form-button {
    background: #007AFF;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.contact-page .form-button:hover {
    background: #0056CC;
}

/* Contact Section for Cyber Page */
.cyber-secure-page .contact-section {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.cyber-secure-page .contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cyber-secure-page .contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cyber-secure-page .contact-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 122, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    text-align: center;
    backdrop-filter: blur(20px);
}

.cyber-secure-page .contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.15);
}

.cyber-secure-page .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: white;
}

.cyber-secure-page .contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.cyber-secure-page .contact-card p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cyber-secure-page .contact-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cyber-secure-page .contact-btn:hover {
    background: #0056CC;
    transform: translateY(-2px);
}

/* FROZEN GLASS EFFECTS & BUSINESS DASHBOARD ANIMATIONS */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes slideIn {
    0% {
        width: 0%;
    }
    100% {
        width: 75%;
    }
}

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

/* Enhanced Frozen Glass Navigation */
.modern-nav {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 0px rgba(255, 255, 255, 0.5),
        inset 0 1px 0px rgba(255, 255, 255, 0.25);
}

.modern-nav:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 1px 0px rgba(255, 255, 255, 0.7),
        inset 0 1px 0px rgba(255, 255, 255, 0.35);
}

/* Frozen Glass Sections */
.hero {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Bento Grid Frozen Glass Enhancement */
.bento-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.04),
        inset 0 1px 0px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        inset 0 1px 0px rgba(255, 255, 255, 0.3);
}

/* Service Badge Enhancement */
.service-badge {
    background: rgba(0, 122, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.cyber-badge {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Hexagonal Items Frozen Glass */
.hex-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.hex-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Timeline Items Enhancement */
.timeline-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.06),
        inset 0 1px 0px rgba(255, 255, 255, 0.2);
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
}

.cta-content p {
    font-size: 1.1rem;
    color: #86868B;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #007AFF;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #0056CC;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
}

.cyber-primary {
    background: #DC2626;
}

.cyber-primary:hover {
    background: #B91C1C;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.ai-cta {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    position: relative;
    overflow: hidden;
}

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

.ai-cta:hover::before {
    left: 100%;
}

.ai-cta:hover {
    background: linear-gradient(135deg, #0056CC 0%, #5856D6 100%);
    transform: translateY(-2px) scale(1.02);
}

.cyber-cta {
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    position: relative;
    overflow: hidden;
}

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

.cyber-cta:hover::before {
    left: 100%;
}

.cyber-cta:hover {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    transform: translateY(-2px) scale(1.02);
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #86868B;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007AFF;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #86868B;
    font-size: 14px;
    font-weight: 500;
}

/* AI/CYBER CONTENT PAGES STYLING */

/* Services Section */
.services-section {
    padding: 6rem 2rem 8rem 2rem;
    background: #FBFBFD;
}

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

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1D1D1F;
}

.section-subtitle {
    color: #86868B;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Service Cards */
.service-header {
    margin-bottom: 2rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ai-icon-bg {
    background: #E7F3FF;
}

.purple-icon-bg {
    background: #F3E8FF;
}

.pink-icon-bg {
    background: #FFF0F6;
}

.cyber-icon-bg {
    background: #FFE7E7;
}

.green-icon-bg {
    background: #F0FDF4;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1D1D1F;
}

.service-subtitle {
    color: #86868B;
    margin-bottom: 1.5rem;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.service-details {
    /* Left column content */
}

.service-description {
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    line-height: 1.6;
}

.feature-title {
    font-weight: 600;
    color: #1d1d1f;
    margin: 1rem 0 0.5rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.feature-item {
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #86868B;
}

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ai-dot {
    background: #007AFF;
}

.cyber-dot {
    background: #DC2626;
}

.success-dot {
    background: #34C759;
}

.service-showcase {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.showcase-title {
    font-size: 17px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.showcase-subtitle {
    font-size: 14px;
    color: #86868B;
}

/* Service Cards (Medium/Small) */
.service-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1D1D1F;
}

.service-card-description {
    color: #86868B;
    font-size: 14px;
}

/* Stat Cards */
.stat-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-icon {
    font-size: 40px;
    margin-bottom: 8px;
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}

.ai-blue {
    color: #007AFF;
}

.cyber-red {
    color: #DC2626;
}

.stat-description {
    font-size: 12px;
    color: #86868B;
    margin: 0;
}

/* Workshop Section */
.workshop-section {
    padding: 6rem 0 8rem 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E7F3FF 100%);
}

.workshop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cyber-workshop {
    background: linear-gradient(135deg, #F8FAFC 0%, #FFE7E7 100%);
}

/* Hex Grid Improvements */
.hex-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hex-title {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1D1D1F;
}

.hex-description {
    font-size: 0.9rem;
    margin: 0;
    color: #86868B;
}

/* Timeline Section */
.floating-timeline {
    padding: 6rem 0 8rem 0;
}

.timeline-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-item {
    position: relative;
}

.timeline-left {
    left: 10%;
}

.timeline-center {
    left: 40%;
}

.timeline-right {
    left: 70%;
}

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

.timeline-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.ai-gradient {
    background: linear-gradient(135deg, #007AFF, #5856D6);
}

.purple-gradient {
    background: linear-gradient(135deg, #5856D6, #FF2D92);
}

.success-gradient {
    background: linear-gradient(135deg, #FF2D92, #34C759);
}

.cyber-gradient {
    background: linear-gradient(135deg, #DC2626, #EF4444);
}

.cyber-orange-gradient {
    background: linear-gradient(135deg, #EF4444, #F97316);
}

.timeline-step-title {
    margin: 0;
    font-size: 1.25rem;
    color: #1D1D1F;
    font-weight: 600;
}

.timeline-step-description {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .services-section {
        padding: 4rem 1rem 6rem 1rem;
    }
    
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timeline-left,
    .timeline-center, 
    .timeline-right {
        left: 0;
        position: static;
        margin-bottom: 2rem;
    }
    
    .workshop-container,
    .timeline-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    /* Navigation adjustments */
    .modern-nav {
        top: 10px;
        padding: 8px 16px;
        gap: 1rem;
    }
    
    .nav-links-modern {
        gap: 16px;
    }
    
    .nav-link-modern {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .nav-cta-modern {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Hero adjustments */
    .hero-container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Contact Page Enhancements */
.contact-ultra-page .bento-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}