:root {
    --blue: #1260d8;
    --blue-dark: #0a3f9e;
    --navy: #17233d;
    --text-body: #4b5567;
    --border: rgb(231, 235, 241);
    --bg-soft: #f5f8fd;
    --green: #1aa06d;
    --radius: 16px;
    --shadow-card: 0 10px 30px rgba(23, 35, 61, .06);
    --shadow-card-hover: 0 20px 44px rgba(23, 35, 61, .12);
}

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

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1440px, calc(100% - 56px));
    margin: auto;
}


h1,
h2,
h3,
h4 {
    color: var(--navy);
    margin: 0;
}

h2 {
    font-size: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    box-shadow: 0 8px 20px rgba(18, 96, 216, .28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(18, 96, 216, .36);
}

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

.btn-outline:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    color: var(--blue);
}

.btn-outline .play {
    font-size: 11px;
}

.play {
    border: 1px solid currentColor;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 7px;
    flex-shrink: 0;
}

/* ---------- Scroll reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

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

.section-heading h2 {
    margin: 8px 0 12px;
}

.eyebrow-tag {
    display: inline-block;
    color: var(--blue);
    background: rgba(18, 96, 216, .08);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .6px;
    padding: 6px 13px;
    border-radius: 6px;
    margin-bottom: 14px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 22px 0 0;
    font-size: 14px;
    color: #8792a3;
}

.breadcrumb .material-symbols-outlined {
    font-size: 18px;
}

.breadcrumb a {
    color: #8792a3;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--blue);
}

.breadcrumb b {
    font-weight: 400;
    opacity: .6;
}

.breadcrumb span:last-child {
    color: var(--navy);
    font-weight: 500;
}

/* ================= HERO ================= */
.crm-hero {
    background: radial-gradient(circle at 85% 15%, rgba(18, 96, 216, .05), transparent 45%), var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding-bottom: 70px;
}

.crm-hero-grid {
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 44px;
    align-items: start;
    padding-top: 46px;
}

.crm-hero-content {
    padding-top: 40px;
}

.crm-hero-content h1 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

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

.crm-hero-content>p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-body);
    margin-bottom: 22px;
}

.crm-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}

.crm-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--navy);
    font-weight: 500;
}

.crm-check-list .material-symbols-outlined {
    color: var(--blue);
    font-size: 20px;
}

.crm-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- CRM app mockup ---------- */
.crm-hero-visual {
    position: relative;
}

.crm-app {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card-hover);
    overflow: hidden;
    margin-right: 30px;
}

.crm-topbar {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
}

.crm-topbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.crm-logo-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crm-topbar-brand strong {
    font-size: 14px;
}

.crm-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 7px 14px;
    color: #97a1b0;
    font-size: 12.5px;
}

.crm-search .material-symbols-outlined {
    font-size: 17px;
}

.crm-topbar-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.crm-topbar-icons>.material-symbols-outlined {
    font-size: 19px;
    color: #97a1b0;
}

.crm-topbar-icons img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    margin-left: 4px;
}

.crm-topbar-user strong {
    display: block;
    font-size: 12px;
    color: var(--navy);
}

.crm-topbar-user small {
    font-size: 10.5px;
    color: #97a1b0;
}

.crm-body {
    display: grid;
    grid-template-columns: 130px 1fr;
}

.crm-sidebar {
    border-right: 1px solid var(--border);
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: #fbfdff;
}

.crm-side-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 9px;
    border-radius: 7px;
}

.crm-side-item .material-symbols-outlined {
    font-size: 16px;
}

.crm-side-item.active {
    background: rgba(18, 96, 216, .08);
    color: var(--blue);
    font-weight: 700;
}

.crm-main {
    padding: 16px 20px 20px;
    min-width: 0;
}

.crm-main-title {
    font-size: 16px;
    margin-bottom: 14px;
}

.crm-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.crm-stat-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
}

.crm-stat-card small {
    display: block;
    font-size: 10.5px;
    color: var(--text-body);
    margin-bottom: 4px;
}

.crm-stat-card strong {
    display: block;
    font-size: 17px;
    color: var(--navy);
    margin-bottom: 3px;
}

.crm-stat-card em {
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    color: var(--green);
}

.crm-stat-card em span {
    display: block;
    font-weight: 500;
    color: #97a1b0;
    margin-top: 1px;
}

.crm-mid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.crm-panel {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}

.crm-panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.crm-panel-head strong {
    font-size: 13.5px;
    color: var(--navy);
}

.crm-chip {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-body);
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 3px 8px;
    border-radius: 6px;
}

.crm-chip .material-symbols-outlined {
    font-size: 13px;
}

.pipeline-row {
    display: grid;
    grid-template-columns: 78px 1fr 30px;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
}

.pipeline-row span {
    font-size: 11px;
    color: var(--text-body);
}

.pipeline-row b {
    font-size: 11.5px;
    color: var(--navy);
    text-align: right;
}

.pipeline-bar {
    height: 7px;
    border-radius: 4px;
    background: var(--bg-soft);
    overflow: hidden;
}

.pipeline-bar i {
    display: block;
    height: 100%;
    border-radius: 4px;
}

.revenue-figure {
    margin-bottom: 10px;
}

.revenue-figure strong {
    display: block;
    font-size: 19px;
    color: var(--navy);
}

.revenue-figure em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--green);
}

.revenue-chart {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.revenue-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 9px;
    color: #97a1b0;
    padding: 2px 0;
}

.revenue-line {
    flex: 1;
    height: 76px;
    border-radius: 6px;
    background:
        linear-gradient(180deg, rgba(18, 96, 216, .16), rgba(18, 96, 216, 0) 75%),
        repeating-linear-gradient(96deg, transparent 0 20px, rgba(18, 96, 216, .3) 20px 22px);
    background-size: 100% 100%, 100% 2px;
    background-position: 0 0, 0 40%;
    background-repeat: no-repeat, no-repeat;
}

.revenue-months {
    display: flex;
    justify-content: space-between;
    padding-left: 38px;
}

.revenue-months span {
    font-size: 9.5px;
    color: #97a1b0;
}

.activity-row,
.task-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}

.activity-row:last-of-type,
.task-row:last-of-type {
    border-bottom: none;
}

.activity-row p,
.task-row p {
    font-size: 11.5px;
    color: var(--navy);
    flex: 1;
    margin: 0;
}

.activity-row small,
.task-row small {
    font-size: 10px;
    color: #97a1b0;
    white-space: nowrap;
}

.activity-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
}

.task-row .material-symbols-outlined {
    font-size: 16px;
    color: #b7bfcb;
    flex-shrink: 0;
}

.crm-view-all {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.crm-view-all .material-symbols-outlined {
    font-size: 15px;
}


/* ================= SEE IT IN ACTION ================= */
.crm-demo-section {
    padding: 80px 0;
}

.crm-demo-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 54px;
    align-items: center;
}

.crm-laptop {
    position: relative;
}

.crm-laptop-screen {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 10px solid var(--navy);
    aspect-ratio: 16/10.5;
    box-shadow: var(--shadow-card-hover);
}

.crm-laptop-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crm-laptop-base {
    height: 14px;
    margin: 0 -14px;
    background: linear-gradient(180deg, #cfd5df, #aab3c2);
    border-radius: 0 0 8px 8px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: var(--blue);
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.crm-demo-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.crm-demo-content>p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 24px;
}

.crm-demo-features {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.crm-demo-features>div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.crm-demo-features .material-symbols-outlined {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 11px;
    background: rgba(18, 96, 216, .08);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.crm-demo-features strong {
    display: block;
    font-size: 14.5px;
    color: var(--navy);
}

.crm-demo-features small {
    font-size: 12.5px;
    color: var(--text-body);
}


/* ================= PERFECT FOR ================= */
.perfect-section {
    padding: 0 0 80px;
}

.perfect-section .section-heading {
    max-width: 680px;
}

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

.include-card {
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    padding: 30px 22px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.include-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.include-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 14px;
    background: rgba(18, 96, 216, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.include-icon .material-symbols-outlined {
    font-size: 27px;
    color: var(--blue);
}

.include-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.include-card p {
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    color: var(--text-body);
}


/* ================= WHY CHOOSE US ================= */
.why-section {
    padding: 0 0 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.why-item {
    text-align: center;
}

.why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(18, 96, 216, .3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon .material-symbols-outlined {
    font-size: 26px;
    color: var(--blue);
}

.why-item strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 6px;
}

.why-item small {
    font-size: 12.5px;
    color: var(--text-body);
    line-height: 1.5;
}


/* ================= TRUST STRIP ================= */
.trust-strip-section {
    padding: 0 0 40px;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    padding: 30px 10px;
}

.trust-strip-item {
    flex: 1;
    min-width: 170px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-left: 1px solid var(--border);
}

.trust-strip-item:first-child {
    border-left: none;
}

.trust-strip-item .material-symbols-outlined {
    font-size: 24px;
    color: var(--blue);
}

.trust-strip-item strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.trust-strip-item small {
    font-size: 12px;
    color: #8792a3;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
    .crm-hero-grid {
        grid-template-columns: 1fr;
    }

    .crm-demo-box {
        grid-template-columns: 1fr;
    }

    .crm-body {
        grid-template-columns: 100px 1fr;
    }

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

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

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

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

    .trust-strip-item {
        flex: 1 1 33%;
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .trust-strip .trust-strip-item {
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border);
    }

    .trust-strip .trust-strip-item:nth-child(1),
    .trust-strip .trust-strip-item:nth-child(2),
    .trust-strip .trust-strip-item:nth-child(3) {
        border-top: 0 !important;
    }

    .trust-strip .trust-strip-item:nth-child(6),
    .trust-strip .trust-strip-item:nth-child(3) {
        border-right: 0 !important;
    }
}

@media (max-width: 700px) {
    .crm-hero-content h1 {
        font-size: 28px;
    }

    .crm-sidebar {
        display: none;
    }

    .crm-body {
        grid-template-columns: 1fr;
    }

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

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

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

    .trust-strip-item {
        flex: 1 1 100%;
    }

    body .trust-strip .trust-strip-item {

        border-right: 0 !important;
    }

    .trust-strip .trust-strip-item:nth-child(2),
    .trust-strip .trust-strip-item:nth-child(3) {
        border-top: 1px solid var(--border) !important;
    }

    .crm-hero-visual {
        display: none;
    }

    .crm-hero {
        padding-bottom: 50px;
    }

    .crm-demo-section {
        padding: 50px 0;
    }

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

    .crm-hero-grid {
        padding-top: 20px !important;
    }
}