:root {
    --slate-navy: #1E293B;
    --electric-blue: #2563EB;
    --mint-green: #10B981;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
}

.logo-mark {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--electric-blue), var(--mint-green));
    color: #fff;
    font-weight: 800;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 26px;
    color: #475569;
    font-size: 14px;
    font-weight: 700;
}

.nav-menu a:not(.primary-nav-btn):hover {
    color: var(--electric-blue);
}

.primary-nav-btn,
.hero-cta,
.plan-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--electric-blue);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-nav-btn {
    padding: 10px 16px;
}

.hero-cta,
.plan-btn {
    padding: 14px 22px;
}

.primary-nav-btn:hover,
.hero-cta:hover,
.plan-btn:hover {
    transform: translateY(-2px);
    background: #1D4ED8;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}

.hero-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 16%, rgba(16, 185, 129, 0.16), transparent 28%),
        linear-gradient(180deg, #fff 0%, #F8FAFC 100%);
}

.eyebrow {
    color: var(--electric-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: #A7F3D0;
}

.highlight-pill,
.industry-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #fff;
    padding: 12px 14px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.04);
}

.highlight-pill span,
.industry-badge span {
    display: inline-flex;
    min-width: 42px;
    justify-content: center;
    border-radius: 999px;
    background: #ECFDF5;
    color: #047857;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 7px;
}

.dashboard-shell {
    align-self: center;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 18px;
    background: #0F172A;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
    overflow: hidden;
}

.mock-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 13px 16px;
}

.mock-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #64748B;
}

.mock-browser-bar span:first-child {
    background: #EF4444;
}

.mock-browser-bar span:nth-child(2) {
    background: #F59E0B;
}

.mock-browser-bar span:nth-child(3) {
    background: var(--mint-green);
}

.mock-browser-bar p {
    margin-left: 10px;
    color: #CBD5E1;
    font-size: 12px;
}

.mock-dashboard {
    display: grid;
    grid-template-columns: 150px 1fr;
    min-height: 430px;
    background: #F8FAFC;
}

.mock-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--slate-navy);
    color: #CBD5E1;
    padding: 22px 16px;
    font-size: 13px;
}

.mock-sidebar strong {
    color: #fff;
    font-size: 15px;
    margin-bottom: 10px;
}

.mock-sidebar .active {
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.28);
    color: #fff;
    padding: 9px 10px;
}

.mock-content {
    padding: 24px;
}

.mock-topline,
.mock-selector,
.mock-table,
.mock-total {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #fff;
}

.mock-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.mock-topline h3 {
    color: var(--slate-navy);
    font-weight: 800;
}

.mock-topline button {
    border-radius: 7px;
    background: var(--electric-blue);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    padding: 8px 12px;
}

.mock-selector {
    margin-top: 14px;
    padding: 14px;
}

.mock-selector label {
    display: block;
    color: #64748B;
    font-size: 12px;
    font-weight: 800;
}

.mock-selector div {
    margin-top: 7px;
    display: flex;
    justify-content: space-between;
    color: var(--slate-navy);
    font-weight: 800;
}

.mock-selector span {
    color: #64748B;
    font-size: 12px;
}

.mock-table {
    margin-top: 14px;
    overflow: hidden;
}

.mock-row {
    display: grid;
    grid-template-columns: 1fr 70px 110px;
    gap: 12px;
    padding: 13px 14px;
    border-top: 1px solid #E2E8F0;
    font-size: 13px;
}

.mock-row.head {
    border-top: 0;
    background: #F1F5F9;
    color: #64748B;
    font-weight: 800;
}

.mock-total {
    margin-top: 14px;
    padding: 15px;
}

.mock-total p {
    display: flex;
    justify-content: space-between;
    color: #64748B;
    font-size: 13px;
    margin-bottom: 8px;
}

.mock-total .grand {
    color: var(--slate-navy);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid #E2E8F0;
}

.industry-strip {
    background: var(--slate-navy);
}

.industry-badge {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #F8FAFC;
    box-shadow: none;
}

.section-block {
    padding: 88px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-block h2,
.support-banner h2 {
    color: var(--slate-navy);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.feature-grid,
.pricing-grid,
.testimonial-grid {
    display: grid;
    gap: 22px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.pricing-card,
.testimonial-card,
.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.reveal-card {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    padding: 26px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 54px rgba(15, 23, 42, 0.1);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 9px;
    background: #DBEAFE;
    color: var(--electric-blue);
    font-size: 12px;
    font-weight: 900;
}

.feature-card h3 {
    margin-top: 18px;
    color: var(--slate-navy);
    font-size: 20px;
    font-weight: 900;
}

.feature-card ul {
    margin-top: 16px;
    display: grid;
    gap: 10px;
    color: #475569;
    font-size: 14px;
}

.feature-card li {
    position: relative;
    padding-left: 18px;
}

.feature-card li::before {
    position: absolute;
    left: 0;
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--mint-green);
    top: 8px;
}

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

.pricing-card {
    padding: 30px;
}

.pricing-card.featured {
    border-color: rgba(37, 99, 235, 0.45);
    box-shadow: 0 24px 60px rgba(37, 99, 235, 0.13);
}

.plan-label {
    color: var(--electric-blue);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-card h3 {
    margin-top: 16px;
    color: var(--slate-navy);
    font-size: 34px;
    font-weight: 900;
}

.pricing-card h3 span {
    color: #64748B;
    font-size: 16px;
}

.pricing-card p:not(.plan-label) {
    margin: 18px 0 24px;
    line-height: 1.7;
}

.plan-btn.secondary {
    background: #E0F2FE;
    color: var(--electric-blue);
    box-shadow: none;
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
    padding: 24px;
}

.stars {
    color: #F59E0B;
    letter-spacing: 0.12em;
    font-size: 14px;
}

.testimonial-card p {
    margin: 16px 0;
    line-height: 1.7;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    color: var(--slate-navy);
    font-weight: 900;
}

.testimonial-card span {
    color: var(--electric-blue);
    font-size: 13px;
    font-weight: 800;
    margin-top: 4px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    color: var(--slate-navy);
    font-weight: 900;
    text-align: left;
}

.faq-item button span {
    color: var(--electric-blue);
    font-size: 22px;
}

.faq-item p {
    display: none;
    border-top: 1px solid #E2E8F0;
    padding: 18px 22px 22px;
    line-height: 1.7;
}

.faq-item.open p {
    display: block;
}

.faq-item.open button span {
    transform: rotate(45deg);
}

.support-banner {
    background: linear-gradient(135deg, var(--slate-navy), #0F172A);
}

.support-banner h2 {
    color: #fff;
}

.support-banner p:not(.eyebrow) {
    max-width: 740px;
    color: #CBD5E1;
    line-height: 1.8;
    margin-top: 14px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--mint-green);
    color: #06281F;
    font-weight: 900;
    padding: 13px 18px;
    white-space: nowrap;
}

.support-btn.ghost {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
}

.site-footer {
    background: #020617;
    color: #CBD5E1;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    font-weight: 900;
}

.site-footer p,
.site-footer a {
    display: block;
    margin-top: 10px;
    color: #94A3B8;
    line-height: 1.7;
}

.site-footer a:hover {
    color: #fff;
}

@media (max-width: 1023px) {
    .nav-menu {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 70px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid #E2E8F0;
        border-radius: 10px;
        background: #fff;
        padding: 10px;
        box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

@media (max-width: 900px) {
    .feature-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .mock-dashboard {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        display: none;
    }
}

@media (max-width: 640px) {
    .section-block {
        padding: 64px 0;
    }

    .mock-row {
        grid-template-columns: 1fr;
    }

    .mock-selector div {
        flex-direction: column;
        gap: 4px;
    }
}
