/* Custom Hero Styles to match Sneat */
body {
    background-color: #f5f5f9;
}

.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #566a7f;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #696cff;
}

.hero-section {
    background: linear-gradient(135deg, #f0f2ff 0%, #e6e9ff 100%);
    /* Fallback/Adjustment if gradient isn't perfect match */
    background: radial-gradient(circle at 50% 50%, #f4f3ff 0%, #fbf8ff 100%);
    padding-top: 8rem;
    padding-bottom: 5rem;
    overflow: hidden;
    perspective: 1000px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    background: -webkit-linear-gradient(315deg, #666cff 0%, #9e8cfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.2;
}

.dashboard-img-container {
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
    margin-top: 3rem;
}

.dashboard-img {
    border-radius: 0.75rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 1000px;
    transform: perspective(1000px) rotateX(5deg);
    /* Initial slight tilt */
}

.btn-primary {
    background-color: #696cff;
    border-color: #696cff;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(105, 108, 255, 0.4);
}

.btn-primary:hover {
    background-color: #5f61e6;
    border-color: #5f61e6;
    transform: translateY(-1px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(105, 108, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.grayscale-logos .col-auto {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.grayscale-logos .col-auto:hover {
    opacity: 1;
}
