:root {
    --blue: #1260d8;
    --blue-dark: #0a3f9e;
    --navy: #17233d;
    --text-body: #4b5567;
    --border: rgb(231, 235, 241);
    --bg-soft: #f5f8fd;
    --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;
}

html,
body {
    overflow-x: hidden;
}

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

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

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

h1,
h2,
h3 {
    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;
}

/* ---------- 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 48px;
}

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

.section-heading p {
    font-size: 16px;
    margin: 0;
}


/* ================= 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 ================= */
.sol-hero {
    background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}

.sol-hero-grid {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 16px;
    align-items: center;
    padding: 46px 0 64px;
}

.sol-hero-content h1 {
    font-size: 44px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.sol-hero-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

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

.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;
}

/* Hero visual: floating dashboard-style panels */
.sol-hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
        "brand   overview overview"
        "perf    overview overview"
        "stat1   stat2    stat3"
        "metrics metrics  metrics"
        "visits  visits   revenue";
    gap: 12px;
}

.mock-panel {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    padding: 16px;
    animation: floatY 5s ease-in-out infinite;
}

.mock-panel:nth-child(2n) {
    animation-delay: .8s;
}

.mock-panel:nth-child(3n) {
    animation-delay: 1.6s;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mock-panel {
        animation: none;
    }
}

.mock-brand {
    grid-area: brand;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    min-height: 78px;
}

.mock-brand .material-symbols-outlined {
    font-size: 34px;
    color: #fff;
}

.mock-chart {
    grid-area: overview;
}

.mock-tabs {
    display: flex;
    gap: 10px;
    font-size: 11px;
    color: #8792a3;
    margin-bottom: 14px;
}

.mock-tabs .active {
    color: #fff;
    font-weight: 600;
    background: var(--blue);
    padding: 3px 10px;
    border-radius: 20px;
}

.mock-line {
    height: 90px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(18, 96, 216, .14), rgba(18, 96, 216, 0)),
        linear-gradient(100deg, transparent 45%, var(--blue) 46%, var(--blue) 47%, transparent 48%);
    background-size: 100% 100%, 200% 100%;
    position: relative;
}

.mock-line::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background-image: radial-gradient(circle, var(--blue) 2.5px, transparent 2.5px);
    background-size: 20% 100%;
    background-position: 90% 30%;
    opacity: .9;
}

.mock-perf {
    grid-area: perf;
}

.mock-perf small {
    display: block;
    font-size: 10px;
    color: #8792a3;
    margin-bottom: 10px;
}

.mock-perf-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 44px;
}

.mock-perf-bars i {
    flex: 1;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(180deg, var(--blue), var(--blue-dark));
    opacity: .85;
}

.mock-perf-bars i:nth-child(1) {
    height: 35%;
}

.mock-perf-bars i:nth-child(2) {
    height: 55%;
}

.mock-perf-bars i:nth-child(3) {
    height: 40%;
}

.mock-perf-bars i:nth-child(4) {
    height: 70%;
}

.mock-perf-bars i:nth-child(5) {
    height: 100%;
    opacity: 1;
}

.mock-perf-bars i:nth-child(6) {
    height: 60%;
}

.mock-stat small {
    display: block;
    font-size: 11px;
    color: #8792a3;
    margin-bottom: 6px;
}

.mock-stat strong {
    font-size: 20px;
    color: var(--navy);
}

.mock-stat strong.up {
    color: #1aa06d;
}

.mock-stat.stat1 {
    grid-area: stat1;
}

.mock-stat.stat2 {
    grid-area: stat2;
}

.mock-stat.stat3 {
    grid-area: stat3;
}

.mock-metrics {
    grid-area: metrics;
    display: flex;
}

.mock-metric-row {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 14px;
    border-left: 1px solid var(--border);
}

.mock-metric-row:first-child {
    border-left: none;
    padding-left: 0;
}

.mock-metric-row small {
    display: block;
    font-size: 10px;
    color: #8792a3;
}

.mock-metric-row strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    margin-top: 2px;
}

.mock-metric-row span {
    font-size: 11px;
    font-weight: 600;
    color: #1aa06d;
}

.mock-linechart {
    grid-area: visits;
}

.mock-linechart.revenue {
    grid-area: revenue;
}

.mock-linechart small {
    display: block;
    font-size: 10px;
    color: #8792a3;
    margin-bottom: 8px;
}

.mock-linechart .mock-line {
    height: 54px;
}


/* ---------- Category tabs row ---------- */
.tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 40px;
}

.tab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 30px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
}

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

.tab-item:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.tab-item.active {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(18, 96, 216, .24);
}


/* ================= EXPLORE SOLUTIONS GRID ================= */
.explore-section {
    padding: 60px 0 60px;
}

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

.solution-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

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

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-soft);
    color: var(--blue);
    margin-bottom: 18px;
    transition: transform .3s ease;
}

.solution-icon .material-symbols-outlined {
    font-size: 26px;
}

.solution-card:hover .solution-icon {
    transform: scale(1.08) rotate(-4deg);
}

.solution-icon--wp {
    background: #21759b;
    color: #fff;
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 22px;
    font-style: italic;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.solution-content p {
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.solution-card>a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

.solution-card>a .material-symbols-outlined {
    font-size: 18px;
    transition: transform .2s ease;
}

.solution-card>a:hover .material-symbols-outlined {
    transform: translateX(4px);
}


/* ================= FEATURED SOLUTIONS ================= */
.featured-section {
    padding: 70px 0;
    background: var(--bg-soft);
}

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

.featured-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: var(--shadow-card);
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.featured-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.badge-popular {
    background: rgba(18, 96, 216, .1);
    color: var(--blue);
}

.badge-impact {
    background: rgba(26, 160, 109, .12);
    color: #1aa06d;
}

.featured-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.featured-card>p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 10px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14.5px;
    color: var(--navy);
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -1px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    margin-bottom: 28px;
}

.learn-more .material-symbols-outlined {
    font-size: 18px;
    transition: transform .2s ease;
}

.learn-more:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.featured-visual {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: center;
}

/* Call widget mockup */

.call-widget {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(150deg, var(--navy), #0e1830);
    border-radius: 16px;
    padding: 22px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-widget strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.call-widget small {
    color: rgba(255, 255, 255, .55);
    font-size: 12.5px;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin: 18px 0;
}

.waveform span {
    width: 3px;
    border-radius: 3px;
    background: var(--blue);
    animation: waveScale 1.2s ease-in-out infinite;
}

.waveform span:nth-child(odd) {
    height: 22px;
}

.waveform span:nth-child(even) {
    height: 34px;
}

.waveform span:nth-child(3n) {
    height: 14px;
    animation-delay: .2s;
}

.waveform span:nth-child(4n) {
    animation-delay: .4s;
}

.waveform span:nth-child(5n) {
    animation-delay: .6s;
}

@keyframes waveScale {

    0%,
    100% {
        transform: scaleY(.5);
    }

    50% {
        transform: scaleY(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .waveform span {
        animation: none;
    }
}

.call-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.call-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn .material-symbols-outlined {
    font-size: 22px;
    color: #fff;
}

.call-btn.decline {
    background: #e0405a;
}

.call-btn.accept {
    background: #1aa06d;
}

/* Report booklet mockup */
.report-mock,
.call-mock {
    padding-top: 20px;
}

.call-mock {
    border-top: 1px solid var(--border);
}

.report-card {
    width: 220px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    padding: 22px 20px;
    transform: rotate(-4deg);
    transition: transform .3s ease;
}

.featured-card:hover .report-card {
    transform: rotate(0deg);
}

.report-card small {
    display: block;
    font-size: 10px;
    letter-spacing: .5px;
    color: #8792a3;
    font-weight: 700;
    margin-bottom: 14px;
}

.report-logo {
    color: var(--blue);
    font-size: 26px;
    margin-bottom: 16px;
    display: block;
}

.report-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 50px;
}

.report-bars i {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--blue), var(--blue-dark));
}

.report-bars i:nth-child(1) {
    height: 40%;
}

.report-bars i:nth-child(2) {
    height: 65%;
}

.report-bars i:nth-child(3) {
    height: 50%;
}

.report-bars i:nth-child(4) {
    height: 85%;
}

.report-bars i:nth-child(5) {
    height: 100%;
}


/* ================= NOT SURE CTA STRIP ================= */
.unsure-section {
    padding: 50px 0;
}

.unsure-box {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px;
}

.unsure-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.unsure-icon .material-symbols-outlined {
    font-size: 28px;
    color: #fff;
}

.unsure-content {
    flex: 1;
    min-width: 240px;
}

.unsure-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.unsure-content p {
    margin: 0;
    font-size: 14.5px;
}

.unsure-avatars {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatar-group img:first-child {
    margin-left: 0;
}


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

.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: 190px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    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: 14.5px;
    color: var(--navy);
}

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


/* ================= RESPONSIVE ================= */
@media (max-width: 1080px) {
    .sol-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sol-hero-visual {
        order: 2;
        min-height: 320px;
    }

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

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

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

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

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

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

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

    .unsure-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

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

    .trust-strip-item {
        border-top: inherit !important;
        border-right: none !important;
    }

    .trust-strip-item:nth-child(1) {
        border-top: none !important;
    }

    .call-widget {
        flex-direction: column;
    }

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

    .mock-metric-row {
        border-bottom: 1px solid var(--border);
    }

    .mock-metric-row:nth-child(4) {
        border-bottom: 0;
    }

    .mock-metric-row:nth-child(3) {
        padding-left: 0;
        border: none;
    }

}