:root {
    --primary: #ff4d4d;
    --secondary: #2563eb;
    --dark: #050816;
    --surface: #0f172a;
    --surface-light: #172033;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
}

.custom-navbar {
    background: rgba(5, 8, 22, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
}

.navbar-brand {
    font-size: 34px;
    font-weight: 900;
    color: white !important;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    margin-left: 24px;
    font-weight: 500;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle,
            rgba(255, 77, 77, 0.22),
            transparent 70%);
    top: -350px;
    left: -250px;
}

.hero-content h1 {
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
}

.hero-content p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.9;
    margin-top: 32px;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    padding: 14px 22px;
    border-radius: 100px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 45px;
}

.btn-primary-custom {
    background: linear-gradient(135deg,
            #ff4d4d,
            #ff2f2f);
    padding: 16px 32px;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border: none;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 16px 32px;
    border-radius: 16px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.hero-stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 24px;
    min-width: 160px;
}

.hero-stat-box h3 {
    font-size: 42px;
    font-weight: 800;
}

.hero-stat-box span {
    color: var(--muted);
}

.hero-dashboard-wrapper {
    position: relative;
}

.dashboard-window {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(25px);
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.window-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
}

.window-dots {
    display: flex;
    gap: 8px;
}

.window-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    opacity: 0.5;
}

.dashboard-body {
    padding: 30px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dashboard-stat-card {
    padding: 30px;
    border-radius: 24px;
}

.red-card {
    background: linear-gradient(135deg,
            #ff5f5f,
            #d92d2d);
}

.blue-card {
    background: linear-gradient(135deg,
            #4d8dff,
            #2352d8);
}

.dashboard-stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    margin-top: 12px;
}

.dashboard-chart-card {
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 24px;
}

.fake-chart {
    display: flex;
    align-items: end;
    gap: 14px;
    height: 180px;
    margin-top: 30px;
}

.fake-chart .bar {
    flex: 1;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(180deg,
            #ff4d4d,
            #2563eb);
}

.fake-chart .bar:nth-child(1) {
    height: 40%;
}

.fake-chart .bar:nth-child(2) {
    height: 70%;
}

.fake-chart .bar:nth-child(3) {
    height: 55%;
}

.fake-chart .bar:nth-child(4) {
    height: 90%;
}

.fake-chart .bar:nth-child(5) {
    height: 75%;
}

.fake-chart .bar:nth-child(6) {
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    backdrop-filter: blur(25px);
    padding: 16px 22px;
    border-radius: 20px;
    font-weight: 600;
}

.receipt-card {
    top: -20px;
    right: -20px;
}

.report-card-preview {
    bottom: 40px;
    left: -40px;
}

.mobile-preview {
    bottom: -30px;
    right: 80px;
}

.premium-section {
    padding: 140px 0;
}

.dark-section {
    background: #09111f;
}

.section-heading h2 {
    font-size: 62px;
    font-weight: 900;
    margin-top: 20px;
}

.section-heading p {
    color: var(--muted);
    font-size: 20px;
    max-width: 760px;
    margin: 24px auto 0;
    line-height: 1.8;
}

.section-label {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.feature-showcase-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-showcase-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 36px;
    overflow: hidden;
}

.feature-content {
    padding: 40px;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.feature-content h3 {
    font-size: 36px;
    font-weight: 800;
    margin-top: 30px;
}

.feature-content p {
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.8;
}

.feature-link {
    display: inline-block;
    margin-top: 28px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.feature-preview {
    height: 300px;
    background: linear-gradient(135deg,
            #ff5b5b,
            #451010);
}

.blue-preview {
    background: linear-gradient(135deg,
            #4d8dff,
            #102f6d);
}

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

.document-window {
    background: white;
    border-radius: 26px;
    overflow: hidden;
}

.document-window .window-header {
    color: black;
}

.document-body {
    height: 420px;
    background: linear-gradient(180deg,
            #fafafa,
            #d9d9d9);
}

.report-bg {
    background: linear-gradient(180deg,
            #fff5f5,
            #ffc9c9);
}

.document-content h2 {
    font-size: 58px;
    font-weight: 900;
    margin-top: 20px;
}

.document-content p {
    color: var(--muted);
    margin-top: 24px;
    line-height: 1.9;
    font-size: 18px;
}

.premium-list {
    margin-top: 30px;
}

.premium-list li {
    margin-bottom: 18px;
    color: var(--text);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 50px;
}

.quote-icon {
    font-size: 72px;
    color: var(--primary);
    line-height: 1;
}

.testimonial-card p {
    color: var(--text);
    line-height: 1.9;
    font-size: 20px;
    margin: 20px 0 40px;
}

.testimonial-user h4 {
    font-size: 22px;
    font-weight: 700;
}

.testimonial-user span {
    color: var(--muted);
}

.premium-cta-box {
    background: linear-gradient(135deg,
            #ff4d4d,
            #9e1818);
    padding: 120px 80px;
    border-radius: 42px;
    text-align: center;
}

.premium-cta-box h2 {
    font-size: 72px;
    font-weight: 900;
    margin-top: 24px;
}

.premium-cta-box p {
    font-size: 22px;
    margin-top: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-white-custom {
    background: white;
    color: black;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 18px;
    font-weight: 700;
}

.btn-transparent-custom {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-footer {
    padding: 50px 0;
    border-top: 1px solid var(--border);
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-wrapper h3 {
    font-size: 34px;
    font-weight: 900;
}

.footer-wrapper h3 span {
    color: var(--primary);
}

.footer-wrapper p {
    color: var(--muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
}

.trust-marquee-section {
    width: 100%;
    overflow: hidden;
    background: #f8f9fa;
    padding: 15px 0;
}

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

.marquee-track {
    display: inline-flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}