﻿
.retail-animate-in {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(.22,1,.36,1), transform 0.7s cubic-bezier(.22,1,.36,1);
}
.retail-animate-in.retail-visible {
    opacity: 1;
    transform: translateY(0);
}



.retail-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 90px;
    background: linear-gradient(135deg, #fffaf0 0%, #fbe9b2 30%, #f3d57a 70%, #ECB52B 100%);
    min-height: 580px;
    display: flex;
    align-items: center;
}

.retail-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.retail-hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.retail-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.retail-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 20px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    width: fit-content;
    backdrop-filter: blur(8px);
}

.retail-badge-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #df7f07;
    animation: retailAmberPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}

@keyframes retailAmberPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(251,191,36,0.6); }
    50% { opacity: 0.5; transform: scale(1.4); box-shadow: 0 0 16px rgba(251,191,36,0.3); }
}

.retail-hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    color: #000;
    margin-bottom: 22px;
}

.retail-hero-title span {
    background: linear-gradient(135deg, #F59E0B, #D97706, #FBBF24);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: retailGradientShift 4s ease infinite;
}

@keyframes retailGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.retail-hero-desc {
    font-size: 1.05rem;
    color: #000;
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 480px;
}

.retail-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.retail-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
    position: relative;
    overflow: hidden;
}

.retail-btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.retail-btn-primary:hover::after {
    transform: translateX(100%);
}

.retail-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
    color: #fff;
}

/* Trust bar under hero CTA */
.retail-hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.retail-trust-avatars {
    display: flex;
}

.retail-trust-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #2d1800;
    margin-left: -8px;
    object-fit: cover;
}

.retail-trust-avatars img:first-child { margin-left: 0; }

.retail-trust-text {
    font-size: 13px;
    color: #64748b;
}

.retail-trust-text strong {
    color: #FCD34D;
}

/* Hero visual */
.retail-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.retail-hero-graphic {
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1;
    position: relative;
}

.retail-cloud-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 140px;
    background: linear-gradient(135deg, rgba(41,182,232,0.25), rgba(14,165,233,0.15));
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 80px rgba(41,182,232,0.25), inset 0 0 30px rgba(41,182,232,0.1);
    animation: retailCloudPulse 5s ease-in-out infinite;
}

@keyframes retailCloudPulse {
    0%, 100% { box-shadow: 0 0 80px rgba(41,182,232,0.25), inset 0 0 30px rgba(41,182,232,0.1); }
    50% { box-shadow: 0 0 120px rgba(41,182,232,0.35), inset 0 0 50px rgba(41,182,232,0.15); }
}

.retail-cloud-shape::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(41,182,232,0.2), rgba(14,165,233,0.1));
    border-radius: 50%;
}

.retail-cloud-shape::after {
    content: "";
    position: absolute;
    top: -30px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(41,182,232,0.2), rgba(14,165,233,0.1));
    border-radius: 50%;
}

.retail-cloud-icon {
    position: relative;
    z-index: 2;
}

.retail-cloud-icon svg {
    width: 50px;
    height: 50px;
    color: #fff;
    filter: drop-shadow(0 0 20px rgba(41,182,232,0.5));
}

.retail-orbit-ring {
    position: absolute;
    border: 1px solid rgba(41, 182, 232, 0.12);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.retail-orbit-ring:nth-child(2) { width: 280px; height: 280px; animation: retailSpin 25s linear infinite; border-style: dashed; }
.retail-orbit-ring:nth-child(3) { width: 380px; height: 380px; animation: retailSpin 35s linear infinite reverse; }

@keyframes retailSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.retail-float-card {
    position: absolute;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #e2e8f0;
    font-weight: 600;
    animation: retailFloat 4s ease-in-out infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.retail-float-card:hover {
    border-color: rgba(41,182,232,0.4);
    box-shadow: 0 8px 32px rgba(41,182,232,0.2);
    transform: translateY(-14px) !important;
}

.retail-float-card:nth-child(4) { top: 8%; left: 0; animation-delay: 0s; }
.retail-float-card:nth-child(5) { top: 55%; right: -15px; animation-delay: 1.2s; }
.retail-float-card:nth-child(6) { bottom: 8%; left: 5%; animation-delay: 2.4s; }
.retail-float-card:nth-child(7) { top: 30%; left: -20px; animation-delay: 0.6s; }

@keyframes retailFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.retail-float-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: retailDotPulse 2s ease-in-out infinite;
}

@keyframes retailDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 currentColor; }
    50% { box-shadow: 0 0 0 4px transparent; }
}



/* Phone Mockup Hero Visual */
.retail-hero-phone {
    position: relative;
    width: 290px;
    margin: 0 auto;
    animation: retailPhoneFloat 5s ease-in-out infinite;
}

@keyframes retailPhoneFloat {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}

.retail-phone-frame {
    background: linear-gradient(170deg, #64B5F6 0%, #29B6E8 50%, #0277BD 100%);
    border-radius: 36px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 2px rgba(255,255,255,0.08), inset 0 0 40px rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
}

.retail-phone-notch {
    width: 100px;
    height: 22px;
    background: rgba(0,0,0,0.25);
    border-radius: 0 0 14px 14px;
    margin: 0 auto 18px;
}

.retail-phone-content {
    text-align: center;
    padding: 0 10px 28px;
}

.retail-phone-time {
    font-family: 'Sora', sans-serif;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 0;
    line-height: 1;
}

.retail-phone-day {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 500;
}

.retail-awning {
    display: flex;
    justify-content: center;
    margin-bottom: 6px;
    overflow: hidden;
}

.retail-awning span {
    width: 22px;
    height: 16px;
    border-radius: 0 0 50% 50%;
    flex-shrink: 0;
}

.retail-awning span:nth-child(odd) { background: #fff; }
.retail-awning span:nth-child(even) { background: #29B6E8; }

.retail-shop-label {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.retail-phone-tray {
    background: rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px 14px 18px;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.retail-phone-bags {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
}

.retail-pbag {
    border-radius: 3px 3px 6px 6px;
    position: relative;
}

.retail-pbag::before {
    content: "";
    position: absolute;
    border: 2.5px solid;
    border-bottom: none;
    border-radius: 50% 50% 0 0;
}

.retail-pbag-1 {
    width: 50px;
    height: 60px;
    background: linear-gradient(180deg, #B3E5FC, #81D4FA);
}
.retail-pbag-1::before {
    top: -9px;
    left: 11px;
    width: 26px;
    height: 14px;
    border-color: #0288D1;
}

.retail-pbag-2 {
    width: 58px;
    height: 70px;
    background: linear-gradient(180deg, #FDE68A, #FBBF24);
}
.retail-pbag-2::before {
    top: -10px;
    left: 14px;
    width: 28px;
    height: 15px;
    border-color: #D97706;
}

.retail-pbag-3 {
    width: 44px;
    height: 52px;
    background: linear-gradient(180deg, #E1F5FE, #B3E5FC);
}
.retail-pbag-3::before {
    top: -8px;
    left: 9px;
    width: 22px;
    height: 12px;
    border-color: #0277BD;
}

.retail-pbag-face {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    opacity: 0.6;
}

.retail-phone-buy {
    display: inline-block;
    padding: 13px 48px;
    background: linear-gradient(135deg, #0288D1, #01579B);
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    border-radius: 12px;
    letter-spacing: 3px;
    box-shadow: 0 6px 24px rgba(2,136,209,0.4);
}

/* Floating elements around phone */
.retail-hfloat {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    z-index: 3;
}

.retail-hfloat-heart {
    width: 48px;
    height: 48px;
    top: 4%;
    left: -16%;
    background: #29B6E8;
    color: #fff;
    font-size: 20px;
    animation: retailFloat 3.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.retail-hfloat-cart {
    width: 60px;
    height: 60px;
    bottom: 22%;
    left: -22%;
    background: #fff;
    color: #F59E0B;
    font-size: 28px;
    animation: retailFloat 4s ease-in-out infinite;
    animation-delay: 1s;
}

.retail-hfloat-card {
    width: 50px;
    height: 50px;
    top: 32%;
    right: -16%;
    background: #fff;
    color: #42A5F5;
    font-size: 22px;
    animation: retailFloat 3.8s ease-in-out infinite;
    animation-delay: 0.6s;
}

.retail-stats-bar {
    background: #fff;
    padding: 55px 0;
    border-bottom: 1px solid #e8f0fe;
    position: relative;
    display:none;
}

.retail-stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.retail-stat {
    background: #fff;
    border: 1px solid #e8f0fe;
    border-radius: 20px;
    padding: 30px 20px 24px;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    cursor: default;
    will-change: transform;
}

.retail-stat:hover {
    box-shadow: 0 16px 40px rgba(41,182,232,0.12);
    border-color: rgba(41,182,232,0.2);
}

.retail-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(41,182,232,0.1), rgba(14,165,233,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
    color: #29B6E8;
}

.retail-stat h3 {
    font-family: 'Sora', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #071c3d;
    margin-bottom: 6px;
}

.retail-stat p {
    font-size: 14px;
    color: #5f6d85;
    margin: 0 0 14px;
}

.retail-stat-bar {
    height: 4px;
    background: #e8f0fe;
    border-radius: 4px;
    overflow: hidden;
}

.retail-stat-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #29B6E8, #0EA5E9);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(.22,1,.36,1);
}



.retail-channels {
    padding: 80px 0;
    background: #f8fafc;
}

.retail-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.retail-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 20px;
}

.retail-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px;
    background: #f9e39f;
    border: 1px solid #D97706;
    border-radius: 50px;
    color: #D97706;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.retail-section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.2;
    margin-bottom: 16px;
}

.retail-section-subtitle {
    font-size: 17px;
    color: #5f6d85;
    line-height: 1.7;
}

.retail-channel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.retail-channel-card {
    background: #fff;
    border: 1px solid #e8f0fe;
    border-radius: 22px;
    padding: 36px 30px;
    transition: all 0.4s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
}

.retail-channel-card::after {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
    z-index: 0;
}

.retail-channel-card:nth-child(1)::after { background: #fa494a;}
.retail-channel-card:nth-child(2)::after { background: #fdc733;}
.retail-channel-card:nth-child(3)::after { background: #4ad348;}
.retail-channel-card:nth-child(4)::after { background: #fa494a;}
.retail-channel-card:nth-child(5)::after { background: #fdc733;}
.retail-channel-card:nth-child(6)::after { background: #4ad348;}

.retail-channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.retail-channel-card:hover::after {
    width: 170px;
    height: 170px;
    top: -50px;
    right: -50px;
}

.retail-channel-card > * {
    position: relative;
    z-index: 1;
}

.retail-channel-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.retail-channel-card:hover .retail-channel-icon {
    transform: scale(1.1) rotate(-5deg);
}

.retail-channel-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 12px;
}

.retail-channel-card p {
    font-size: 15px;
    color: #5f6d85;
    line-height: 1.7;
    margin-bottom: 16px;
}

.retail-channel-link {
    font-size: 14px;
    font-weight: 700;
    color: #29B6E8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s;
}

.retail-channel-link:hover {
    gap: 10px;
    color: #0284c7;
}



.retail-flow-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.retail-flow-section::before {
    content: "";
    position: absolute;
    right: -200px;
    top: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41,182,232,0.12), transparent 70%);
    pointer-events: none;
}

.retail-flow-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.retail-flow-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    background: #f9e39f;
    border: 1px solid #D97706;
    border-radius: 50px;
    color: #D97706;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.retail-flow-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color:#1a2535;
    line-height: 1.2;
    margin-bottom: 16px;
}

.retail-flow-subtitle {
    font-size: 17px;
    color: #5f6d85;
    line-height: 1.7;
}

.retail-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.retail-flow-card {
    background: rgba(41,182,232,0.08);
    border: 2px solid transparent;
    border-radius: 22px;
    padding: 36px 28px 32px;
    text-align: center;
    position: relative;
    transform: translateY(-8px);
    overflow: hidden;
}

.retail-flow-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        transparent 40%,
        var(--flow-color) 50%,
        transparent 60%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: flowBorder 3s linear infinite;
    z-index: 1;
    pointer-events: none;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes flowBorder {
    to { --border-angle: 360deg; }
}

.retail-flow-card[data-step="1"] { --flow-color: #29B6E8; }
.retail-flow-card[data-step="2"] { --flow-color: #EF4444; }
.retail-flow-card[data-step="3"] { --flow-color: #F59E0B; }
.retail-flow-card[data-step="4"] { --flow-color: #10B981; }

.retail-flow-num {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #29B6E8, #0EA5E9);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 0 0 6px rgba(41,182,232,0.2);
}

.retail-flow-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a2535;
    margin-bottom: 14px;
}

.retail-flow-card p {
    font-size: 14px;
    color: #5f6d85;
    line-height: 1.7;
    margin: 0;
}



.retail-usecases {
    padding: 40px 0;
    background: #fff;
}

.retail-tabs-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.retail-tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #5f6d85;
    transition: all 0.3s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
}

.retail-tab-btn:hover {
    border-color: #D97706;
    color: #D97706;
    transform: translateY(-2px);
}

.retail-tab-btn.active {
    background: #f9e39f;
    color: #D97706;
    border:1px solid #D97706;
    transform: translateY(-2px);
}

.retail-usecase-panel {
    display: none;
    animation: retailFadeIn 0.5s cubic-bezier(.22,1,.36,1);
}

.retail-usecase-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

@keyframes retailFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.retail-usecase-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #071c3d;
    margin-bottom: 16px;
    line-height: 1.25;
}

.retail-usecase-content > p {
    font-size: 16px;
    color: #5f6d85;
    line-height: 1.7;
    margin-bottom: 28px;
}

.retail-usecase-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.retail-uc-feature {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    transition: background 0.3s;
}

.retail-uc-feature:hover {
    background: #f0f9ff;
}

.retail-uc-check {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(41, 182, 232, 0.1);
    color: #29B6E8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.retail-uc-feature:hover .retail-uc-check {
    background: #29B6E8;
    color: #fff;
}

.retail-uc-feature h5 {
    font-size: 15px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 3px;
}

.retail-uc-feature p {
    font-size: 13.5px;
    color: #5f6d85;
    line-height: 1.5;
    margin: 0;
}

.retail-usecase-visual {
   
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.retail-usecase-visual::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(41,182,232,0.12), transparent);
    border-radius: 50%;
}

/* Message demo */
.retail-msg-demo {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.retail-demo-phone {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s;
}

.retail-demo-phone:hover {
    transform: scale(1.02);
}

.retail-demo-topbar {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.retail-demo-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.retail-demo-name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.retail-demo-status {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
}

.retail-demo-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.retail-demo-msg {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.5;
    max-width: 88%;
    transition: transform 0.2s;
}

.retail-demo-msg:hover {
    transform: scale(1.02);
}

.retail-demo-msg.incoming {
    background: #f0f9ff;
    color: #1c1c1e;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}

.retail-demo-msg.outgoing {
    background: linear-gradient(135deg, #29B6E8, #0EA5E9);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.retail-demo-meta {
    font-size: 11px;
    color: #94a3b8;
    padding-left: 4px;
}

.retail-demo-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.retail-demo-chip {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid #D97706;
    color: #D97706;
    background: #f0f9ff;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(.22,1,.36,1);
}

.retail-demo-chip:hover {
    background: #f9e39f;
    color: #D97706;
    transform: translateY(-2px);
}



.retail-api-playground {
    padding: 80px 0;
    background: #f8fafc;
}

.retail-api-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.retail-api-channel-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.retail-api-ch-btn {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #5f6d85;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.retail-api-ch-btn:hover {
    border-color: #29B6E8;
    color: #29B6E8;
}

.retail-api-ch-btn.active {
    background: linear-gradient(135deg, #29B6E8, #0EA5E9);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(41,182,232,0.3);
}

.retail-api-code-wrap {
    background: #0f172a;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.retail-code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.retail-code-dots {
    display: flex;
    gap: 7px;
}

.retail-code-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.retail-code-dots span:nth-child(1) { background: #ff5f57; }
.retail-code-dots span:nth-child(2) { background: #ffbd2e; }
.retail-code-dots span:nth-child(3) { background: #28c840; }

.retail-code-lang {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.retail-code-block {
    padding: 24px;
    margin: 0;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #7dd3fc;
    overflow-x: auto;
    white-space: pre;
    transition: opacity 0.2s ease;
    min-height: 200px;
}

.retail-code-copy {
    position: absolute;
    top: 14px;
    right: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #64748b;
    padding: 6px 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    z-index: 2;
}

.retail-code-copy:hover {
    background: rgba(41,182,232,0.15);
    color: #29B6E8;
    border-color: rgba(41,182,232,0.3);
}



.retail-enterprise {
    padding: 60px 0;
    background: #f9fafb;
}

.retail-ent-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.retail-ent-card {
    background: #fff;
    border: 1px solid #eaeff6;
    border-radius: 20px;
    padding: 38px 28px 34px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
}

.retail-ent-card:nth-child(3n+1) { border-top-color: #fa494a; }
.retail-ent-card:nth-child(3n+2) { border-top-color: #fdc733; }
.retail-ent-card:nth-child(3n)   { border-top-color: #4ad348; }

.retail-ent-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
    z-index: 0;
}

.retail-ent-card:nth-child(3n+1)::before { background: radial-gradient(circle, rgba(250,73,74,0.12), transparent 70%); }
.retail-ent-card:nth-child(3n+2)::before { background: radial-gradient(circle, rgba(253,199,51,0.15), transparent 70%); }
.retail-ent-card:nth-child(3n)::before   { background: radial-gradient(circle, rgba(74,211,72,0.12), transparent 70%); }

.retail-ent-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}

.retail-ent-card:nth-child(3n+1)::after { background: linear-gradient(90deg, #fa494a, #ff7b7c); }
.retail-ent-card:nth-child(3n+2)::after { background: linear-gradient(90deg, #fdc733, #ffe066); }
.retail-ent-card:nth-child(3n)::after   { background: linear-gradient(90deg, #4ad348, #7ee67c); }

.retail-ent-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,0,0,0.03);
    background: #fff;
}

.retail-ent-card:nth-child(3n+1):hover { box-shadow: 0 18px 45px rgba(250,73,74,0.15); }
.retail-ent-card:nth-child(3n+2):hover { box-shadow: 0 18px 45px rgba(253,199,51,0.2); }
.retail-ent-card:nth-child(3n):hover   { box-shadow: 0 18px 45px rgba(74,211,72,0.15); }

.retail-ent-card:hover::before {
    opacity: 1;
    width: 160px;
    height: 160px;
    top: -80px;
    right: -80px;
}

.retail-ent-card:hover::after {
    transform: scaleX(1);
}

.retail-ent-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.retail-ent-card:nth-child(3n+1) .retail-ent-icon { background: rgba(250,73,74,0.1); color: #fa494a; }
.retail-ent-card:nth-child(3n+2) .retail-ent-icon { background: rgba(253,199,51,0.12); color: #e5a800; }
.retail-ent-card:nth-child(3n)   .retail-ent-icon { background: rgba(74,211,72,0.1); color: #4ad348; }

.retail-ent-card:hover .retail-ent-icon {
    transform: scale(1.15) rotate(-5deg);
}

.retail-ent-card:nth-child(3n+1):hover .retail-ent-icon { box-shadow: 0 6px 20px rgba(250,73,74,0.2); }
.retail-ent-card:nth-child(3n+2):hover .retail-ent-icon { box-shadow: 0 6px 20px rgba(253,199,51,0.25); }
.retail-ent-card:nth-child(3n):hover   .retail-ent-icon { box-shadow: 0 6px 20px rgba(74,211,72,0.2); }

.retail-ent-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #071c3d;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.retail-ent-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}



.retail-why {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.retail-why::before {
    content: "";
    position: absolute;
    left: -200px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
    pointer-events: none;
}

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

.retail-why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(.22,1,.36,1);
    position: relative;
    overflow: hidden;
}

.retail-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #29B6E8, #0EA5E9);
    border-radius: 3px;
    transition: height 0.5s ease;
}

.retail-why-card:hover {
    border-color: rgba(41,182,232,0.25);
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.retail-why-card:hover::before {
    height: 100%;
}

.retail-why-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(41,182,232,0.15), rgba(14,165,233,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    transition: transform 0.3s;
}

.retail-why-card:hover .retail-why-icon {
    transform: scale(1.1);
}

.retail-why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2535;
    margin-bottom: 8px;
}

.retail-why-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    margin: 0;
}



.retail-cta-section {
    padding: 80px 0;
    background: #fff;
}

.retail-cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #29B6E8, #0EA5E9);
    border-radius: 28px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.retail-cta-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.retail-cta-box::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.retail-cta-box h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.retail-cta-box p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.retail-cta-btns {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.retail-cta-btn-white {
    padding: 14px 36px;
    background: #fff;
    color: #071c3d;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.retail-cta-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.retail-cta-btn-outline {
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}

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



/* ── AI MESSAGE INTELLIGENCE SECTION ── */
.retail-ai-intel {
    padding: 90px 0;
    background: #fff;
}

.retail-ai-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 20px;
    align-items: center;
}

/* Demo panel */
.retail-ai-demo {
    background: #fdfdfd;
    border: 1px solid #e5e9f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.retail-ai-demo-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f1f3f6;
    border-bottom: 1px solid #e5e9f0;
}

.retail-ai-bar-label {
    font-size: 11px;
    color: #94a3b8;
    white-space: nowrap;
    flex-shrink: 0;
}

.retail-ai-bar-value {
    flex: 1;
    font-size: 12px;
    color: #334155;
    background: #fff;
    border: 1px solid #dde3ec;
    border-radius: 6px;
    padding: 6px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.retail-ai-bar-btn {
    padding: 6px 18px;
    background: linear-gradient(135deg, #29B6E8, #0EA5E9);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
    transition: box-shadow 0.3s;
}

.retail-ai-bar-btn:hover {
    box-shadow: 0 4px 14px rgba(41,182,232,0.4);
}

.retail-ai-demo-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 360px;
}

/* Left: message visual with highlight boxes */
.retail-ai-msg-visual {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-right: 1px solid #e5e9f0;
    background: #fafbfc;
}

.retail-ai-msg-box {
    border: 2px solid;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.retail-ai-msg-box:hover {
    transform: translateY(-3px);
}

.retail-ai-box-1 {
    border-color: #3b82f6;
}
.retail-ai-box-1:hover { box-shadow: 0 6px 20px rgba(59,130,246,0.15); }

.retail-ai-box-2 {
    border-color: #10B981;
}
.retail-ai-box-2:hover { box-shadow: 0 6px 20px rgba(16,185,129,0.15); }

.retail-ai-box-3 {
    border-color: #F97316;
}
.retail-ai-box-3:hover { box-shadow: 0 6px 20px rgba(249,115,22,0.15); }

.retail-ai-box-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #334155;
    font-weight: 500;
}

.retail-ai-box-content i {
    font-size: 18px;
    flex-shrink: 0;
}

.retail-ai-box-1 .retail-ai-box-content i { color: #3b82f6; }
.retail-ai-box-2 .retail-ai-box-content i { color: #10B981; }
.retail-ai-box-3 .retail-ai-box-content i { color: #F97316; }

.retail-ai-box-tag {
    position: absolute;
    top: -10px;
    left: 14px;
    padding: 2px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
}

.tag-blue { background: #3b82f6; }
.tag-green { background: #10B981; }
.tag-orange { background: #F97316; }

/* Right: classification results */
.retail-ai-results {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.retail-ai-result-card {
    padding: 14px;
    border: 1px solid #eaeff6;
    border-radius: 10px;
    background: #fff;
    transition: box-shadow 0.3s, transform 0.3s;
}

.retail-ai-result-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.retail-ai-result-label {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.retail-ai-result-label strong {
    color: #071c3d;
}

.retail-ai-result-icon {
    display: none;
}

.retail-ai-result-attrs {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.retail-ai-result-attrs span {
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    color: #475569;
    line-height: 1.65;
}

.retail-ai-result-attrs b {
    color: #1e293b;
    font-weight: 600;
}

/* Right content */
.retail-ai-content {
    padding: 10px 0;
}

.retail-ai-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    font-weight: 800;
    color: #071c3d;
    line-height: 1.2;
    margin-bottom: 22px;
}

.retail-ai-desc {
    font-size: 17px;
    color: #5f6d85;
    line-height: 1.8;
    margin-bottom: 28px;
}

.retail-ai-cta {
    font-size: 16px;
    font-weight: 600;
    color: #29B6E8;
    text-decoration: none;
    border-bottom: 2px solid #29B6E8;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
    display: inline-block;
}

.retail-ai-cta:hover {
    color: #0284c7;
    border-bottom-color: #0284c7;
}


@media (max-width: 1024px) {
    .retail-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .retail-hero-visual { order: -1; }
    .retail-hero-phone { width: 250px; }
    .retail-channel-grid { grid-template-columns: repeat(2, 1fr); }
    .retail-flow-grid { grid-template-columns: repeat(2, 1fr); }
    .retail-ent-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .retail-usecase-panel.active { grid-template-columns: 1fr; }
    .retail-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .retail-api-grid { grid-template-columns: 1fr; }
    .retail-enterprise { padding: 80px 0; }
    .retail-ai-grid { grid-template-columns: 1fr; gap: 20px; }
    .retail-ai-content { text-align: center; }
}

@media (max-width: 768px) {
    .retail-hero { padding: 80px 0 60px; }
    .retail-channel-grid { grid-template-columns: 1fr; }
    .retail-flow-grid { grid-template-columns: 1fr; gap: 18px; }
    .retail-ent-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .retail-why-grid { grid-template-columns: 1fr; }
    .retail-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .retail-cta-box { padding: 40px 28px; }
    .retail-hero-trust { flex-direction: column; align-items: flex-start; gap: 8px; }
    .retail-ai-demo-body { grid-template-columns: 1fr; }
    .retail-ai-msg-visual { border-right: none; border-bottom: 1px solid #e5e9f0; }
    .retail-ai-intel { padding: 60px 0; }
    .retail-hero-visual{ display:none}
    .retail-btn-primary{ width:70%}
}

@media (max-width: 480px) {
    .retail-hero-inner { padding: 0 16px; }
    .retail-section-inner { padding: 0 16px; }
    .retail-flow-grid { padding: 0 16px; }
    .retail-ent-grid { grid-template-columns: 1fr; gap: 16px; }
    .retail-enterprise { padding: 60px 0; }
    .retail-stats-grid { grid-template-columns: 1fr 1fr; }
    .retail-hero-btns { flex-direction: column; }
    .retail-tab-btn { padding: 8px 18px; font-size: 13px; }
    .retail-api-channel-btns { gap: 6px; }
    .retail-api-ch-btn { padding: 7px 14px; font-size: 12px; }
    .retail-code-block { font-size: 11px; padding: 16px; }
}
