.trustedhosting_white_type1 {
    /* Main Container */
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 120px 0 60px 0;
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
    color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

/* Blue Glow */
.trustedhosting_white_type1 .img-glow {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 110, 255, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(90px);
    z-index: 1;
    opacity: 0.7;
}

#thParticles {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
    pointer-events:none;
}

/* Main Wrapper */
.trustedhosting_white_type1 .hero-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 5;
}

/* Left Section */
.trustedhosting_white_type1 .left {
    flex: 1;
    min-width: 420px;
    padding-top: 10px;
    position: relative;
}

/* Small Label */
.trustedhosting_white_type1 .small-label {
    font-size: 13px;
    font-weight: 600;
    color: #005bda;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

/* Title */
.trustedhosting_white_type1 .title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: #0a0a0a;
    margin-bottom: 8px;
}

/* Tagline */
.trustedhosting_white_type1 .tagline {
    font-size: 16px;
    color: #005bda;
    margin: 12px 0 20px 0;
    font-weight: 600;
}

/* Features Grid */
.trustedhosting_white_type1 .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    margin: 20px 0 24px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 91, 218, 0.08);
    border-bottom: 1px solid rgba(0, 91, 218, 0.08);
}

.trustedhosting_white_type1 .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #333333;
    padding: 4px 0;
}

.trustedhosting_white_type1 .feature-item img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(2597%) hue-rotate(212deg) brightness(98%) contrast(101%);
}

/* Price Section */
.trustedhosting_white_type1 .price-container {
    margin: 24px 0;
    padding: 16px 20px;
    background: rgba(0, 91, 218, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 91, 218, 0.1);
}

.trustedhosting_white_type1 .price {
    font-size: 38px;
    font-weight: 800;
    color: #000000;
    line-height: 1;
    margin-bottom: 4px;
}

.trustedhosting_white_type1 .price small {
    font-size: 16px;
    opacity: 0.7;
    font-weight: 600;
}

.trustedhosting_white_type1 .note {
    font-size: 14px;
    color: #555555;
    margin: 8px 0 4px 0;
}

/* CTA Buttons */
.trustedhosting_white_type1 .cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 20px 0;
    flex-wrap: wrap;
}

/* Primary Button */
.trustedhosting_white_type1 .btn-primary {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none !important;
    background: linear-gradient(135deg, #005bda 0%, #004ec7 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 85, 255, 0.25);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trustedhosting_white_type1 .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 85, 255, 0.3);
}

.trustedhosting_white_type1 .btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: shineMove 3s infinite;
}

@keyframes shineMove {
    0% {
        left: -120%;
    }
    50% {
        left: 135%;
    }
    100% {
        left: 135%;
    }
}

/* Timer Button */
.trustedhosting_white_type1 .timer-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    background: #ffffff;
    border: 1.5px solid #005bda;
    color: #005bda;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 91, 218, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trustedhosting_white_type1 .timer-btn:hover {
    background: #005bda;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 91, 218, 0.2);
}

/* Guarantee */
.trustedhosting_white_type1 .guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #444444;
    padding: 12px 16px;
    background: rgba(0, 91, 218, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(0, 91, 218, 0.1);
}

.trustedhosting_white_type1 .guarantee img {
    width: 18px;
    height: 18px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(2597%) hue-rotate(212deg) brightness(98%) contrast(101%);
}

/* Right Section */
.trustedhosting_white_type1 .right {
    flex: 1;
    text-align: center;
    margin-top: 20px;
    position: relative;
}

.trustedhosting_white_type1 .hero-img {
    width: 520px;
    max-width: 100%;
    position: relative;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 16px 32px rgba(0, 91, 218, 0.15));
}

/* Gradient Overlay */
.trustedhosting_white_type1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 91, 218, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0, 91, 218, 0.02) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 980px) {
    .trustedhosting_white_type1 .hero-wrap {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }
    
    .trustedhosting_white_type1 .left {
        padding-top: 0;
        min-width: auto;
        max-width: 600px;
    }
    
    .trustedhosting_white_type1 .right {
        margin-top: 0;
    }
    
    .trustedhosting_white_type1 .hero-img {
        width: 400px;
    }
    
    .trustedhosting_white_type1 .features-grid {
        grid-template-columns: 1fr;
        text-align: left;
        justify-items: flex-start;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

.trustedhosting_white_type1 .btn-primary,
.trustedhosting_white_type1 .timer-btn {
    padding: 8px 20px; /* smaller height + width */
    font-size: 14px;  /* slightly smaller text */
    border-radius: 8px; /* tighter corner */
}

@media (max-width: 720px) {
    .trustedhosting_white_type1 {
        padding: 80px 0 50px 0;
    }
    
    .trustedhosting_white_type1 .title {
        font-size: 34px;
    }
    
    .trustedhosting_white_type1 .hero-img {
        width: 320px;
    }
    
    .trustedhosting_white_type1 .btn-primary,
    .trustedhosting_white_type1 .timer-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .trustedhosting_white_type1 .cta-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .trustedhosting_white_type1 .price-container {
        padding: 14px 16px;
    }
}
/* Ribbon Styles */
.trustedhosting_white_ribbon {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.trustedhosting_white_ribbon .ribbon {
    width: 100%;
    padding: 12px 0;
    background: linear-gradient(90deg, #005bda 0%, #004ec7 100%);
    position: relative;
    overflow: hidden;
}

.trustedhosting_white_ribbon .ribbon-wrap {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
}

.trustedhosting_white_ribbon .ribbon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
}

.trustedhosting_white_ribbon .ribbon-item svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    stroke-width: 2;
}

.trustedhosting_white_ribbon .shine {
    content: "";
    position: absolute;
    top: 0;
    left: -200px;
    width: 150px;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 70%);
    transform: skewX(-25deg);
    animation: shineRibbon 8s infinite linear;
    opacity: 0.5;
}

@keyframes shineRibbon {
    0% {
        left: -200px;
    }
    70% {
        left: 130%;
    }
    100% {
        left: 130%;
    }
}

/* Mobile ribbon */
.trustedhosting_white_ribbon .ribbon-mobile {
    display: none;
    padding: 10px 16px;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, #005bda 0%, #004ec7 100%);
}

@media (max-width: 1024px) {
    .trustedhosting_white_ribbon .ribbon-wrap {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .trustedhosting_white_ribbon .ribbon-item {
        padding: 4px 8px;
        font-size: 13px;
    }
}

@media (max-width: 720px) {
    .trustedhosting_white_ribbon .ribbon-wrap {
        display: none;
    }
    
    .trustedhosting_white_ribbon .ribbon-mobile {
        display: block;
    }
    
    .trustedhosting_white_ribbon .ribbon-mobile div {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }
}