
    :root {
        --primary-red: #dc2626;
        --primary-red-light: #ef4444;
        --primary-red-dark: #991b1b;
        --primary-black: #000000;
        --primary-white: #ffffff;
        --dark-gray: #111827;
        --medium-gray: #374151;
        --light-gray: #f3f4f6;
        --success-green: #10b981;
        --trust-blue: #3b82f6;
        --premium-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        --smooth-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        --gradient-trust: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
        --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--primary-black);
        overflow-x: hidden;
        background: var(--primary-white);
        width: 100%;
        position: relative;
    }

    .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }

    /* Hero Section - Trust & Reliability */
    .it-hero {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        width: 100%;
        border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    }

    .it-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 10% 20%, rgba(220, 38, 38, 0.05) 0%, transparent 40%),
            radial-gradient(circle at 90% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 40%);
        z-index: 1;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(220, 38, 38, 0.08);
        padding: 10px 24px;
        border-radius: 50px;
        margin-bottom: 30px;
        border: 1px solid rgba(220, 38, 38, 0.15);
        position: relative;
        z-index: 2;
    }

    .hero-badge i {
        color: var(--primary-red);
        font-size: 1rem;
    }

    .hero-badge span {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .hero-title {
        font-size: 3.8rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 25px;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .hero-title span {
        color: var(--primary-red);
        position: relative;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin-bottom: 30px;
        line-height: 1.7;
        position: relative;
        z-index: 2;
    }

    .hero-description {
        font-size: 1.1rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin-bottom: 40px;
        line-height: 1.7;
        position: relative;
        z-index: 2;
    }

    /* Trust Indicators */
    .trust-indicators {
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        margin-top: 40px;
        position: relative;
        z-index: 2;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .trust-item i {
        color: var(--success-green);
        font-size: 1.5rem;
    }

    .trust-item span {
        font-weight: 600;
        color: var(--dark-gray);
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

    .section-header h2 {
        font-size: 3rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-header h2 span {
        color: var(--primary-red);
        position: relative;
    }

    .section-header p {
        font-size: 1.2rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(220, 38, 38, 0.08);
        padding: 8px 20px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .section-badge i {
        color: var(--primary-red);
        font-size: 0.9rem;
    }

    .section-badge span {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Service Cards Grid */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 50px 0;
    }

    .service-card {
        background: white;
        border-radius: 24px;
        padding: 35px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.12);
        border-color: rgba(220, 38, 38, 0.1);
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon {
        width: 70px;
        height: 70px;
        background: rgba(220, 38, 38, 0.08);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: var(--smooth-transition);
    }

    .service-card:hover .service-icon {
        background: var(--gradient-primary);
    }

    .service-icon i {
        font-size: 32px;
        color: var(--primary-red);
        transition: var(--smooth-transition);
    }

    .service-card:hover .service-icon i {
        color: white;
    }

    .service-card h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 15px;
        transition: var(--smooth-transition);
    }

    .service-card:hover h3 {
        color: var(--primary-red);
    }

    .service-card p {
        color: var(--medium-gray);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Why Choose Us Section */
    .why-choose-section {
        background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
        padding: 100px 0;
        position: relative;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    .feature-card {
        background: white;
        padding: 35px;
        border-radius: 24px;
        text-align: center;
        transition: var(--smooth-transition);
        border: 1px solid var(--light-gray);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--premium-shadow);
        border-color: rgba(220, 38, 38, 0.2);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: rgba(220, 38, 38, 0.08);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }

    .feature-icon i {
        font-size: 36px;
        color: var(--primary-red);
    }

    .feature-card h3 {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 15px;
    }

    .feature-card p {
        color: var(--medium-gray);
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Stats Section */
    .stats-section {
        background: var(--gradient-trust);
        padding: 80px 0;
        color: white;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--primary-red);
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.1rem;
        font-weight: 500;
        opacity: 0.9;
    }

    /* Value Proposition Cards */
    .value-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin: 50px 0;
    }

    .value-card {
        background: white;
        padding: 40px;
        border-radius: 30px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
        border-left: 5px solid var(--primary-red);
    }

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--premium-shadow);
    }

    .value-card i {
        font-size: 2.5rem;
        color: var(--primary-red);
        margin-bottom: 20px;
    }

    .value-card h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 20px;
    }

    .value-card p {
        color: var(--medium-gray);
        font-size: 1.1rem;
        line-height: 1.7;
    }

    /* Benefits List */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin: 40px 0;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 25px;
        background: white;
        border-radius: 20px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
    }

    .benefit-item:hover {
        transform: translateX(8px);
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1);
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        background: rgba(220, 38, 38, 0.08);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .benefit-icon i {
        font-size: 28px;
        color: var(--primary-red);
    }

    .benefit-content h4 {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 8px;
    }

    .benefit-content p {
        color: var(--medium-gray);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* CTA Section */
    .cta-section {
        background: var(--gradient-primary);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    }

    .cta-content {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 3rem;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .cta-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: white;
        color: var(--primary-red);
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        gap: 18px;
    }

    .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: transparent;
        color: white;
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        border: 2px solid white;
    }

    .btn-secondary:hover {
        background: white;
        color: var(--primary-red);
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .hero-title {
            font-size: 3.2rem;
        }
        
        .services-grid,
        .features-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 992px) {
        .value-grid {
            grid-template-columns: 1fr;
        }
        
        .benefits-grid {
            grid-template-columns: 1fr;
        }
    }

    @media screen and (max-width: 768px) {
        .container {
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .it-hero {
            padding: 100px 0 60px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
        }
        
        .services-grid,
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .trust-indicators {
            flex-direction: column;
            gap: 15px;
        }
        
        .cta-title {
            font-size: 2.2rem;
        }
    }

    @media screen and (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-badge {
            padding: 8px 18px;
        }
        
        .hero-badge span {
            font-size: 0.75rem;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
        }
        
        .service-card {
            padding: 25px;
        }
        
        .value-card {
            padding: 30px;
        }
        
        .value-card h3 {
            font-size: 1.5rem;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }
        
        .btn-primary,
        .btn-secondary {
            padding: 14px 30px;
            font-size: 1rem;
            width: 100%;
            justify-content: center;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
    }

    /* Animations */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }

    /* Touch Device Optimizations */
    @media (hover: none) and (pointer: coarse) {
        .service-card:hover,
        .feature-card:hover,
        .value-card:hover,
        .benefit-item:hover {
            transform: none;
        }
        
        .service-card:active {
            transform: scale(0.98);
        }
    }
