:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --border: #e2e8f0;
    --background: #ffffff;
    --surface: #f8fafc;
    --success: #16a34a;
}

.dashboard-preview {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.dashboard-preview img {
    display: block;
    width: 100%;
    height: auto;
}

.pricing-includes {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-features {
    margin-top: 0;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

.brand-logo {
    height: 70px;
    width: auto;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar {
    min-height: 72px;

    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark);
    letter-spacing: -0.04em;
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
}

.desktop-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--primary);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;
    padding: 0 20px;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    color: var(--dark);
    border: 1px solid var(--border);
    background: #fff;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-menu-button {
    display: none;

    border: 0;
    background: transparent;

    font-size: 26px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

@media (max-width: 900px) {
    .desktop-nav,
    .navbar-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
        margin-left: auto;
    }

    .mobile-menu {
        padding: 20px;

        border-top: 1px solid var(--border);
        background: #fff;
    }

    .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu > a {
        padding: 12px 8px;

        text-decoration: none;
        font-weight: 500;

        border-radius: 8px;
    }

    .mobile-menu > a:hover {
        background: var(--surface);
        color: var(--primary);
    }

    .mobile-menu-actions {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .mobile-menu-actions .btn {
        flex: 1;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1180px);
    }
}

.hero {
    padding: 100px 0 120px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(37, 99, 235, 0.1),
            transparent 35%
        ),
        linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero-badge,
.section-label {
    display: inline-flex;

    padding: 7px 12px;

    border-radius: 999px;

    color: var(--primary);
    background: #eff6ff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.hero h1 {
    margin: 22px 0;

    max-width: 650px;

    color: var(--dark);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;

    letter-spacing: -0.045em;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    max-width: 600px;

    color: var(--muted);

    font-size: 19px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 30px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-top: 28px;

    color: var(--muted);
    font-size: 14px;
}

.hero-visual {
    perspective: 1200px;
}

.dashboard-card {
    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.14),
        0 10px 30px rgba(15, 23, 42, 0.08);

    transform: rotateY(-3deg) rotateX(2deg);
}

.dashboard-topbar {
    height: 42px;

    display: flex;
    align-items: center;
    gap: 7px;

    padding: 0 16px;

    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

.dashboard-topbar span {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #cbd5e1;
}

.dashboard-body {
    display: flex;
    min-height: 430px;
}

.dashboard-sidebar {
    width: 150px;

    padding: 22px 14px;

    color: #fff;
    background: #0f172a;
}

.dashboard-sidebar strong {
    display: block;
    margin-bottom: 30px;
}

.sidebar-item {
    height: 34px;

    margin-bottom: 8px;

    border-radius: 7px;

    background: rgba(255, 255, 255, 0.08);
}

.sidebar-item.active {
    background: rgba(37, 99, 235, 0.8);
}

.dashboard-content {
    flex: 1;
    padding: 24px;

    background: #f8fafc;
}

.skeleton-title {
    width: 42%;
    height: 20px;

    margin-bottom: 24px;

    border-radius: 5px;

    background: #cbd5e1;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.stat-card {
    height: 80px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: #fff;
}

.dashboard-chart {
    height: 150px;

    margin-top: 16px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: #fff;
}

.dashboard-table {
    height: 100px;

    margin-top: 16px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: #fff;
}

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    margin: 16px 0;

    color: var(--dark);

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;

    letter-spacing: -0.035em;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: #fff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    color: var(--primary);
    background: #eff6ff;

    font-size: 20px;
    font-weight: 700;
}

.feature-card h3 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 19px;
}

.feature-card p {
    margin: 0;

    color: var(--muted);

    font-size: 15px;
}

@media (max-width: 900px) {
    .hero {
        padding: 70px 0 80px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero h1 {
        font-size: clamp(40px, 10vw, 58px);
    }

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

    .dashboard-card {
        transform: none;
    }
}

@media (max-width: 600px) {
    .hero-benefits {
        flex-direction: column;
        gap: 8px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        width: 75px;
    }

    .dashboard-content {
        padding: 12px;
    }
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 0 25px;

    color: #cbd5e1;

    background: #0f172a;
}

.site-footer .brand {
    color: #fff;
}

.site-footer .brand span {
    color: #60a5fa;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr
        1.2fr;

    gap: 45px;
}

.footer-brand p {
    max-width: 320px;

    margin-top: 18px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.7;
}

.footer-grid h3 {
    margin: 0 0 18px;

    color: #fff;

    font-size: 14px;
}

.footer-grid > div:not(.footer-brand) a {
    display: block;

    margin-bottom: 12px;

    color: #94a3b8;

    font-size: 13px;

    text-decoration: none;
}

.footer-grid > div:not(.footer-brand) a:hover {
    color: #fff;
}

.footer-login-text {
    margin: 0 0 15px;

    color: #94a3b8;

    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 60px;
    padding-top: 25px;

    border-top: 1px solid #1e293b;
}

.footer-bottom p {
    margin: 0;

    color: #64748b;

    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

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

    .footer-bottom {
        flex-direction: column;
    }
}

.page-hero {
    padding: 90px 0;

    text-align: center;

    background: #f8fafc;
}

.page-hero h1 {
    max-width: 800px;

    margin: 20px auto;

    color: var(--dark);

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.1;

    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 650px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 18px;
}

.cta-section {
    padding: 90px 0;

    text-align: center;

    background: #eff6ff;
}

.cta-section h2 {
    margin: 0 auto 15px;

    color: var(--dark);

    font-size: clamp(32px, 4vw, 46px);
}

.cta-section p {
    margin: 0 auto 28px;

    color: var(--muted);
}

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;

    padding: 35px 30px;

    border: 1px solid var(--border);
    border-radius: 18px;

    background: #fff;

    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
}

.pricing-card-popular {
    border: 2px solid var(--primary);

    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

.pricing-popular {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 12px;

    border-radius: 999px;

    color: #fff;
    background: var(--primary);

    font-size: 11px;
    font-weight: 700;

    white-space: nowrap;
}

.pricing-card h2 {
    margin: 0;

    color: var(--dark);

    font-size: 24px;
}

.pricing-description {
    min-height: 52px;

    margin: 12px 0 25px;

    color: var(--muted);

    font-size: 14px;
}

.pricing-price {
    margin-bottom: 25px;
}

.pricing-price small {
    display: block;

    margin-bottom: 4px;

    color: var(--muted);

    font-size: 13px;
}

.pricing-price strong {
    color: var(--dark);

    font-size: 30px;
}

.pricing-price span {
    color: var(--muted);

    font-size: 14px;
}

.pricing-button {
    width: 100%;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 28px 0 0;
    padding: 0;

    list-style: none;

    color: var(--text);

    font-size: 14px;
}

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

.solution-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    max-width: 1100px;
    margin: 0 auto;
}

.solution-card {
    padding: 32px;

    border: 1px solid var(--border);
    border-radius: 18px;

    color: inherit;

    text-decoration: none;

    background: #fff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.solution-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.solution-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background: #eff6ff;

    font-size: 28px;
}

.solution-card h2 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 22px;
}

.solution-card p {
    margin: 0 0 20px;

    color: var(--muted);

    font-size: 15px;
}

.solution-card span {
    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 800px) {
    .solution-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.content-narrow {
    max-width: 900px;
}

.content-block {
    max-width: 800px;
    margin: 0 auto 50px;
}

.content-block h2 {
    margin-bottom: 20px;

    color: var(--dark);

    font-size: 34px;
}

.content-block p {
    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.content-feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.content-feature-grid > div {
    padding: 25px;

    border: 1px solid var(--border);
    border-radius: 14px;
}

.content-feature-grid h3 {
    margin: 0 0 8px;

    color: var(--dark);
}

.content-feature-grid p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

@media (max-width: 700px) {
    .content-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 90px 0 110px;

    overflow: hidden;

    background:
        radial-gradient(circle at 80% 20%, #dbeafe, transparent 35%), #fff;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 7px 13px;

    border: 1px solid #bfdbfe;
    border-radius: 999px;

    color: #1d4ed8;

    background: #eff6ff;

    font-size: 13px;
    font-weight: 600;
}

.hero-badge span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #2563eb;
}

.hero h1 {
    max-width: 650px;

    margin: 22px 0;

    color: var(--dark);

    font-size: clamp(44px, 5.5vw, 72px);

    line-height: 1.03;

    letter-spacing: -0.055em;
}

.hero h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 600px;

    margin: 0;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}

.hero-note {
    margin-top: 18px;

    color: #64748b;

    font-size: 12px;
}

/* =========================================================
   BUTTON
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;

    background: var(--primary);

    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.btn-outline {
    color: var(--dark);

    border: 1px solid #cbd5e1;

    background: #fff;
}

/* =========================================================
   DASHBOARD PREVIEW
========================================================= */

.hero-preview {
    position: relative;
}

.dashboard-window {
    overflow: hidden;

    border: 1px solid #dbeafe;

    border-radius: 18px;

    background: #fff;

    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.15);

    transform: perspective(1200px) rotateY(-4deg);
}

.dashboard-header {
    height: 45px;

    display: flex;
    align-items: center;

    padding: 0 16px;

    border-bottom: 1px solid #e2e8f0;

    background: #f8fafc;
}

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

.window-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}

.dashboard-title {
    margin: auto;

    color: #64748b;

    font-size: 11px;
}

.dashboard-body {
    display: flex;

    min-height: 430px;
}

.dashboard-sidebar {
    width: 150px;

    padding: 20px 12px;

    border-right: 1px solid #e2e8f0;

    background: #f8fafc;
}

.sidebar-logo {
    padding: 5px 8px 22px;

    color: #0f172a;

    font-size: 18px;
    font-weight: 800;
}

.sidebar-logo span {
    color: #2563eb;
}

.sidebar-item {
    padding: 9px;

    margin-bottom: 5px;

    border-radius: 7px;

    color: #64748b;

    font-size: 10px;
}

.sidebar-item.active {
    color: #2563eb;

    background: #dbeafe;

    font-weight: 700;
}

.dashboard-main {
    flex: 1;

    padding: 25px;

    background: #fff;
}

.dashboard-welcome small {
    color: #94a3b8;

    font-size: 10px;
}

.dashboard-welcome h3 {
    margin: 5px 0 20px;

    color: #0f172a;

    font-size: 18px;
}

.dashboard-stat-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.dashboard-stat {
    padding: 13px;

    border: 1px solid #e2e8f0;

    border-radius: 9px;
}

.dashboard-stat small {
    display: block;

    margin-bottom: 8px;

    color: #94a3b8;

    font-size: 8px;
}

.dashboard-stat strong {
    display: block;

    color: #0f172a;

    font-size: 13px;
}

.dashboard-stat span {
    display: block;

    margin-top: 5px;

    color: #2563eb;

    font-size: 8px;
}

.dashboard-chart {
    margin-top: 15px;

    padding: 15px;

    border: 1px solid #e2e8f0;

    border-radius: 9px;
}

.chart-title {
    margin-bottom: 15px;

    color: #0f172a;

    font-size: 10px;
    font-weight: 700;
}

.fake-chart {
    height: 140px;

    display: flex;
    align-items: end;

    gap: 8px;

    padding-top: 10px;
}

.fake-chart div {
    flex: 1;

    border-radius: 4px 4px 0 0;

    background: #bfdbfe;
}

/* =========================================================
   TRUST
========================================================= */

.trust-section {
    padding: 45px 0;

    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-title {
    margin: 0 0 30px;

    text-align: center;

    color: #64748b;

    font-size: 14px;
}

.trust-items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    text-align: center;
}

.trust-items strong,
.trust-items span {
    display: block;
}

.trust-items strong {
    color: var(--dark);

    font-size: 17px;
}

.trust-items span {
    margin-top: 4px;

    color: #94a3b8;

    font-size: 12px;
}

/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 100px 0;
}

.section-light {
    background: #f8fafc;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-label {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 0.08em;
}

.section-heading h2 {
    margin: 15px 0;

    color: var(--dark);

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -0.04em;
}

.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.7;
}

.section-action {
    margin-top: 45px;

    text-align: center;
}

/* =========================================================
   FEATURE
========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.feature-card {
    padding: 28px;

    border: 1px solid #e2e8f0;

    border-radius: 15px;

    background: #fff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background: #eff6ff;

    font-size: 23px;
}

.feature-card h3 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 17px;
}

.feature-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.65;
}

/* =========================================================
   STEPS
========================================================= */

.steps-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    max-width: 900px;

    margin: auto;
}

.step {
    text-align: center;
}

.step-number {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    color: #2563eb;

    background: #dbeafe;

    font-size: 13px;
    font-weight: 800;
}

.step h3 {
    margin: 0 0 10px;

    color: var(--dark);
}

.step p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;
}

/* =========================================================
   BUSINESS
========================================================= */

.business-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.business-card {
    padding: 30px;

    border: 1px solid #e2e8f0;
    border-radius: 15px;

    color: inherit;

    text-decoration: none;

    background: #fff;
}

.business-card:hover {
    border-color: #93c5fd;
}

.business-card > span {
    font-size: 30px;
}

.business-card h3 {
    margin: 15px 0 8px;

    color: var(--dark);
}

.business-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

/* =========================================================
   PLATFORM
========================================================= */

.platform-section {
    padding: 100px 0;

    background: #eff6ff;
}

.platform-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 70px;
}

.platform-grid h2 {
    max-width: 550px;

    margin: 15px 0;

    color: var(--dark);

    font-size: clamp(35px, 4vw, 50px);

    line-height: 1.1;

    letter-spacing: -0.04em;
}

.platform-grid > div > p {
    max-width: 550px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.75;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 25px 0;

    padding: 0;

    list-style: none;

    color: #334155;

    font-size: 14px;
}

.platform-visual {
    position: relative;

    min-height: 400px;
}

.device-card {
    position: absolute;

    overflow: hidden;

    border: 1px solid #dbeafe;

    border-radius: 15px;

    background: #fff;

    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.device-web {
    top: 30px;
    right: 0;

    width: 80%;
}

.device-header {
    padding: 12px;

    border-bottom: 1px solid #e2e8f0;

    color: #64748b;

    font-size: 10px;
}

.device-content {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    padding: 20px;
}

.device-content div {
    height: 70px;

    border-radius: 8px;

    background: #eff6ff;
}

.device-mobile {
    bottom: 0;
    left: 20px;

    width: 150px;

    min-height: 270px;
}

.mobile-notch {
    width: 55px;
    height: 12px;

    margin: 8px auto;

    border-radius: 20px;

    background: #0f172a;
}

.mobile-content {
    display: flex;
    flex-direction: column;

    gap: 10px;

    padding: 25px 18px;
}

.mobile-content strong {
    color: #2563eb;
}

.mobile-content span {
    color: #94a3b8;

    font-size: 10px;
}

.mobile-content b {
    color: #0f172a;

    font-size: 14px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {
    .hero-grid,
    .platform-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-preview {
        max-width: 700px;

        margin: auto;
    }

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

@media (max-width: 700px) {
    .section {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 44px;
    }

    .dashboard-window {
        transform: none;
    }

    .dashboard-sidebar {
        display: none;
    }

    .trust-items,
    .steps-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .platform-visual {
        min-height: 330px;
    }

    .device-web {
        width: 75%;
    }
}

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

.feature-card-link {
    display: block;

    color: inherit;

    text-decoration: none;
}

.feature-card-link h2 {
    margin: 0 0 10px;

    color: var(--dark);

    font-size: 21px;
}

.feature-card-link span {
    display: inline-block;

    margin-top: 18px;

    color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}

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

@media (max-width: 600px) {
    .feature-grid-large {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   NAVBAR
========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    border-bottom: 1px solid rgba(226, 232, 240, 0.8);

    background: rgba(255, 255, 255, 0.94);

    backdrop-filter: blur(12px);
}

.nav-container {
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.brand {
    flex-shrink: 0;

    color: #0f172a;

    font-size: 25px;
    font-weight: 900;

    letter-spacing: -0.05em;

    text-decoration: none;
}

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

.main-nav {
    display: flex;
    align-items: center;

    gap: 30px;

    margin-left: auto;
}

.main-nav a {
    color: #475569;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;

    gap: 15px;
}

.nav-login {
    color: #334155;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.nav-button {
    min-height: 40px;

    padding: 0 17px;

    font-size: 13px;
}

.mobile-menu-button {
    display: none;

    border: 0;

    color: #0f172a;

    background: transparent;

    font-size: 24px;

    cursor: pointer;
}

.mobile-menu {
    display: none;

    padding: 15px 20px 25px;

    border-top: 1px solid #e2e8f0;

    background: #fff;
}

.mobile-menu a {
    display: block;

    padding: 13px 0;

    color: #334155;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;
}

.mobile-menu .btn {
    margin-top: 10px;

    text-align: center;
}

@media (max-width: 900px) {
    .main-nav,
    .nav-actions {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-menu.open {
        display: block;
    }
}

/* =========================================================
   HERO
========================================================= */

.hero-section {
    padding: 90px 0 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(37, 99, 235, 0.1),
            transparent 35%
        ),
        #fff;
}

.hero-container {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 70px;
}

.hero-content h1 {
    max-width: 650px;

    margin: 18px 0 25px;

    color: #0f172a;

    font-size: clamp(42px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -0.055em;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content > p {
    max-width: 570px;

    margin-bottom: 30px;

    color: #64748b;

    font-size: 18px;

    line-height: 1.7;
}

.hero-note {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 18px;

    color: #64748b;

    font-size: 13px;
}

.hero-note span {
    color: #16a34a;

    font-weight: 800;
}

/* =========================================================
   DASHBOARD PREVIEW
========================================================= */

.hero-visual {
    position: relative;
}

.dashboard-preview {
    overflow: hidden;

    border: 1px solid #e2e8f0;

    border-radius: 18px;

    background: #fff;

    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.14);
}

.dashboard-topbar {
    height: 48px;

    display: flex;
    align-items: center;

    gap: 15px;

    padding: 0 18px;

    border-bottom: 1px solid #e2e8f0;

    background: #f8fafc;
}

.dashboard-dots {
    display: flex;

    gap: 5px;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #cbd5e1;
}

.dashboard-title {
    color: #475569;

    font-size: 11px;
    font-weight: 700;
}

.dashboard-body {
    min-height: 370px;

    display: grid;

    grid-template-columns: 125px 1fr;
}

.dashboard-sidebar {
    padding: 20px 10px;

    border-right: 1px solid #e2e8f0;

    background: #f8fafc;
}

.sidebar-item {
    padding: 9px 10px;

    margin-bottom: 6px;

    border-radius: 6px;

    color: #64748b;

    font-size: 9px;
}

.sidebar-item.active {
    color: var(--primary);

    background: #eff6ff;

    font-weight: 700;
}

.dashboard-main {
    padding: 25px;
}

.dashboard-heading {
    margin-bottom: 20px;

    color: #0f172a;

    font-size: 18px;
    font-weight: 800;
}

.dashboard-stats {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 12px;
}

.stat-card {
    padding: 16px;

    border: 1px solid #e2e8f0;

    border-radius: 10px;
}

.stat-card small {
    display: block;

    margin-bottom: 8px;

    color: #64748b;

    font-size: 9px;
}

.stat-card strong {
    display: block;

    margin-bottom: 5px;

    color: #0f172a;

    font-size: 17px;
}

.stat-card span {
    color: #16a34a;

    font-size: 9px;
}

.dashboard-chart {
    margin-top: 18px;

    padding: 18px;

    border: 1px solid #e2e8f0;

    border-radius: 10px;
}

.chart-title {
    margin-bottom: 20px;

    color: #475569;

    font-size: 10px;
    font-weight: 700;
}

.chart-bars {
    height: 120px;

    display: flex;
    align-items: end;

    gap: 12px;
}

.chart-bars span {
    flex: 1;

    border-radius: 4px 4px 0 0;

    background: var(--primary);
}

/* =========================================================
   TRUST
========================================================= */

.trust-section {
    padding: 35px 0;

    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;

    background: #f8fafc;
}

.trust-section > .container > p {
    margin-bottom: 25px;

    color: #64748b;

    font-size: 13px;

    text-align: center;
}

.trust-items {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.trust-items > div {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;
}

.trust-items strong {
    color: #334155;

    font-size: 14px;
}

.trust-items span {
    color: #94a3b8;

    font-size: 12px;
}

/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 100px 0;
}

.section-gray {
    background: #f8fafc;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2,
.split-section h2 {
    margin: 15px 0;

    color: #0f172a;

    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.15;

    letter-spacing: -0.04em;
}

.section-heading p,
.split-section > div > p {
    color: #64748b;

    font-size: 16px;

    line-height: 1.7;
}

.section-label {
    display: inline-block;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;
}

/* =========================================================
   FEATURE
========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 28px;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    background: #fff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);

    border-color: #bfdbfe;

    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 10px;

    background: #eff6ff;

    font-size: 20px;
}

.feature-card h3 {
    margin: 0 0 10px;

    color: #0f172a;

    font-size: 18px;
}

.feature-card p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}

.feature-card span {
    display: inline-block;

    margin-top: 20px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}

.section-more {
    margin-top: 35px;

    text-align: center;
}

/* =========================================================
   BENEFITS
========================================================= */

.split-section {
    display: grid;

    grid-template-columns:
        0.9fr
        1.1fr;

    gap: 80px;

    align-items: start;
}

.benefit-list {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.benefit-item {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 15px;

    padding-bottom: 20px;

    border-bottom: 1px solid #e2e8f0;
}

.benefit-number {
    color: var(--primary);

    font-size: 12px;
    font-weight: 800;
}

.benefit-item h3 {
    margin: 0 0 7px;

    color: #0f172a;

    font-size: 17px;
}

.benefit-item p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.6;
}

/* =========================================================
   PLATFORM
========================================================= */

.platform-preview {
    max-width: 950px;

    margin: auto;
}

.platform-browser {
    overflow: hidden;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    background: #fff;

    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
}

.browser-bar {
    height: 45px;

    display: flex;
    align-items: center;

    gap: 6px;

    padding: 0 15px;

    border-bottom: 1px solid #e2e8f0;

    background: #f8fafc;
}

.browser-bar > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #cbd5e1;
}

.browser-bar > div {
    flex: 1;

    margin-left: 10px;

    padding: 5px 15px;

    border-radius: 5px;

    color: #94a3b8;

    background: #fff;

    font-size: 9px;
}

.platform-screen {
    min-height: 360px;

    display: grid;

    grid-template-columns: 150px 1fr;
}

.screen-sidebar {
    border-right: 1px solid #e2e8f0;

    background: #f8fafc;
}

.screen-content {
    padding: 30px;
}

.screen-row {
    width: 55%;
    height: 16px;

    margin-bottom: 10px;

    border-radius: 4px;

    background: #e2e8f0;
}

.screen-row.short {
    width: 30%;
}

.screen-cards {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 30px;
}

.screen-cards div {
    height: 90px;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    background: #fff;
}

.screen-table {
    height: 110px;

    margin-top: 20px;

    border: 1px solid #e2e8f0;

    border-radius: 8px;

    background: #fff;
}

/* =========================================================
   BUSINESS
========================================================= */

.business-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.business-card {
    padding: 32px;

    border: 1px solid #e2e8f0;

    border-radius: 14px;

    background: #fff;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.business-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.business-icon {
    margin-bottom: 20px;

    font-size: 30px;
}

.business-card h3 {
    margin: 0 0 10px;

    color: #0f172a;

    font-size: 19px;
}

.business-card p {
    margin: 0;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}

.business-card span {
    display: inline-block;

    margin-top: 20px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 700;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 100px 20px;

    text-align: center;

    background: #eff6ff;
}

.cta-section h2 {
    max-width: 700px;

    margin: 15px auto;

    color: #0f172a;

    font-size: clamp(32px, 4vw, 46px);

    line-height: 1.15;

    letter-spacing: -0.04em;
}

.cta-section p {
    max-width: 600px;

    margin: 0 auto 30px;

    color: #64748b;

    line-height: 1.7;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-note {
        justify-content: center;
    }

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

    .split-section {
        grid-template-columns: 1fr;

        gap: 45px;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 65px 0 70px;
    }

    .section {
        padding: 70px 0;
    }

    .feature-grid,
    .business-grid {
        grid-template-columns: 1fr;
    }

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

    .dashboard-body {
        grid-template-columns: 80px 1fr;
    }

    .dashboard-main {
        padding: 15px;
    }

    .dashboard-sidebar {
        padding: 15px 5px;
    }

    .platform-screen {
        grid-template-columns: 80px 1fr;
    }

    .screen-content {
        padding: 15px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.contact-item small {
    display: block;
    margin-bottom: 4px;
    opacity: 0.65;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    display: block;
    text-decoration: none;
}

.contact-item span {
    display: block;
    opacity: 0.75;
}

.contact-form-wrapper {
    width: 100%;
}

.contact-form {
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    background: #fff;
}

.contact-form h2 {
    margin-bottom: 10px;
}

.contact-form > p {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

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

    .contact-form {
        padding: 25px;
    }
}

.video-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px;
}

.video-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.platform-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.platform-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand img {
        height: 36px;
        max-width: 150px;
    }
}
