/* Pulse Fit Hero Design System */
.pulse-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(180deg, #E8F0FF 0%, #F5F9FF 50%, #FFFFFF 100%);
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

/* Hero Grid Background Layers */
.pulse-hero__grid-base,
.pulse-hero__grid-interactive {
    position: absolute;
    inset: 0;
    z-index: 1;
    color: #9ca3af;
    pointer-events: none;
}

.pulse-hero__grid-base {
    opacity: 0.06;
}

.pulse-hero__grid-interactive {
    opacity: 0.35;
    -webkit-mask-image: radial-gradient(300px circle at -9999px -9999px, black, transparent);
    mask-image: radial-gradient(300px circle at -9999px -9999px, black, transparent);
    pointer-events: none;
}

.pulse-hero__grid-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.pulse-hero__header {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 80px;
}

@media (max-width: 991px) {
    .pulse-hero__header {
        padding: 20px 30px;
    }
}

.pulse-hero__logo {
    font-weight: 700;
    font-size: 24px;
    color: #1a1a1a;
    text-decoration: none;
}

.pulse-hero__nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

@media (max-width: 991px) {
    .pulse-hero__nav {
        display: none;
    }
}

.pulse-hero__nav-link {
    font-size: 16px;
    font-weight: 400;
    color: #4a5568;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: opacity 0.3s;
}

.pulse-hero__nav-link:hover {
    opacity: 0.7;
}

/* Dropdown styling */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    min-width: 250px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: left;
}

.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom a {
    display: block;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.dropdown-menu-custom a:hover {
    background: #f7fafc;
    color: #1a1a1a;
}

.pulse-hero__header-cta {
    background: #FFFFFF;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.pulse-hero__header-cta:hover {
    transform: scale(1.05);
}

/* Content */
.pulse-hero__content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.pulse-hero__title {
    font-weight: 700;
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    max-width: 900px;
}

.pulse-hero__subtitle {
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: #4a5568;
    max-width: 600px;
    margin-bottom: 32px;
}

.pulse-hero__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 575px) {
    .pulse-hero__actions {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
}

.pulse-hero__btn-primary {
    background: #081a35;
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.pulse-hero__btn-primary:hover {
    transform: scale(1.05);
}

.pulse-hero__btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #cbd5e0;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.pulse-hero__btn-secondary:hover {
    transform: scale(1.05);
}

.pulse-hero__social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pulse-hero__avatars {
    display: flex;
    margin-right: -8px;
}

.pulse-hero__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    margin-left: -8px;
}

.pulse-hero__avatar:first-child {
    margin-left: 0;
}

.pulse-hero__social-text {
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
}

/* Carousel */
.pulse-hero__carousel-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
}

.pulse-hero__carousel-gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.pulse-hero__carousel-gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.pulse-hero__carousel-inner {
    display: flex;
    gap: 24px;
    padding: 0 24px;
}

/* Marquee Animation */
.pulse-hero__marquee {
    display: flex;
    gap: 24px;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.pulse-hero__marquee:hover {
    animation-play-state: paused;
}

.pulse-hero__card {
    width: 356px;
    height: 480px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pulse-hero__card:hover {
    transform: translateY(-10px) scale(1.02);
}

.pulse-hero__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pulse-hero__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 26, 53, 0) 0%, rgba(8, 26, 53, 0.85) 100%);
}

.pulse-hero__card-content {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
}

.pulse-hero__card-category {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
}

.pulse-hero__card-title {
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.3;
    margin: 0;
}