:root {
    --ith-bg-1: #060B19;
    --ith-bg-2: #0A0514;
    --ith-accent: #7e57c2;
    --ith-accent-light: #9fa8da;
    --ith-text-main: #ffffff;
    --ith-text-muted: #b0bec5;
}

.ith-ad7243dd-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--bg-1, var(--ith-bg-1)), var(--bg-2, var(--ith-bg-2)));
    color: var(--ith-text-main);
    padding: 100px 20px;
    overflow: hidden;
    font-family: 'Inter', 'Manrope', sans-serif;
    min-height: 80vh;
    display: flex;
    align-items: center;
    --visual-height: 600px;
    --visual-scale: 1;
    --visual-offset-x: 0px;
    --visual-offset-y: 0px;
}

.ith-ad7243dd-glow-bg {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 87, 194, 0.15) 0%, rgba(0,0,0,0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
}

.ith-ad7243dd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ith-ad7243dd-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ith-ad7243dd-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
    color: #fff;
    letter-spacing: -0.02em;
}

.ith-ad7243dd-highlight {
    background: linear-gradient(90deg, #b388ff, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(179, 136, 255, 0.4);
}

.ith-ad7243dd-desc {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ith-text-muted);
    max-width: 90%;
    margin: 0;
}

.ith-ad7243dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #651fff, #3d5afe);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 20px rgba(101, 31, 255, 0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}

.ith-ad7243dd-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(101, 31, 255, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
    color: #fff;
}

.ith-ad7243dd-btn:hover .ith-btn-icon {
    transform: translateX(4px);
}

.ith-btn-icon {
    transition: transform 0.3s ease;
}

.ith-ad7243dd-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin-top: 10px;
}

.ith-ad7243dd-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #e0e0e0;
    transition: all 0.3s ease;
}

.ith-ad7243dd-features:hover .ith-ad7243dd-feature-item {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--visual-height);
    transform: translate(var(--visual-offset-x), var(--visual-offset-y));
}

.ith-ad7243dd-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

.ith-ad7243dd-hero-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: scale(var(--visual-scale));
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.ith-ad7243dd-floating-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, rgba(0,0,0,0) 60%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
}

.ith-anim-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ith-anim-fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ith-ad7243dd-wrapper.is-visible .ith-anim-up {
    opacity: 1;
    transform: translateY(0);
}

.ith-ad7243dd-wrapper.is-visible .ith-anim-fade-right {
    opacity: 1;
    transform: translateX(0);
}

.ith-ad7243dd-wrapper.is-visible .ith-anim-up:nth-child(1) { transition-delay: 0.1s; }
.ith-ad7243dd-wrapper.is-visible .ith-anim-up:nth-child(2) { transition-delay: 0.2s; }
.ith-ad7243dd-wrapper.is-visible .ith-anim-up:nth-child(3) { transition-delay: 0.3s; }
.ith-ad7243dd-wrapper.is-visible .ith-anim-up:nth-child(4) { transition-delay: 0.4s; }

@media (max-width: 991px) {
    .ith-ad7243dd-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ith-ad7243dd-left {
        align-items: center;
    }
    .ith-ad7243dd-features {
        justify-content: center;
    }
    .ith-ad7243dd-title {
        font-size: 2.5rem;
    }
    .hero-visual {
        --visual-height: 400px;
        --visual-offset-x: 0px;
        --visual-offset-y: 0px;
    }
}
