/* ===================================
   Index Page Specific Styles
   =================================== */

/* =============
   Logo Styles
   ============= */
.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--primary-900);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 0 10px 10px 0;
    border-left: none;
    border-top: none;
}

.logo-icon::after {
    content: '';
    position: absolute;
    right: -2px;
    top: 2px;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 8px 0 white,
        0 16px 0 white,
        4px 2px 0 white,
        4px 10px 0 white,
        4px 18px 0 white;
}

/* =============
   Hero Styles
   Note: .hero-gradient moved to main.css
   ============= */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* ===================
   Category Chip Styles
   Note: Base styles in main.css, page-specific extensions here
   =================== */

/* =============
   Card Styles
   Note: Base card styles in main.css (.card)
   ============= */
.step-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.step-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==============
   Button Styles
   Note: Button base styles in main.css
   ============== */

/* ==================
   Carousel Styles
   Note: Base carousel styles in main.css
   ================== */

/* =====================
   Phone Frame Styles
   Note: Base phone frame styles in main.css
   ===================== */

/* ==================
   Interactive Styles
   ================== */
.step-item {
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(8px);
}

/* ==================
   Responsive Styles
   ================== */
@media (max-width: 768px) {
    /* Mobile hero text positioning */
    .hero-content h1 {
        margin-top: 6rem !important;
    }
    
    .hero-content p {
        margin-top: 5rem !important;
    }
    
    /* Mobile phone frame optimization */
    .phone-frame {
        width: 280px;
        height: 580px;
        border-radius: 35px;
        padding: 8px;
    }
    
    .phone-screen {
        border-radius: 27px;
    }
}

