/* Product page — tokens + base.css linked in HTML; local layout & components below */

:root {
    --navy-bg: linear-gradient(135deg, #2a2a72 0%, #24305f 35%, #2e8b8a 100%);
    --card-shadow: var(--shadow-card);
}


/* Prevent unintended horizontal scroll from decorative absolute elements */

html,
body {
    overflow-x: hidden;
}


/* ===== GLOBAL SECTION SPACING ===== */

section {
    padding-block: var(--section-y-lg);
}


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

.hero-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.gif-scan img {
    width: 150px;
    height: 150px;
    position: relative;
    bottom: 30px;
    right: 5px;
}

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

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

.features-section {
    /* padding-top: 80px; */
    padding-bottom: 80px;
}


/* ===== INTERACTION FLOW SECTION ===== */

.interaction-flow-section {
    padding-top: 80px;
    padding-bottom: 80px;
}


/* ===== STANDARDS BAND SECTION ===== */

.standards-band {
    padding-top: 80px;
    padding-bottom: 80px;
}


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

.section {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}


/* ===== SECTION HEADINGS — consistent margin ===== */

.section-title {
    margin-bottom: 16px;
}

.section-desc,
.section-subtitle {
    margin-bottom: 48px;
}


/* ===== FEATURES BOTTOM CTA — inner spacing ===== */

.features-bottom-cta {
    margin-bottom: 48px;
}

.cta-title {
    margin-bottom: 12px;
}


/* ===== FEATURE CARDS — gap ===== */

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}


/* ===== STANDARDS CARDS — gap ===== */

.std-grid {
    gap: 16px;
}


/* ===== CARDS GRID — story section ===== */

.cards-grid {
    margin-top: 0;
}


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

@media (max-width: 820px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .hero-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .hero-section {
        padding-top: 56px;
        padding-bottom: 56px;
    }
    /* Normalize container horizontal padding on mobile */
    .container {
        padding: 0 20px;
    }
    /* Consistent heading margin on mobile */
    .section-title {
        margin-bottom: 12px;
    }
    .section-desc,
    .section-subtitle {
        margin-bottom: 22px;
    }
    .cta-title {
        margin-bottom: 10px;
    }
}


/* Background Elements */

.background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 720px;
    /* Covers header + hero like the screenshot */
    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;
}

.concentric-circles {
    /* This will be part of the image, so we can remove or hide it */
    display: none;
}


/* Header: shared rules in assets/css/site-header.css */


/* Button Styles */

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

.btn-navy {
    background-color: var(--navy);
    /* Match brand navy */
    color: var(--white);
}

.btn-navy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 29, 75, 0.2);
}


/* Hero Section */

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

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

.product_banner_container {
    max-width: 700px;
}

.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 */

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

/* ── Phone mockup + screen video overlay ── */
.banner-video-wrap {
    position: relative;
    width: 100%;
}

.banner-phone-img {
    width: 100%;
    height: auto;
    display: block;
}

/*
  Overlay sits over the gray screen area of product_banner_img.png.
  Values are % of the image dimensions — tweak if the image is resized.
  Screen area: left ≈ 36.5%, top ≈ 9.5%, width ≈ 27%, height ≈ 70%
*/
.banner-screen-overlay {
    position: absolute;
    left: 34.33%;
    top: 17.7%;
    width: 30%;
    height: 65%;
    overflow: hidden;
    border-radius: 0px;
    pointer-events: none;
}

.banner-screen-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* .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);
} */


/* Features Section */

.features-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.section-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--navy);
    font-weight: 700;
}

.section-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 500px;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-card {
    background: #F8FAFC;
    padding: 25px 30px;
    border-radius: 12px;
    /* box-shadow: var(--card-shadow); */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0px 2px 4px 0px #00000040;
    position: relative;
    overflow: visible;
}

.feature-card-arrow {
    position: absolute;
    right: -205px;
    top: 49%;
    transform: translateY(-50%);
    width: 32%;
    height: auto;
    pointer-events: none;
}
.feature-card.active {
    /* border-color: #3B82F6; Blue border for active card */
    background: #ffffff;
}

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

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--navy);
}

.feature-card-head {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 8px;
}

.feature-card-icon {
    display: none;
}

.feature-card-head h3 {
    margin-bottom: 0;
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(180deg, #4c57bc 0%, #2f2a7c 100%);
    border-color: #b6c0ff;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-left: 0;
}

.features-image {
    display: flex;
    justify-content: flex-end;
    /* align-items: center; */
    position: relative;
    /* height: 100%; */
    align-items: flex-end;
    margin-top: 135px;
}

.features-image img {
    width: 100%;
    /* height: 83%; */
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
}


/* Features Bottom CTA */

.features-bottom-cta {
    text-align: center;
    /* margin-top: 80px; */
    padding-bottom: 0px;
}

.features-bottom-cta .cta-title {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.features-bottom-cta .cta-desc {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Decorative Background Elements for Third Section */

.features-section {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
}

.features-left-shape {
    position: absolute;
    left: 2%;
    bottom: -14%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: url(../images/third-section-shape.png) no-repeat center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.features-section-bg-right {
    position: absolute;
    top: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(73, 160, 157, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}


/* ============================================================
   INTERACTION FLOW SECTION
============================================================ */

.interaction-flow-section {
    padding: 50px 0;
    background: #ffffff;
}

.interaction-flow-section .features-bottom-cta {
    text-align: center;
    margin-bottom: 40px;
}

.interaction-flow-section .cta-title {
    font-size: 26px;
    line-height: 1.22;
    font-weight: 700;
    color: #262765;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}

.interaction-flow-section .cta-desc {
    font-size: 12px;
    line-height: 1.55;
    color: #7d8094;
    max-width: 520px;
    margin: 0 auto;
}


/* Layout canvas */

.interaction-flow-layout {
    position: relative;
    min-height: 420px;
    max-width: 900px;
    margin: 0 auto;
}


/* Center image */

.flow-center-visual {
    position: absolute;
    top: -43px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

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


/* Cards — shared */

.flow-card {
    position: absolute;
    width: 215px;
    padding: 25px 30px 25px;
    border-radius: 8px;
    background: linear-gradient(180deg, #fcfcfe 0%, #f4f5fb 100%);
    border: 1px solid rgba(162, 167, 201, 0.28);
    box-shadow: 0 6px 14px rgba(47, 52, 98, 0.09), 0 2px 4px rgba(47, 52, 98, 0.05);
    text-align: center;
    z-index: 2;
}

.flow-card h3 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    color: #34384d;
    margin-bottom: 4px;
}

.flow-card p {
    font-size: 13px;
    line-height: 1.4;
    color: #7b7f93;
    margin: 0;
}


/* Teal text for Live Experience card description (matches layer colour) */

.flow-card-live p {
    color: #3aaa8a;
}


/* Card positions — desktop */

.flow-card-scan {
    top: 36%;
    left: -18%;
}

.flow-card-label {
    top: 15%;
    right: -18%;
}

.flow-card-live {
    top: 54%;
    right: -18%;
}


/* Transformation card */

.flow-transformation-card {
    position: absolute;
    left: -12%;
    bottom: -1%;
    min-width: 215px;
    padding: 25px 30px 25px;
    border-radius: 10px;
    background: linear-gradient(160deg, #ace6d7 0%, #9fe0cd 100%);
    border: 1px solid rgba(99, 168, 144, 0.28);
    box-shadow: 0 10px 18px rgba(88, 160, 137, 0.24), 0 2px 6px rgba(47, 52, 98, 0.08);
    z-index: 2;
}

.flow-transformation-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #2d4a40;
    font-weight: 500;
    text-align: center;
    margin: 0;
}


/* ---- Tablet-large (≤ 1024px) ---- */

@media (max-width: 1024px) {
    .interaction-flow-layout {
        min-height: 390px;
        max-width: 820px;
    }
    .flow-center-visual {
        width: 360px;
        top: 20px;
    }
    .flow-card-scan {
        top: 110px;
        left: 32px;
    }
    .flow-card-label {
        top: 64px;
        right: 32px;
    }
    .flow-card-live {
        top: 192px;
        right: 32px;
    }
    .flow-transformation-card {
        left: 24px;
        bottom: 44px;
    }
}


/* ---- Tablet (≤ 768px) ---- */

@media (max-width: 768px) {
    .interaction-flow-section {
        padding: 44px 0 52px;
    }
    .interaction-flow-section .cta-title {
        font-size: 21px;
    }
    .interaction-flow-layout {
        min-height: 340px;
        max-width: 600px;
    }
    .flow-center-visual {
        width: 300px;
        top: 16px;
    }
    .flow-card {
        width: 130px;
        padding: 10px 10px 9px;
    }
    .flow-card h3 {
        font-size: 12px;
    }
    .flow-card p {
        font-size: 9px;
    }
    .flow-card-scan {
        top: 90px;
        left: 16px;
    }
    .flow-card-label {
        top: 50px;
        right: 16px;
    }
    .flow-card-live {
        top: 162px;
        right: 16px;
    }
    .flow-transformation-card {
        left: 10px;
        bottom: 24px;
        min-width: 148px;
        padding: 10px 14px;
    }
    .flow-transformation-card p {
        font-size: 10px;
    }
}


/* ---- Mobile (≤ 540px) — image hidden, cards in 2×2 grid ---- */

@media (max-width: 540px) {
    .interaction-flow-section {
        padding: 48px 0;
    }
    .interaction-flow-section .cta-title {
        font-size: 20px;
    }
    .interaction-flow-section .cta-desc {
        font-size: 11px;
    }
    /* Switch to grid — hide image */
    .interaction-flow-layout {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    /* Hide the center image on mobile */
    .flow-center-visual {
        display: none;
    }
    /* Reset all absolute positioning */
    .flow-card,
    .flow-transformation-card {
        position: static;
        transform: none;
        width: 100%;
        max-width: none;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
    }
    /* Transformation card spans both columns */
    .flow-transformation-card {
        grid-column: 1 / -1;
        min-width: auto;
        padding: 14px 18px;
        text-align: center;
    }
    .flow-transformation-card p {
        font-size: 11px;
    }
    .flow-card h3 {
        font-size: 13px;
    }
    .flow-card p {
        font-size: 10px;
    }
    .flow-card-live p {
        color: #3aaa8a;
    }
}


/* Mobile Responsive */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    .diagonal-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.1;
    }
    .nav-right {
        gap: 15px;
    }
    .hero-title {
        font-size: 40px;
    }
    .blob-shape {
        width: 350px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .logo-name {
        color: var(--navy);
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
        min-height: auto;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    .hero-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-visuals {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .hero-visuals .relative {
        position: relative;
        width: min(280px, 90%);
    }
    .hero-visuals .relative > img {
        width: 100%;
        height: auto;
        display: block;
    }
    .banner-video-wrap {
        width: min(320px, 90%);
    }
    .blob-shape {
        display: none;
    }
    .gif-scan img {
        width: 80px;
        height: 80px;
        bottom: 14px;
        right: 2px;
    }
    .features-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .features-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 40px;
    }
    .section-title {
        font-size: 24px;
        text-align: center;
    }
    .section-desc {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .features-image {
        justify-content: center;
        order: 0;
    }
    .features-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .features-bottom-cta {
        margin-top: 40px;
    }
    .cta-title {
        font-size: 22px;
    }
    .feature-card-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    .hero-subtitle {
        font-size: 18px;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .hero-actions {
        gap: 10px;
    }
}

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


/* GS1 / Standards Band Section */

.standards-band {
    /* background: linear-gradient(180deg, #2A2A72 0%, #1A1A40 100%); */
    padding: 50px 0;
    color: #ffffff;
    position: relative;
}

.standards-inner {
    /* display: flex; */
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.standards-left {
    max-width: 900px;
    margin-inline: auto;
}

.standards-title {
    font-size: 20px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    color: #fff;
}

.standards-desc {
    font-size: 11px;
    line-height: 1.6;
    opacity: 0.88;
}

.standards-highlight {
    margin-top: 8px;
    display: flex;
    padding: 15px 30px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 16px;
    line-height: 1.25;
    opacity: 0.95;
    justify-content: center;
}

.standards-cards {
    flex: 1;
}

.std-grid {
    /* display: grid;
    grid-template-columns: 1fr 1fr; */
    gap: 18px 24px;
    align-items: start;
}

.std-card {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
    color: #2B2F46;
    border-radius: 10px;
    padding: 28px 18px 16px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    min-height: 94px;
    margin-bottom: 10px;
}

.std-card-wide {
    min-height: 106px;
}

.std-icon {
    position: absolute;
    top: -30px;
    left: 50%;
    border: 2px solid #262261;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: var(--gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(120, 224, 183, 0.35);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.std-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.std-card h3 {
    font-size: 12.5px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 6px;
}

.std-card p {
    font-size: 10.5px;
    line-height: 1.45;
    text-align: center;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .standards-band {
        padding: 44px 0;
    }
    .standards-inner {
        gap: 36px;
    }
    .standards-left {
        max-width: 360px;
    }
    .std-grid {
        gap: 16px 20px;
    }
    .std-card {
        padding-top: 26px;
    }
}

@media (max-width: 768px) {
    .standards-inner {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }
    .standards-left {
        max-width: 620px;
        text-align: center;
    }
    .standards-highlight {
        margin-top: 14px;
    }
    .std-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px 16px;
        padding-top: 36px;
    }
    .std-card {
        min-height: unset;
        padding-top: 30px;
        max-width: 100% !important;
    }
}

@media (max-width: 480px) {
    .std-grid {
        grid-template-columns: 1fr !important;
        gap: 40px 0;
        padding-top: 36px;
    }
    .std-card {
        max-width: 100% !important;
    }
}


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

.section {
    width: 100%;
    max-width: 1100px;
    /* padding: 50px 24px; */
    text-align: center;
    position: relative;
    margin: 0 auto;
}


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

.section {
    width: 100%;
    /* max-width: 1100px; */
    /* padding: 60px 24px 70px; */
    text-align: center;
    position: relative;
    /* margin: 0 auto; */
}


/* ===== DECORATIVE BLOB ===== */


/* ===== DECORATIVE BLOB (FIXED LIKE FIGMA) ===== */

.deco {
    position: absolute;
    top: 60px;
    /* top side shift */
    right: -40%;
    /* thoda bahar nikalega */
    width: 165px;
    /* thoda bada */
    height: 165px;
    background: url(../images/customer_shape.png) no-repeat center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
    /* subtle look */
}

@media (max-width: 768px) {
    .deco {
        top: 10px;
        right: -40px;
        width: 120px;
        height: 120px;
        opacity: 0.4;
    }
}

@media (max-width: 480px) {
    .deco {
        display: none;
        /* mobile pe hide best hai */
    }
}


/* ===== HEADING ===== */

.section-title {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    color: #262261;
    margin-bottom: 14px;
    line-height: 1.2;
}


/* ===== SUBTITLE ===== */

.section-subtitle {
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 400;
    color: #666;
    max-width: 420px;
    margin: 0 auto 30px;
    line-height: 1.6;
}


/* ===== CARDS GRID ===== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: end;
    /* cards bottom-align ho */
}


/* ===== IMAGE AREA — light blue bg box ===== */

.card-img-placeholder {
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #262262;
}


/* ===== HAR CARD KA ALAG LIGHT BLUE BG ===== */

.card-img-placeholder--video {
    background: #262262;
}

.card-img-placeholder--images {
    background: #a8c8d8;
}

.card-img-placeholder--rich {
    background: #a0c4d4;
}

.card-img-placeholder--actions {
    background: #c4c0e0;
}


/* ===== REAL IMAGE ===== */

.card-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* ===== CARD BODY — navy bottom ===== */

.card-body {
    background: #262262;
    padding: 0px 16px 24px;
    text-align: center;
    width: 100%;
    border-radius: 0 0 16px 16px;
    position: relative;
    z-index: 1;
    min-height: 110px;
}


/* ===== CARD — full rounded wrapper ===== */

.card {
    border-radius: 16px;
    overflow: hidden;
    /* image bg andar rahe */
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(45, 47, 143, 0.15);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    position: relative;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(45, 47, 143, 0.28);
}


/* individual card bg colors hatao — sab transparent */

.card-img-placeholder--video,
.card-img-placeholder--images,
.card-img-placeholder--rich,
.card-img-placeholder--actions {
    background: #262262;
}


/* ===== REAL IMAGE ===== */

.card-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
    padding: 10px;
    border-radius: 20px;
}


/* ===== CARD BODY — navy bottom box ===== */

.card-body {
    background: #262262;
    padding: 10px 16px 24px;
    text-align: center;
    width: 100%;
    /* border-radius: 16px; */
    position: relative;
    z-index: 1;
}


/* ===== CARD TITLE ===== */

.card-title {
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}


/* ===== CARD DESCRIPTION ===== */

.card-desc {
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 400;
    color: #c5c8f0;
    line-height: 1.55;
}


/* ===== RESPONSIVE: TABLET ===== */

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


/* ===== RESPONSIVE: MOBILE ===== */

@media (max-width: 480px) {
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }
    .deco {
        display: none;
    }
}


/* =======================================================
       SECTION 1 — Connect Directly With Your Customer
    ======================================================= */


/* ---- Section Wrapper ---- */

.connect-section {
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* ---- Decorative blob bottom-left ---- */


/* .connect-deco {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translate(50%, -50%);
      width: 150px;
      height: 150px;
      background: url(../images/customer_shape.png) no-repeat center;
      background-size: contain;
      z-index: 0;
      pointer-events: none;
      opacity: 0.9;
    } */

.connect-deco-outer,
.connect-deco-inner {
    display: none;
}


/* ---- Heading ---- */

.connect-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #262262;
    line-height: 1.25;
    margin-bottom: 16px;
}


/* ---- Subtitle ---- */

.connect-subtitle {
    font-size: clamp(13px, 1.4vw, 15px);
    color: #555;
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.65;
    font-weight: 400;
}


/* ---- Main card layout ---- */

.connect-card {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #e0e4f0;
    border-radius: 40px;
    overflow: hidden;
    /* max-width: 1200px; */
    margin: 0 auto;
    box-shadow: 0 4px 24px rgba(45, 47, 143, 0.08);
}


/* ---- Left image panel ---- */

.connect-card-image {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.connect-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ---- Right content panel ---- */

.connect-card-content {
    flex: 1;
    padding: 36px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}


/* ---- Feature item ---- */

.connect-feature-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.connect-feature-title {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 700;
    color: #262261;
}

.connect-feature-desc {
    font-size: clamp(12px, 1.2vw, 13.5px);
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}


/* =======================================================
       SECTION 2 — Turn Every Product Into a Branded Experience
    ======================================================= */


/* ---- Section Wrapper ---- */

.branded-section {
    padding: 80px 24px;
    text-align: center;
    position: relative;
}

.branded-deco {
    position: absolute;
    left: -2%;
    top: 15%;
    /* transform: translate(50%, -50%); */
    width: 150px;
    height: 150px;
    background: url(../images/third-section-shape.png) no-repeat center;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}


/* ---- Heading ---- */

.branded-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #262262;
    margin-bottom: 48px;
    line-height: 1.25;
}


/* ---- Grid layout ---- */

.branded-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 2200px;
    margin: 0 auto;
}


/* ---- Base card ---- */

.branded-card {
    border: 1.5px solid #e0e4f0;
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    background: #ffffff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    height: fit-content;
    min-height: 160px;
}

.branded-card:hover {
    box-shadow: 0 8px 28px rgba(45, 47, 143, 0.12);
    transform: translateY(-3px);
}


/* ---- Card heading ---- */

.branded-card-title {
    font-size: clamp(14px, 1.5vw, 16px);
    font-weight: 700;
    color: #262261;
    margin-bottom: 10px;
    line-height: 1.3;
}


/* ---- Card description ---- */

.branded-card-desc {
    font-size: clamp(12px, 1.1vw, 13.5px);
    color: #666;
    font-weight: 400;
    line-height: 1.55;
}


/* ---- Featured / navy card — spans 2 rows ---- */

.branded-card--featured {
    grid-column: 3;
    grid-row: 1 / 3;
    background: #262262;
    border-color: #262262;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.branded-card--featured .branded-card-title {
    color: #ffffff;
    font-size: clamp(16px, 1.8vw, 20px);
}

.branded-card--featured .branded-card-desc {
    color: #c5c8f0;
}


/* ---- Placeholder box inside featured card ---- */

.branded-card-placeholder {
    flex: 1;
    background: rgba(255, 255, 255, 0.916);
    border-radius: 10px;
    min-height: 100px;
    margin-top: auto;
}


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

@media (max-width: 820px) {
    /* Connect section */
    .connect-card {
        flex-direction: column;
    }
    .connect-card-image {
        width: 100%;
        height: 240px;
    }
    .connect-card-content {
        padding: 28px 24px;
    }
    /* Branded section */
    .branded-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .branded-card--featured {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 520px) {
    .connect-section,
    .branded-section {
        padding: 48px 0;
    }
    .branded-grid {
        grid-template-columns: 1fr;
    }
    .branded-card--featured {
        grid-column: 1;
    }
    .connect-deco {
        display: none;
    }
}


/* =======================================================
   SECTION 1 — Part of a Complete Brand and Commerce Ecosystem
======================================================= */

.ecosystem-section {
    background: #262262;
    padding: 50px 20px;
    text-align: center;
}

.ecosystem-title {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0;
}

.ecosystem-subtitle {
    max-width: 420px;
    margin: 0 auto 0;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}

.ecosystem-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: nowrap;
    margin: 50px auto 28px;
    max-width: 1180px;
}

.ecosystem-card {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    flex: 1;
    max-width: 400px;
    padding: 32px 18px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.ecosystem-card-icon {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f7ff;
    border: 6px solid var(--primary);
}

.ecosystem-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ecosystem-card-icon svg {
    width: 22px;
    height: 22px;
}

.ecosystem-card-icon--site {
    background: #eef2fb;
}

.ecosystem-card-icon--vcard {
    background: #e8f5ee;
}

.ecosystem-card-icon--promo {
    background: #fff2e7;
}

.ecosystem-card-title {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    color: #1f1f1f;
}

.ecosystem-card-desc {
    margin: 0;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 400;
    color: #6d6d6d;
}

.ecosystem-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #3b378d;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 15px 30px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    cursor: default;
    box-shadow: none;
    margin-top: 0;
}


/* Tablet */

@media (max-width: 768px) {
    .ecosystem-cards {
        flex-wrap: wrap;
    }
    .ecosystem-card {
        width: 160px;
    }
}


/* Mobile */

@media (max-width: 480px) {
    .ecosystem-section {
        padding: 48px 0 40px;
    }
    .ecosystem-title {
        font-size: 16px;
    }
    .ecosystem-cards {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .ecosystem-card {
        width: 100%;
        max-width: 280px;
        min-height: auto;
        padding: 20px 14px 14px;
        border-radius: 10px;
    }
    .ecosystem-card-icon {
        width: 34px;
        height: 34px;
        top: -16px;
    }
    .ecosystem-card-icon svg {
        width: 18px;
        height: 18px;
    }
    .ecosystem-card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .ecosystem-card-desc {
        font-size: 11px;
        line-height: 1.45;
    }
    .ecosystem-cta-btn {
        border-radius: 999px;
    }
}


/* =======================================================
       SECTION 2 — Know How Customers Interact With Your Products
    ======================================================= */

.analytics-section {
    padding: 50px 24px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


/* Decorative image — right edge (between analytics & cta) */

.analytics-deco {
    position: absolute;
    right: -2%;
    top: 21%;
    width: 165px;
    height: 165px;
    background: url(../images/customer_shape.png) no-repeat center;
    background-size: contain;
    z-index: 2;
    opacity: 0.9;
}


/* ---- Layout — bordered card wrapper ---- */

.analytics-layout {
    display: flex;
    gap: 48px;
    align-items: center;
    max-width: 1040px;
    margin: 0 auto;
    /* padding: 40px 44px; */
    /* border: 1.5px solid #e5e7f2; */
    border-radius: 20px;
    background: #ffffff;
    /* box-shadow: 0 4px 24px rgba(45, 47, 143, 0.04); */
}


/* ---- Left: lavender visual placeholder ---- */

.analytics-visual {
    width: 45%;
    min-width: 280px;
    /* height: 50%; */
    background: #d8d3f8;
    border-radius: 34px;
    flex-shrink: 0;
}


/* ---- Right: text + accordion ---- */

.analytics-content {
    flex: 1;
    min-width: 0;
}

.analytics-title {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 800;
    color: #262261;
    margin-bottom: 10px;
    line-height: 1.3;
}

.analytics-desc {
    font-size: clamp(12px, 1.2vw, 13px);
    color: #6b6f85;
    line-height: 1.6;
    margin-bottom: 8px;
    font-weight: 400;
}


/* ---- Accordion ---- */

.accordion {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #e5e7f2;
}

.accordion-item {
    border-bottom: 1px solid #e5e7f2;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 600;
    color: #262261;
    text-align: left;
    transition: color 0.2s ease;
}

.accordion-header:hover {
    color: #262262;
}

.accordion-arrow {
    width: 6px;
    height: 6px;
    font-size: 0;
    line-height: 0;
    color: #262261;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.accordion-item.open .accordion-arrow {
    transform: rotate(-135deg) translateX(1px);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
    max-height: 200px;
}

.accordion-body-inner {
    padding: 2px 0 14px;
    font-size: clamp(11px, 1.1vw, 12.5px);
    color: #6b6f85;
    line-height: 1.55;
    font-weight: 400;
}


/* Last item — Optimize Performance is open by default */

.accordion-item.open-default .accordion-header {
    font-weight: 700;
    color: #262261;
}


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

.cta-section {
    padding: 30px 24px;
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}


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

.cta-title {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #262261;
    margin-bottom: 16px;
    line-height: 1.3;
}


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

.cta-subtitle {
    font-size: clamp(13px, 1.4vw, 15px);
    color: #555;
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.65;
    font-weight: 400;
}


/* ===== BUTTONS WRAPPER ===== */

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


/* ===== BUTTON — Dark Navy (Book a Live Demo) ===== */

.btn-navy {
    background: #1a2057;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    padding: 13px 28px;
    border-radius: 8px;
    /* rounded rectangle — not pill */
    border: none;
    cursor: pointer;
    letter-spacing: 0.01em;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-navy:hover {
    background: #262262;
    transform: translateY(-2px);
}


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

@media (max-width: 480px) {
    .cta-section {
        padding: 48px 0;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-navy,
    .btn-gradient {
        width: 100%;
        max-width: 300px;
    }
}


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

@media (max-width: 820px) {
    .analytics-layout {
        flex-direction: column;
        gap: 32px;
    }
    .analytics-visual {
        width: 100%;
        min-width: unset;
        height: 200px;
    }
    .ecosystem-cards {
        gap: 12px;
    }
    .ecosystem-card {
        width: 150px;
        padding: 20px 14px;
    }
}

@media (max-width: 520px) {
    .ecosystem-section,
    .cta-section {
        padding: 48px 0;
    }
    /* analytics-section has no .container child — keep horizontal padding */
    .analytics-section {
        padding: 48px 20px;
    }
    .ecosystem-card {
        width: 100%;
    }
    .analytics-deco,
    .branded-deco,
    .cta-deco {
        display: none;
    }
    .branded-card {
        min-height: auto;
    }
}


/* ============================================================
   MOBILE — Comprehensive internal spacing normalisation
   Applies only to ≤ 480px. Desktop untouched.
============================================================ */

@media (max-width: 480px) {
    /* --- Hero ------------------------------------------------ */
    .hero-section {
        gap: 24px;
        text-align: center;
    }
    .hero-subtitle {
        margin-bottom: 6px;
    }
    .hero-title {
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }
    .hero-description {
        margin-bottom: 24px;
    }
    .hero-actions {
        gap: 10px;
        justify-content: center;
    }
    /* --- Features -------------------------------------------- */
    .features-section {
        /* padding-top: 48px; */
        padding-bottom: 48px;
    }
    .features-grid {
        gap: 28px;
    }
    .section-title {
        margin-bottom: 12px;
    }
    .section-desc {
        margin-bottom: 28px;
    }
    .feature-cards {
        gap: 12px;
        margin-top: 20px;
    }
    .feature-card {
        padding: 18px 20px;
    }
    /* --- Interaction flow ------------------------------------ */
    .interaction-flow-section .features-bottom-cta {
        margin-bottom: 28px;
    }
    .interaction-flow-layout {
        gap: 10px;
    }
    .flow-transformation-card {
        padding: 12px 16px;
    }
    .flow-transformation-card p {
        font-size: 11px;
        line-height: 1.55;
    }
    /* --- Standards band -------------------------------------- */
    .standards-band {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .standards-inner {
        gap: 24px;
    }
    .standards-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    .standards-desc {
        font-size: 13px;
        margin-bottom: 14px;
    }
    /* .standards-highlight {
        font-size: 12px;
        padding: 10px 14px;
    } */
    .std-grid {
        gap: 14px;
    }
    .std-card {
        padding-top: 26px;
        padding-bottom: 16px;
        padding-left: 14px;
        padding-right: 14px;
    }
    /* --- Story (cards-grid) ---------------------------------- */
    .section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .cards-grid {
        gap: 12px;
        margin-top: 24px;
    }
    .card {
        border-radius: 12px;
    }
    .card-body {
        padding: 10px 16px 16px;
    }
    /* --- Connect --------------------------------------------- */
    .connect-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .connect-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    .connect-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }
    .connect-card {
        gap: 0;
        border-radius: 12px;
    }
    .connect-card-image {
        height: 200px;
    }
    .connect-card-content {
        padding: 20px 18px 22px;
        gap: 16px;
    }
    .connect-feature-item {
        padding-bottom: 14px;
        gap: 4px;
    }
    /* --- Branded section ------------------------------------- */
    .branded-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .branded-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .branded-grid {
        gap: 10px;
    }
    .branded-card {
        padding: 18px 16px;
        border-radius: 10px;
    }
    .branded-card-title {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .branded-card-desc {
        font-size: 12px;
    }
    /* --- Ecosystem ------------------------------------------- */
    .ecosystem-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    .ecosystem-subtitle {
        font-size: 12px;
    }
    .ecosystem-cards {
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 24px;
    }
    .ecosystem-card {
        padding: 28px 16px 18px;
    }
    .ecosystem-card-icon {
        width: 40px;
        height: 40px;
        top: -20px;
    }
    .ecosystem-card-title {
        font-size: 14px;
    }
    .ecosystem-card-desc {
        font-size: 12px;
    }
    .ecosystem-cta-btn {
        margin-top: 0;
    }
    /* --- Analytics ------------------------------------------- */
    .analytics-layout {
        padding: 20px 16px;
        gap: 20px;
        border-radius: 12px;
    }
    .analytics-visual {
        height: 180px;
        border-radius: 12px;
    }
    .analytics-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    /* --- CTA section ----------------------------------------- */
    .cta-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    .cta-buttons {
        gap: 10px;
    }
    .btn-navy,
    .btn-gradient {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
    }
}


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

.hero-section,
/* .features-section, */
.interaction-flow-section,
.standards-band,
.section,
.connect-section,
.branded-section,
.ecosystem-section,
.analytics-section,
.cta-section {
    padding-top: 45px;
    padding-bottom: 45px;
}

@media (max-width: 820px) {
    .hero-section,
    /* .features-section, */
    .interaction-flow-section,
    .standards-band,
    .section,
    .connect-section,
    .branded-section,
    .ecosystem-section,
    .analytics-section,
    .cta-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .hero-section,
    /* .features-section, */
    .interaction-flow-section,
    .standards-band,
    .section,
    .connect-section,
    .branded-section,
    .ecosystem-section,
    .analytics-section,
    .cta-section {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}


.features-section
 {
    padding-top: 0px;
    margin-top: -50px;
    padding-bottom: 20px;
}

@media (max-width: 820px) {
    .features-image{
        margin-top: 45px;
    }

        .features-section
        {
            padding-top: 0px;
            margin-top: -30px;
        }
}



/* ============================================================
   PRODUCT PAGE — RESPONSIVE STABILIZATION (mobile/tablet only)
============================================================ */

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        gap: 20px;
        min-height: auto;
        text-align: center;
    }
    .hero-content,
    .hero-visuals {
        width: 100%;
        max-width: 100%;
    }
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-actions .btn,
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    .features-image img {
        height: auto !important;
        object-fit: cover;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .connect-card {
        flex-direction: column;
    }
    .connect-card-image {
        width: 100%;
        height: 220px;
    }
    .branded-grid {
        grid-template-columns: 1fr !important;
    }
    .branded-card--featured {
        grid-column: auto !important;
        grid-row: auto !important;
    }
    .analytics-layout {
        display: grid;
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 14px;
    }
    .analytics-visual,
    .analytics-content {
        width: 100%;
    }
    .analytics-visual {
        min-width: 0;
        height: auto;
        overflow: hidden;
        border-radius: 14px;
    }
    .analytics-visual img {
        width: 100%;
        height: auto;
        display: block;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}