/* style.css */
:root {
    /* Colors */
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --secondary: #10b981;
    --accent: #8b5cf6;
    
    --bg-light: #f8fafc;
    --bg-default: #ffffff;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    
    --text-main: #334155;
    --text-muted: #475569;
    --text-light: #f1f5f9;
    
    /* Dark Mode Inverse Tokens */
    --text-inverse-main: #f8fafc;
    --text-inverse-muted: #94a3b8;
    
    --border-color: #e2e8f0;
    --border-dark: #1e293b;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);
    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 5rem 0;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-default);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--bg-dark);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: var(--section-padding);
}

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

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-inverse-muted);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
    color: var(--text-inverse-main);
}

.bg-dark a:not(.btn) {
    color: var(--primary-light);
}

.bg-dark a:not(.btn):hover {
    color: white;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-inverse-muted);
}

.bg-gradient h1, .bg-gradient h2, .bg-gradient h3 {
    color: var(--text-inverse-main);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.bg-dark .lead-text {
    color: var(--text-inverse-muted);
}

.bg-gradient .lead-text {
    color: rgba(255, 255, 255, 0.85);
}

.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
    color: white;
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--bg-dark);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #f8fafc;
    color: var(--bg-dark);
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-light {
    background-color: white;
    color: var(--primary-dark);
}

.btn-light:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary);
}

.inline-link {
    font-weight: 600;
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.inline-link:hover {
    gap: 0.75rem;
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Status Dot Pulse */
@keyframes pulse-status {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.status-dot-pulse {
    animation: pulse-status 2s infinite;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav a:not(.btn):not(.megamenu-item):not(.nav-icons a) {
    color: var(--text-main);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: background-color 0.2s ease;
}

.nav a:not(.btn):not(.megamenu-item):not(.nav-icons a):hover {
    background-color: #f1f5f9;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--bg-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-banner-wrapper {
    display: flex;
    margin-bottom: 1.5rem;
}

#hero-announcement-inner {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 40px;
    gap: 0.25rem;
    padding: 0 0.5rem 0 0.6rem;
    border-radius: 6px;
    background-color: var(--primary) !important;
    border: 1px solid #38bdf8 !important; /* Bright cyan/blue border that stands out */
    color: #ffffff;
    font-size: 0.9375rem; /* 15px */
    font-family: 'Inter', sans-serif;
    transition: opacity 0.4s ease, transform 0.4s ease;
    width: auto;
    max-width: max-content;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Animations for hover SVGs */
.anim-icon {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #fcd34d; /* Bright yellow to pop against the blue/purple */
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease; /* spring effect */
}

.anim-icon.icon-tl {
    left: 4px;
    top: 2px;
    transform: translate(0, 0) rotate(0deg);
}

.anim-icon.icon-br {
    left: 4.5rem;
    bottom: 2px;
    transform: translate(0, 0) rotate(0deg);
}

#hero-announcement-inner:hover .icon-tl {
    opacity: 1;
    transform: translate(-20px, -20px) rotate(360deg);
}

#hero-announcement-inner:hover .icon-br {
    opacity: 1;
    transform: translate(20px, 20px) rotate(360deg);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.banner-btn {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-decoration: underline !important;
    text-decoration-color: rgba(255, 255, 255, 0.4) !important;
    text-underline-offset: 5px !important;
    cursor: pointer !important;
    transition: color 0.2s, text-decoration-color 0.2s !important;
    font-family: inherit !important;
    margin: 0 !important;
    height: auto !important;
    box-shadow: none !important;
    min-width: 0 !important;
}

#hero-announcement-inner:hover .banner-btn {
    color: #ffffff !important;
    text-decoration-color: #ffffff !important;
}

.banner-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    white-space: nowrap;
}

.banner-close {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 4px !important;
    padding: 0 !important;
    margin-left: 0.25rem !important;
    transition: background-color 0.2s, color 0.2s !important;
    box-shadow: none !important;
    min-width: 0 !important;
}

.banner-close:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.hero-text h1 {
    font-size: clamp(2.25rem, 5vw + 1rem, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--bg-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-text .subheadline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-signals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
}

/* Incident Monitor Animation */
.monitor-card {
    background: #0b0d11; /* Very dark slate, almost black */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #94a3b8;
}

.monitor-header {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.monitor-buttons {
    display: flex;
    gap: 0.5rem;
}

.monitor-buttons span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.btn-close { background-color: #ef4444; }
.btn-minimize { background-color: #f59e0b; }
.btn-maximize { background-color: #10b981; }

.monitor-title {
    flex: 1;
    text-align: center;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 500;
}

.monitor-badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    border: 1px solid currentColor;
    transition: all 0.5s ease;
}

.monitor-body {
    padding: 1.5rem;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.monitor-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.metric-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.metric-name {
    color: #64748b;
}

.metric-value {
    color: #f8fafc;
    font-family: monospace;
    font-size: 0.85rem;
}

.metric-bar-track {
    background: rgba(255, 255, 255, 0.05);
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width 1s ease-in-out, background-color 0.5s ease, box-shadow 0.5s ease;
}

.monitor-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 1.5rem 0;
}

.monitor-logs {
    font-family: monospace;
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.log-line {
    transition: opacity 0.5s ease, color 0.5s ease;
}

.monitor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #64748b;
}

.time-val {
    color: #f8fafc;
    font-family: monospace;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.monitor-status {
    font-size: 0.7rem;
    font-weight: 700;
    transition: color 0.5s ease, opacity 0.5s ease;
}

/* Dynamic Colors */
.text-green { color: #10b981 !important; }
.text-yellow { color: #f59e0b !important; }
.text-red { color: #ef4444 !important; }
.text-muted { color: #475569 !important; }
.text-white { color: #ffffff !important; }

.bg-green { background-color: #10b981 !important; box-shadow: 0 0 8px rgba(16,185,129,0.4); }
.bg-yellow { background-color: #f59e0b !important; box-shadow: 0 0 8px rgba(245,158,11,0.4); }
.bg-red { background-color: #ef4444 !important; box-shadow: 0 0 8px rgba(239,68,68,0.4); }

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw + 0.5rem, 2.5rem);
    margin-bottom: 1rem;
}

/* Bento Section */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.bento-header {
    grid-column: span 2;
    padding-right: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.header-pill {
    display: inline-block;
    padding: 0.25rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    width: max-content;
}

.bento-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bento-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.bento-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.card-purple { background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, white 100%); }
.card-gray { background: linear-gradient(135deg, rgba(248, 250, 252, 1) 0%, white 100%); }
.card-blue { background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, white 100%); }
.card-pink { background: linear-gradient(135deg, rgba(129, 140, 248, 0.1) 0%, white 100%); }
.card-green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, white 100%); }
.card-yellow { background: linear-gradient(135deg, rgba(55, 48, 163, 0.08) 0%, white 100%); }

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

.card-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.card-titles h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bento-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.card-link:hover {
    color: var(--primary);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-green { background-color: var(--secondary); color: white; }
.badge-yellow { background-color: var(--primary); color: white; }

/* Responsive adjustments for bento */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-header {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }
    .hero-stats {
        grid-template-columns: 1fr;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-header {
        grid-column: span 1;
    }
}

/* Minimalist Features Section */
.services-features {
    background-color: #050505;
    position: relative;
    color: #ffffff;
    overflow: hidden;
}

.services-features::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80%;
    background: radial-gradient(ellipse at top center, rgba(79, 70, 229, 0.35) 0%, rgba(79, 70, 229, 0.1) 40%, rgba(0, 0, 0, 0) 75%);
    z-index: 0;
    pointer-events: none;
}

.services-features .container {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-subtitle {
    color: #a1a1aa;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem 2rem;
}

.feature-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #f8fafc;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.premium-grid-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.premium-grid-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.premium-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 108, 44, 0.2), rgba(255, 108, 44, 0.05));
    border: 1px solid rgba(255, 108, 44, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #ff6c2c;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.premium-grid-card:hover .premium-card-icon {
    background: linear-gradient(135deg, rgba(255, 108, 44, 0.3), rgba(255, 108, 44, 0.1));
    transform: scale(1.05);
}

.premium-grid-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 600;
}

.premium-grid-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .premium-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Metrics Section */
.metrics-section {
    position: relative;
    overflow: hidden;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2rem;
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    text-align: center;
    position: relative;
    padding: 1rem;
}

.metric-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.75rem;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.metric-title {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 1.05rem;
}

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

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    height: 100%;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 0 0 4px var(--bg-light);
    z-index: 1;
}

.timeline-content {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--bg-dark);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
}

.benefit-icon {
    color: var(--secondary);
    font-size: 1.25rem;
}

.benefit-item span {
    font-weight: 500;
}

/* Featured Service */
.featured-service {
    background: #ffffff; /* White background as requested */
    position: relative;
    padding: 6rem 0; /* Adding standard vertical padding */
}

.featured-content {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e1b4b 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4rem; /* Balanced vertical padding */
    border-radius: var(--radius-xl);
    position: relative;
    min-height: 26rem; /* Sleeker height */
    z-index: 1;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* Add shadow to lift it from white bg */
}

.featured-animation {
    position: absolute;
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align to the right */
    overflow: hidden; /* Hide the half that goes outside */
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    z-index: 0;
}

.featured-text {
    flex: 1;
    max-width: 600px;
    color: white;
    position: relative;
    z-index: 2;
}

.featured-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.featured-text p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.orbit-container {
    position: absolute;
    width: 30rem;
    height: 30rem;
    right: -15rem; /* Shift exactly half of width */
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ff6c2c; /* cPanel brand color */
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 10;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    top: 50%;
    left: 50%;
}

.orbit-1 {
    width: 12rem;
    height: 12rem;
    animation: spinOrbit 15s linear infinite;
}

.orbit-2 {
    width: 19rem;
    height: 19rem;
    animation: spinOrbit 25s linear infinite;
}

.orbit-3 {
    width: 26rem;
    height: 26rem;
    animation: spinOrbit 35s linear infinite;
}

.orbit-icon {
    position: absolute;
    width: 3rem;
    height: 3rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e293b; /* Dark color for icons */
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.orbit-1 .orbit-icon-inner { animation: spinOrbitReverse 15s linear infinite; }
.orbit-2 .orbit-icon-inner { animation: spinOrbitReverse 25s linear infinite; }
.orbit-3 .orbit-icon-inner { animation: spinOrbitReverse 35s linear infinite; }

.orbit-icon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Hardcoded percentages for 5 items in a circle */
.pos-1 { left: 100%; top: 50%; }
.pos-2 { left: 65.45%; top: 97.55%; }
.pos-3 { left: 9.55%; top: 79.35%; }
.pos-4 { left: 9.55%; top: 20.65%; }
.pos-5 { left: 65.45%; top: 2.45%; }

@keyframes spinOrbit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

/* Tech Marquee Section */
.proof.bg-dark {
    position: relative;
    background-color: #020617; /* Very dark slate, almost black */
    overflow: hidden;
    padding-bottom: 6rem;
}

.badge-glow {
    display: inline-block;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    background: rgba(99, 102, 241, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.text-gradient {
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.text-muted {
    color: #94a3b8;
    line-height: 1.6;
}

.tech-marquee-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 2rem;
}

.marquee-fade {
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade.left {
    left: 0;
    background: linear-gradient(to right, #020617 0%, transparent 100%);
}
.marquee-fade.right {
    right: 0;
    background: linear-gradient(to left, #020617 0%, transparent 100%);
}

.tech-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.tech-marquee-track:hover {
    animation-play-state: paused;
}

.tech-marquee-content {
    display: flex;
    gap: 1.5rem;
    padding-right: 1.5rem; /* gap */
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Moves exactly half the track width (one content block) */
    }
}

.tech-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 2rem;
    border-radius: 1rem;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-card i {
    font-size: 1.3rem;
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.tech-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.2);
    color: white;
}

.tech-card:hover i {
    color: white;
    transform: scale(1.1);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    color: #94a3b8;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-dark);
}

/* Megamenu */
.megamenu-wrapper {
    position: relative;
}

.megamenu-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.megamenu-toggle i {
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

.megamenu-wrapper:hover .megamenu-toggle i {
    transform: rotate(180deg);
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 340px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.megamenu-wrapper:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: background-color 0.2s ease;
    color: var(--text-main);
    text-decoration: none;
}

.megamenu-item:hover {
    background-color: #f8fafc;
}

.megamenu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
    color: var(--bg-dark);
}

.megamenu-text {
    display: flex;
    flex-direction: column;
}

.megamenu-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bg-dark);
    margin-bottom: 0.25rem;
}

.megamenu-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 1rem;
}

.nav-icons a {
    color: var(--text-main);
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.nav-icons a:hover {
    color: var(--primary);
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 1.5rem;
}

.btn-black {
    background-color: #0f172a;
    color: white;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.2);
}

.btn-black:hover {
    background-color: #1e293b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.3);
}
/* CTA Section Modern Remodel */
.cta-section {
    padding: 6rem 0 8rem;
    position: relative;
    z-index: 10;
    background-color: #f8fafc;
}

.cta-premium-card {
    background: linear-gradient(135deg, var(--primary) 0%, #3730a3 100%);
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    top: 0%;
    left: 50%;
    transform: translate(-50%, -30%);
    z-index: 0;
    pointer-events: none;
}

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

.cta-subtitle {
    display: inline-block;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    backdrop-filter: blur(5px);
}

.cta-premium-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.cta-premium-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-action-group {
    margin-bottom: 2.5rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.3);
    background: #f8fafc;
    color: var(--primary-dark);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.cta-benefits li {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-benefits li i {
    color: #34d399;
    margin-right: 0.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand-col .logo {
    color: white;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-desc {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.footer-links-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.footer-links-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

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

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

/* Announcement Banner */
.banner-wrapper {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-bottom: none;
    transition: margin-top 0.3s ease, padding 0.3s ease, height 0.3s ease;
    width: 100%;
}

.banner-wrapper.hidden {
    display: none;
}

.announcement-banner {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.banner-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.banner-text {
    font-size: 0.875rem;
    color: white;
    margin: 0;
}

.banner-btn {
    font-size: 0.875rem;
    font-weight: 700;
    color: #4f46e5;
    background-color: white;
    padding: 0.35rem 1rem;
    border: none;
    border-radius: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.banner-btn:hover {
    background-color: #f8fafc;
    color: #3730a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.banner-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    transition: color 0.2s ease;
    position: absolute;
    right: 1.5rem;
}

.banner-close:hover {
    color: white;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
}

/* Testimonials Section - Infinite Scroll */
.testimonials-wrapper {
    max-height: 740px;
    overflow: hidden;
    position: relative;
    /* Apply mask for the fade out effect at top and bottom */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.testimonial-column {
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
}

.testimonial-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    animation: scrollTestimonials linear infinite;
}

.col-1 .testimonial-scroll { animation-duration: 35s; }
.col-2 .testimonial-scroll { animation-duration: 45s; }
.col-3 .testimonial-scroll { animation-duration: 40s; }

@keyframes scrollTestimonials {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 0; /* Managed by scroll gap */
    break-inside: avoid;
    display: flex;
    flex-direction: column-reverse;
    gap: 1.5rem;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.1), 0 8px 10px -6px rgba(79, 70, 229, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.15), 0 10px 10px -5px rgba(79, 70, 229, 0.1);
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #111827; /* Dark text for name */
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #6b7280; /* Muted gray for role/username */
}

.testimonial-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #374151; /* Dark gray for review text */
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hidden-tablet {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .hero-text, .hero-image {
        min-width: 0;
        max-width: 100%;
    }
    
    .banner-content p {
        font-size: 0.85rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }


    
    .hero-text .subheadline {
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-ctas {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .trust-signals {
        justify-content: flex-start;
        text-align: left;
    }
    
    .server-rack-animation {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-header {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-bg {
        display: none;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .announcement-banner {
        flex-direction: row;
        border-radius: 0;
        text-align: center;
        padding: 0.5rem 2rem 0.5rem 0.5rem;
        gap: 0.5rem;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .announcement-banner .banner-icon {
        display: none;
    }
    
    .announcement-banner .banner-text {
        font-size: 0.75rem;
        line-height: 1;
        margin: 0;
    }
    
    .announcement-banner .banner-btn {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin-top: 0;
        white-space: nowrap;
    }
    
    .banner-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }

    .nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
        overflow-y: auto;
        max-height: 80vh;
    }
    
    .megamenu-wrapper {
        width: 100%;
        padding: 0.5rem 0;
    }

    .megamenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .megamenu-toggle i {
        padding: 1rem;
        margin-right: -1rem;
    }
    
    .megamenu {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        grid-template-columns: 1fr;
        padding: 1rem 0 1rem 1.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
    }
    
    .megamenu-wrapper.active .megamenu {
        display: flex;
    }

    .megamenu-wrapper.active .megamenu-toggle i {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
    
    .megamenu-item {
        padding: 0.75rem 0;
    }
    
    .megamenu::before {
        display: none;
    }
    
    .nav.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }

    #solutions .section-header {
        text-align: left !important;
    }
    
    #solutions .section-desc {
        margin-left: 0 !important;
    }
    

    .featured-content {
        padding: 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .featured-animation {
        display: none;
    }
    
    .featured-icon {
        position: static;
        font-size: 8rem;
        margin-top: 2rem;
        transform: none;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .timeline-item {
        padding-left: 4rem;
    }
    
    .trust-signals {
        grid-template-columns: 1fr;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-header {
        grid-column: 1;
    }
    
    .monitor-card {
        max-width: 100%;
    }
    
    .monitor-body {
        padding: 1rem;
    }

    .cta-premium-card {
        padding: 2.5rem 1.25rem;
    }
    .cta-premium-card h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .cta-premium-card p {
        display: none;
    }
    .cta-subtitle {
        margin-bottom: 1rem;
        padding: 0.3rem 0.8rem;
    }
    .cta-action-group {
        margin-bottom: 1.5rem;
    }
    .cta-benefits {
        gap: 0.75rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .cta-benefits li {
        font-size: 0.85rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0 1.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-text .subheadline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-ctas .btn-primary {
        display: none;
    }

    .hero-ctas .btn-secondary {
        background-color: var(--primary);
        color: white;
        border-color: var(--primary);
        box-shadow: 0 4px 6px rgba(79, 70, 229, 0.2);
    }
    
    .hero-ctas .btn-secondary:hover {
        background-color: var(--primary-dark);
        border-color: var(--primary-dark);
        color: white;
        box-shadow: 0 6px 12px rgba(79, 70, 229, 0.3);
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    #tech-stack .metrics-grid {
        gap: 1.5rem;
    }
    
    #tech-stack .metric-card h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    #tech-stack .metric-card p {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
    
    #tech-stack .metric-card i {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-premium {
        padding: 2.5rem 0 2rem !important;
    }
    
    .hero-premium nav {
        margin-bottom: 1rem !important;
    }
    
    .hero-premium .glassmorphism {
        margin-bottom: 1rem !important;
    }
    
    .hero-premium h1 {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .hero-premium p {
        margin-bottom: 1.5rem !important;
        font-size: 1rem !important;
    }

    .services-features .section-header {
        text-align: left;
    }
    
    .services-features .feature-subtitle {
        margin: 0 0 2rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .billing-toggle-container {
        margin-bottom: 2.5rem;
    }
    .toggle-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .discount-badge {
        font-size: 0.6rem;
        top: -10px;
        right: -5px;
        padding: 2px 6px;
    }
    .pricing-card {
        padding: 1.5rem 1.25rem;
    }
    .card-price {
        font-size: 2rem;
    }
    .feature-list {
        margin: 1rem 0;
    }
    .feature-list li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

/* --- Section 4: Origin & Impact (Asymmetric Layout) --- */
.metrics-asymmetric {
    background-color: #f8fafc;
}

.metrics-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .metrics-story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
    }
}

.metrics-story-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.metrics-story-left h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin: 0;
}

.metrics-story-right {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.metrics-story-right p {
    margin: 0;
}

.metrics-story-right strong {
    color: #0f172a;
    font-weight: 700;
}

.metrics-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .metrics-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.metric-card-large {
    position: relative;
    background-color: #020617;
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.04) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    background-position: 0 0;
    color: white;
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(17, 28, 58, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.metric-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(255, 108, 44, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

/* Premium Glowing Orb inside the card - Removed per user request */

/* Glass reflection effect */
.metric-card-large::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: skewX(-25deg);
    z-index: 1;
    animation: shine 8s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* Ensure content stays above the effects */
.metric-card-large > * {
    position: relative;
    z-index: 2;
}

.card-label {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #ff6c2c;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
}

.card-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff6c2c;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(255, 108, 44, 0.6);
    animation: blink 2s infinite;
}

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

.card-big-number {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 1;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.metric-card-large p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin: 0;
}

.metric-cards-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 576px) {
    .metric-cards-small {
        gap: 1.5rem;
    }
}

.metric-card-small {
    background-color: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #f1f5f9;
}

@media (min-width: 576px) {
    .metric-card-small {
        padding: 1.5rem;
    }
}

.metric-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.card-number {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.metric-card-small p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Trusted Logos Farm */
.trusted-logos-section {
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.trusted-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.trusted-logos-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .trusted-logos-flex {
        justify-content: center;
        gap: 1.5rem;
    }
}

.logo-item {
    font-size: 1.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: #0f172a;
}

/* Horizontal Process Block */
.process-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 4rem auto 0;
    gap: 2rem;
}

.process-horizontal::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: repeating-linear-gradient(to right, transparent, transparent 10px, #cbd5e1 10px, #cbd5e1 20px);
    z-index: 0;
}

/* Animated Progress Fill */
.process-horizontal::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #ff6c2c;
    z-index: 0;
    transform-origin: left;
    animation: fillProgress 8s ease-in-out infinite;
}

.progress-arrow {
    position: absolute;
    top: 24px;
    left: 40px;
    width: 0; 
    height: 0; 
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid #ff6c2c;
    z-index: 2;
    margin-top: -5px;
    animation: moveArrow 8s ease-in-out infinite;
}

@keyframes fillProgress {
    0% { transform: scaleX(0); opacity: 0; }
    5% { opacity: 1; }
    50% { transform: scaleX(1); opacity: 1; }
    87.5% { transform: scaleX(1); opacity: 1; }
    95% { opacity: 0; }
    100% { transform: scaleX(0); opacity: 0; }
}

@keyframes moveArrow {
    0% { left: 40px; opacity: 0; }
    5% { opacity: 1; }
    50% { left: calc(100% - 40px); opacity: 1; }
    87.5% { left: calc(100% - 40px); opacity: 1; }
    95% { opacity: 0; }
    100% { left: 40px; opacity: 0; }
}

/* Step 5 Highlight Animation */
.process-step:nth-child(6) .process-marker { /* 6th child because progress-arrow is the 1st child */
    animation: highlightMarker 8s infinite;
}

.process-step:nth-child(6) .process-content h3 {
    animation: highlightText 8s infinite;
}

.process-step:nth-child(6)::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background-color: rgba(255, 108, 44, 0.05);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    animation: highlightBackground 8s infinite;
}

@keyframes highlightMarker {
    0%, 45% { background-color: #020617; box-shadow: 0 0 0 10px #f8fafc; transform: scale(1); }
    50%, 87.5% { background-color: #ff6c2c; box-shadow: 0 0 0 10px #f8fafc, 0 0 20px rgba(255, 108, 44, 0.4); transform: scale(1.1); }
    95%, 100% { background-color: #020617; box-shadow: 0 0 0 10px #f8fafc; transform: scale(1); }
}

@keyframes highlightText {
    0%, 45% { color: #0f172a; }
    50%, 87.5% { color: #ff6c2c; }
    95%, 100% { color: #0f172a; }
}

@keyframes highlightBackground {
    0%, 45% { opacity: 0; }
    50%, 87.5% { opacity: 1; }
    95%, 100% { opacity: 0; }
}

/* Pulsing cPanel Icon in Metric Card */
.cpanel-pulsing-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #ff6c2c;
    z-index: 3;
    animation: cpanelPulse 2s infinite alternate ease-in-out;
}

@keyframes cpanelPulse {
    0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255, 108, 44, 0.3)); opacity: 0.7; }
    100% { transform: scale(1.15); filter: drop-shadow(0 0 20px rgba(255, 108, 44, 0.9)); opacity: 1; }
}

/* Pricing Section Styles based on React Demo */
.pricing-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}
.pricing-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}
.pricing-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto;
}

/* Toggle */
.billing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}
.billing-toggle {
    display: inline-flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.25rem;
}
.toggle-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
    position: relative;
}
.toggle-btn.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.discount-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(255, 108, 44, 0.15);
    color: #ff6c2c;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

/* Cards */
.pricing-cards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.pricing-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
}
.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.pricing-card.featured {
    border: 2px solid #ff6c2c;
    box-shadow: 0 20px 25px -5px rgba(255,108,44,0.15);
    transform: scale(1.02);
}
.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6c2c;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 9999px;
}
.card-header-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.card-description {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    min-height: 44px;
}
.card-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.25rem;
    line-height: 1;
}
.card-price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
    margin-left: 4px;
}
.card-price-annually-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    height: 18px;
    margin-bottom: 1rem;
}
.card-price-strike {
    text-decoration: line-through;
    opacity: 0.7;
    margin-left: 4px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #334155;
    margin-bottom: 0.85rem;
}
.feature-list li i {
    margin-top: 4px;
    margin-right: 0.75rem;
    color: #ff6c2c;
}
.feature-list li i.fa-times {
    color: #cbd5e1;
}
.feature-list li.disabled {
    color: #94a3b8;
}

/* Comparison Table */
.comparison-section {
    margin-top: 6rem;
    display: none;
}
@media (min-width: 768px) {
    .comparison-section {
        display: block;
    }
}
.comparison-section h3 {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2.5rem;
}
.comparison-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    background: white;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.comparison-table th, .comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}
.comparison-table th {
    background: #f8fafc;
    font-size: 0.9rem;
    font-weight: 700;
    color: #475569;
}
.comparison-table th.featured-col {
    background: rgba(255, 108, 44, 0.05);
    color: #ff6c2c;
}
.comparison-table td {
    font-size: 0.9rem;
    color: #334155;
    font-weight: 500;
}
.comparison-table td.text-center {
    text-align: center;
}
.comparison-table td.featured-col {
    background: rgba(255, 108, 44, 0.02);
}
.comparison-table tr:hover td {
    background: #f8fafc;
}
.comparison-table i.fa-check {
    color: #ff6c2c;
    font-size: 1.125rem;
}
.comparison-table i.fa-times {
    color: #cbd5e1;
    font-size: 1.125rem;
}

/* Accordion FAQ Styles */
.faq-accordion-wrapper {
    max-width: 48rem;
    margin: 3rem auto 0;
}
.faq-accordion {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.faq-accordion .faq-item {
    border: none;
    border-bottom: 1px dashed #e2e8f0;
    border-radius: 0;
    margin-bottom: 0;
}
.faq-accordion .faq-item:last-child {
    border-bottom: none;
}
.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease-in-out;
    font-family: inherit;
}
.faq-trigger:hover {
    color: #ff6c2c;
}
.faq-trigger i {
    color: #94a3b8;
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}
.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-content {
    max-height: 400px;
}
.faq-content p {
    padding-bottom: 1.5rem;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .process-horizontal {
        flex-direction: column;
        gap: 3rem;
        position: relative;
    }
    .process-horizontal::before {
        content: '';
        display: block;
        position: absolute;
        top: 24px;
        bottom: 24px;
        left: 23px;
        width: 2px;
        background: repeating-linear-gradient(to bottom, transparent, transparent 10px, #cbd5e1 10px, #cbd5e1 20px);
        z-index: 0;
    }
    .process-horizontal::after {
        content: '';
        display: block;
        position: absolute;
        top: 24px;
        left: 23px;
        width: 2px;
        height: calc(100% - 48px);
        background-color: #ff6c2c;
        transform-origin: top;
        animation: fillProgressVertical 8s ease-in-out infinite;
        z-index: 0;
    }
    .process-horizontal .progress-arrow {
        top: 24px;
        left: 17px;
        width: 0;
        height: 0;
        border-top: 12px solid #ff6c2c;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: none;
        margin-top: 0;
        animation: moveArrowVertical 8s ease-in-out infinite;
    }
    .process-horizontal .process-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
        padding-left: 0;
        margin-bottom: 1.5rem;
    }
    .process-horizontal .process-marker {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

@keyframes fillProgressVertical {
    0% { transform: scaleY(0); opacity: 0; }
    5% { opacity: 1; }
    50% { transform: scaleY(1); opacity: 1; }
    87.5% { transform: scaleY(1); opacity: 1; }
    95% { opacity: 0; }
    100% { transform: scaleY(0); opacity: 0; }
}

@keyframes moveArrowVertical {
    0% { top: 24px; opacity: 0; }
    5% { opacity: 1; }
    50% { top: calc(100% - 24px); opacity: 1; }
    87.5% { top: calc(100% - 24px); opacity: 1; }
    95% { opacity: 0; }
    100% { top: 24px; opacity: 0; }
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: left;
    transition: transform 0.3s ease;
    cursor: default;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-marker {
    width: 48px;
    height: 48px;
    background-color: #020617;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 10px #f8fafc;
    transition: all 0.3s ease;
}

.process-step:hover .process-marker {
    background-color: #ff6c2c;
    box-shadow: 0 0 0 10px #f8fafc, 0 0 20px rgba(255, 108, 44, 0.4);
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .process-marker {
        margin-bottom: 1.5rem;
    }
    .process-step {
        text-align: left;
    }
}

.process-content h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.process-step:hover .process-content h3 {
    color: #ff6c2c;
}

.process-content p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.use-case-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}
.use-case-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 108, 44, 0.1);
    color: #ff6c2c;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

/* Onboarding Process Steps */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 24px;
    width: 2px;
    background: #e2e8f0;
}
.process-step {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3rem;
}
.process-step:last-child {
    margin-bottom: 0;
}
.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid #ff6c2c;
    color: #ff6c2c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 1;
}
.process-step-content {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.testimonial-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(226, 232, 240, 0.5);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}
.testimonial-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}
.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #cbd5e1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-info h5 {
    margin: 0;
    font-size: 1.05rem;
    color: #0f172a;
    font-weight: 700;
}
.testimonial-info span {
    font-size: 0.9rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 20px;
    }
    .process-step {
        padding-left: 4rem;
    }
    .process-step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Cloud Providers Carousel */
.cloud-carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}
.cloud-carousel-track {
    display: inline-flex;
    align-items: center;
    gap: 5rem;
    animation: scroll-cloud 30s linear infinite;
}
.cloud-carousel-track:hover {
    animation-play-state: paused;
}
.cloud-logo {
    height: 40px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    object-fit: contain;
}
.cloud-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}
@keyframes scroll-cloud {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 2.5rem)); }
}

