/* assets/css/landing.css */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #001F3F 0%, #023059 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-title {
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* Feature Icons */
.feature-icon-box {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: rgba(29, 181, 160, 0.1);
    color: #1DB5A0;
}

/* Scrollers */
.landing-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 5px 30px 5px;
    scrollbar-width: none;
}
.landing-scroll::-webkit-scrollbar { display: none; }

.landing-card {
    min-width: 260px;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.landing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Auth Modal Specifics */
.nav-pills .nav-link.active {
    background-color: var(--navy);
}