
.block-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
    color: #ffffff;
}

/* Background Images Setup */
.image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* Darken for text readability */
    transition: opacity 0.3s ease;
}

/* Gradient Overlay for depth */
.block-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(11, 1, 20, 0.9) 0%, rgba(11, 1, 20, 0.4) 50%, rgba(0, 96, 254, 0.1) 100%);
    z-index: -1;
}

.image-background-mobile {
    display: none;
}
.image-background-desktop {
    display: block;
}

@media (max-width: 768px) {
    .image-background-mobile { display: block; }
    .image-background-desktop { display: none; }
    .block-hero { padding: 6rem 1.5rem 3rem; }
    
    .text-flow {
        text-align: center;
    }
    .text-flow h1 {
        font-size: 2.5rem;
    }
    .subtitle {
        font-size: 1.05rem;
    }
    .features.items {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
}

/* Container limits width */
.block-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Text Flow Section */
.text-flow {
    max-width: 800px;
    margin-bottom: 3rem;
}

.text-flow h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.text-blue {
    color: #0060fe;
}

.subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #d1d5db;
    margin: 0;
}

/* Email Signup Panel */
.features.items {
    margin-bottom: 5rem;
    margin-top: 2rem;
}

.hero-form-wrapper {
    max-width: 600px;
}

.email-signup-heading {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.email-signup-subtext {
    font-size: 0.95rem;
    color: #a1a1aa;
    margin: 0 0 1.5rem 0;
}

.email-signup-form {
    display: flex;
    gap: 1rem;
}

.domain-search-field {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}
.domain-search-field:focus {
    outline: none;
    border-color: #0060fe;
    background: rgba(0, 0, 0, 0.6);
}

.email-signup-submit {
    background: #007bff;
    color: #ffffff;
    border: none;
    padding: 0.85rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.email-signup-submit:hover {
    background: #0060fe;
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .email-signup-form { flex-direction: column; }
    .email-signup-submit { width: 100%; }
}

/* Four Boxes Grid */
.hero-boxes.items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.hero-boxes .box {
    background: #090c15;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-boxes .box:hover {
    transform: translateY(-5px);
    border-color: #0060fe;
}

.box-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.box-icon {
    width: 28px;
    height: 28px;
    color: #0060fe;
    flex-shrink: 0;
}

.hero-boxes .box h2 {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.hero-boxes .box p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a1a1aa;
    margin: 0;
}

.hero-boxes .box a {
    color: #0060fe;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.hero-boxes .box a:hover {
    color: #a5c3fa;
    text-decoration: underline;
}
