/* ─── Hero ─── */
.hero {
    background: linear-gradient(135deg, var(--neo-primary) 0%, #0f1f33 50%, var(--neo-secondary) 100%);
    min-height: calc(100vh - 96px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 5.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(201,169,98,.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #fff, transparent);
}

.hero h1 {
    font-size: 3.7rem;
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    letter-spacing: -.04em;
}

.hero h1 .accent { color: var(--neo-accent); }

.hero .hero-desc {
    color: #aab6c3;
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 600px;
}

.hero .hero-img {
    width: min(100%, 760px);
    filter: drop-shadow(0 40px 80px rgba(0,0,0,.5));
    animation: floatImg 6s ease-in-out infinite;
}

.hero-panel {
    padding: 3.25rem 0 2.5rem;
}

.hero-media {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 1.5rem;
}

.hero-media-frame {
    width: 100%;
    max-width: 800px;
    padding: 1.1rem;
    border-radius: 38px;
    background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 32px 90px rgba(0,0,0,.22);
    backdrop-filter: blur(12px);
    position: relative;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(201,169,98,.22);
    background: rgba(255,255,255,.94);
    color: var(--neo-primary);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
    animation: orbitFloat 7s ease-in-out infinite;
}

.hero-orbit.primary {
    top: 8%;
    right: 6%;
    padding: .9rem 1rem;
    min-width: 170px;
}

.hero-orbit.secondary {
    left: -2%;
    bottom: 10%;
    padding: .85rem 1rem;
    min-width: 190px;
    animation-delay: 1.2s;
}

.hero-orbit strong {
    display: block;
    color: var(--neo-primary);
    font-size: .95rem;
}

.hero-orbit span {
    display: block;
    color: var(--neo-text-secondary);
    font-size: .8rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 1.75rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .75rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(201,169,98,.25);
    color: var(--neo-primary);
    font-size: .88rem;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(15,23,42,.06);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--neo-accent);
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes orbitFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.hero-stats .stat { text-align: center; }
.hero-stats .stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neo-accent);
    display: block;
}
.hero-stats .stat-label {
    font-size: .78rem;
    color: #6b7d8e;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neo-section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
}

.hero-following-section {
    padding-top: 7rem;
}

.trust-bar-wrap {
    margin-top: -2.5rem;
    position: relative;
    z-index: 4;
}

.trust-bar {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(15,23,42,.08);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.trust-bar-label {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--neo-text-secondary);
    display: none;
}

.trust-bar-logos {
    display: none;
}

.trust-logo {
    padding: .8rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.08);
    background: rgba(255,255,255,.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    color: var(--neo-primary);
    font-size: .88rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15,23,42,.05);
}

.trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    align-items: center;
}

.trust-label-clean {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--neo-text-secondary);
    white-space: nowrap;
}

html[data-bs-theme="dark"] .hero-badge {
    background: rgba(15,27,43,.88);
    border-color: rgba(201,169,98,.22);
    color: #f8fafc;
    box-shadow: 0 10px 24px rgba(0,0,0,.24);
}

html[data-bs-theme="dark"] .hero-badge i {
    color: var(--neo-accent-light);
}

html[data-bs-theme="dark"] .hero-orbit {
    background: rgba(15,27,43,.9);
    border-color: rgba(255,255,255,.08);
    color: #f8fafc;
}

html[data-bs-theme="dark"] .hero-orbit strong {
    color: #f8fafc;
}

html[data-bs-theme="dark"] .hero-orbit span {
    color: #c5d1de;
}

html[data-bs-theme="dark"] .trust-bar {
    background: rgba(15,27,43,.92);
    border-color: rgba(255,255,255,.08);
}

html[data-bs-theme="dark"] .trust-logo {
    background: rgba(19,34,54,.94);
    border-color: rgba(255,255,255,.08);
    color: #f8fafc;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

html[data-bs-theme="dark"] .trust-label-clean {
    color: #c5d1de;
}

.neo-section-soft {
    background: var(--neo-surface-soft);
}

/* ─── Features ─── */
.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card {
    background: var(--neo-surface);
    border: 1px solid rgba(15,23,42,.06);
    border-radius: 24px;
    padding: 1.7rem;
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(15,23,42,.04);
    position: relative;
    overflow: hidden;
    min-height: 100%;
    align-items: flex-start;
}

.feature-card:hover {
    border-color: rgba(201,169,98,.35);
    box-shadow: 0 16px 40px rgba(201,169,98,.12);
    transform: translateY(-4px);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,98,.08), transparent 38%);
    opacity: .75;
    pointer-events: none;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-title {
    font-size: 1.05rem;
    line-height: 1.35;
}

.feature-desc {
    font-size: .92rem;
    line-height: 1.72;
}

@media (min-width: 1200px) {
    .feature-card {
        min-height: 220px;
    }
}

.product-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
    gap: 1.5rem;
}

.product-highlight-card {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,248,251,.95));
    border-radius: 30px;
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
    overflow: hidden;
}

.product-highlight-media {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.25rem;
    background: radial-gradient(circle at top, rgba(201,169,98,.18), transparent 62%), linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.product-highlight-media img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-highlight-content {
    padding: 2rem 2.1rem 2.15rem;
}

.product-highlight-title {
    font-size: 1.55rem;
    line-height: 1.2;
}

.product-highlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-bottom: 1rem;
}

.product-highlight-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(201,169,98,.1);
    color: var(--neo-primary);
    font-size: .8rem;
    font-weight: 700;
}

.product-side-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.solutions-shell {
    border-radius: 34px;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,251,253,.98));
    border: 1px solid rgba(15,23,42,.06);
    box-shadow: 0 22px 54px rgba(15,23,42,.08);
}

.solutions-intro-card {
    border-radius: 28px;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(13,27,42,.98), rgba(24,40,62,.95));
    color: #fff;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.solutions-intro-card::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -90px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(231,76,60,.22), transparent 70%);
    border-radius: 50%;
}

.solutions-intro-card > * {
    position: relative;
    z-index: 1;
}

.solutions-intro-points {
    display: grid;
    gap: .85rem;
    margin-top: 1.5rem;
}

.solutions-intro-point {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #dce4ec;
    font-size: .92rem;
}

/* ─── Solutions Grid ─── */
.solution-card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    height: 390px;
    cursor: pointer;
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 14px 38px rgba(15,23,42,.08);
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 30%);
    z-index: 1;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.solution-card:hover img { transform: scale(1.08); }

.solution-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,24,.96) 0%, rgba(10,15,24,.56) 54%, rgba(10,15,24,.12) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem 1.8rem 1.8rem;
    z-index: 2;
}

.solution-card .overlay h4 { color: #fff; font-weight: 800; font-size: 1.28rem; line-height: 1.25; }
.solution-card .overlay p { color: #b7c4d2; font-size: .9rem; line-height: 1.65; }
.solution-card .overlay .tag {
    display: inline-block;
    background: rgba(201,169,98,.16);
    color: var(--neo-accent);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.solution-meta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1rem;
    color: #f8fbff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ─── How It Works ─── */
.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
    background: var(--neo-surface);
    border: 1px solid rgba(15,23,42,.06);
    transition: all .3s ease;
    position: relative;
    box-shadow: 0 12px 28px rgba(15,23,42,.04);
}

.step-card:hover {
    border-color: var(--neo-accent);
    box-shadow: 0 15px 50px rgba(201,169,98,.1);
    transform: translateY(-5px);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neo-accent), var(--neo-accent-light));
    color: var(--neo-primary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .85rem;
}

/* ─── Testimonial ─── */
.testimonial-card {
    background: var(--neo-surface);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(15,23,42,.06);
    height: 100%;
    box-shadow: 0 12px 32px rgba(15,23,42,.04);
}

.testimonial-card .stars { color: var(--neo-accent); font-size: .9rem; margin-bottom: .75rem; }

/* ─── CTA ─── */
.cta-section {
    background: linear-gradient(135deg, var(--neo-primary) 0%, #12233d 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,98,.08), transparent 70%);
}

@media (max-width: 991px) {
    .hero h1 { font-size: 2.2rem; }
    .hero { min-height: 70vh; padding: 1.75rem 0 3.5rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-stats .stat-num { font-size: 1.5rem; }
    .solution-card { height: 280px; }
    .neo-section { padding-top: 4rem; padding-bottom: 4rem; }
    .hero-panel { padding: 2rem 0 1rem; }
    .hero-media {
        justify-content: center;
        padding-left: 0;
    }
    .hero-media-frame {
        max-width: 560px;
        padding: .75rem;
        border-radius: 28px;
    }
    .hero-following-section { padding-top: 4.75rem; }
    .trust-bar-wrap { margin-top: -1.5rem; }
    .trust-bar {
        border-radius: 28px;
        padding: 1rem;
        justify-content: center;
    }
    .trust-logo {
        width: 100%;
        justify-content: flex-start;
    }
    .hero-orbit {
        display: none;
    }
    .feature-card {
        min-height: 100%;
        padding: 1.35rem;
    }
    .product-showcase,
    .product-side-grid {
        grid-template-columns: 1fr;
    }
    .solutions-shell {
        padding: .75rem;
    }
    .solutions-intro-card {
        padding: 1.5rem;
    }
    .product-highlight-media {
        min-height: 280px;
        padding: 1.5rem;
    }
    .product-highlight-content {
        padding: 1.5rem;
    }
}
