/* ============================================================
   Smart Site — Dedicated Stylesheet
   Header & banner design reused from index.html / style.css
============================================================ */


/* Smart Site — design-tokens.css + base.css linked in HTML */

:root {
    --navy-deep: #2a2a72;
    --navy-mid: #24305f;
    --teal: #2e8b8a;
    --teal-light: #49a09d;
    --mint: #78e0b7;
    --gradient-bg: linear-gradient(135deg, #2a2a72 0%, #24305f 35%, #2e8b8a 100%);
    --text-gray: #4b5563;
    --font: var(--font-body);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-main);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}
.gif-scan img {
    width: 150px;
    height: 150px;
    position: relative;
    bottom: 30px;
    right: 45px;
}

.gif-scan {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
}
/* ── Buttons ────────────────────────────────────────────────── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s;
}

.btn-primary {
    background: var(--gradient-btn);
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(120, 224, 183, 0.28);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(120, 224, 183, 0.38);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    opacity: 0.8;
}


/* btn-gradient alias (used by nav) */

.btn-gradient {
    background: var(--gradient-brand-tilt);
    color: var(--color-on-dark);
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    opacity: 0.92;
    box-shadow: var(--shadow-lg);
}


/* ── Background banner (same as index.html) ─────────────────── */

.background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 720px;
    z-index: 0;
    overflow: hidden;
}

.diagonal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/banner-bg.png) no-repeat right top;
    background-size: contain;
}


/* ── Header (identical to index.html) ───────────────────────── */

.main-header {
    padding: 22px 0;
    position: relative;
    z-index: 100;
}

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

.logo img {
    height: 32px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.9;
    transition: opacity 0.25s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links .arrow {
    font-size: 9px;
    opacity: 0.8;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sign-in {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.25s;
}

.sign-in:hover {
    opacity: 1;
}


/* Hamburger (hidden on desktop) */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* ── Hero Section (matched to index hero style) ─────────────── */

.hero-section {
    padding-top: 80px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.1;
    max-width: 600px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--navy);
    letter-spacing: -0.2px;
}

.hero-title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--navy);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-description {
    color: #4B5563;
    font-size: 14px;
    margin-bottom: 35px;
    max-width: 440px;
    line-height: 1.6;
}

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

.hero-visuals {
    flex: 0.9;
    position: relative;
    height: 450px;
}

.blob-shape {
    position: absolute;
    top: 55%;
    left: 55%;
    width: 450px;
    height: 280px;
    background: var(--blob-color);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    opacity: 0.95;
    box-shadow: 0 0 100px rgba(230, 233, 252, 0.8);
}

.hero-banner-image {
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: min(520px, 100%);
    height: auto;
    z-index: 2;
}


/* ── Problem / Current Experience Section ───────────────────── */

.problem-section {
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 80px 0;
}

.problem-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}


/* Pain-point cards */

.problem-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.problem-card {
    background-color: #F7F8FC;
    background-image: url(../images/wave_card.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% 40px;
    border: 1px solid #E8EAF4;
    border-radius: var(--radius-md);
    padding: 20px 18px 28px;
}

.problem-card--wide {
    grid-column: 1 / -1;
}

.problem-card p {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
    font-weight: 500;
}


/* Current experience */

.current-experience {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.ce-label {
    /* font-family: Nunito Sans; */
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    /* line-/height: 35px; */
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 0px;
}

.ce-title {
    font-size: 25px !important;
    font-weight: 800;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

.ce-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 440px;
    margin-bottom: 24px;
}

.ce-tagline {
    font-size: 13px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}


/* ── Live Smart Sites Carousel ──────────────────────────────── */

.live-sites-section {
    padding: 0px 0 0px;
}

.live-sites-shell {
    background: #262262;
    /* border: 2px solid #1EA7FF; */
    width: 100%;
    padding: 26px 0 20px;
    text-align: center;
}

.live-sites-inner {
    width: min(1280px, 100%);
    margin: 0 auto;
    padding: 0 34px;
}

.live-sites-title {
    color: var(--white);
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
}

.live-sites-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.45;
    max-width: 640px;
    margin: 0 auto 22px;
}

.live-carousel {
    --live-gap: 20px;
}

.slider_wrap {
    flex: 0 0 calc((100% - (var(--live-per-view) - 1) * var(--live-gap)) / var(--live-per-view));
    width: calc((100% - (var(--live-per-view) - 1) * var(--live-gap)) / var(--live-per-view));
    box-sizing: border-box;
}

.live-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.live-carousel-track {
    display: flex;
    gap: var(--live-gap);
    transition: transform 0.45s ease;
    will-change: transform;
}

.live-card {
    min-height: 240px;
    width: 220px;

    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid #e0e3f0;
    /* box-shadow: 0 4px 18px rgba(38, 34, 98, 0.11), 0 1px 5px rgba(0, 0, 0, 0.07); */
    box-shadow: rgb(0 0 0 / 30%) 0px 2px 8px 0px;
    padding: 14px 12px 16px;
    text-align: center;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.live-card:hover {
    transform: translateY(-5px) scale(1.015);
    box-shadow: 0 16px 40px rgba(38, 34, 98, 0.18), 0 5px 14px rgba(0, 0, 0, 0.10);
    border-color: #b8bcdc;
}

.live-card-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    width: 100%;
    border-radius: 8px;
    /* background: #f5f6fb; */
    overflow: hidden;
    flex-shrink: 0;
}

.live-card-media {
    height: 110px;
    border-radius: 6px;
    background: #262262;
    margin-bottom: 10px;
}

.live-card h3 {
    color: #1A1A2D;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

.live-card p {
    color: #2C2F47;
    font-size: 11px;
    line-height: 1.3;
    /* max-width: 150px; */
    margin: 0 auto;
}

.live-carousel-controls {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.live-nav-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 0;
    background: #5B8DA8;
    color: #D8EEF2;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.live-nav-btn--next {
    background: #5CBEA5;
    color: #E9FFF8;
}

.live-nav-btn:hover:not(:disabled) {
    transform: translateY(-1px);
}

.live-nav-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}


/* ── Catalog + Accordion Section ────────────────────────────── */

.catalog-accordion-section {
    position: relative;
    padding: 15px 0 80px 90px;
}

.catalog-accordion-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.catalog-preview-box {
    width: 100%;
    max-width: 420px;
    min-height: 265px;
    border-radius: 18px;
    background: #C9C6E9;
    border-left: 2px solid #262262;
    justify-self: center;
}

.catalog-accordion-content {
    max-width: 520px;
}

.catalog-accordion-title {
    color: #26245F;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.catalog-accordion-desc {
    color: #5E6282;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.catalog-accordion {
    border-top: 1px solid #D6D8E6;
}

.catalog-item {
    border-bottom: 1px solid #D6D8E6;
}

.catalog-trigger {
    width: 100%;
    background: transparent;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 2px;
    color: #262262;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
}

.catalog-icon {
    display: inline-block;
    width: 7px;
    height: 7px;
    font-size: 0;
    line-height: 0;
    color: #262262;
    border-right: 1.7px solid currentColor;
    border-bottom: 1.7px solid currentColor;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.catalog-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    padding: 0 2px;
}

.catalog-panel p {
    color: #6A6E8D;
    font-size: 11px;
    line-height: 1.45;
}

.catalog-item.is-open .catalog-panel {
    max-height: 120px;
    padding-bottom: 10px;
}

.catalog-item.is-open .catalog-icon {
    transform: rotate(225deg);
}


/* ── Showcase Feature Grid Section ──────────────────────────── */

.showcase-grid-section {
    position: relative;
    padding-top: 6px;
    background-size: cover;
}

.showcase-grid-bg {
    /* background: #EDF6F4; */
    border-radius: 0 0 0 0 / 28px 28px 0 0;
    padding: 60px 0 10px 54px;
    background-size: cover;
}

.showcase-grid-inner {
    /* display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr); */
    gap: 38px;
    align-items: center;
}

.showcase-grid-copy h2 {
    color: #262262;
    font-size: 41px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 16px;
}

.showcase-grid-copy p {
    color: #4E526F;
    font-size: 13px;
    line-height: 1.7;
    max-width: 560px;
}

.showcase-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.showcase-feature-card {
    background: #F2F2FA;
    border-radius: 8px;
    border-bottom: 3px solid #9AA4D4;
    padding: 25px 15px 25px;
    text-align: left;
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 14px;
}

.showcase-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #56BFA2;
    border: 2px solid #312F79;
    color: #E9FFFA;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
}

.showcase-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.showcase-feature-card h3 {
    color: #2E2C73;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 4px;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
}

.showcase-feature-card p {
    color: #5A5F84;
    font-size: 11px;
    line-height: 1.4;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
}


/* ── Orders Section ──────────────────────────────────────────── */

.orders-section {
    position: relative;
    padding: 80px 0 90px;
}

.orders-card {
    border: 1px solid #A6AAD8;
    border-radius: 40px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr);
    background: #F8F9FE;
}

.orders-content {
    padding: 34px 28px 28px;
}

.orders-content h2 {
    color: #2A286F;
    font-size: 41px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 12px;
    /* max-width: 430px; */
}

.orders-sub {
    color: #3C405D;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 12px;
    max-width: 400px;
}

.orders-list {
    list-style: none;
    margin-bottom: 16px;
}

.orders-list li {
    color: #5A607E;
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 4px;
}

.orders-list li::before {
    content: "\2713";
    margin-right: 8px;
    color: #2A286F;
}

.orders-content .btn {
    padding: 8px 16px;
    font-size: 12px;
}

.orders-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ── Solution Section ───────────────────────────────────────── */

.solution-section {
    background: #F7F8FC;
    padding: 80px 0;
    text-align: center;
}

.sol-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    color: var(--teal-light);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.sol-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.6px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.sol-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 56px;
    line-height: 1.65;
}

.sol-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
}

.sol-feature {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid #ECEDF8;
}

.sol-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(78, 160, 157, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.sol-feature h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.sol-feature p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ── CTA Band ───────────────────────────────────────────────── */

.cta-band {
    background: var(--gradient-bg);
    padding: 80px 0;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta-band .cta-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.cta-band .cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ── Responsive ─────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .container {
        padding: 0 28px;
    }
    .nav-links {
        gap: 18px;
    }
    .hero-title {
        font-size: 46px;
    }
    .hero-visuals {
        height: 400px;
    }
    .hero-banner-image {
        width: min(470px, 100%);
        right: -4px;
    }
    .problem-inner {
        gap: 56px;
    }
    .sol-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalog-accordion-title {
        font-size: 34px;
    }
    .showcase-grid-copy h2,
    .orders-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 22px;
    }
    .main-header {
        padding: 18px 0;
    }
    .nav-links {
        gap: 14px;
    }
    .nav-links a {
        font-size: 13px;
    }
    .nav-actions {
        gap: 12px;
    }
    .nav-actions .btn {
        padding: 9px 16px;
        font-size: 13px;
    }
    .hero-section {
        padding-top: 64px;
        padding-bottom: 88px;
        min-height: 430px;
    }
    .hero-title {
        font-size: 40px;
        line-height: 1.12;
    }
    .hero-description {
        max-width: 500px;
    }
    .hero-visuals {
        height: 320px;
    }
    .blob-shape {
        width: 360px;
        height: 220px;
        left: 52%;
    }
    .hero-banner-image {
        width: min(380px, 100%);
        right: 0;
    }
    .problem-section,
    .solution-section,
    .cta-band {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    .problem-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .current-experience,
    .ce-desc {
        max-width: 100%;
    }
    .sol-title {
        font-size: 30px;
    }
    .live-sites-title {
        font-size: 31px;
    }
    .live-sites-shell {
        padding: 24px 0 18px;
    }
    .live-sites-inner {
        padding: 0 20px;
    }
    .catalog-accordion-section {
        padding: 66px 0 72px;
    }
    .catalog-accordion-inner {
        gap: 34px;
        grid-template-columns: 1fr;
    }
    .catalog-preview-box {
        max-width: 560px;
        min-height: 250px;
    }
    .catalog-accordion-content {
        max-width: 100%;
    }
    .catalog-accordion-title {
        font-size: 32px;
    }
    .showcase-grid-bg {
        padding: 52px 0 44px;
    }
    .showcase-grid-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .showcase-grid-copy p {
        max-width: 100%;
    }
    .showcase-grid-copy h2 {
        font-size: 32px;
    }
    .orders-section {
        padding: 44px 0 74px;
    }
    .orders-card {
        grid-template-columns: 1fr;
    }
    .orders-content h2 {
        font-size: 32px;
        max-width: 100%;
    }
    .orders-sub {
        max-width: 100%;
    }
    .orders-visual {
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    /* Fixed header on mobile */
    .main-header {
        padding: 14px 0;
        background: var(--white);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }
    body {
        padding-top: 66px;
    }
    /* Mobile nav */
    .logo img {
        height: 28px;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 36px 20px;
        gap: 28px;
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        font-size: 17px;
        color: var(--navy);
    }
    .nav-actions {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .menu-toggle span {
        background: var(--navy);
    }
    /* Hero stacks */
    .hero-section {
        padding-top: 28px;
        padding-bottom: 56px;
        flex-direction: column;
        text-align: center;
        gap: 28px;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .hero-title {
        font-size: 34px;
        margin-bottom: 16px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 24px;
    }
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-actions .btn {
        min-width: 170px;
    }
    .hero-visuals {
        width: 100%;
        height: auto;
        min-height: 0;
        display: flex;
        justify-content: center;
    }
    .hero-visuals .relative {
        position: relative;
        width: min(300px, 90%);
    }
    .hero-visuals .relative > img {
        width: 100%;
        height: auto;
        display: block;
    }
    .gif-scan img {
        width: 80px;
        height: 80px;
        bottom: 14px;
        right: 2px;
    }
    .blob-shape {
        display: none;
    }
    .hero-banner-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: min(360px, 100%);
        margin: 0 auto;
        display: block;
    }
    /* Problem section */
    .problem-cards {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .problem-card {
        padding: 16px 14px 24px;
        background-size: 100% 22px;
    }
    .ce-label {
        margin-bottom: 10px;
    }
    .ce-title {
        font-size: 24px;
        margin-bottom: 14px;
    }
    .ce-desc {
        margin-bottom: 16px;
    }
    /* Solution */
    .sol-title {
        font-size: 28px;
    }
    .sol-desc {
        margin-bottom: 34px;
    }
    .sol-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .sol-feature {
        padding: 22px 18px;
    }
    /* CTA */
    .cta-band .cta-title {
        font-size: 26px;
    }
    .cta-band .cta-sub {
        margin-bottom: 24px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .cta-actions .btn {
        width: 100%;
        max-width: 320px;
    }
    .live-sites-section {
        padding: 12px 0 62px;
    }
    .live-sites-shell {
        padding: 20px 0 16px;
    }
    .live-sites-inner {
        padding: 0 14px;
    }
    .live-sites-title {
        font-size: 26px;
    }
    .live-sites-subtitle {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .live-carousel {
        --live-gap: 10px;
    }
    .live-card {
        min-height: 200px;
        padding: 10px 10px 12px;
    }
    .live-card-img-wrap {
        height: 100px;
    }
    .live-card-media {
        height: 60px;
        margin-bottom: 8px;
    }
    .live-card h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .live-card p {
        font-size: 11px;
        max-width: 138px;
    }
    .catalog-accordion-section {
        padding: 56px 0 62px;
    }
    .catalog-preview-box {
        min-height: 220px;
        border-radius: 16px;
    }
    .catalog-accordion-title {
        font-size: 30px;
    }
    .catalog-accordion-desc {
        font-size: 12.5px;
        margin-bottom: 14px;
    }
    .catalog-trigger {
        font-size: 30px;
        padding: 9px 2px;
    }
    .catalog-panel p {
        font-size: 11px;
    }
    .showcase-grid-bg {
        padding: 42px 0 36px;
    }
    .showcase-feature-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .showcase-grid-copy h2 {
        font-size: 30px;
    }
    .showcase-grid-copy p {
        font-size: 12.5px;
    }
    .orders-section {
        padding: 38px 0 62px;
    }
    .orders-content {
        padding: 26px 20px 22px;
    }
    .orders-content h2 {
        font-size: 30px;
    }
    .orders-sub {
        font-size: 12.5px;
    }
    .orders-visual {
        min-height: 240px;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 30px;
        letter-spacing: -0.8px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-description {
        font-size: 14px;
    }
    .hero-actions .btn {
        width: 100%;
        min-width: 0;
    }
    .blob-shape {
        width: 245px;
        height: 156px;
    }
    .hero-banner-image {
        width: min(320px, 100%);
    }
    .problem-section {
        padding: 48px 0;
    }
    .problem-cards {
        grid-template-columns: 1fr;
    }
    .problem-card {
        padding: 15px 14px 22px;
    }
    .ce-title {
        font-size: 21px;
        line-height: 1.3;
    }
    .ce-desc {
        font-size: 13px;
        line-height: 1.6;
    }
    .solution-section {
        padding: 48px 0;
    }
    .sol-title {
        font-size: 24px;
    }
    .sol-desc {
        font-size: 14px;
    }
    .sol-feature h3 {
        font-size: 14px;
    }
    .sol-feature p {
        font-size: 12.5px;
    }
    .cta-band {
        padding: 48px 0;
    }
    .cta-band .cta-title {
        font-size: 22px;
    }
    .cta-band .cta-sub {
        font-size: 14px;
    }
    .live-sites-shell {
        padding: 16px 0 14px;
    }
    .live-sites-inner {
        padding: 0 10px;
    }
    .live-sites-title {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .live-sites-subtitle {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 14px;
    }
    .live-carousel {
        --live-gap: 8px;
    }
    .live-card {
        min-height: 188px;
    }
    .live-card-img-wrap {
        height: 90px;
    }
    .live-card h3 {
        font-size: 14px;
    }
    .live-card p {
        max-width: 180px;
    }
    .live-carousel-controls {
        margin-top: 12px;
    }
    .catalog-accordion-section {
        padding: 44px 0 52px;
    }
    .catalog-accordion-inner {
        gap: 22px;
    }
    .catalog-preview-box {
        min-height: 190px;
    }
    .catalog-accordion-title {
        font-size: 27px;
        line-height: 1.22;
    }
    .catalog-accordion-desc {
        font-size: 12px;
    }
    .catalog-trigger {
        font-size: 28px;
        padding: 8px 2px;
    }
    .catalog-icon {
        width: 6px;
        height: 6px;
    }
    .showcase-grid-bg {
        padding: 34px 0 30px;
    }
    .showcase-grid-copy h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }
    .showcase-grid-copy p {
        font-size: 12px;
    }
    .showcase-feature-card {
        padding: 14px 12px 12px;
    }
    .showcase-feature-card h3 {
        font-size: 15px;
    }
    .orders-content h2 {
        font-size: 27px;
    }
    .orders-list li {
        font-size: 10.5px;
    }
    .orders-visual {
        min-height: 210px;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}


/* ── Layers / Connected Experience Section ──────────────────── */

.layers-section {
    padding: 30px 0 30px 0;
    background: var(--white);
}

.layers-header {
    text-align: center;
    /* margin-bottom: 52px; */
}

.layers-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.4px;
    max-width: 560px;
    margin: 0 auto 12px;
}

.layers-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}


/* Diagram layout */

.layers-layout {
    position: relative;
    min-height: 440px;
    max-width: 780px;
    margin: 0 auto;
}

.layers-center {
    position: absolute;
    left: 53%;
    top: -32%;
    transform: translateX(-50%);
    width: 86%;
    z-index: 1;
    pointer-events: none;
}

.layers-center img {
    width: 100%;
    height: auto;
    display: block;
}


/* Card base */

.layer-card {
    position: absolute;
    /* width: 162px; */
    background: var(--white);
    border: 1px solid #DDE2F0;
    border-radius: 8px;
    padding: 10px 13px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.layer-card p {
    font-size: 12px;
    color: #4A4E6E;
    line-height: 1.45;
    font-weight: 500;
    text-align: center;
    margin: 0;
}


/* Left card positions */

.layer-card--l1 {
    top: 144px;
    left: -12%;
}

.layer-card--l2 {
    top: 245px;
    left: -17%;;
}


/* Right card positions */

.layer-card--r1 {
    top: 56px;
    right: -13%;
}

.layer-card--r2 {
    top: 209px;
    right: -20%;
}

.layer-card--r3 {
    top: 310px;
    right: -23%;
}


/*
  Left cards: line (85px) extends rightward from card's right edge toward image.
  Teal dot drawn via radial-gradient at the image-side (right) end of the line.
  Layout math: image left edge ≈ 250px, card right edge = 162px → gap ≈ 88px.
*/


/* .layer-card--l1::after,
.layer-card--l2::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 85px;
    height: 10px;
    background-repeat: no-repeat;
    background-image:
        radial-gradient(circle 3.5px at 83px 5px, #3AAA8A 100%, transparent 100%),
        radial-gradient(circle 5.5px at 83px 5px, #fff 100%, transparent 100%),
        linear-gradient(to right, #C8D0DF, #C8D0DF);
    background-size: 85px 10px, 85px 10px, 85px 1px;
    background-position: 0 0, 0 0, 0 4.5px;
} */


/*
  Right cards: line (85px) extends leftward from card's left edge toward image.
  Teal dot at the image-side (left) end of the line.
  Layout math: image right edge ≈ 530px, card left edge = 780-162=618px → gap ≈ 88px.
*/


/* .layer-card--r1::before,
.layer-card--r2::before,
.layer-card--r3::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 85px;
    height: 10px;
    background-repeat: no-repeat;
    background-image:
        radial-gradient(circle 3.5px at 2px 5px, #3AAA8A 100%, transparent 100%),
        radial-gradient(circle 5.5px at 2px 5px, #fff 100%, transparent 100%),
        linear-gradient(to right, #C8D0DF, #C8D0DF);
    background-size: 85px 10px, 85px 10px, 85px 1px;
    background-position: 0 0, 0 0, 0 4.5px;
} */


/* ── Layers responsive ─────────────────────────────────────── */

@media (max-width: 992px) {
    .layers-layout {
        min-height: 390px;
        max-width: 660px;
    }
    .layers-center {
        width: 230px;
    }
    .layer-card {
        width: 145px;
    }
    .layer-card--l1 {
        top: 100px;
    }
    .layer-card--l2 {
        top: 203px;
    }
    .layer-card--r1 {
        top: 58px;
    }
    .layer-card--r2 {
        top: 160px;
    }
    .layer-card--r3 {
        top: 262px;
    }
    /* Recalculate: image left ≈ 215px, card right=145px → gap≈70px */
    .layer-card--l1::after,
    .layer-card--l2::after {
        width: 68px;
        background-image: radial-gradient(circle 3.5px at 66px 5px, #3AAA8A 100%, transparent 100%), radial-gradient(circle 5.5px at 66px 5px, #fff 100%, transparent 100%), linear-gradient(to right, #C8D0DF, #C8D0DF);
        background-size: 68px 10px, 68px 10px, 68px 1px;
    }
    .layer-card--r1::before,
    .layer-card--r2::before,
    .layer-card--r3::before {
        width: 68px;
        background-size: 68px 10px, 68px 10px, 68px 1px;
    }
}


/* Mobile: hide image, show cards as 2-col grid */

@media (max-width: 768px) {
    .layers-section {
        padding: 64px 0;
    }
    .layers-layout {
        position: static;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 100%;
    }
    .layers-center {
        display: none;
    }
    .layer-card {
        position: static;
        width: 100%;
        transform: none;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    .layer-card--l1::after,
    .layer-card--l2::after,
    .layer-card--r1::before,
    .layer-card--r2::before,
    .layer-card--r3::before {
        display: none;
    }
    .layer-card--r3 {
        grid-column: 1 / -1;
    }
    .layers-title {
        font-size: 26px;
    }
}

@media (max-width: 560px) {
    .layers-section {
        padding: 48px 0;
    }
    .layers-layout {
        grid-template-columns: 1fr;
    }
    .layer-card--r3 {
        grid-column: auto;
    }
    .layers-title {
        font-size: 22px;
    }
    .layers-desc {
        font-size: 12.5px;
    }
}


/* ── Journey / Convert Section ──────────────────────────────── */

.journey-section {
    padding: 80px 0 80px 0;
    background: var(--white);
}

.journey-header {
    text-align: center;
    margin-bottom: 36px;
}

.journey-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
}

.journey-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 540px;
    margin: 0 auto;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.journey-card {
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    min-height: 132px;
    border: 1px solid #D8DCF0;
}

.journey-card--light {
    background: #EEF1FA;
}

.journey-card--dark {
    background: #262262;
    border-color: transparent;
}


/* Text side */

.journey-card-text {
    flex: 1;
    padding: 22px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.journey-card-text h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.journey-card-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 250px;
}

.journey-card--dark .journey-card-text h3,
.journey-card--dark .journey-card-text p {
    color: rgba(255, 255, 255, 0.92);
}


/* Visual side — gradient images */

.journey-card-visual {
    flex: 0 0 267px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


/* Explore & Act (light) and Convert (mint) → gradient_image_1 */

.journey-card--light .journey-card-visual {
    background-image: url(../images/gradient_image_1.png);
}

.journey-card--mint .journey-card-visual {
    background-image: url(../images/gradient_image_1.png);
}


/* Decide (dark navy) → gradient_image_2 */

.journey-card--dark .journey-card-visual {
    background-image: url(../images/gradient_image_2.png);
}


/* ── Journey card arrow shape ───────────────────────────────── */

.journey-section .arrow-card-wrap {
    filter: drop-shadow(0 0 1px #262261);
}

.journey-section .journey-card {
    border-radius: 0;
    border: none;
    clip-path: polygon(
        0% 0%,
        calc(100% - 40px) 0%,
        100% 50%,
        calc(100% - 40px) 100%,
        0% 100%,
        40px 50%
    );
}

.journey-section .journey-card-text {
    padding-left: 62px;
}

@media (max-width: 768px) {
    .journey-section .journey-card {
        clip-path: polygon(
            0% 0%,
            calc(100% - 30px) 0%,
            100% 50%,
            calc(100% - 30px) 100%,
            0% 100%,
            30px 50%
        );
    }
    .journey-section .journey-card-text {
        padding-left: 52px;
    }
}

@media (max-width: 560px) {
    .journey-section .journey-card {
        clip-path: polygon(
            0% 0%,
            calc(100% - 22px) 0%,
            100% 50%,
            calc(100% - 22px) 100%,
            0% 100%,
            22px 50%
        );
    }
    .journey-section .journey-card-text {
        padding-left: 44px;
    }
}


/* ── Ecosystem Section ──────────────────────────────────────── */

.eco-section {
    padding: 80px 0;
    background: var(--white);
}

.eco-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.4px;
    text-align: center;
    margin-bottom: 40px;
}

.eco-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}


/* 2×2 product card grid */

.eco-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}


/* left 2x2 cards */

.eco-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.eco-card {
    background: #ffffff;
    border: 1px solid #d8dbe6;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    height: fit-content;
}

.eco-card-top {
    height: 28px;
    background: linear-gradient(180deg, #bfeedd 0%, #d8f5ea 100%);
    border-bottom: 1px solid #dde3ea;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.eco-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #62bea3;
    border: 2px solid #f4faf7;
    box-shadow: 0 0 0 1px rgba(73, 155, 130, 0.45);
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eco-card-icon img {
    width: 33px;
    height: 33px;
    object-fit: contain;
}

.eco-card-bottom {
    padding: 18px 12px 32px;
    text-align: center;
    min-height: 62px;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    height: 80%;
}

.eco-card h3 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #2a2b78;
}

.eco-card p {
    margin: 0;
    font-size: 10px;
    line-height: 1.45;
    color: #6f7485;
    /* max-width: 83%; */
    margin-left: auto;
    margin-right: auto;
}


/* right visuals */

.eco-visuals {
    display: flex;
    align-items: stretch;
    gap: 4px;
}

.eco-main-visual {
    flex: 1;
    background: #d9d9d9;
    border-radius: 14px;
    min-width: 0;
}

.eco-side-bars {
    display: flex;
    gap: 4px;
}

.eco-bar {
    width: 17px;
    height: 100%;
    background: #d9d9d9;
    border-radius: 10px;
}


/* responsive */

@media (max-width: 768px) {
    .eco-section {
        padding: 56px 0;
    }
    .eco-inner {
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 18px;
    }
    .eco-products {
        gap: 12px;
    }
    .eco-title {
        font-size: 20px;
        margin-bottom: 22px;
        padding: 0 10px;
    }
    .eco-card h3 {
        font-size: 14px;
    }
    .eco-card p {
        font-size: 11px;
        max-width: 140px;
    }
}

@media (max-width: 480px) {
    .eco-inner {
        max-width: 320px;
    }
    .eco-products {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .eco-card-top {
        height: 30px;
    }
    .eco-card-icon {
        width: 34px;
        height: 34px;
    }
    .eco-card-bottom {
        padding: 20px 10px 22px;
        min-height: 92px;
    }
    .eco-card h3 {
        font-size: 13px;
    }
    .eco-card p {
        font-size: 10px;
        line-height: 1.45;
    }
    .eco-bar {
        width: 14px;
    }
}


/* Image placeholder slots (3 tall rectangles) */

.eco-img-slot {
    flex: 1;
    background: #D4D7E2;
    border-radius: 10px;
    min-height: 300px;
}


/* ── Journey & Eco responsive ───────────────────────────────── */

@media (max-width: 992px) {
    .journey-card-visual {
        flex: 0 0 120px;
    }
    .journey-title,
    .eco-title {
        font-size: 26px;
    }
    .eco-inner {
        grid-template-columns: 1fr;
    }
    .eco-visuals {
        min-height: 180px;
    }
    .eco-img-slot {
        min-height: 160px;
    }
}

@media (max-width: 768px) {
    .journey-section,
    .eco-section {
        padding: 64px 0;
    }
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .journey-card {
        min-height: 116px;
    }
    .journey-title,
    .eco-title {
        font-size: 24px;
    }
    .eco-products {
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .journey-section,
    .eco-section {
        padding: 48px 0;
    }
    .journey-title,
    .eco-title {
        font-size: 21px;
    }
    .journey-card-visual {
        display: none;
    }
    .journey-card-text {
        padding: 16px 16px;
    }
    .eco-products {
        grid-template-columns: 1fr;
    }
    .eco-visuals {
        flex-direction: column;
    }
    .eco-img-slot {
        min-height: 140px;
    }
}


/* ── Scan Analytics (dark) Section ──────────────────────────── */


/* ── Scan Analytics Section ──────────────────────────── */

.scan-analytics-section {
    position: relative;
    padding: 72px 0;
    background-color: #262262;
    background-image: url("../images/scan_bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.scan-analytics-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(38, 34, 98, 0.78); */
    z-index: 0;
}

.sa-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
    align-items: center;
    min-height: 260px;
}

.sa-left {
    max-width: 430px;
    padding-left: 8px;
}

.sa-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.2px;
}

.sa-desc {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.80);
    max-width: 300px;
}

.sa-right {
    width: 100%;
}

.sa-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.sa-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 8px;
    padding: 16px 14px 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    min-height: 95px;
}

.sa-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #2d2f8f;
}

.sa-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.45;
    color: #5e6282;
}


/* Tablet */

@media (max-width: 992px) {
    .scan-analytics-section {
        padding: 64px 0;
        background-position: center;
    }
    .sa-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sa-left {
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }
    .sa-desc {
        max-width: 540px;
        margin: 0 auto;
    }
    .sa-title {
        font-size: 24px;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .scan-analytics-section {
        padding: 48px 0;
        background-position: center;
        background-size: cover;
    }
    .scan-analytics-section::before {
        background: rgba(38, 34, 98, 0.84);
    }
    .sa-inner {
        gap: 24px;
    }
    .sa-title {
        font-size: 20px;
        line-height: 1.3;
    }
    .sa-desc {
        font-size: 12px;
        line-height: 1.6;
        max-width: 310px;
    }
    .sa-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .sa-card {
        min-height: auto;
        padding: 15px 14px;
    }
    .sa-card h3 {
        font-size: 13px;
    }
    .sa-card p {
        font-size: 11px;
    }
}


/* ── Integrations Section ───────────────────────────────────── */

.integrations-section {
    padding: 78px 0 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.int-header {
    text-align: center;
    margin-bottom: 34px;
}

.int-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: -0.4px;
    text-align: center;
    margin-bottom: 8px;
}

.int-desc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.int-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto 28px;
}

.int-card {
    background: #f3f4fb;
    border: 1px solid #dde1ef;
    border-radius: 18px;
    padding: 16px 14px 15px;
    min-height: 118px;
    box-shadow: 0 2px 6px rgba(29, 29, 75, 0.08);
}

.int-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #69c1a6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.int-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
}

.int-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: #2b2d7a;
    margin: 0 0 8px;
    line-height: 1.25;
}

.int-card p {
    font-size: 10.5px;
    color: #6d728e;
    line-height: 1.55;
    margin: 0;
    max-width: 220px;
}


/* bottom logos */

.int-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
}

.int-logos img {
    width: 82%;
    max-width: 430px;
    height: auto;
    display: block;
    object-fit: contain;
}


/* Tablet */

@media (max-width: 992px) {
    .integrations-section {
        padding: 64px 0;
    }
    .int-cards {
        grid-template-columns: 1fr;
        max-width: 540px;
    }
    .int-title {
        font-size: 24px;
    }
    .int-desc {
        font-size: 12px;
    }
    .int-card {
        min-height: auto;
    }
    .int-card p {
        max-width: 100%;
    }
}


/* Mobile */

@media (max-width: 576px) {
    .integrations-section {
        padding: 48px 0;
    }
    .int-header {
        margin-bottom: 24px;
    }
    .int-title {
        font-size: 20px;
        line-height: 1.3;
    }
    .int-desc {
        font-size: 12px;
        max-width: 310px;
    }
    .int-cards {
        gap: 12px;
        margin-bottom: 20px;
    }
    .int-card {
        border-radius: 16px;
        padding: 16px 14px;
    }
    .int-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
    }
    .int-icon img {
        width: 18px;
        height: 18px;
    }
    .int-card h3 {
        font-size: 15px;
    }
    .int-card p {
        font-size: 11px;
    }
    .int-logos img {
        max-width: 300px;
    }
}


/* ── Final CTA Section ──────────────────────────────────────── */

.final-cta-section {
    padding: 0px 0 80px 0;
    background: var(--white);
    text-align: center;
}

.final-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.5px;
    line-height: 1.25;
    max-width: 580px;
    margin: 0 auto 14px;
}

.final-cta-desc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.65;
}

.final-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-btn-dark {
    background: #262262;
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
}

.final-btn-teal {
    background: var(--gradient-btn);
    color: #fff;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(93, 177, 152, 0.28);
}

.final-btn-dark:hover {
    opacity: 0.88;
}

.final-btn-teal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 177, 152, 0.38);
}


/* ── New sections — responsive ──────────────────────────────── */

@media (max-width: 992px) {
    .sa-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .sa-desc {
        max-width: 100%;
    }
    .sa-title {
        font-size: 24px;
    }
    .int-title {
        font-size: 24px;
    }
    .final-cta-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .scan-analytics-section,
    .integrations-section,
    .final-cta-section {
        padding: 64px 0;
    }
    .sa-cards {
        gap: 10px;
    }
    .int-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .int-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .scan-analytics-section,
    .integrations-section,
    .final-cta-section {
        padding: 0px 0px 48px 0;
    }
    .sa-cards {
        grid-template-columns: 1fr;
    }
    .sa-title {
        font-size: 22px;
    }
    .int-title {
        font-size: 22px;
    }
    .final-cta-title {
        font-size: 22px;
    }
    .final-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .final-btn-dark,
    .final-btn-teal {
        width: 100%;
        max-width: 300px;
    }
}


/* ============================================================
   RESPONSIVE POLISH OVERRIDES
   Paste this at the VERY END of your CSS file
   Desktop remains untouched
============================================================ */


/* ---------- Tablet ---------- */

@media (max-width: 992px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
    .hero-section {
        gap: 34px;
        align-items: center;
    }
    .hero-content,
    .hero-visuals,
    .catalog-accordion-content,
    .showcase-grid-copy,
    .orders-content,
    .sa-left,
    .sa-right {
        min-width: 0;
    }
    .hero-title,
    .catalog-accordion-title,
    .showcase-grid-copy h2,
    .orders-content h2,
    .live-sites-title,
    .layers-title,
    .journey-title,
    .eco-title,
    .int-title,
    .final-cta-title {
        line-height: 1.15;
        letter-spacing: -0.4px;
    }
    .problem-section,
    .layers-section,
    .catalog-accordion-section,
    .orders-section,
    .scan-analytics-section,
    .eco-section,
    .integrations-section {
        overflow: hidden;
    }
    .problem-inner,
    .catalog-accordion-inner,
    .showcase-grid-inner,
    .sa-inner,
    .eco-inner {
        gap: 32px;
    }
    .problem-cards {
        gap: 14px;
    }
    .problem-card {
        min-height: 110px;
    }
    .ce-label {
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 18px;
    }
    .ce-title {
        font-size: 28px;
        line-height: 1.25;
    }
    .live-sites-inner {
        padding-left: 18px;
        padding-right: 18px;
    }
    .live-card {
        min-height: 210px;
    }
    .live-card h3 {
        margin-bottom: 12px;
    }
    .catalog-preview-box {
        width: 100%;
        max-width: 100%;
    }
    .catalog-trigger {
        font-size: 24px;
        line-height: 1.2;
    }
    .showcase-grid-bg {
        padding-left: 0;
        padding-right: 0;
    }
    .showcase-feature-grid {
        gap: 18px;
    }
    .showcase-feature-card {
        min-height: 150px;
    }
    .orders-card {
        border-radius: 18px;
    }
    .orders-content {
        padding: 30px 24px 24px;
    }
    .orders-visual img {
        object-position: center;
    }
    .sa-cards {
        gap: 14px;
    }
    .sa-card {
        min-height: 108px;
    }
    .eco-inner {
        align-items: start;
    }
    .eco-products {
        gap: 14px;
    }
    .eco-card-bottom {
        min-height: 88px;
    }
    .int-cards {
        gap: 14px;
    }
    .int-card {
        min-height: 128px;
    }
    .int-logos img {
        width: 78%;
        max-width: 520px;
    }
    .final-cta-desc {
        margin-bottom: 28px;
    }
}


/* ---------- Mobile / Tablet common ---------- */

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }
    body {
        padding-top: 72px;
    }
    .background-wrapper {
        height: 520px;
    }
    .diagonal-bg {
        background-position: top right;
        background-size: cover;
        opacity: 0.18;
    }
    .main-header {
        padding: 14px 0;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
    }
    .navbar {
        gap: 12px;
    }
    .nav-right {
        gap: 10px;
    }
    .nav-links {
        top: 72px;
        height: calc(100vh - 72px);
        padding: 28px 20px 36px;
        gap: 22px;
        align-items: flex-start;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        width: 100%;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #eef1f7;
        font-size: 16px;
    }
    .hero-section {
        padding-top: 26px;
        padding-bottom: 52px;
        gap: 24px;
        text-align: center;
    }
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 6px;
    }
    .hero-title {
        font-size: 34px;
        line-height: 1.1;
        margin-bottom: 14px;
    }
    .hero-description {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.65;
        margin-bottom: 22px;
    }
    .hero-actions {
        width: 100%;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        min-height: 46px;
    }
    .hero-visuals {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .blob-shape {
        width: 280px;
        height: 180px;
        top: 52%;
        left: 50%;
    }
    .hero-banner-image {
        width: min(340px, 100%);
    }
    .problem-section,
    .layers-section,
    .solution-section,
    .journey-section,
    .eco-section,
    .integrations-section,
    .cta-band,
    .final-cta-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .problem-inner {
        gap: 28px;
    }
    .problem-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .problem-card,
    .problem-card--wide {
        grid-column: auto;
    }
    .problem-card {
        min-height: auto;
        padding: 16px 15px 22px;
        background-size: 100% 24px;
    }
    .problem-card p {
        font-size: 13px;
    }
    .ce-label {
        font-size: 24px;
        margin-bottom: 12px;
    }
    .ce-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .ce-desc {
        font-size: 13px;
        line-height: 1.65;
        margin-bottom: 14px;
    }
    .ce-tagline {
        display: block;
        line-height: 1.45;
    }
    .layers-header,
    .journey-header,
    .int-header {
        margin-bottom: 26px;
    }
    .layers-title,
    .journey-title,
    .eco-title,
    .int-title {
        font-size: 24px;
        line-height: 1.25;
    }
    .layers-desc,
    .journey-desc,
    .int-desc,
    .final-cta-desc {
        font-size: 12.5px;
        line-height: 1.65;
    }
    .layer-card {
        padding: 14px 14px;
        border-radius: 12px;
    }
    .layer-card p {
        font-size: 12px;
    }
    .live-sites-section {
        padding-top: 8px;
        padding-bottom: 56px;
    }
    .live-sites-shell {
        border-radius: 20px;
        overflow: hidden;
    }
    .live-sites-title {
        font-size: 25px;
        line-height: 1.2;
    }
    .live-sites-subtitle {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.55;
        margin-bottom: 18px;
    }
    .live-card {
        min-height: 196px;
        border-radius: 12px;
    }
    .live-card-media {
        height: 72px;
        border-radius: 8px;
    }
    .live-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .live-card p {
        max-width: 100%;
        font-size: 11px;
    }
    .live-carousel-controls {
        margin-top: 16px;
    }
    .live-nav-btn {
        width: 34px;
        height: 34px;
    }
    .catalog-accordion-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .catalog-accordion-inner {
        gap: 24px;
    }
    .catalog-preview-box {
        min-height: 210px;
        border-radius: 16px;
    }
    .catalog-accordion-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .catalog-accordion-desc {
        font-size: 12.5px;
        line-height: 1.65;
        margin-bottom: 16px;
    }
    .catalog-trigger {
        font-size: 20px;
        line-height: 1.2;
        padding: 14px 2px;
    }
    .catalog-panel p {
        font-size: 12px;
        line-height: 1.6;
        padding-bottom: 2px;
    }
    .showcase-grid-section {
        background-position: center;
    }
    .showcase-grid-bg {
        padding-top: 40px;
        padding-bottom: 34px;
    }
    .showcase-grid-inner {
        gap: 24px;
    }
    .showcase-grid-copy h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .showcase-grid-copy p {
        font-size: 12.5px;
        line-height: 1.65;
        max-width: 100%;
    }
    .showcase-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .showcase-feature-card {
        min-height: auto;
        padding: 20px 16px 16px;
    }
    .showcase-icon {
        margin-top: -30px;
    }
    .showcase-feature-card h3 {
        font-size: 16px;
    }
    .showcase-feature-card p {
        font-size: 12px;
    }
    .orders-section {
        padding-top: 34px;
        padding-bottom: 56px;
    }
    .orders-card {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }
    .orders-content {
        padding: 24px 18px 20px;
    }
    .orders-content h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .orders-sub {
        font-size: 12.5px;
        line-height: 1.65;
        margin-bottom: 12px;
    }
    .orders-list {
        margin-bottom: 18px;
    }
    .orders-list li {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 6px;
    }
    .orders-content .btn {
        width: 100%;
        min-height: 44px;
    }
    .orders-visual {
        min-height: 220px;
    }
    .scan-analytics-section {
        padding-top: 56px;
        padding-bottom: 56px;
        background-position: center;
    }
    .sa-inner {
        gap: 24px;
    }
    .sa-title {
        font-size: 24px;
        line-height: 1.22;
        margin-bottom: 10px;
    }
    .sa-desc {
        font-size: 12px;
        line-height: 1.65;
        max-width: 100%;
    }
    .sa-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .sa-card {
        min-height: auto;
        padding: 16px 14px;
        border-radius: 12px;
    }
    .sa-card h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .sa-card p {
        font-size: 11px;
        line-height: 1.55;
    }
    .eco-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .eco-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 24px;
        padding: 0;
    }
    .eco-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    .eco-products {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .eco-card {
        border-radius: 12px;
    }
    .eco-card-top {
        height: 30px;
        border-radius: 12px 12px 0 0;
    }
    .eco-card-icon {
        width: 34px;
        height: 34px;
    }
    .eco-card-bottom {
        min-height: 95px;
        padding: 20px 12px 20px;
    }
    .eco-card h3 {
        font-size: 14px;
    }
    .eco-card p {
        font-size: 10.5px;
        max-width: 100%;
    }
    .eco-bar {
        width: 14px;
    }
    .integrations-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    .int-title {
        font-size: 24px;
        line-height: 1.25;
    }
    .int-desc {
        max-width: 100%;
    }
    .int-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 22px;
    }
    .int-card {
        min-height: auto;
        padding: 18px 16px;
        border-radius: 16px;
    }
    .int-card h3 {
        font-size: 15px;
    }
    .int-card p {
        font-size: 11px;
        max-width: 100%;
    }
    .int-logos img {
        width: 100%;
        max-width: 340px;
    }
    .final-cta-section {
        padding-top: 0;
        padding-bottom: 56px;
    }
    .final-cta-title {
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .final-cta-desc {
        font-size: 12.5px;
        line-height: 1.65;
        margin-bottom: 22px;
    }
    .final-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .final-cta-actions .btn {
        width: 100%;
        max-width: 320px;
        min-height: 46px;
    }
}


/* ---------- Small mobile ---------- */

@media (max-width: 560px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    body {
        padding-top: 68px;
    }
    .main-header {
        padding: 12px 0;
    }
    .nav-links {
        top: 68px;
        height: calc(100vh - 68px);
        padding: 24px 16px 32px;
    }
    .logo img {
        height: 26px;
    }
    .hero-title {
        font-size: 30px;
    }
    .hero-description {
        font-size: 13.5px;
    }
    .hero-banner-image {
        width: min(300px, 100%);
    }
    .blob-shape {
        width: 240px;
        height: 150px;
    }
    .problem-section,
    .layers-section,
    .solution-section,
    .journey-section,
    .eco-section,
    .integrations-section,
    .cta-band,
    /* .final-cta-section, */
    .catalog-accordion-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .ce-label,
    .layers-title,
    .journey-title,
    .eco-title,
    .int-title {
        font-size: 22px;
    }
    .ce-title,
    .catalog-accordion-title,
    .showcase-grid-copy h2,
    .orders-content h2,
    .sa-title,
    .final-cta-title {
        font-size: 24px;
    }
    .live-sites-title {
        font-size: 22px;
    }
    .catalog-trigger {
        font-size: 18px;
    }
    .live-card,
    .showcase-feature-card,
    .sa-card,
    .int-card,
    .layer-card {
        border-radius: 12px;
    }
    .eco-products {
        grid-template-columns: 1fr;
    }
    .eco-card-bottom {
        min-height: auto;
    }
    .orders-visual {
        min-height: 200px;
    }
    .final-cta-actions .btn,
    .hero-actions .btn,
    .orders-content .btn {
        max-width: 100%;
    }
}


/* ============================================================
   MOBILE ONLY FIXES
   1. Remove hero bg image on mobile
   2. Improve CURRENT EXPERIENCE typography on mobile
   3. Remove bg image from showcase section on mobile
============================================================ */

@media (max-width: 768px) {
    /* 1) Hero background image remove on mobile */
    .background-wrapper,
    .diagonal-bg {
        display: none;
    }
    .hero-section {
        padding-top: 20px;
    }
    /* 2) Second image section font update */
    .ce-label {
        display: block;
        font-size: 22px;
        line-height: 1.2;
        font-weight: 800;
        margin-bottom: 10px;
    }
    .ce-title {
        font-size: 28px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.4px;
        margin-bottom: 14px;
    }
    .ce-desc {
        font-size: 13px;
        line-height: 1.65;
        font-weight: 400;
        color: #5E6282;
        margin-bottom: 14px;
        max-width: 100%;
    }
    .ce-tagline {
        font-size: 13px;
        line-height: 1.5;
        font-weight: 700;
        display: block;
    }
    /* 3) Third section remove background image on mobile only */
    .showcase-grid-section {
        background-image: none !important;
    }
    .showcase-grid-bg {
        background: #eef6f2;
        padding: 36px 0 32px;
    }
    .showcase-grid-copy h2 {
        font-size: 28px;
        line-height: 1.18;
        font-weight: 800;
        letter-spacing: -0.3px;
        margin-bottom: 12px;
    }
    .showcase-grid-copy p {
        font-size: 13px;
        line-height: 1.6;
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .ce-label {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .ce-title {
        font-size: 24px;
        line-height: 1.18;
        margin-bottom: 12px;
    }
    .ce-desc {
        font-size: 12px;
        line-height: 1.6;
    }
    .ce-tagline {
        font-size: 12px;
        line-height: 1.45;
    }
    .showcase-grid-copy h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    .showcase-grid-copy p {
        font-size: 12px;
        line-height: 1.55;
    }
    .showcase-grid-bg {
        padding: 30px 0 26px;
    }
}

.diagonal-bg-price {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../images/dev2image/pricepagebg.webp) no-repeat right top;
    background-size: contain;
}


/* ============================================================
   SMART SITE — SECTION-TO-SECTION SPACING (minimal + even)
============================================================ */

.hero-section,
.problem-section,
.layers-section,

/* .live-sites-section, */

.catalog-accordion-section,
.showcase-grid-section,
.orders-section,
.journey-section,
.scan-analytics-section,
.eco-section,
.integrations-section,
.final-cta-section {
    padding-top: 45px;
    padding-bottom: 45px;
}

.problem-section {
    padding-top: 0;
}

@media (max-width: 820px) {
    .hero-section,
    .problem-section,
    .layers-section,
    .live-sites-section,
    .catalog-accordion-section,
    .showcase-grid-section,
    .orders-section,
    .journey-section,
    .scan-analytics-section,
    .eco-section,
    .integrations-section,
    .final-cta-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .problem-section {
        padding-top: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .problem-section,
    .layers-section,
    .live-sites-section,
    .catalog-accordion-section,
    .showcase-grid-section,
    .orders-section,
    .journey-section,
    .scan-analytics-section,
    .eco-section,
    .integrations-section,
    .final-cta-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}


/* ── Live carousel: desktop side-arrows / mobile below ─────── */

.live-carousel-wrapper {
    position: relative;
}

@media (min-width: 769px) {
    .live-carousel-wrapper {
        padding-left: 48px;
        padding-right: 48px;
    }

    .live-carousel-controls {
        position: absolute;
        inset: 0;
        margin: 0;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        pointer-events: none;
        gap: 0;
    }

    .live-carousel-controls .live-nav-btn {
        pointer-events: auto;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .live-carousel-controls {
        position: static;
        height: auto;
        width: auto;
        pointer-events: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-top: 16px;
        gap: 12px;
    }
}

/* Mobile: one card centered, full viewport width */
@media (max-width: 560px) {
    .live-carousel-viewport {
        display: flex;
        justify-content: center;
    }

    .live-carousel-track {
        width: 100%;
    }

    .slider_wrap {
        min-width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .live-card {
        width: 100%;
        box-sizing: border-box;
    }
}