.hero {
    padding-top: var(--header-height);
    min-height: 900px;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(81, 221, 251, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    margin-top: -60px;
}

.hero-label {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(81, 221, 251, 0.1);
    color: var(--accent-blue-dark);
    border-radius: 100px;
    font-family: 'MiSans-Medium';
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 {
    font-family: 'MiSans-Bold';
    font-size: 88px;
    line-height: 1.05;
    color: var(--text-primary);
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.hero h1 span {
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 24px;
    background-color: rgba(81, 221, 251, 0.3);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero p {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    font-weight: 400;
}

/* Stats Section */
        .stats-bar {
            background-color: white;
            width: 1400px;
            margin: -60px auto 0;
            border-radius: 20px;
            box-shadow: var(--card-shadow);
            display: grid;
           grid-template-columns: repeat(4, 1fr); 
            padding: 40px;
            position: relative;
            z-index: 10;
        }

        .stat-item {
            text-align: center;
            border-right: 1px solid #F1F5F9;
        }

        .stat-item:last-child {
            border-right: none;
        }

        .stat-number {
            font-family: 'MiSans-Bold';
            font-size: 42px;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 16px;
            font-family: 'MiSans-Medium';
        }

        /* Services Section */
        .services {
            padding: 140px 160px;
            background-color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            color: var(--accent-orange);
            font-family: 'MiSans-Bold';
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 16px;
            display: block;
        }

        .section-title {
            font-family: 'MiSans-Bold';
            font-size: 48px;
            color: var(--text-primary);
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: #F8FAFC;
            padding: 48px 40px;
            border-radius: 24px;
            transition: all 0.3s ease;
            border: 1px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            background: white;
            box-shadow: var(--card-shadow);
            border-color: rgba(81, 221, 251, 0.3);
            transform: translateY(-8px);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background-color: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: var(--accent-blue-dark);
            margin-bottom: 32px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .service-card:hover .service-icon {
            background-color: var(--accent-blue);
            color: white;
        }

        .service-card h3 {
            font-family: 'MiSans-Bold';
            font-size: 24px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 32px;
        }

         /* Features/Why Us */
        .features {
            padding: 120px 160px;
            background-color: #F8FAFC;
            /*display: grid; */
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .features-content {
            padding-right: 40px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .feature-box {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .feature-box i {
            font-size: 32px;
            color: var(--accent-orange);
            margin-bottom: 24px;
            display: block;
        }

        .feature-box h4 {
            font-family: 'MiSans-Bold';
            font-size: 20px;
            margin-bottom: 12px;
        }

        .feature-box p {
            color: var(--text-secondary);
            font-size: 15px;
        }

          /* Testimonials */
        .testimonials {
            padding: 140px 160px;
            background-color: white;
            text-align: center;
        }

        .testimonial-slider {
            display: flex;
            gap: 32px;
            margin-top: 60px;
            overflow: hidden;
        }

        .testimonial-card {
            flex: 1;
            background: #FFFFFF;
            padding: 48px;
            border-radius: 24px;
            border: 1px solid #E2E8F0;
            text-align: left;
        }

        .stars {
            color: #FFB020;
            margin-bottom: 24px;
            font-size: 18px;
        }

        .testimonial-text {
            font-family: 'MiSans-Medium';
            font-size: 18px;
            color: var(--text-primary);
            margin-bottom: 32px;
            line-height: 1.6;
   
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-bottom: 30px;
        }

        .client-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: #E2E8F0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--text-secondary);
        }

        .client-details h5 {
            font-size: 16px;
            font-family: 'MiSans-Bold';
            color: var(--text-primary);
        }

        .client-details span {
            font-size: 14px;
            color: var(--text-secondary);
        }

           /* CTA Section */
        .cta-section {
            padding: 100px 160px;
            background: #1E293B;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 0;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
             content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 600px;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(81, 221, 251, 0.1));
        }

        .cta-text h2 {
            color: white;
            font-size: 48px;
            font-family: 'MiSans-Bold';
            margin-bottom: 16px;
        }

        .cta-text p {
            color: #94A3B8;
            font-size: 20px;
            max-width: 600px;
        }

        .cta-action .btn-primary {
            background-color: var(--accent-blue);
            color: #0F172A;
        }

     /* Stats Bar */
        .stats-bar {
            background: #FFFFFF;
            border-top: 1px solid #E2E8F0;
            border-bottom: 1px solid #E2E8F0;
            padding: 40px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            text-align: center;
            gap: 40px;
        }

        .stat-item h3 {
            font-size: 36px;
            font-weight: 800;
            color: #1E293B;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 14px;
            color: #64748B;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

 /* Features Section */
        .features {
            background: #FFFFFF;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #1E293B;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 18px;
            color: #64748B;
            line-height: 1.6;
        }

        .features-grid {
            /*display: grid;*/
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: #FFFFFF;
            border: 1px solid #E2E8F0;
            border-radius: 12px;
            padding: 40px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: #51DDFB;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(30, 41, 59, 0.08);
            border-color: transparent;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: #F0F9FF;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: #0284C7;
            font-size: 28px;
        }

        .feature-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1E293B;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 16px;
            color: #64748B;
            line-height: 1.6;
        }


    /* Deep Dive Section */
        .deep-dive {
            background: #F8FAFC;
            display: flex;
            justify-content: center;
            padding-left: 3px;
            padding-top: 36px;
            padding-bottom: 38px;
        }

        .dive-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .dive-content h2 {
            font-size: 36px;
            font-weight: 800;
            color: #1E293B;
            margin-bottom: 20px;
        }
        
        .dive-content p {
            font-size: 18px;
            color: #64748B;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .feature-list-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .check-icon {
            min-width: 24px;
            height: 24px;
            background: #51DDFB;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1E293B;
            font-size: 14px;
            margin-right: 15px;
            margin-top: 3px;
        }

        .list-text h4 {
            font-size: 18px;
            font-weight: 700;
            color: #1E293B;
            margin-bottom: 5px;
        }

        .list-text p {
            font-size: 15px;
            color: #64748B;
            margin-bottom: 0;
        }


/* --- Scoped Styles for Home (Home) --- */
.page-home {
    /* Home-specific styles can go here if needed, 
       but most are already in the base theme.css */
}

/* --- Scoped Styles for Acronis (acronis-home) --- */
/* (Mapping: acronis.css -> .page-acronis-cyber-protect-cloud) */
.page-acronis-cyber-protect-cloud {
    /* Reset local to page to avoid global impact */
}
.page-acronis-cyber-protect-cloud body { background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%); }
.page-acronis-cyber-protect-cloud .hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(circle at 70% 20%, rgba(81, 221, 251, 0.1) 0%, rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
}
.page-acronis-cyber-protect-cloud .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-acronis-cyber-protect-cloud .hero-text h1 { font-size: 64px; line-height: 1.1; font-weight: 800; color: #1E293B; margin-bottom: 24px; letter-spacing: -1px; }
.page-acronis-cyber-protect-cloud .hero-text h1 span { color: #0F172A; position: relative; display: inline-block; }
.page-acronis-cyber-protect-cloud .hero-text h1 span::after { content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 12px; background: #51DDFB; opacity: 0.3; z-index: -1; }
.page-acronis-cyber-protect-cloud .hero-text p { font-size: 22px; line-height: 1.6; color: #64748B; margin-bottom: 40px; max-width: 600px; }
.page-acronis-cyber-protect-cloud .hero-buttons { display: flex; gap: 20px; }
.page-acronis-cyber-protect-cloud .ui-mockup { background: #FFFFFF; border-radius: 16px; box-shadow: 0 20px 50px rgba(30, 41, 59, 0.1); border: 1px solid #E2E8F0; overflow: hidden; position: relative; animation: acronisFloat 6s ease-in-out infinite; }
@keyframes acronisFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }
.page-acronis-cyber-protect-cloud .ui-header { height: 48px; background: #F1F5F9; border-bottom: 1px solid #E2E8F0; display: flex; align-items: center; padding: 0 20px; gap: 8px; }
.page-acronis-cyber-protect-cloud .dot { width: 10px; height: 10px; border-radius: 50%; }
.page-acronis-cyber-protect-cloud .dot-red { background: #FF5F57; }
.page-acronis-cyber-protect-cloud .dot-yellow { background: #FEBC2E; }
.page-acronis-cyber-protect-cloud .dot-green { background: #28C840; }
.page-acronis-cyber-protect-cloud .ui-body { display: flex; height: 400px; }
.page-acronis-cyber-protect-cloud .ui-sidebar { width: 80px; background: #1E293B; display: flex; flex-direction: column; align-items: center; padding-top: 24px; gap: 24px; }
.page-acronis-cyber-protect-cloud .ui-sidebar i { color: #94A3B8; font-size: 20px; }
.page-acronis-cyber-protect-cloud .ui-sidebar i.active { color: #51DDFB; }
.page-acronis-cyber-protect-cloud .ui-content { flex: 1; padding: 24px; display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; background: #F8FAFC; }
.page-acronis-cyber-protect-cloud .widget { background: white; border-radius: 8px; padding: 20px; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03); border: 1px solid #E2E8F0; display: flex; flex-direction: column; }
.page-acronis-cyber-protect-cloud .widget.large { grid-column: span 1; grid-row: span 2; }
.page-acronis-cyber-protect-cloud .widget-title { font-size: 14px; font-weight: 700; color: #64748B; margin-bottom: 15px; text-transform: uppercase; }
.page-acronis-cyber-protect-cloud .chart-mockup { flex: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding-top: 10px; }
.page-acronis-cyber-protect-cloud .bar { width: 100%; background: #E2E8F0; border-radius: 4px; position: relative; }
.page-acronis-cyber-protect-cloud .bar::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; border-radius: 4px; background: #51DDFB; }
.page-acronis-cyber-protect-cloud .bar:nth-child(1)::after { height: 40%; }
.page-acronis-cyber-protect-cloud .bar:nth-child(2)::after { height: 70%; background: #3B82F6; }
.page-acronis-cyber-protect-cloud .bar:nth-child(3)::after { height: 50%; }
.page-acronis-cyber-protect-cloud .bar:nth-child(4)::after { height: 85%; background: #3B82F6; }
.page-acronis-cyber-protect-cloud .bar:nth-child(5)::after { height: 60%; }
.page-acronis-cyber-protect-cloud .status-item { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #F1F5F9; }
.page-acronis-cyber-protect-cloud .status-item:last-child { border: none; }
.page-acronis-cyber-protect-cloud .status-label { font-size: 13px; font-weight: 600; color: #1E293B; }
.page-acronis-cyber-protect-cloud .status-value { font-size: 13px; color: #10B981; font-weight: 700; }
.page-acronis-cyber-protect-cloud .deep-dive { background: #F8FAFC; }
.page-acronis-cyber-protect-cloud .dive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.page-acronis-cyber-protect-cloud .dive-content h2 { font-size: 36px; font-weight: 800; color: #1E293B; margin-bottom: 20px; }
.page-acronis-cyber-protect-cloud .dive-content p { font-size: 18px; color: #64748B; line-height: 1.6; margin-bottom: 30px; }
.page-acronis-cyber-protect-cloud .feature-list-item { display: flex; align-items: flex-start; margin-bottom: 20px; }
.page-acronis-cyber-protect-cloud .check-icon { min-width: 24px; height: 24px; background: #51DDFB; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #1E293B; font-size: 14px; margin-right: 15px; margin-top: 3px; }
.page-acronis-cyber-protect-cloud .list-text h4 { font-size: 18px; font-weight: 700; color: #1E293B; margin-bottom: 5px; }
.page-acronis-cyber-protect-cloud .list-text p { font-size: 15px; color: #64748B; margin-bottom: 0; }
.page-acronis-cyber-protect-cloud .testimonial-section { background: #1E293B; color: white; text-align: center; justify-content: center; display: flex; }
.page-acronis-cyber-protect-cloud .quote-icon { font-size: 48px; color: #51DDFB; margin-bottom: 30px; opacity: 0.5; }
.page-acronis-cyber-protect-cloud .testimonial-text { font-size: 32px; font-weight: 500; line-height: 1.4; max-width: 1000px; margin: 0 auto 40px; font-style: italic; }
.page-acronis-cyber-protect-cloud .client-info { display: flex; align-items: center; justify-content: center; gap: 15px; }
.page-acronis-cyber-protect-cloud .client-avatar { width: 60px; height: 60px; background: #334155; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; color: #51DDFB; font-weight: 700; }
.page-acronis-cyber-protect-cloud .client-details h4 { font-size: 18px; font-weight: 700; color: #FFFFFF; }
.page-acronis-cyber-protect-cloud .client-details p { font-size: 14px; color: #94A3B8; }

/* --- Scoped Styles for CheapSSL (cheapssl-home) --- */
.page-ssl {
    --cheapssl-accent: #51DDFB; --cheapssl-logo: #FF4500;
}
.page-ssl .hero { padding: 180px 120px 100px; text-align: center; max-width: 1400px; margin: 0 auto; }
.page-ssl .hero h1 { font-size: 72px; font-weight: 800; line-height: 1.1; margin-bottom: 24px; background: linear-gradient(120deg, #1E293B, #334155); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-ssl .hero p { font-size: 24px; color: #64748B; max-width: 800px; margin: 0 auto 48px; line-height: 1.6; }
.page-ssl .cta-btn { display: inline-flex; align-items: center; justify-content: center; background: var(--cheapssl-accent); color: #0F172A; font-weight: 700; padding: 18px 48px; border-radius: 50px; text-decoration: none; font-size: 18px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 10px 25px rgba(81, 221, 251, 0.3); }
.page-ssl .cta-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(81, 221, 251, 0.4); }
.page-ssl .pricing-section { padding: 80px 10px 120px; background: #FFFFFF; }
.page-ssl .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 40px; max-width: 1400px; margin: 0 auto; }
.page-ssl .pricing-card { background: #FFFFFF; border-radius: 24px; padding: 50px 40px; border: 1px solid #E2E8F0; transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.page-ssl .pricing-card:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); border-color: var(--cheapssl-accent); }
.page-ssl .pricing-card.featured::before { content: "Terlaris"; position: absolute; top: 20px; right: -30px; background: var(--cheapssl-logo); color: white; padding: 8px 40px; transform: rotate(45deg); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.page-ssl .plan-name { font-size: 24px; font-weight: 700; color: #1E293B; margin-bottom: 10px; }
.page-ssl .plan-price { font-size: 48px; font-weight: 800; color: #1E293B; margin-bottom: 20px; display: flex; align-items: baseline; }
.page-ssl .plan-price span { font-size: 18px; color: #64748B; font-weight: 500; margin-left: 8px; }
.page-ssl .plan-desc { color: #64748B; font-size: 16px; margin-bottom: 30px; min-height: 50px; }
.page-ssl .feature-list { list-style: none; margin-bottom: 40px; flex-grow: 1; }
.page-ssl .feature-list li { display: flex; align-items: center; margin-bottom: 16px; color: #1E293B; font-size: 16px; }
.page-ssl .feature-list li i { color: #10B981; margin-right: 12px; font-size: 20px; }
.page-ssl .plan-btn { width: 100%; padding: 16px; border-radius: 12px; border: 2px solid #E2E8F0; background: transparent; color: #1E293B; font-weight: 700; font-size: 16px; cursor: pointer; transition: all 0.3s; }
.page-ssl .pricing-card:hover .plan-btn { background: #1E293B; color: #FFFFFF; border-color: #1E293B; }
.page-ssl .pricing-card.featured .plan-btn { background: var(--cheapssl-accent); border-color: var(--cheapssl-accent); color: #0F172A; }
.page-ssl .gov-section { background: #F1F5F9; padding: 100px 120px; display: flex; align-items: center; justify-content: center; gap: 60px; }
.page-ssl .gov-content { max-width: 600px; }
.page-ssl .gov-badge { background: var(--cheapssl-logo); color: white; padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 14px; text-transform: uppercase; display: inline-block; margin-bottom: 20px; }
.page-ssl .gov-title { font-size: 40px; font-weight: 800; margin-bottom: 20px; }
.page-ssl .gov-desc { font-size: 18px; color: #64748B; margin-bottom: 30px; line-height: 1.6; }
.page-ssl .gov-btn { background: #1E293B; color: white; padding: 16px 32px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; }

/* --- Scoped Styles for Data Engineering (data-engineering-home) --- */
.page-data-engineering {
    --eng-blue: #51DDFB; --eng-navy: #1E293B;
}
.page-data-engineering .hero { padding-top: 180px; padding-bottom: 140px; background: linear-gradient(135deg, #F0F9FF 0%, #FFFFFF 100%); position: relative; overflow: hidden; }
.page-data-engineering .hero-content { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.page-data-engineering .hero h1 { font-family: 'MiSans-Bold', sans-serif; font-size: 72px; line-height: 1.1; margin-bottom: 32px; color: #1E293B; letter-spacing: -1px; }
.page-data-engineering .hero h1 span { color: #0ea5e9; background: linear-gradient(to right, #0ea5e9, var(--eng-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.page-data-engineering .hero p { font-size: 22px; color: #64748B; line-height: 1.6; margin-bottom: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }
.page-data-engineering .hero-graphics { margin-top: 80px; position: relative; height: 400px; background: white; border-radius: 20px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08); border: 1px solid rgba(226, 232, 240, 0.8); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-data-engineering .ui-grid { display: grid; grid-template-columns: 240px 1fr; width: 100%; height: 100%; }
.page-data-engineering .ui-sidebar { background: #F8FAFC; border-right: 1px solid #E2E8F0; padding: 30px; }
.page-data-engineering .ui-main { padding: 40px; background: #fff; }
.page-data-engineering .skeleton-line { height: 12px; background: #E2E8F0; border-radius: 6px; margin-bottom: 16px; }
.page-data-engineering .skeleton-card { background: #F1F5F9; border-radius: 12px; height: 120px; margin-bottom: 24px; }
.page-data-engineering .chart-mockup { display: flex; align-items: flex-end; gap: 12px; height: 100%; padding-top: 40px; }
.page-data-engineering .bar { width: 40px; background: var(--eng-blue); border-radius: 4px 4px 0 0; opacity: 0.8; }
.page-data-engineering .process { background-color: #F8FAFC; }
.page-data-engineering .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.page-data-engineering .process-steps::before { content: ''; position: absolute; top: 40px; left: 50px; right: 50px; height: 2px; background: #E2E8F0; z-index: 0; }
.page-data-engineering .step-card { position: relative; z-index: 1; text-align: center; }
.page-data-engineering .step-number { width: 80px; height: 80px; background: #FFFFFF; border: 2px solid var(--eng-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; font-family: 'MiSans-Bold', sans-serif; font-size: 24px; color: #1E293B; box-shadow: 0 4px 12px rgba(81, 221, 251, 0.2); }
.page-data-engineering .step-card h3 { font-family: 'MiSans-Semibold', sans-serif; font-size: 20px; margin-bottom: 12px; color: #1E293B; }
.page-data-engineering .step-card p { font-size: 16px; color: #64748B; line-height: 1.6; }
.page-data-engineering .stats-section { background: #1E293B; color: white; padding: 80px 0; display: flex; justify-content: center; }
.page-data-engineering .contact { background: linear-gradient(to bottom, #FFFFFF, #F0F9FF); text-align: center; }
.page-data-engineering .contact-box { background: #FFFFFF; border-radius: 24px; padding: 80px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); max-width: 1000px; margin: 0 auto; }

/* --- Scoped Styles for Zoho Workplace (zoho-workplace) --- */

/* Base Theme Styles (theme.css content) */
@font-face {
    font-family: 'MiSans-Regular';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'MiSans-Medium';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'MiSans-Bold';
    src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
}

:root {
    --primary-bg: #FFFFFF; --secondary-bg: #F8FAFC; --accent-blue: #51DDFB; --accent-blue-dark: #3BB5D1;
    --text-primary: #1E293B; --text-secondary: #64748B; --accent-orange: #FF4500;
    --card-shadow: 0 10px 40px -10px rgba(30, 41, 59, 0.08); --header-height: 88px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'MiSans-Regular', sans-serif; background-color: var(--primary-bg); color: var(--text-primary); line-height: 1.6; width: 100%; margin: 0 auto; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

header { width: 100%; height: var(--header-height); display: flex; align-items: center; justify-content: space-between; padding: 0 160px; background-color: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px); position: fixed; top: 0; z-index: 1000; border-bottom: 1px solid rgba(226, 232, 240, 0.6); }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'MiSans-Bold'; font-size: 24px; color: var(--text-primary); text-decoration: none; letter-spacing: -0.5px; }
.logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--accent-orange), #ff7b00); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; }
nav ul { display: flex; gap: 48px; list-style: none; }
nav a { text-decoration: none; color: var(--text-primary); font-family: 'MiSans-Medium'; font-size: 16px; transition: color 0.3s ease; position: relative; }
nav a:hover { color: var(--accent-blue-dark); }
nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background-color: var(--accent-blue); transition: width 0.3s ease; }
nav a:hover::after { width: 100%; }

.section-header { text-align: center; margin-bottom: 80px; }
.section-title { font-family: 'MiSans-Bold'; font-size: 48px; color: var(--text-primary); margin-bottom: 24px; letter-spacing: -1px; }

footer { background-color: #0F172A; color: white; padding: 100px 160px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 80px; border-bottom: 1px solid #334155; padding-bottom: 80px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; color: #64748B; font-size: 14px; }
        .page-zoho-suites {
            --zoho-blue: #51DDFB;
            --zoho-navy: #1E293B;
            --text-gray: #64748B;
        }
        .page-zoho-suites .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .page-zoho-suites .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 10px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        .page-zoho-suites .btn-primary {
            background: #0EA5E9;
            color: #FFFFFF;
            border-color: #0EA5E9;
        }
        .page-zoho-suites .btn-primary:hover {
            background: #0284C7;
            border-color: #0284C7;
        }
        .page-zoho-suites .btn-secondary {
            background: transparent;
            color: #1E293B;
            border-color: #E2E8F0;
        }
        .page-zoho-suites .btn-secondary:hover {
            background: #F1F5F9;
            border-color: #CBD5E1;
        }
        .page-zoho-suites .section-padding {
            padding: 100px 0;
        }
        .page-zoho-suites .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }
        .page-zoho-suites .section-header h2 {
            font-family: 'MiSans-Bold';
            font-size: 48px;
            color: #1E293B;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .page-zoho-suites .section-header p {
            font-size: 18px;
            color: #64748B;
            line-height: 1.6;
        }
        .page-zoho-suites .hero {
            background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
            padding-top: 180px;
            padding-bottom: 100px;
            position: relative;
            overflow: hidden;
        }
        .page-zoho-suites .hero-bg-decoration {
            position: absolute;
            top: -100px;
            right: -100px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(81, 221, 251, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            border-radius: 50%;
        }
        .page-zoho-suites .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px auto;
        }
        .page-zoho-suites .hero-badge {
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(81, 221, 251, 0.1);
            color: #0EA5E9;
            border-radius: 50px;
            font-size: 14px;
            font-family: 'MiSans-Bold';
            margin-bottom: 24px;
            border: 1px solid rgba(81, 221, 251, 0.3);
        }
        .page-zoho-suites .hero h1 {
            font-family: 'MiSans-Bold';
            font-size: 72px;
            line-height: 1.1;
            color: #1E293B;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }
        .page-zoho-suites .hero p {
            font-size: 24px;
            color: #64748B;
            margin-bottom: 40px;
            line-height: 1.6;
        }
        .page-zoho-suites .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .page-zoho-suites .ui-mockup-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .page-zoho-suites .ui-mockup {
            background: #FFFFFF;
            border-radius: 16px;
            box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.15);
            border: 1px solid #E2E8F0;
            overflow: hidden;
            display: flex;
            height: 650px;
        }
        .page-zoho-suites .sidebar {
            width: 240px;
            background: #F1F5F9;
            padding: 24px;
            display: flex;
            flex-direction: column;
            border-right: 1px solid #E2E8F0;
        }
        .page-zoho-suites .sidebar-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            color: #64748B;
            border-radius: 8px;
            margin-bottom: 8px;
            cursor: pointer;
        }
        .page-zoho-suites .sidebar-item.active {
            background: #FFFFFF;
            color: #0EA5E9;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            font-family: 'MiSans-Bold';
        }
        .page-zoho-suites .main-view {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .page-zoho-suites .top-bar {
            height: 70px;
            border-bottom: 1px solid #E2E8F0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 32px;
            background: #FFFFFF;
        }
        .page-zoho-suites .search-mock {
            width: 300px;
            height: 40px;
            background: #F8FAFC;
            border-radius: 8px;
            display: flex;
            align-items: center;
            padding: 0 16px;
            color: #94A3B8;
            font-size: 14px;
        }
        .page-zoho-suites .user-mock {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .page-zoho-suites .avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #FF9A9E 0%, #FECFEF 100%);
            border-radius: 50%;
        }
        .page-zoho-suites .dashboard-content {
            padding: 32px;
            background: #FAFAFA;
            flex: 1;
            display: grid;
            grid-template-columns: 2fr 1fr;
            grid-template-rows: auto 1fr;
            gap: 24px;
        }
        .page-zoho-suites .dash-card {
            background: #FFFFFF;
            border-radius: 12px;
            padding: 24px;
            border: 1px solid #E2E8F0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        .page-zoho-suites .stat-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 24px;
            grid-column: 1 / -1;
        }
        .page-zoho-suites .stat-box {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid #E2E8F0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .page-zoho-suites .stat-value {
            font-size: 32px;
            font-family: 'MiSans-Bold';
            color: #1E293B;
        }
        .page-zoho-suites .stat-label {
            color: #64748B;
            font-size: 14px;
        }
        .page-zoho-suites .chart-placeholder {
            height: 200px;
            background: linear-gradient(180deg, rgba(81, 221, 251, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
            border-bottom: 2px solid #51DDFB;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding-bottom: 10px;
        }
        .page-zoho-suites .chart-bar {
            width: 30px;
            background: #0EA5E9;
            border-radius: 4px 4px 0 0;
            opacity: 0.8;
        }
        .page-zoho-suites .features-section {
            background: #FFFFFF;
            position: relative;
        }
        .page-zoho-suites .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .page-zoho-suites .feature-card {
            background: #FFFFFF;
            padding: 32px;
            border-radius: 16px;
            border: 1px solid #E2E8F0;
            transition: all 0.3s ease;
        }
        .page-zoho-suites .feature-card:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }
        .page-zoho-suites .feature-card h3 {
            font-family: 'MiSans-Bold';
            font-size: 20px;
            color: #1E293B;
            margin-bottom: 12px;
        }
        .page-zoho-suites .feature-card p {
            color: #64748B;
            font-size: 15px;
            line-height: 1.6;
        }
        .page-zoho-suites .feature-icon-box {
            width: 60px;
            height: 60px;
            background: #F0F9FF;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #0EA5E9;
            font-size: 28px;
        }
        .page-zoho-suites .testimonials {
            background: #F8FAFC;
        }
        .page-zoho-suites .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .page-zoho-suites .testimonial-card {
            background: #FFFFFF;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid #E2E8F0;
            position: relative;
        }
        .page-zoho-suites .quote-icon {
            font-size: 40px;
            color: #51DDFB;
            margin-bottom: 20px;
        }
        .page-zoho-suites .testimonial-text {
            font-size: 18px;
            color: #334155;
            line-height: 1.7;
            margin-bottom: 24px;
        }
        .page-zoho-suites .client-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .page-zoho-suites .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #E2E8F0;
        }
        .page-zoho-suites .client-details h4 {
            font-family: 'MiSans-Bold';
            color: #1E293B;
            margin-bottom: 4px;
        }
        .page-zoho-suites .client-details span {
            color: #64748B;
            font-size: 14px;
        }
        .page-zoho-suites .pricing-section {
            background: #FFFFFF;
        }
        .page-zoho-suites .pricing-grid {
            display: grid;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .page-zoho-suites .pricing-card {
            background: #FFFFFF;
            border-radius: 20px;
            padding: 40px;
            border: 1px solid #E2E8F0;
            text-align: center;
            position: relative;
        }
        .page-zoho-suites .pricing-card.featured {
            background: #1E293B;
            color: #FFFFFF;
            transform: scale(1.05);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border: none;
        }
        .page-zoho-suites .pricing-card.featured h3 {
            color: #E2E8F0;
        }
        .page-zoho-suites .pricing-card.featured .price {
            color: #51DDFB;
        }
        .page-zoho-suites .pricing-card.featured p {
            color: #E2E8F0;
        }
        .page-zoho-suites .pricing-card.featured li {
            color: #E2E8F0;
            border-color: rgba(255,255,255,0.1);
        }
        .page-zoho-suites .pricing-card h3 {
            font-family: 'MiSans-Bold';
            font-size: 24px;
            color: #1E293B;
            margin-bottom: 16px;
        }
        .page-zoho-suites .pricing-card .price {
            font-size: 48px;
            font-family: 'MiSans-Bold';
            color: #1E293B;
            margin-bottom: 8px;
        }
        .page-zoho-suites .pricing-card .price span {
            font-size: 18px;
            font-weight: 400;
            color: #64748B;
        }
        .page-zoho-suites .pricing-card.featured .price span {
            color: #94A3B8;
        }
        .page-zoho-suites .pricing-card p {
            color: #64748B;
            margin-bottom: 24px;
        }
        .page-zoho-suites .pricing-features {
            list-style: none;
            padding: 0;
            margin: 0 0 32px 0;
            text-align: left;
        }
        .page-zoho-suites .pricing-features li {
            color: #334155;
            padding: 10px 0;
            border-bottom: 1px solid #E2E8F0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .page-zoho-suites .pricing-features li i {
            color: #10B981;
        }
        .page-zoho-suites .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #51DDFB 0%, #0EA5E9 100%);
            color: #1E293B;
            font-size: 12px;
            font-weight: 700;
            padding: 6px 20px;
            border-radius: 20px;
        }

/* CTA */
.cta-section {
padding: 100px 160px;
background: #1E293B;
display: flex; justify-content: space-between; align-items: center;
position: relative; overflow: hidden;
}
.cta-section::before {
content: '';
position: absolute; top: 0; right: 0;
width: 600px; height: 100%;
background: linear-gradient(90deg, transparent, rgba(81,221,251,0.1));
}
.cta-text h2 { color: white; font-size: 48px; font-family: 'MiSans-Bold'; margin-bottom: 16px; letter-spacing: -1px; }
.cta-text p { color: #94A3B8; font-size: 20px; max-width: 560px; }
.cta-action { position: relative; z-index: 2; }
.cta-action .btn-primary { background-color: var(--accent-blue); }
.btn-ghost {
display: inline-flex; align-items: center; gap: 8px;
background: transparent; color: rgba(255,255,255,0.8);
font-family: 'MiSans-Medium'; font-size: 16px;
padding: 14px 28px; border-radius: 50px;
border: 2px solid rgba(255,255,255,0.2);
text-decoration: none; transition: all 0.3s; margin-left: 16px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }

/* FEATURES */
    .features { padding: 140px 160px; background-color: white; }
    .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .feature-box {
      background: white;
      padding: 40px;
      border-radius: 24px;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
      border: 1px solid #E2E8F0;
      transition: all 0.3s;
    }
    .feature-box:hover { box-shadow: var(--card-shadow); transform: translateY(-4px); }
    .feature-box i { font-size: 32px; color: var(--accent-orange); margin-bottom: 24px; display: block; }
    .feature-box h4 { font-family: 'MiSans-Bold'; font-size: 20px; margin-bottom: 12px; }
    .feature-box p { color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

    /* WHO WE ARE + JOURNEY */
    .about-section { padding: 140px 160px; background-color: white; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .about-content p { font-size: 17px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
    .region-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
    .region-tag {
      font-family: 'MiSans-Medium';
      font-size: 14px;
      padding: 8px 18px;
      border-radius: 100px;
      border: 1px solid #E2E8F0;
      color: var(--text-primary);
      background: #F8FAFC;
      display: flex; align-items: center; gap: 8px;
    }
    .region-tag::before {
      content: '';
      display: inline-block;
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent-blue-dark);
    }
 
    /* TIMELINE */
    .timeline { position: relative; padding-left: 32px; }
    .timeline::before {
      content: '';
      position: absolute;
      left: 10px; top: 8px; bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--accent-blue) 0%, var(--accent-blue-dark) 100%);
    }
    .timeline-item { position: relative; margin-bottom: 32px; }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -26px; top: 5px;
      width: 12px; height: 12px;
      border-radius: 50%;
      background: var(--accent-blue);
      border: 2px solid white;
      box-shadow: 0 0 0 3px rgba(81,221,251,0.2);
    }
    .timeline-item:last-child { margin-bottom: 0; }
    .timeline-year {
      font-family: 'MiSans-Bold';
      font-size: 13px;
      color: var(--accent-blue-dark);
      margin-bottom: 6px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .timeline-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
 
    /* SERVICES */
    .services { padding: 140px 160px; background-color: var(--secondary-bg); }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .service-card {
      background: #F8FAFC;
      padding: 48px 40px;
      border-radius: 24px;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      background: white;
      box-shadow: var(--card-shadow);
      border-color: rgba(81,221,251,0.3);
      transform: translateY(-8px);
    }
    .service-icon {
      width: 64px; height: 64px;
      background-color: white;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 28px;
      color: var(--accent-blue-dark);
      margin-bottom: 32px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: all 0.3s;
    }
    .service-card:hover .service-icon { background-color: var(--accent-blue); color: white; }
    .service-card h3 { font-family: 'MiSans-Bold'; font-size: 24px; margin-bottom: 16px; color: var(--text-primary); }
    .service-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }