  h1, h2, h3, .logo-text { 
    font-family: 'Space Grotesk', sans-serif; 
    }
 /* --- Hero Section --- */
.hero { 
    padding: 180px 2rem 100px; 
    max-width: 100vw; 
    margin: 0 auto; 
    display: flex; 
    align-items: center; 
    gap: 5%; 
}
.hero-content { flex: 1.2; }
.hero-content h1 { 
    font-size: clamp(1.5rem, 5vw, 4rem); 
    line-height: 1.1; 
    color: var(--midnight); 
    margin-bottom: 1.5rem; 
}
.hero-content h1 span { 
    color: var(--cyber-cyan); 
}
.hero-content p { 
    font-size: clamp(0.8rem, 2.5vw, 1.2rem);
    color: var(--text-muted); 
    margin-bottom: 2.5rem; 
    max-width: 550px; }
        
.hero-btns { 
    display: flex; 
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;        
}

.btn-hero {  
    padding: 0.5rem 1rem;   
    border-radius: 2rem; 
    font-weight: 700; 
    cursor: pointer; 
    border: none; 
    transition: var(--transition); 
    text-decoration: none; 
    display: inline-block;
    white-space: nowrap;    
    font-size: clamp(0.75rem, 2.5vw, 1rem);  
}
.btn-main { 
    background: var(--btn-bg); 
    color: white; 
}
.btn-outline { 
    background: transparent; 
    color: var(--midnight); 
    border: 2px solid var(--border-color); 
}
.btn-hero:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); 
}

.hero-visual { 
    flex: 0.8; position: relative; 
}
.hero-visual img { 
    width: 100%; 
    border-radius: 30px; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.15); 
    border: 8px solid rgba(190, 185, 241, 0.966); }

 
  /* --- Feature Grid --- */
.grid-section { 
    padding: 6rem 2rem; 
    max-width: 94vw; 
    margin: 0 auto; 
}
.section-header { 
    text-align: center; 
    margin-bottom: 4rem; 
}
.section-header h2 { 
    font-size: 2.5rem; 
    color: var(--border-color); 
}
        
.card-container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2.5rem; 
}
.card { 
    background: var(--bg-card); 
    padding: 3rem 2rem; 
    border-radius: 20px; border: 1px solid #e2e8f0; transition: var(--transition); }
        .card:hover { transform: translateY(-10px); border-color: var(--cyber-cyan); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .card-icon { width: 60px; height: 60px; background: #f1f5f9; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
        .card-icon i { font-size: 1.8rem; color: var(--craft-amber); }
        .card h3 { margin-bottom: 1rem; color: var(--midnight); font-size: 1.4rem; }

        /*contact section used in both home page and contact page*/
