.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 99px;
    background: rgba(212, 175, 55, .1);
    border: 1px solid rgba(212, 175, 55, .3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: blinkDot 1.5s ease-in-out infinite;
}

@keyframes blinkDot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
}

.trust-dots {
    display: flex;
}

.trust-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .15);
    background: var(--navy-3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    margin-left: -8px;
}

.trust-dot:first-child {
    margin-left: 0;
}

.trust-stars {
    color: var(--gold);
    font-size: 12px;
}

.dashboard-float {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    backdrop-filter: blur(12px);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
    animation: heroFloat 5s ease-in-out infinite;
    transition: transform .3s ease;
    cursor: pointer;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.dash-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.dot-r {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF5F57;
}

.dot-y {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFBD2E;
}

.dot-g {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #28C840;
}

.tab-bar {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.tab-pill {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, .4);
}

.tab-pill.active {
    background: rgba(29, 78, 216, .3);
    color: var(--primary-light);
}

.float-card {
    position: absolute;
    background: rgba(15, 23, 42, .9);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    backdrop-filter: blur(16px);
    padding: 14px 18px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.fc1 {
    top: -30px;
    left: -40px;
    animation: fc1 6s ease-in-out infinite;
}

.fc2 {
    bottom: 60px;
    right: -40px;
    animation: fc2 7s ease-in-out infinite;
}

.fc3 {
    bottom: -20px;
    left: 30px;
    animation: fc3 5s ease-in-out infinite;
}

@keyframes fc1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-8px, -12px);
    }
}

@keyframes fc2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, 10px);
    }
}

@keyframes fc3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(4px, -8px);
    }
}

.fc-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.fc-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.fc-change {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    color: var(--success);
}

.fc-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stats-section {
    background: var(--navy-2);
    border-top: 1px solid rgba(255, 255, 255, .05);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 64px 32px;
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, .08);
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin-top: 8px;
    font-weight: 500;
}

.features-section {
    background: var(--light-bg);
}

.features-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .4s ease;
    cursor: default;
}

.feature-card:hover {
    border-color: var(--primary);
    box-shadow: 0 16px 48px rgba(29, 78, 216, .12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29, 78, 216, .1), rgba(29, 78, 216, .05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.pipeline-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.pipeline-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.pipeline-stages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.stage-box {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    min-width: 110px;
    transition: all .4s;
    cursor: default;
}

.stage-box.active {
    background: linear-gradient(135deg, rgba(29, 78, 216, .25), rgba(59, 130, 246, .15));
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(29, 78, 216, .3);
}

.stage-box.won {
    background: linear-gradient(135deg, rgba(212, 175, 55, .2), rgba(240, 208, 96, .1));
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(212, 175, 55, .3);
}

.stage-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.stage-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
}

.stage-box.active .stage-label {
    color: var(--white);
}

.stage-box.won .stage-label {
    color: var(--gold);
}

.stage-arrow {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(29, 78, 216, .4));
    position: relative;
    margin: 0 4px;
    flex-shrink: 0;
}

.stage-arrow::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -4px;
    border: 5px solid transparent;
    border-left: 8px solid rgba(29, 78, 216, .4);
}

.testimonials-section {
    background: var(--light-bg);
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--light-bg), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--light-bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 20px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    min-width: 320px;
    flex-shrink: 0;
    transition: box-shadow .3s;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.t-stars {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 14px;
}

.t-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.t-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.t-role {
    font-size: 12px;
    color: var(--text-muted);
}

.cta-section {
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, .55);
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-inner {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .pipeline-stages {
        flex-direction: column;
    }

    .stage-arrow {
        width: 2px;
        height: 28px;
        background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(29, 78, 216, .4));
    }

    .stage-arrow::after {
        top: auto;
        bottom: -1px;
        right: -4px;
        border: 5px solid transparent;
        border-top: 8px solid rgba(29, 78, 216, .4);
        border-left: none;
    }
}