.elementor-1440 .elementor-element.elementor-element-4424504{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */* {font-family: 'Audiowide', cursive; color: white;}

.service-container {
    position: relative;
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 50%, #0a0a0f 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    text-align: center;
}

/* Subtle grid overlay */
.service-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

/* Glitch effect */
.glitch-wrapper {
    margin-bottom: 30px;
}

.glitch {
    font-size: clamp(60px, 15vw, 120px);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    color: #fff;
    letter-spacing: 5px;
    animation: glitch-skew 1s infinite linear alternate-reverse;
    text-shadow: 
        0 0 20px rgba(0,255,163,0.5),
        0 0 40px rgba(0,255,163,0.3);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #00FFA3;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #FF00FF;
    z-index: -2;
}

@keyframes glitch-1 {
    0% { clip-path: inset(40% 0 61% 0); transform: translate(-2px, -2px); }
    20% { clip-path: inset(92% 0 1% 0); transform: translate(2px, 2px); }
    40% { clip-path: inset(43% 0 1% 0); transform: translate(-2px, 2px); }
    60% { clip-path: inset(25% 0 58% 0); transform: translate(2px, -2px); }
    80% { clip-path: inset(54% 0 7% 0); transform: translate(-2px, 2px); }
    100% { clip-path: inset(58% 0 43% 0); transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0% { clip-path: inset(50% 0 30% 0); transform: translate(2px, 2px); }
    20% { clip-path: inset(79% 0 10% 0); transform: translate(-2px, -2px); }
    40% { clip-path: inset(20% 0 70% 0); transform: translate(2px, -2px); }
    60% { clip-path: inset(90% 0 5% 0); transform: translate(-2px, 2px); }
    80% { clip-path: inset(10% 0 85% 0); transform: translate(2px, 2px); }
    100% { clip-path: inset(40% 0 55% 0); transform: translate(-2px, -2px); }
}

@keyframes glitch-skew {
    0% { transform: skew(0deg); }
    10% { transform: skew(1deg); }
    20% { transform: skew(0deg); }
    30% { transform: skew(-1deg); }
    40% { transform: skew(0deg); }
    50% { transform: skew(0.5deg); }
    60% { transform: skew(0deg); }
    100% { transform: skew(0deg); }
}

/* AUDIT PAGE - Green Security Theme */
.audit-container {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0f 0%, #00451a 50%, #0a0a0f 100%);
    overflow: hidden;
    padding-top: 140px;
}

@media (max-width: 768px) {
    .audit-container {
        padding-top: 80px;
    }
}

/* Green Grid */
.audit-container .grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0,255,163,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76,175,80,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

.audit-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero with Green accents */
.audit-container .glitch {
    text-shadow: 
        0 0 20px rgba(0,255,163,0.5),
        0 0 40px rgba(76,175,80,0.3);
}

.audit-container .tagline {
    color: #00FFA3;
    font-family: 'Audiowide', cursive;
    font-size: 18px;
    letter-spacing: 3px;
    margin-top: 20px;
}

/* Audit Cards */
.audit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.audit-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(0,255,163,0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
}

.audit-card:hover {
    transform: translateY(-10px);
    border-color: #00FFA3;
    background: rgba(0,255,163,0.1);
    box-shadow: 0 20px 40px rgba(0,255,163,0.3);
}

.audit-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0,255,163,0.1);
    border-radius: 15px;
    padding: 15px;
    transition: all 0.3s;
}

.audit-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.audit-card:hover .audit-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0,255,163,0.2);
}

.audit-card:hover .audit-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px #00FFA3);
}

.audit-card h3 {
    font-family: 'Audiowide', cursive;
    color: #00FFA3;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 1px;
}

.audit-checklist {
    list-style: none;
    padding: 0;
}

.audit-checklist li {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 25px;
    border-radius: 20px;
    font-family: 'Audiowide', cursive;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255,215,0,0.5);
    z-index: 10;
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255,215,0,0.5);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(255,215,0,0.8);
        transform: translateX(-50%) translateY(-2px);
    }
}

/* Process Timeline */
.process-section {
    margin: 80px 0;
    padding: 60px 20px;
    background: rgba(0,255,163,0.02);
    border-top: 1px solid rgba(0,255,163,0.2);
    border-bottom: 1px solid rgba(0,255,163,0.2);
    overflow: visible; 
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    text-align: center;
    min-width: 200px;
    position: relative;
}

.step-number {
    font-family: 'Audiowide', cursive;
    font-size: 48px;
    color: #00FFA3;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(0,255,163,0.5);
}

.process-step h3 {
    font-family: 'Audiowide', cursive;
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.process-step p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.process-connector {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00FFA3, transparent);
    margin: 0 10px;
}

/* Trust Grid */
.trust-section {
    margin: 80px 0;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-family: 'Audiowide', cursive;
    font-size: 54px;
    color: #00FFA3;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(0,255,163,0.5);
    animation: pulse-number 2s infinite;
}

@keyframes pulse-number {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.trust-label {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Package Cards - Green theme */
.audit-container .package-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.audit-container .package-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(0,255,163,0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.audit-container .package-card:hover {
    transform: translateY(-10px);
    border-color: #00FFA3;
    box-shadow: 0 20px 40px rgba(0,255,163,0.4);
}

.audit-container .package-card.featured {
    border-color: #FFD700;
    background: rgba(255,215,0,0.05);
}

.audit-container .package-card h3 {
    font-family: 'Audiowide', cursive;
    color: #00FFA3;
    font-size: 24px;
    margin-bottom: 20px;
}

.audit-container .price {
    font-family: 'Audiowide', cursive;
    font-size: 42px;
    color: #FFD700;
    margin: 20px 0;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(255,215,0,0.5);
}

.audit-container .package-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00FFA3, #4CAF50);
    color: #000;
    border: none;
    border-radius: 10px;
    font-family: 'Audiowide', cursive;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.audit-container .package-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,255,163,0.5);
}

.audit-container .package-btn.primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

/* Audit Badge */
.badge-section {
    text-align: center;
    margin: 80px 0;
    padding: 60px;
    background: rgba(0,255,163,0.03);
    border-radius: 30px;
}

.audit-badge {
    display: inline-block;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0,255,163,0.1), rgba(76,175,80,0.1));
    border: 3px solid #00FFA3;
    border-radius: 20px;
    margin-top: 30px;
    animation: badge-glow 2s infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(0,255,163,0.5); }
    50% { box-shadow: 0 0 50px rgba(0,255,163,0.8); }
}

.audit-badge img {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 20px #00FFA3);
}

.badge-text {
    font-family: 'Audiowide', cursive;
    color: #00FFA3;
    font-size: 16px;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* CTA Section */
.audit-container .cta-section {
    text-align: center;
    padding: 60px 0;
}

.audit-container .cta-section h2 {
    font-family: 'Audiowide', cursive;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

.audit-container .mega-cta-btn {
    padding: 20px 60px;
    background: linear-gradient(135deg, #00FFA3, #4CAF50);
    color: #000;
    border: none;
    border-radius: 50px;
    font-family: 'Audiowide', cursive;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 2px;
}

.audit-container .mega-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,255,163,0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .audit-cards {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-connector {
        width: 2px;
        height: 30px;
        margin: 10px auto;
        background: linear-gradient(180deg, #00FFA3, transparent);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .audit-container .package-cards {
        grid-template-columns: 1fr;
    }
}

.audit-badge-container {
    display: inline-block;
    padding: 20px;
}

.audit-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: linear-gradient(135deg, #0a0a0f 0%, #00451a 100%);
    border: 3px solid #00FFA3;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0,255,163,0.5);
}

.badge-shield {
    width: 100px;
    height: 100px;
    background: #0a0a0f;
    border: 3px solid #00FFA3;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.badge-check {
    font-size: 48px;
    color: #00FFA3;
    font-weight: bold;
    animation: check-pulse 2s infinite;
}

@keyframes check-pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 20px rgba(0,255,163,0.5);
    }
    50% { 
        transform: scale(1.1);
        text-shadow: 0 0 30px rgba(0,255,163,0.8);
    }
}

.badge-text {
    text-align: center;
}

.badge-title {
    display: block;
    font-family: 'Audiowide', cursive;
    font-size: 12px;
    color: #fff;
    letter-spacing: 2px;
    opacity: 0.8;
}

.badge-company {
    display: block;
    font-family: 'Audiowide', cursive;
    font-size: 16px;
    color: #00FFA3;
    letter-spacing: 1px;
    margin-top: 5px;
    text-shadow: 0 0 10px rgba(0,255,163,0.5);
}

/* Animated border */
.audit-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #00FFA3, transparent, #00FFA3);
    border-radius: 20px;
    z-index: -1;
    animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* End custom CSS */