/* ===== DIGITAL REBELLION HOME — 6000e9be ===== */

/* Reset & Base */
.drh-6000e9be-wrapper { width: 100%; overflow: hidden; font-family: 'Inter', sans-serif; }
.drh-6000e9be-wrapper *, .drh-6000e9be-wrapper *::before, .drh-6000e9be-wrapper *::after { box-sizing: border-box; }
.drh-6000e9be-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.drh-6000e9be-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.drh-6000e9be-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,23,45,0.92) 0%, rgba(14,23,45,0.75) 50%, rgba(41,87,203,0.3) 100%);
    z-index: 1;
}
.drh-6000e9be-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    padding: 60px 24px;
}
.drh-6000e9be-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #00D4FF;
    border-radius: 50px;
    color: #00D4FF;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(4px);
    background: rgba(0,212,255,0.06);
}
.drh-6000e9be-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0 0 24px;
    letter-spacing: -1px;
}
.drh-6000e9be-hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: #D2D5E1;
    margin: 0 0 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.drh-6000e9be-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.drh-6000e9be-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: #00D4FF;
    color: #0E172D;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0,212,255,0.25);
}
.drh-6000e9be-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0,212,255,0.4);
    background: #33DFFF;
}
.drh-6000e9be-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: transparent;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.drh-6000e9be-btn-secondary:hover {
    border-color: #00D4FF;
    color: #00D4FF;
    background: rgba(0,212,255,0.06);
}

/* Scroll Indicator */
.drh-6000e9be-scroll-indicator {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
.drh-6000e9be-scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(0,212,255,0.5);
    border-bottom: 2px solid rgba(0,212,255,0.5);
    transform: rotate(45deg);
    animation: drh-bounce-6000e9be 2s infinite;
}
@keyframes drh-bounce-6000e9be {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(-10px); }
    60% { transform: rotate(45deg) translateY(-5px); }
}

/* ===== SERVICES ===== */
.drh-6000e9be-services {
    padding: 120px 0;
    background: #0E172D;
}
.drh-6000e9be-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.drh-6000e9be-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px;
}
.drh-6000e9be-section-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: #5E6782;
    margin: 0;
}
.drh-6000e9be-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.drh-6000e9be-service-card {
    position: relative;
    background: #131D38;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(41,87,203,0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}
.drh-6000e9be-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0,212,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.drh-6000e9be-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0,212,255,0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.drh-6000e9be-service-card:hover .drh-6000e9be-card-glow { opacity: 1; }
.drh-6000e9be-service-icon {
    font-size: 36px;
    color: #00D4FF;
    margin-bottom: 20px;
    line-height: 1;
}
.drh-6000e9be-service-icon svg {
    width: 36px;
    height: 36px;
    fill: #00D4FF;
}
.drh-6000e9be-service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 12px;
}
.drh-6000e9be-service-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #D2D5E1;
    margin: 0;
}

/* ===== ABOUT ===== */
.drh-6000e9be-about {
    padding: 120px 0;
    background: #0B1224;
}
.drh-6000e9be-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.drh-6000e9be-about-image-wrap {
    position: relative;
}
.drh-6000e9be-about-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    position: relative;
    z-index: 2;
}
.drh-6000e9be-about-img-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(0,212,255,0.2);
    border-radius: 16px;
    z-index: 1;
}
.drh-6000e9be-about-content { position: relative; }
.drh-6000e9be-about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px;
    line-height: 1.2;
}
.drh-6000e9be-about-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #D2D5E1;
    margin: 0;
}

/* ===== STATS ===== */
.drh-6000e9be-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #131D38 0%, #0E172D 100%);
    border-top: 1px solid rgba(41,87,203,0.15);
    border-bottom: 1px solid rgba(41,87,203,0.15);
}
.drh-6000e9be-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.drh-6000e9be-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.drh-6000e9be-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #00D4FF;
    line-height: 1;
}
.drh-6000e9be-stat-label {
    font-size: 15px;
    font-weight: 400;
    color: #D2D5E1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA ===== */
.drh-6000e9be-cta {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}
.drh-6000e9be-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14,23,45,0.93) 0%, rgba(255,51,102,0.15) 100%);
    z-index: 1;
}
.drh-6000e9be-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.drh-6000e9be-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 20px;
    line-height: 1.15;
}
.drh-6000e9be-cta-text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: #D2D5E1;
    margin: 0 0 40px;
}
.drh-6000e9be-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 44px;
    background: #FF3366;
    color: #FFFFFF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(255,51,102,0.3);
}
.drh-6000e9be-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(255,51,102,0.5);
    background: #FF4D7A;
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-right"] { transform: translateX(-30px); }
[data-animate="fade-left"] { transform: translateX(30px); }
[data-animate].drh-6000e9be-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .drh-6000e9be-hero-title { font-size: 48px; }
    .drh-6000e9be-services-grid { grid-template-columns: repeat(2, 1fr); }
    .drh-6000e9be-about-grid { gap: 40px; }
    .drh-6000e9be-section-title { font-size: 36px; }
    .drh-6000e9be-cta-title { font-size: 36px; }
}
@media (max-width: 768px) {
    .drh-6000e9be-hero-title { font-size: 36px; }
    .drh-6000e9be-hero-subtitle { font-size: 16px; }
    .drh-6000e9be-services { padding: 80px 0; }
    .drh-6000e9be-services-grid { grid-template-columns: 1fr; }
    .drh-6000e9be-about { padding: 80px 0; }
    .drh-6000e9be-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .drh-6000e9be-about-img-border { display: none; }
    .drh-6000e9be-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .drh-6000e9be-stat-number { font-size: 36px; }
    .drh-6000e9be-cta { padding: 80px 0; }
    .drh-6000e9be-cta-title { font-size: 30px; }
    .drh-6000e9be-section-title { font-size: 30px; }
    .drh-6000e9be-about-title { font-size: 30px; }
    .drh-6000e9be-hero { background-attachment: scroll; }
    .drh-6000e9be-cta { background-attachment: scroll; }
}
@media (max-width: 480px) {
    .drh-6000e9be-hero-title { font-size: 28px; }
    .drh-6000e9be-hero-buttons { flex-direction: column; align-items: center; }
    .drh-6000e9be-btn-primary, .drh-6000e9be-btn-secondary { width: 100%; justify-content: center; }
    .drh-6000e9be-stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
