:root {
    --sd-black: #1E1D30;
    --sd-text: #1E1D30;
    --sd-border: #e9e9e9;
    --sd-lime: #E0F500;
    --sd-bg: #ffffff;
    --sd-purple: #DE54FE;
    --sd-primary-blue: #6455E2;
    --sd-prpl-gradient: linear-gradient(101.7deg, #DE54FE 0%, #9329F2 100%);
    --sd-transition: all 0.35s ease;
    --sd-dark-bg: #0C0121;
    --sd-new-green: #2BDEB0;
    --sd-text-color: rgba(255, 255, 255, 0.72);

    .pm-platform-sec {

        position: relative;
        overflow: hidden;

        padding: 120px 0 0;

        background:
            linear-gradient(180deg,
                #031B49 0%,
                #07255A 100%);
    }

    .pos-card-stack-deak a.pos-m-blue-grad-btn {
        width: fit-content;
        margin: auto;
        margin-bottom: 20px;
    }

    .abt-sec-full-img {
        height: 80vh;
        width: 100%;
    }

    .img-abt-sec {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .seg-bg {
        background-image: url(../images/seg-bg-blue.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    /* Base pill container */
    .pos-guide-sec .dual-btn {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        /* Clean modern font */
        font-weight: 500;
        font-size: 18px;
        border-radius: 50px;
        border: 2px solid var(--lime-green);
        background-color: transparent;
        overflow: hidden;
        transition: background-color 0.4s ease;
        position: relative;
    }

    /* Left Section: Text outline part */
    .pos-guide-sec .btn-text {
        color: var(--text-light);
        padding: 14px 28px;
        transition: color 0.4s ease;
    }

    /* Right Section: Filled call-to-action pill */
    .pos-guide-sec .btn-action {
        background-color: var(--lime-green);
        color: var(--title-color);
        padding: 14px 28px;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        /* Shifts slightly left to overlap cleanly over the container boundary */
        margin: -2px -2px -2px -10px;
        z-index: 2;
    }

    /* Download Arrow SVG styling */
    .pos-guide-sec .download-icon {
        width: 20px;
        height: 20px;
        stroke: #e65c40;
        /* Orange/coral color from original image */
    }

    /* --- HOVER EFFECT --- */
    /* Fills the remaining transparent outline section on hover */
    .pos-guide-sec .dual-btn:hover {
        background-color: var(--lime-green);
    }

    /* Flips the white text to dark text when the background fills up */
    .pos-guide-sec .dual-btn:hover .btn-text {
        color: var(--text-dark);
    }

    .hero-gradient {
        width: 100%;
        height: 100vh;
        background:
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 35%),
            radial-gradient(circle at bottom left, rgba(124, 95, 255, 0.55) 0%, rgba(124, 95, 255, 0) 35%),
            linear-gradient(135deg, #08d6c9 0%, #12d8cf 35%, #08cfd0 60%, #18d5c8 100%);
        overflow: hidden;
    }

    /* NEW STYLE */

    /* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 80px;
    position: relative;
    align-items: flex-start;
} */

    .sticky-section {
        flex: 1;
        position: sticky;
        top: 100px;
        align-self: flex-start;
        /* CRITICAL for sticky to work in flex container */
        height: max-content;
        /* Ensure it only takes needed height */
        padding-right: 20px;
    }

    .sticky-section h1 {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 40px;
        color: var(--sd-black);
    }

    .stats-container {
        display: flex;
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-card {
        background: var(--sd-bg);
        padding: 30px 25px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        border: 1px solid var(--sd-border);
        flex: 1;
        text-align: center;
    }

    .stat-card h2 {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 10px 0;
        color: var(--sd-black);
    }

    .stat-card p {
        font-size: 13px;
        color: var(--sd-text);
        margin: 0;
        line-height: 1.4;
    }

    .scroll-section {
        flex: 1.3;
    }

    .feature-list {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .feature-item {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .feature-image {
        background: rgba(222, 84, 254, 0.05);
        /* very light version of sd-purple */
        padding: 12px;
        border-radius: 20px;
        flex-shrink: 0;
        width: 250px;
    }

    .feature-image img {
        border-radius: 12px;
        display: block;
        width: 100%;
        height: 160px;
        object-fit: cover;
    }

    .feature-content {
        flex: 1;
    }

    .feature-content h3 {
        font-size: 22px;
        font-weight: 700;
        margin: 0 0 15px 0;
        color: var(--sd-black);
    }

    .feature-content p {
        font-size: 14px;
        color: var(--sd-text);
        line-height: 1.6;
        margin: 0 0 20px 0;
    }

    .see-how-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--sd-primary-blue);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
    }

    .play-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        background: var(--sd-primary-blue);
        color: var(--sd-bg);
        border-radius: 50%;
        font-size: 9px;
        padding-left: 1px;
    }

    .scroll-top-btn {
        position: fixed;
        bottom: 40px;
        left: 40px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--sd-bg);
        border: 1px solid var(--sd-border);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        cursor: pointer;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--sd-text);
        transition: var(--sd-transition);
        z-index: 100;
    }

    .scroll-top-btn:hover {
        background: var(--sd-primary-blue);
        color: var(--sd-bg);
    }

    /* Orbit Section */
    .orbit-section {
        padding: 100px 20px;
        background: var(--sd-bg);
        text-align: center;
        overflow: hidden;
    }

    .orbit-header h2 {
        font-size: 36px;
        font-weight: 500;
        color: var(--sd-black);
        max-width: 600px;
        margin: 0 auto 80px;
        line-height: 1.3;
    }

    .orbit-container-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .orbit-content-left,
    .orbit-content-right {
        display: flex;
        flex-direction: column;
        gap: 80px;
        flex: 1;
    }

    .orbit-text-block {
        text-align: center;
        max-width: 250px;
        margin: 0 auto;
    }

    .orbit-icon-circle {
        width: 32px;
        height: 32px;
        background: var(--sd-black);
        color: var(--sd-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 15px;
        font-size: 14px;
    }

    .orbit-text-block h4 {
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--sd-black);
        margin: 0 0 10px 0;
    }

    .orbit-text-block p {
        font-size: 14px;
        color: var(--sd-text);
        line-height: 1.6;
        margin: 0;
    }

    .orbit-center-area {
        position: relative;
        width: 500px;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .orbit-center-image {
        position: relative;
        z-index: 10;
        width: 350px;
    }

    .orbit-center-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Orbit Rings */
    .orbit-rings {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        pointer-events: none;
        /* Let clicks pass through if needed */
    }

    .orbit-ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform-origin: center center;
        border: 1px dashed var(--sd-border);
        border-radius: 50%;
        animation: rotateRing 20s linear infinite;
        /* initial transform handled by animation */
    }

    .ring-1 {
        width: 280px;
        height: 280px;
        margin-top: -140px;
        margin-left: -140px;
        animation-duration: 15s;
    }

    .ring-2 {
        width: 380px;
        height: 380px;
        margin-top: -190px;
        margin-left: -190px;
        animation-duration: 25s;
        animation-direction: reverse;
    }

    .ring-3 {
        width: 480px;
        height: 480px;
        margin-top: -240px;
        margin-left: -240px;
        animation-duration: 35s;
    }

    .orbit-item {
        position: absolute;
        top: -20px;
        left: 50%;
        margin-left: -20px;
        /* center horizontally on the path */
        width: 40px;
        height: 40px;
        background: var(--sd-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        color: var(--sd-primary-blue);
        font-size: 20px;
        animation: rotateRingReverse 20s linear infinite;
    }

    /* Match the reverse rotations to keep icon upright (gravity effect) */
    .ring-1 .orbit-item {
        animation-duration: 15s;
    }

    .ring-2 .orbit-item {
        animation-duration: 25s;
        animation-direction: reverse;
    }

    .ring-3 .orbit-item {
        animation-duration: 35s;
    }

    @keyframes rotateRing {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    @keyframes rotateRingReverse {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(-360deg);
        }
    }

    /* Problems Section */
    .problems-section {
        padding: 100px 20px;
        background: var(--sd-bg);
    }

    .problems-header h2 {
        font-size: 36px;
        font-weight: 500;
        color: var(--sd-black);
        text-align: center;
        margin-bottom: 60px;
    }

    .problems-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .problem-card {
        padding: 40px;
        border-radius: 16px;
        text-align: center;
    }

    .purple-card {
        background: color-mix(in srgb, var(--sd-purple) 25%, var(--sd-bg));
    }

    .cyan-card {
        background: color-mix(in srgb, var(--sd-new-green) 12%, var(--sd-bg));
    }

    .problem-icon {
        width: 36px;
        height: 36px;
        background: var(--sd-black);
        color: var(--sd-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 16px;
    }

    .problem-card h4 {
        font-size: 22px;
        font-weight: 500;
        color: var(--sd-black);
        margin: 0 0 15px 0;
    }

    .problem-card p {
        font-size: 14px;
        color: var(--sd-text);
        line-height: 1.6;
        margin: 0;
    }

    /* Pricing CTA Section */
    .pricing-cta-section {
        padding: 80px 20px;
        background: color-mix(in srgb, var(--sd-new-green) 20%, var(--sd-dark-bg, #0C0121));
    }

    .pricing-card {
        max-width: 900px;
        margin: 0 auto;
        background: color-mix(in srgb, var(--sd-lime) 15%, var(--sd-bg));
        border-radius: 24px;
        padding: 60px;
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .pricing-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .pricing-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .starting-at {
        font-size: 12px;
        color: var(--sd-text);
    }

    .pricing-price h3 {
        font-size: 80px;
        font-weight: 400;
        color: var(--sd-black);
        line-height: 1;
        margin: 5px 0;
        display: flex;
        align-items: flex-start;
    }

    .pricing-price .currency {
        font-size: 32px;
        margin-top: 10px;
        margin-right: 5px;
    }

    .tc-applied {
        font-size: 12px;
        color: var(--sd-text);
        margin-left: 40px;
    }

    .pricing-desc {
        flex: 1;
    }

    .pricing-desc p {
        font-size: 20px;
        color: var(--sd-black);
        line-height: 1.4;
        margin: 0;
    }

    .pricing-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    .pricing-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: color-mix(in srgb, var(--sd-new-green) 30%, var(--sd-black));
        color: var(--sd-bg);
        border-radius: 30px;
        font-size: 14px;
        font-weight: 500;
    }

    .pricing-action {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    /* User provided button CSS */
    .sd-faq-btn {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        padding: 10px 12px 10px 24px;
        border-radius: 100px;
        text-decoration: none;
        background: var(--sd-lime);
        color: var(--sd-black);
        font-size: 15px;
        font-weight: 700;
        transition: var(--sd-transition);
    }

    .sd-faq-btn-icon {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--sd-black);
        color: #fff;
        transition: var(--sd-transition);
    }

    .sd-faq-btn:hover {
        transform: translateY(-6px);
        color: var(--sd-black);
    }

    .sd-faq-btn:hover .sd-faq-btn-icon {
        transform: rotate(-20deg);
    }

    /* Cleaning Service Section */
    .cleaning-service-section {
        background: var(--sd-dark-bg);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .marquee-container {
        width: 80%;
        overflow: hidden;
        white-space: nowrap;
        margin: auto;
        margin-bottom: 60px;
        opacity: 0.1;
    }

    .marquee-text {
        display: inline-block;
        animation: marquee 20s linear infinite;
        font-size: 80px;
        font-weight: 600;
        color: #fff;
    }

    .marquee-text span {
        padding-right: 50px;
        color: #fff;
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .cleaning-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .cleaning-left {
        flex: 1;
    }

    .cleaning-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--sd-bg);
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 14px;
        margin-bottom: 30px;
    }

    .cleaning-image {
        width: 100%;
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 30px;
    }

    .cleaning-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .cleaning-left h2 {
        font-size: 42px;
        font-weight: 500;
        color: var(--sd-bg);
        line-height: 1.2;
    }

    .cleaning-right {
        flex: 1;
        max-width: 500px;
    }

    .cleaning-form-card {
        background: var(--sd-bg);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .form-title {
        font-size: 24px;
        font-weight: 500;
        color: var(--sd-primary-blue);
        margin: 0 0 30px 0;
        text-align: center;
    }

    .cleaning-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .form-control {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid var(--sd-border);
        border-radius: 30px;
        font-size: 15px;
        outline: none;
        box-sizing: border-box;
        font-family: inherit;
    }

    .form-row {
        display: flex;
        gap: 20px;
    }

    .form-group.half {
        flex: 1;
    }

    .form-note {
        font-size: 12px;
        color: var(--sd-text);
        text-align: center;
        margin: 10px 0 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    /* Floating Layers Section */
    .floating-layers-section {
        background: var(--sd-dark-bg);
        padding: 120px 20px;
        position: relative;
        overflow: hidden;
        color: var(--sd-bg);
    }

    .floating-layers-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 800px;
        height: 800px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        pointer-events: none;
    }

    .floating-layers-section::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1200px;
        height: 1200px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        pointer-events: none;
    }

    .floating-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        height: 600px;
        /* enough space for absolute positioning */
    }

    .floating-images {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 400px;
        z-index: 2;
    }

    .float-img {
        position: absolute;
        left: 0;
        width: 100%;
        animation: floatUp 4s ease-in-out infinite alternate;
    }

    .img-top {
        top: -40px;
        animation-delay: 0s;
        z-index: 9;
    }

    .img-mid {
        top: 130px;
        animation-delay: 1.5s;
        z-index: 2;
    }

    .img-bot {
        top: 300px;
        animation-delay: 3s;
    }

    @keyframes floatUp {
        0% {
            transform: translateY(0px);
        }

        100% {
            transform: translateY(-15px);
        }
    }

    .float-text {
        position: absolute;
        width: 250px;
        z-index: 3;
        display: flex;
        flex-direction: column;
    }

    .float-badge {
        display: inline-block;
        background: color-mix(in srgb, var(--sd-purple) 20%, var(--sd-bg));
        color: var(--sd-purple);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 15px;
        width: fit-content;
    }

    .float-text p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin: 0;
    }

    .text-top-left {
        top: 100px;
        left: 100px;
        align-items: flex-end;
        text-align: right;
    }

    .text-bottom-left {
        bottom: 0;
        left: 80px;
        align-items: flex-end;
        text-align: right;
    }

    .text-mid-right {
        top: 50%;
        right: 80px;
        transform: translateY(-50%);
        align-items: flex-start;
        text-align: left;
    }

    .pointer-line {
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
    }

    .line-top-left {
        width: 150px;
        height: 1px;
        top: 30px;
        right: -170px;
    }

    .line-bottom-left {
        width: 100px;
        height: 1px;
        top: 30px;
        right: -120px;
    }

    .line-mid-right {
        width: 120px;
        height: 1px;
        top: 30px;
        left: -140px;
    }

    /* Shared elements */
    .text-lime {
        color: var(--sd-lime);
    }

    .btn-demo {
        display: inline-flex;
        padding: 12px 30px;
        background: var(--sd-lime);
        color: var(--sd-black);
        text-decoration: none;
        border-radius: 30px;
        font-weight: 700;
        font-size: 15px;
        transition: var(--sd-transition);
        /* box-shadow: 0 4px 15px rgba(224, 245, 0, 0.2); */
    }

    .btn-demo:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(224, 245, 0, 0.4);
    }

    /* Multi Store Section */
    .multi-store-section {
        background: var(--sd-dark-bg);
        padding: 100px 20px;
        color: var(--sd-bg);
    }

    .multi-store-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 50px;
        background: var(--sd-dark-bg);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: 60px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .multi-store-left {
        flex: 1;
    }

    .multi-store-left h2 {
        font-size: 40px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 20px;
        color: var(--sd-bg);
    }

    .multi-store-left p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 30px;
        line-height: 1.6;
        max-width: 400px;
    }

    .multi-store-right {
        flex: 1.2;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dashboard-card {
        background: var(--sd-bg);
        border-radius: 12px;
        width: 220px;
        padding: 20px;
        color: var(--sd-black);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        transition: var(--sd-transition);
        position: relative;
        z-index: 2;
    }

    .dashboard-card:hover {
        transform: translateY(-5px);
    }

    .dash-dots {
        display: flex;
        gap: 6px;
        margin-bottom: 20px;
    }

    .dash-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #e0e0e0;
    }

    .dash-body {
        background: color-mix(in srgb, var(--sd-purple) 15%, var(--sd-bg));
        padding: 15px;
        border-radius: 8px;
    }

    .dash-title {
        font-size: 13px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .dash-item {
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .dash-item:last-child {
        margin-bottom: 0;
    }

    .dot-green {
        width: 8px;
        height: 8px;
        background: #2BDEB0;
        border-radius: 50%;
        display: inline-block;
    }

    .dot-yellow {
        width: 8px;
        height: 8px;
        background: #FFD166;
        border-radius: 50%;
        display: inline-block;
    }

    .dot-orange {
        width: 8px;
        height: 8px;
        background: #EF476F;
        border-radius: 50%;
        display: inline-block;
    }

    .connecting-lines {
        flex: 1;
        height: 250px;
        display: flex;
        align-items: center;
    }

    .connecting-lines svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .conn-line {
        fill: none;
        stroke: rgba(255, 255, 255, 0.15);
        stroke-width: 2;
    }

    .conn-glow {
        fill: none;
        stroke: var(--sd-lime);
        stroke-width: 2;
        stroke-dasharray: 40 400;
        filter: drop-shadow(0 0 5px var(--sd-lime));
        animation: flowLine 3s linear infinite;
    }

    .glow-1 {
        animation-delay: 0s;
    }

    .glow-2 {
        animation-delay: 1.5s;
    }

    .glow-3 {
        animation-delay: 0.8s;
    }

    @keyframes flowLine {
        0% {
            stroke-dashoffset: 400;
        }

        100% {
            stroke-dashoffset: 0;
        }
    }

    .store-cards {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 220px;
    }

    .store-card {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 12px;
        padding: 15px;
        transition: var(--sd-transition);
    }

    .store-card:hover {
        background: rgba(255, 255, 255, 0.05);
        transform: translateX(5px);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .store-name {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .store-status {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.6);
    }

    /* Infrastructure Section */
    .infra-section {
        background: var(--sd-dark-bg);
        padding: 100px 20px;
        color: var(--sd-bg);
    }

    .infra-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .infra-left {
        flex: 1;
    }

    .infra-left h2 {
        font-size: 42px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .infra-left p {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 35px;
        line-height: 1.6;
    }

    .infra-right {
        flex: 1.2;
    }

    .awards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }

    .award-item {
        text-align: center;
        transition: var(--sd-transition);
    }

    .award-item:hover {
        transform: translateY(-5px);
    }

    .award-icon {
        width: 60px;
        height: 60px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: rgba(255, 255, 255, 0.6);
        position: relative;
        transition: var(--sd-transition);
    }

    .award-item:hover .award-icon {
        border-color: var(--sd-lime);
        color: var(--sd-lime);
        box-shadow: 0 0 15px rgba(224, 245, 0, 0.2);
    }

    .award-icon::before,
    .award-icon::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
        transition: var(--sd-transition);
    }

    .award-icon::before {
        left: -15px;
        border-right: none;
    }

    .award-icon::after {
        right: -15px;
        border-left: none;
    }

    .award-item:hover .award-icon::before,
    .award-item:hover .award-icon::after {
        border-color: var(--sd-lime);
    }

    .award-item h5 {
        font-size: 16px;
        font-weight: 500;
        color: var(--sd-lime);
        margin: 0 0 10px 0;
    }

    .award-item p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        line-height: 1.4;
    }

    /* About Gravity Team Section */
    .gravity-team-section {
        background: var(--sd-dark-bg);
        padding: 100px 20px;
        color: #fff;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .gravity-team-section::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(102, 93, 205, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

    .gravity-team-section::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(95, 164, 230, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    .gravity-container {
        max-width: 1100px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .gravity-title {
        font-size: 48px;
        font-weight: 500;
        margin-bottom: 25px;
    }

    .gravity-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        border: 1px solid rgba(210, 171, 103, 0.3);
    }

    .stats-grid .stat-card {
        padding: 40px 20px;
        border: 1px solid rgba(210, 171, 103, 0.3);
        margin: -1px 0 0 -1px;
        transition: background 0.3s ease, transform 0.3s ease;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 180px;
        border-radius: 0;
        box-shadow: none;
        width: auto;
    }

    .stats-grid .stat-card:hover {
        background: linear-gradient(135deg, #665DCD 0%, #5FA4E6 44.76%, #D2AB67 100%);
        z-index: 2;
        transform: scale(1.02);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-color: transparent;
        border-radius: 4px;
    }

    .stats-grid .stat-card h3 {
        font-size: 28px;
        font-weight: 500;
        margin-bottom: 15px;
        color: #fff;
    }

    .stats-grid .stat-card p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.5;
        margin: 0;
    }

    .stats-grid .stat-card:hover p {
        color: #fff;
    }

    /* How We Work Section */
    :root {
        --sd-cyan-yellow-grad: linear-gradient(90deg, #1CE9B6 0%, #F6D365 100%);
        --sd-dark-teal-grad: linear-gradient(135deg, #0F2027 0%, #203A43 50%, #2C5364 100%);
    }

    .how-we-work-section {
        background: var(--sd-dark-teal-grad);
        padding: 100px 20px;
        color: #fff;
        text-align: center;
    }

    .work-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .work-title {
        font-size: 42px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .work-title .highlight {
        background: var(--sd-lime);
        color: var(--sd-black);
        padding: 0 10px;
        border-radius: 4px;
        display: inline-block;
    }

    .work-desc {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin-bottom: 70px;
    }

    .work-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .work-card {
        background: #FBFFFC;
        border-radius: 16px;
        padding: 50px 25px 35px;
        position: relative;
        color: var(--sd-black);
        transition: var(--sd-transition);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .work-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .work-step {
        width: 60px;
        height: 60px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 600;
        color: var(--sd-text);
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        transition: var(--sd-transition);
    }

    .work-card:hover .work-step {
        color: var(--sd-lime);
        transform: translateX(-50%) scale(1.1);
    }

    .work-card h3 {
        font-size: 22px;
        font-weight: 500;
        margin-bottom: 15px;
        color: var(--sd-primary-blue);
    }

    .work-card:hover h3 {
        color: var(--sd-new-green);
    }

    .work-card p {
        font-size: 14px;
        color: var(--sd-text);
        line-height: 1.6;
        margin: 0;
    }

    .work-btn-wrapper {
        text-align: center;
    }

    /* Contact Section */
    .contact-section {
        background: var(--sd-dark-bg);
        padding: 100px 20px;
        color: var(--sd-bg);
    }

    .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 60px;
        align-items: center;
    }

    .contact-left {
        flex: 1;
    }

    .contact-form-card {
        background: var(--sd-bg);
        border-radius: 20px;
        padding: 50px 40px;
        color: var(--sd-black);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        text-align: center;
    }

    .contact-form-card h2 {
        font-size: 32px;
        font-weight: 500;
        color: var(--sd-primary-blue);
        margin-bottom: 15px;
    }

    .form-desc {
        font-size: 14px;
        color: var(--sd-text);
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .get-in-touch-form {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .contact-input {
        width: 100%;
        border: none;
        border-bottom: 1px solid var(--sd-border);
        padding: 10px 0;
        font-size: 14px;
        color: var(--sd-black);
        outline: none;
        font-family: inherit;
        background: transparent;
        transition: var(--sd-transition);
    }

    .contact-input:focus {
        border-bottom-color: var(--sd-new-green);
    }

    .contact-input.textarea {
        resize: none;
        height: 60px;
    }

    .form-submit {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .contact-right {
        flex: 1.1;
    }

    .query-badge {
        font-size: 13px;
        font-weight: 600;
        color: var(--sd-bg);
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .contact-right h2 {
        font-size: 42px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .contact-desc {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .contact-buttons {
        display: flex;
        gap: 20px;
        margin-bottom: 50px;
    }

    .contact-info-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--sd-bg);
    }

    .info-text {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .info-label {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.6);
    }

    .info-value {
        font-size: 18px;
        font-weight: 600;
        color: var(--sd-bg);
    }

    @media (max-width: 1399px) {


        .pm-platform-top {

            margin-bottom: 90px;
        }

        /* TITLE */

        .pm-platform-top h2 {

            color: var(--sd-lime);

            font-size: 72px;
            line-height: 1.05;
            font-weight: 500;

            margin-bottom: 28px;
        }

        /* TEXT */

        .pm-platform-top p {

            color: rgba(255, 255, 255, 0.94);

            font-size: 24px;
            line-height: 1.55;

            max-width: 980px;

            margin-inline: auto;
            margin-bottom: 40px;
        }

        /* =========================================================
        BUTTONS
        ========================================================= */

        .pm-platform-btn-wrap {

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;

            flex-wrap: wrap;
        }

        .pm-platform-btn {

            min-width: 220px;
            min-height: 64px;

            border-radius: 10px;

            display: inline-flex;
            align-items: center;
            justify-content: center;

            text-decoration: none;

            font-size: 18px;
            font-weight: 500;

            transition: 0.35s ease;
        }

        /* PRIMARY */

        .pm-platform-btn-primary {

            background: var(--pm-lime);

            color: #082A63;
        }

        .pm-platform-btn-primary:hover {

            transform: translateY(-4px);

            color: #082A63;
        }

        /* OUTLINE */

        .pm-platform-btn-outline {

            border: 2px solid rgba(255, 255, 255, 0.9);

            color: #fff;
        }

        .pm-platform-btn-outline:hover {

            background: #fff;
            color: #082A63;
        }

        /* =========================================================
        CARD WRAP
        ========================================================= */

        .pm-platform-card-wrap {

            position: relative;
            z-index: 2;
        }

        /* =========================================================
        CARD
        ========================================================= */

        .pm-platform-card {

            position: relative;

            min-height: 520px;

            padding: 60px 42px;

            overflow: hidden;

            transition: 0.45s ease;
        }

        /* =====================================
        INDIVIDUAL CARD
        ===================================== */

        .pm-platform-card-purple {

            background: #D9CBFF;

            transform:
                rotate(-5deg) translateY(40px);

            z-index: 1;
        }

        .pm-platform-card-orange {

            background: #E47147;

            transform:
                rotate(0deg);

            z-index: 3;
        }

        .pm-platform-card-lime {

            background: var(--sd-lime);

            transform:
                rotate(5deg) translateY(25px);

            z-index: 2;
        }

        /* =========================================================
        PATTERN
        ========================================================= */

        .pm-card-pattern {

            position: absolute;

            right: -20px;
            bottom: -40px;

            width: 260px;
            height: 260px;

            opacity: 0.16;

            background:
                radial-gradient(circle at 0 100%, #fff 0 70px, transparent 72px),
                radial-gradient(circle at 100% 100%, #fff 0 70px, transparent 72px),
                radial-gradient(circle at 0 0, #fff 0 70px, transparent 72px),
                radial-gradient(circle at 100% 0, #fff 0 70px, transparent 72px);
        }

        /* =========================================================
        CONTENT
        ========================================================= */

        .pm-platform-card-content {

            position: relative;
            z-index: 2;
        }

        /* TITLE */

        .pm-platform-card-content h3 {

            font-size: 58px;
            line-height: 1;
            font-weight: 500;

            margin-bottom: 28px;
        }

        /* TEXT */

        .pm-platform-card-content p {

            font-size: 22px;
            line-height: 1.6;

            margin: 0;
        }

        /* =====================================
        TEXT COLORS
        ===================================== */

        .pm-platform-card-purple h3,
        .pm-platform-card-purple p {

            color: #1C3565;
        }

        .pm-platform-card-orange h3,
        .pm-platform-card-orange p {

            color: #ffffff;
        }

        .pm-platform-card-lime h3,
        .pm-platform-card-lime p {

            color: #173868;
        }

        /* =========================================================
        HOVER
        ========================================================= */

        .pm-platform-card:hover {

            transform:
                translateY(-18px) rotate(0deg);

            z-index: 10;

            box-shadow:
                0 40px 100px rgba(0, 0, 0, 0.25);
        }

        .pm-platform-top h2 {

            font-size: 62px;
        }

        .pm-platform-card-content h3 {

            font-size: 48px;
        }
    }

    @media (max-width: 1199px) {

        .pm-stat-sec {

            padding: 110px 0;

            background: #efefef;
        }

        .pm-stat-top {

            margin-bottom: 70px;
        }

        /* BADGE */

        .pm-stat-badge {

            display: inline-flex;
            align-items: center;
            justify-content: center;

            min-height: 34px;

            padding: 8px 16px;

            border-radius: 8px;

            background: #E7D9FF;

            color: #6937B8;

            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;

            margin-bottom: 22px;
        }

        /* TITLE */

        .pm-stat-title {

            color: var(--sd-black) !important;
            font-size: 72px;
            line-height: 1.08 !important;
            font-weight: 700 !important;
            letter-spacing: -2px !important;
            margin-bottom: 40px !important;

        }

        /* =========================================================
        CARD
        ========================================================= */

        .pm-stat-card {

            background: #ffffff;

            border-radius: 26px;

            min-height: 310px;

            padding: 50px 35px;

            text-align: center;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            transition: 0.4s ease;

            position: relative;

            overflow: hidden;
        }

        /* LARGE */

        .pm-stat-card-lg {

            min-height: 250px;
        }

        /* =========================================================
        ICON
        ========================================================= */

        .pm-stat-icon {

            width: 62px;
            height: 62px;

            border-radius: 50%;

            display: flex;
            align-items: center;
            justify-content: center;

            margin-bottom: 34px;

            font-size: 22px;
        }

        /* COLORS */

        .pm-stat-purple {

            background: #DCCBFF;
            color: #5731A9;
        }

        .pm-stat-lime {

            background: #DFFF3F;
            color: #1B3767;
        }

        .pm-stat-green {

            background: #014F5C;
            color: #ffffff;
        }

        .pm-stat-blue {

            background: #082A63;
            color: #ffffff;
        }

        .pm-stat-orange {

            background: #F57D49;
            color: #ffffff;
        }

        /* =========================================================
        TEXT
        ========================================================= */

        .pm-stat-card h3 {

            color: #04285E;

            font-size: 64px;
            line-height: 1;
            font-weight: 500;

            margin-bottom: 18px;
        }

        .pm-stat-card p {
            color: #1B3767;
            font-size: 1.2rem;
            line-height: 1.6;
            max-width: 390px;
            margin: 0 auto;
            font-weight: 500 !important;
        }

        /* =========================================================
        HOVER
        ========================================================= */

        .pm-stat-card:hover {

            transform: translateY(-10px);

            box-shadow:
                0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .pm-stat-card:hover .pm-stat-icon {

            transform: scale(1.08) rotate(6deg);
        }

        .pm-stat-icon {

            transition: 0.4s ease;
        }

        /* =========================================================
        RESPONSIVE
        ========================================================= */
        .pm-stat-title {

            font-size: 50px;
        }

        .pm-platform-top h2 {

            font-size: 54px;
        }

        .pm-platform-top p {

            font-size: 20px;
        }

        .pm-platform-card {

            min-height: 460px;

            padding: 50px 34px;
        }

        .pm-platform-card-content h3 {

            font-size: 42px;
        }

        .pm-platform-card-content p {

            font-size: 18px;
        }
    }

    @media (max-width: 992px) {
        .sticky-section {
            position: static;
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .sd-testimonial-btn {
            margin: auto;
            width: fit-content;
        }

        .sd-phone-store-btns {
            flex-direction: row !important;
            display: flex !important;
            gap: 10px !important;
        }

        .feature-item {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .feature-image {
            width: 100%;
            max-width: 400px;
        }

        .orbit-container-wrapper {
            flex-direction: column;
        }

        .orbit-content-left,
        .orbit-content-right {
            gap: 40px;
        }

        .orbit-center-area {
            width: 100%;
            max-width: 400px;
            height: 400px;
            margin: 40px 0;
        }

        .orbit-center-image {
            width: 250px;
        }

        .ring-3 {
            width: 340px;
            height: 340px;
            margin-top: -170px;
            margin-left: -170px;
        }

        .ring-2 {
            width: 260px;
            height: 260px;
            margin-top: -130px;
            margin-left: -130px;
        }

        .ring-1 {
            width: 180px;
            height: 180px;
            margin-top: -90px;
            margin-left: -90px;
        }

        .problems-grid {
            grid-template-columns: 1fr;
        }

        .pricing-top {
            flex-direction: column;
            align-items: flex-start;
        }

        .pricing-card {
            padding: 40px 20px;
        }

        .cleaning-container {
            flex-direction: column;
        }

        .cleaning-right {
            max-width: 100%;
            width: 100%;
        }

        .floating-container {
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 60px;
        }

        .floating-images {
            position: relative;
            transform: none;
            top: 0;
            left: 0;
            margin-bottom: 40px;
        }

        .float-text {
            position: relative;
            top: 0 !important;
            left: 0 !important;
            right: 0 !important;
            bottom: 0 !important;
            transform: none !important;
            text-align: center !important;
            align-items: center !important;
            width: 100%;
            max-width: 400px;
        }

        .pointer-line {
            display: none;
        }

        .multi-store-container,
        .infra-container {
            flex-direction: column;
            padding: 40px 20px;
        }

        .multi-store-right {
            flex-direction: column;
            gap: 30px;
        }

        .connecting-lines {
            transform: rotate(90deg);
            height: 100px;
        }

        .awards-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .mastermind-bottom {
            flex-direction: column;
            align-items: center;
            gap: 40px;
            text-align: center;
        }

        .mastermind-schedule {
            flex-direction: column;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .work-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 50px 30px;
            margin-top: 50px;
        }

        .contact-container {
            flex-direction: column;
        }

        .contact-buttons {
            flex-wrap: wrap;
        }


        /* =========================================================
       POS GROWTH CTA SECTION
    ========================================================= */

        .pos-cta-growth-section {
            background-color: var(--sd-growth-bg-dark);
            background-image: radial-gradient(circle at 55% 45%, rgba(20, 110, 75, 0.45), transparent 60%), linear-gradient(180deg, rgba(3, 20, 14, 0.95), rgba(7, 30, 22, 0.92)), url('../images/cta-bg.png');
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            padding: 90px 20px;
            color: #ffffff;
            position: relative;
            width: 100%;
        }

        .pos-cta-growth-container {
            max-width: 1240px;
            margin: 0 auto;
            width: 100%;
        }

        /* Header */
        .pos-cta-header {
            text-align: center;
            max-width: 820px;
            margin: 0 auto 45px;
        }

        .pos-cta-title {
            font-size: 46px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            line-height: 1.15;
        }

        .pos-cta-subtitle {
            font-size: 17px;
            line-height: 1.6;
            color: var(--sd-growth-text-muted);
            margin-bottom: 28px;
            font-weight: 400;
        }

        /* Checklist */
        .pos-cta-features {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 28px;
        }

        .pos-cta-feature-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 500;
            color: #ffffff;
        }

        .pos-cta-check-icon {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pos-cta-check-icon svg {
            stroke: #08281d;
        }

        /* Cards Grid */
        .pos-cta-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 45px;
        }

        .pos-cta-card {
            background: var(--sd-growth-card-bg);
            border: 1px solid var(--sd-growth-card-border);
            border-radius: 14px;
            padding: 24px 22px;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: var(--sd-transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            text-decoration: none;
            cursor: pointer;
        }

        .pos-cta-card:hover {
            background: var(--sd-growth-card-hover-bg);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
        }

        .pos-cta-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }

        .pos-cta-card-title {
            font-size: 17px;
            font-weight: 600;
            color: #ffffff;
            margin: 0;
        }

        .pos-cta-card-arrow {
            font-size: 18px;
            color: #ffffff;
            transition: transform 0.25s ease;
        }

        .pos-cta-card:hover .pos-cta-card-arrow {
            transform: translateX(4px);
        }

        .pos-cta-card-text {
            font-size: 14px;
            line-height: 1.5;
            color: var(--sd-growth-text-muted);
            margin: 0;
        }

        /* Bottom Search & Domain Section */
        .pos-cta-bottom {
            margin-top: 10px;
        }

        .pos-cta-bottom-note {
            font-size: 14px;
            color: var(--sd-growth-text-muted);
            margin-bottom: 16px;
            font-weight: 400;
        }

        .pos-cta-action-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .pos-cta-search-box {
            display: flex;
            align-items: center;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 12px;
            padding: 6px 6px 6px 18px;
            flex: 1;
            min-width: 320px;
            max-width: 480px;
            transition: var(--sd-transition);
        }

        .pos-cta-search-box:focus-within {
            border-color: rgba(255, 255, 255, 0.4);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
        }

        .pos-cta-search-input {
            background: transparent;
            border: none;
            outline: none;
            color: #ffffff;
            font-size: 15px;
            width: 100%;
        }

        .pos-cta-search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .pos-cta-search-btn {
            background: #ffffff;
            color: #0b1f17;
            border: none;
            border-radius: 8px;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--sd-transition);
            white-space: nowrap;
        }

        .pos-cta-search-btn:hover {
            background: #e2e8f0;
            transform: scale(1.02);
        }

        /* Domain Chips */
        .pos-cta-domains-list {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .pos-cta-domain-chip {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .pos-cta-domain-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
        }

        .badge-com {
            background: #0066cc;
            color: #ffffff;
        }

        .badge-org {
            background: #1b4980;
            color: #ffffff;
        }

        .badge-online {
            background: #ffffff;
            color: #111111;
        }

        .pos-cta-domain-price {
            display: flex;
            flex-direction: column;
        }

        .pos-cta-domain-price .price-val {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.1;
        }

        .pos-cta-domain-price .price-sub {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.1;
        }

        /* Responsive Media Queries */
        .pos-cta-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .pos-cta-title {
            font-size: 36px;
        }

        .pos-cta-action-row {
            flex-direction: column;
            align-items: flex-start;
        }

        .pos-cta-search-box {
            max-width: 100%;
            width: 100%;
        }


        /* =========================================================
       USECASE TAB SYSTEM STYLES
    ========================================================= */

        .usecase-section {
            padding: 100px 20px;
            background-color: var(--sd-bg);
            color: var(--sd-black);
            width: 100%;
        }

        .usecase-container {
            max-width: 1240px;
            margin: 0 auto;
            width: 100%;
        }

        /* Header */
        .usecase-header {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 50px;
        }

        .usecase-main-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--sd-black);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .usecase-main-desc {
            font-size: 16px;
            line-height: 1.6;
            color: var(--sd-text);
            opacity: 0.8;
            margin-bottom: 36px;
        }

        /* Tab Navigation Pill Bar */
        .usecase-tab-nav {
            display: inline-flex;
            align-items: center;
            background: #f2f4f6;
            padding: 6px;
            border-radius: 40px;
            gap: 6px;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
        }

        .usecase-tab-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: 30px;
            border: none;
            background: transparent;
            color: var(--sd-text);
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--sd-transition);
            outline: none;
        }

        .usecase-tab-btn i {
            font-size: 14px;
            transition: transform 0.25s ease;
        }

        .usecase-tab-btn:hover {
            color: var(--sd-black);
            background: rgba(0, 0, 0, 0.04);
        }

        .usecase-tab-btn:hover i {
            transform: scale(1.15);
        }

        .usecase-tab-btn.active {
            background: var(--sd-growth-bg-dark);
            color: #ffffff;
            box-shadow: 0 4px 14px rgba(5, 26, 20, 0.25);
        }

        .usecase-tab-btn.active i {
            color: var(--sd-new-green);
        }

        /* Tab Panels Container Wrapper */
        .usecase-tab-wrapper {
            position: relative;
            overflow: hidden;
            min-height: 520px;
            width: 100%;
        }

        .usecase-tab-panel {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, visibility 0.5s ease;
        }

        .usecase-tab-panel.active {
            position: relative;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateX(0);
        }

        .usecase-tab-panel.swipe-left-exit {
            transform: translateX(-100%);
            opacity: 0;
        }

        .usecase-tab-panel.swipe-right-exit {
            transform: translateX(100%);
            opacity: 0;
        }

        /* 4 Card Grid Layout */
        .usecase-card-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .usecase-card {
            background: linear-gradient(135deg, var(--sd-growth-bg-dark) 0%, #0d2a20 100%);
            border: 1px solid var(--sd-growth-card-border);
            border-radius: 20px;
            padding: 28px;
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            gap: 20px;
            color: #ffffff;
            overflow: hidden;
            position: relative;
            transition: var(--sd-transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .usecase-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(43, 222, 176, 0.15) 0%, transparent 70%);
            pointer-events: none;
            transition: var(--sd-transition);
        }

        .usecase-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(5, 26, 20, 0.22);
            border-color: rgba(43, 222, 176, 0.4);
        }

        .usecase-card:hover::before {
            background: radial-gradient(circle, rgba(43, 222, 176, 0.3) 0%, transparent 70%);
        }

        .usecase-card-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 2;
        }

        .usecase-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--sd-new-green);
            margin-bottom: 16px;
        }

        .usecase-badge i {
            font-size: 14px;
        }

        /* Reusable Read More Class */
        .readmore {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            text-decoration: none;
            transition: var(--sd-transition);
            margin-top: 18px;
            cursor: pointer;
        }

        .readmore span {
            color: #ffffff;
            transition: color 0.25s ease;
        }

        .readmore .readmore-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            transition: all 0.3s ease;
        }

        .readmore:hover {
            color: var(--sd-new-green);
            text-decoration: none;
        }

        .readmore:hover span {
            color: var(--sd-new-green);
        }

        .readmore:hover .readmore-icon {
            background: var(--sd-new-green);
            color: #051a14;
            transform: translateX(4px);
        }

        .usecase-card-heading {
            font-size: 24px;
            font-weight: 500;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.25;

            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .usecase-card-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--sd-growth-text-muted);
            margin: 0;

            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .usecase-card-preview {
            width: 200px;
            height: 150px;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            align-self: center;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            z-index: 2;
        }

        .usecase-card-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .usecase-card:hover .usecase-card-preview img {
            transform: scale(1.06);
        }

        /* Responsive Styles */
        .usecase-card-grid {
            grid-template-columns: 1fr;
        }

        .usecase-main-title {
            font-size: 32px;
        }

        .usecase-tab-nav {
            flex-wrap: wrap;
            justify-content: center;
        }


        /* =========================================================
       SUPPORT SECTION (surveydu.com / posm-style.css)
    ========================================================= */
        .sd-support-section {
            padding: 100px 0;
            background: url(../images/cta-grad.png);
            color: #ffffff;
            position: relative;
            overflow: hidden;
            background-repeat: no-repeat;
            background-size: cover;
            background-position: left;
        }

        .sd-support-header {
            max-width: 720px;
        }

        .sd-support-kicker {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--sd-new-green);
            margin-bottom: 16px;
        }

        .sd-support-title {
            font-size: 42px;
            font-weight: 700;
            color: #ffffff;
            line-height: 1.25;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .sd-support-desc {
            font-size: 16px;
            line-height: 1.65;
            color: var(--sd-growth-text-muted);
            margin: 0 auto;
        }

        /* Stat Items */
        .sd-support-stat-item {
            padding: 20px;
            transition: var(--sd-transition);
            border-radius: 16px;
        }

        .sd-support-stat-item:hover {
            transform: translateY(-4px);
        }

        .sd-stat-number {
            font-size: 54px;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 14px;
            letter-spacing: -0.03em;
        }

        .sd-stat-heading {
            font-size: 17px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
        }

        .sd-stat-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--sd-growth-text-muted);
            margin-bottom: 8px;
        }

        .sd-stat-caption {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.45);
            display: block;
        }

        /* 4 Feature Cards */
        .sd-support-card {
            background: var(--sd-growth-card-bg);
            border: 1px solid var(--sd-growth-card-border);
            border-radius: 18px;
            padding: 30px 24px;
            height: 100%;
            transition: var(--sd-transition);
            position: relative;
            overflow: hidden;
        }

        .sd-support-card:hover {
            transform: translateY(-6px);
            border-color: transparent;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35), 0 0 20px rgba(43, 222, 176, 0.15);
            background: #fff;
        }

        .sd-support-card:hover h3 {
            color: var(--sd-primary-blue);
        }

        .sd-support-card:hover p {
            color: var(--sd-text);
        }

        .sd-support-icon-badge {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: var(--sd-primary-blue);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 22px;
            transition: var(--sd-transition);
        }

        .sd-support-card:hover .sd-support-icon-badge {
            transform: scale(1.1);
            /* box-shadow: 0 0 15px var(--sd-new-green); */
        }

        .sd-support-card-title {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .sd-support-card-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--sd-growth-text-muted);
            margin: 0;
        }

        /* Responsive Adjustments */
        .sd-support-title {
            font-size: 34px;
        }

        .sd-stat-number {
            font-size: 42px;
        }
    }

    /* Posmitro CSS */


    .pm-floating-arch-section {
        background: radial-gradient(circle at center, rgb(4 24 154 / 66%), transparent 45%), linear-gradient(180deg, #082257 0%, #071b44 100%);
        padding: 130px 0;
        min-height: 950px;
    }

    /* =========================================================
        BG CIRCLES
        ========================================================= */

    .pm-circle {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .05);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .pm-circle-one {
        width: 700px;
        height: 700px;
    }

    .pm-circle-two {
        width: 950px;
        height: 950px;
    }

    .pm-circle-three {
        width: 1200px;
        height: 1200px;
    }

    /* =========================================================
        STACK
        ========================================================= */

    .pm-stack-wrapper {
        position: relative;
        width: 100%;
        max-width: 420px;
        height: 720px;
        margin: auto;
    }

    /* =========================================================
        FLOAT CARDS
        ========================================================= */

    .pm-float-card {
        position: absolute;
        width: 320px;
        height: 190px;
        left: 10%;
        transform-style: preserve-3d;
    }

    .pm-card-inner {
        width: 100%;
        height: 100%;
        border-radius: 28px;
        position: relative;
        overflow: hidden;
    }

    /* =========================================================
        TOP CARD
        ========================================================= */

    .pm-card-top {
        z-index: 99;
        top: 60px;
        /* transform: translateX(-50%) rotateX(58deg) rotateZ(-18deg); */
        /* animation: pmFloatTop 5s ease-in-out infinite; */
    }

    .pm-card-top .pm-card-inner {
        background:
            linear-gradient(180deg, #0c245c 0%, #081735 100%);
        border: 1px solid rgba(255, 255, 255, .04);
        box-shadow:
            0 35px 70px rgba(0, 0, 0, .45),
            inset 0 -5px 0 rgba(255, 255, 255, .06);
    }

    /* =========================================================
        MIDDLE CARD
        ========================================================= */

    .pm-card-middle {
        top: 240px;
        z-index: 5;
        /* transform:translateX(-50%) rotateX(58deg) rotateZ(-18deg); */
        /* animation: pmFloatMiddle 5s ease-in-out infinite; */
    }

    .pm-card-middle-inner {
        background:
            linear-gradient(135deg, #6d32ff 0%, #b882ff 100%);
        box-shadow:
            0 35px 80px rgba(124, 88, 255, .45),
            inset 0 -6px 0 rgba(255, 255, 255, .2);
    }

    /* =========================================================
        BOTTOM CARD
        ========================================================= */

    .pm-card-bottom {
        z-index: 4;
        bottom: 110px;
        /* transform: translateX(-50%) rotateX(58deg) rotateZ(-18deg); */
        /* animation: pmFloatBottom 5s ease-in-out infinite; */
    }

    .pm-card-bottom .pm-card-inner {
        background:
            linear-gradient(180deg, #0c245c 0%, #081735 100%);
        border: 1px solid rgba(255, 255, 255, .04);
        box-shadow:
            0 35px 70px rgba(0, 0, 0, .45),
            inset 0 -5px 0 rgba(255, 255, 255, .06);
    }

    /* =========================================================
        ICONS
        ========================================================= */

    .pm-api-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pm-api-icon i {
        font-size: 58px;
        color: var(--pm-primary);
    }

    .pm-brain-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pm-brain-icon i {
        font-size: 80px;
        color: rgba(255, 255, 255, .85);
    }

    .pm-server-list {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 18px;
        padding: 0 60px;
    }

    .pm-server-row {
        height: 18px;
        border-radius: 50px;
        border: 2px solid var(--pm-primary);
        position: relative;
    }

    .pm-server-row::after {
        content: "";
        position: absolute;
        width: 70px;
        height: 6px;
        border-radius: 50px;
        background: var(--pm-primary);
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* =========================================================
        CONNECTION LINES
        ========================================================= */

    .pm-connection-lines span {
        position: absolute;
        width: 90px;
        height: 2px;
        background: var(--pm-primary);
    }

    .pm-connection-lines span::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        background: var(--pm-primary);
        border-radius: 50%;
        right: -4px;
        top: -4px;
    }

    .pm-connection-lines span:nth-child(1) {
        top: 65px;
        left: 55px;
        transform: rotate(25deg);
    }

    .pm-connection-lines span:nth-child(2) {
        top: 95px;
        right: 55px;
        transform: rotate(-25deg);
    }

    .pm-connection-lines span:nth-child(3) {
        bottom: 58px;
        left: 50%;
        width: 80px;
        transform: translateX(-50%) rotate(90deg);
    }

    /* =========================================================
        CONTENT BOXES
        ========================================================= */

    .pm-content-box {
        position: absolute;
        width: 320px;
    }

    .pm-badge {
        display: inline-flex;
        align-items: center;
        padding: 12px 24px;
        border-radius: 100px;
        background: #d8b9ff;
        color: #0b2454;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 18px;
    }

    .pm-content-box p {
        color: #fff;
        opacity: .9;
        font-size: 22px;
        line-height: 1.6;
        font-weight: 400;
    }

    .pm-line {
        position: absolute;
        width: 130px;
        height: 2px;
        background: rgba(255, 255, 255, .7);
    }

    .pm-line::after {
        content: "";
        position: absolute;
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, .9);
        right: -4px;
        top: -4px;
    }

    /* =========================================================
        POSITION
        ========================================================= */

    .pm-left-top {
        left: 0;
        top: 80px;
        text-align: right;
    }

    .pm-left-top .pm-line {
        right: -150px;
        top: 66px;
    }

    .pm-right-center {
        right: 0;
        top: 340px;
    }

    .pm-right-center .pm-line {
        left: -150px;
        top: 66px;
    }

    .pm-left-bottom {
        left: 20px;
        bottom: 80px;
        text-align: right;
    }

    .pm-left-bottom .pm-line {
        right: -150px;
        top: 66px;
    }

    /* =========================================================
        FLOAT ANIMATION
        ========================================================= */

    @keyframes pmFloatTop {

        0% {
            transform:
                translateX(-50%) translateY(0px) rotateX(58deg) rotateZ(-18deg);
        }

        50% {
            transform:
                translateX(-50%) translateY(-18px) rotateX(58deg) rotateZ(-18deg);
        }

        100% {
            transform:
                translateX(-50%) translateY(0px) rotateX(58deg) rotateZ(-18deg);
        }

    }

    @keyframes pmFloatMiddle {

        0% {
            transform:
                translateX(-50%) translateY(0px) rotateX(58deg) rotateZ(-18deg);
        }

        50% {
            transform:
                translateX(-50%) translateY(18px) rotateX(58deg) rotateZ(-18deg);
        }

        100% {
            transform:
                translateX(-50%) translateY(0px) rotateX(58deg) rotateZ(-18deg);
        }

    }

    @keyframes pmFloatBottom {

        0% {
            transform:
                translateX(-50%) translateY(0px) rotateX(58deg) rotateZ(-18deg);
        }

        50% {
            transform:
                translateX(-50%) translateY(-14px) rotateX(58deg) rotateZ(-18deg);
        }

        100% {
            transform:
                translateX(-50%) translateY(0px) rotateX(58deg) rotateZ(-18deg);
        }

    }


    /* =========================================================
        RESPONSIVE
        ========================================================= */
    .pm-floating-arch-section {
        padding: 100px 0;
        min-height: auto;
    }

    .pm-content-box {
        position: relative;
        width: 100%;
        max-width: 100%;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        text-align: center !important;
        margin-top: 40px;
    }

    .pm-line {
        display: none;
    }

    .pm-stack-wrapper {
        transform: scale(.82);
    }

    .pm-stat-sec {

        padding: 90px 0;
    }

    .pm-stat-title {

        font-size: 42px;
    }

    .pm-stat-card h3 {

        font-size: 52px;
    }

    .pm-platform-sec {

        padding: 90px 0 60px;
    }

    .pm-platform-top {

        margin-bottom: 70px;
    }

    .pm-platform-top h2 {

        font-size: 46px;
    }

    .pm-platform-top p {

        font-size: 18px;
    }

    .pm-platform-card {

        min-height: auto;

        transform: none !important;

        margin-bottom: 30px;
    }

    .pm-platform-card:hover {

        transform: translateY(-10px) !important;
    }


    /* =========================================================
           SECTION
        =====================================================   */

    .pos-card-stack-deak {
        position: relative;
        padding: 120px 0;
        background: #f5f3ea;
    }


    /* =========================================================
            STACK CARD
            ========================================================= */

    .pos-stack-card {
        position: sticky;
        top: 80px;

        height: 88vh;

        margin-bottom: 40px;

        border-radius: 32px;

        overflow: hidden;

        background: #00533f;

        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.12);
    }

    /* STACK EFFECT */
    .pos-stack-card:nth-child(1) {
        top: 80px;
        background: var(--sd-dark-bg);
    }

    /* =========================================================
        CARD 1
        ========================================================= */

    .pos-stack-card:nth-child(1) .pos-stack-title,
    .pos-stack-card:nth-child(1) .pos-stack-subtitle,
    .pos-stack-card:nth-child(1) .pos-stack-text,
    .pos-stack-card:nth-child(1) .pos-stack-stats {
        color: var(--title-color) !important;
    }


    /* =========================================================
        CARD 2
        ========================================================= */

    .pos-stack-card:nth-child(2) .pos-stack-title,
    .pos-stack-card:nth-child(2) .pos-stack-subtitle,
    .pos-stack-card:nth-child(2) .pos-stack-text,
    .pos-stack-card:nth-child(2) .pos-stack-stats {
        color: #fff !important;
    }


    /* =========================================================
        CARD 3
        ========================================================= */

    .pos-stack-card:nth-child(3) .pos-stack-title,
    .pos-stack-card:nth-child(3) .pos-stack-subtitle,
    .pos-stack-card:nth-child(3) .pos-stack-text,
    .pos-stack-card:nth-child(3) .pos-stack-stats {
        color: var(--title-color) !important;
    }


    /* =========================================================
        CARD 4
        ========================================================= */

    .pos-stack-card:nth-child(4) .pos-stack-title,
    .pos-stack-card:nth-child(4) .pos-stack-subtitle,
    .pos-stack-card:nth-child(4) .pos-stack-text,
    .pos-stack-card:nth-child(4) .pos-stack-stats {
        color: #fff !important;
    }

    .pos-stack-card:nth-child(2) {
        top: 110px;
        background: var(--sd-dark-bg);
    }

    .pos-stack-card:nth-child(3) {
        top: 140px;
        background: var(--sd-dark-bg);
    }

    .pos-stack-card:nth-child(4) {
        top: 170px;
        background: var(--sd-dark-bg);
    }


    /* =========================================================
           CONTENT
        =====================================================   */

    .pos-stack-content {
        height: 100%;
        padding: 80px 70px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
        text-align: center;
        padding-top: 20px;
    }

    .pos-stack-title {
        font-size: 62px;
        line-height: 1.1;
        font-weight: 500;

        margin-bottom: 40px;
    }

    .pos-stack-btn {
        width: fit-content;

        height: 62px;

        padding: 0 24px;

        border-radius: 60px;

        background: #d9f05d;

        display: inline-flex;
        align-items: center;
        gap: 14px;

        margin: 0 auto 50px;

        font-size: 18px;
        font-weight: 500;

        color: #1a1a1a;

        text-decoration: none;

        transition: 0.35s ease;
    }

    .pos-stack-btn span {
        width: 36px;
        height: 36px;

        border-radius: 50%;

        background: rgba(0, 0, 0, 0.12);

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pos-stack-btn:hover {
        transform: translateY(-4px);
        color: #111;
    }

    .pos-stack-subtitle {
        font-size: 38px;
        line-height: 1.2;

        margin-bottom: 24px;
    }

    .pos-stack-text {
        max-width: 520px;

        margin: 0 auto 36px;

        font-size: 24px;
        line-height: 1.7;

        color: rgba(255, 255, 255, 0.88);
    }

    .pos-stack-stats {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 28px;

        font-size: 20px;
        font-weight: 600;
    }


    /* =========================================================
           IMAGE
        =====================================================   */

    .pos-stack-image {
        height: 100vh;
    }

    .pos-stack-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }


    /* =========================================================
           TABLET
        =====================================================   */
    .pos-stack-card {
        height: auto;
        position: relative;
        top: 0 !important;
    }

    .pos-stack-content {
        padding: 60px 40px;
    }

    .pos-stack-title {
        font-size: 46px;
    }

    .pos-stack-subtitle {
        font-size: 30px;
    }

    .pos-stack-text {
        font-size: 20px;
    }

    .pos-stack-image {
        height: 450px;
    }


    /* hero top main */

    .gen-ai-section {
        background: url(../images/ftr-wrpr-bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-color: #000;
    }

    .character-image img {
        height: 400px;
        width: auto;
        position: absolute;
    }

    /* =========================
               GRID BACKGROUND
            ========================== */
    .gen-ai-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(var(--grid) 1px, transparent 1px),
            linear-gradient(90deg, var(--grid) 1px, transparent 1px);
        background-size: 50px 50px;
        opacity: .7;
        z-index: 1;
        display: none;
    }

    /* =========================
               GREEN GLOW CIRCLE
            ========================== */
    .green-glow {
        position: absolute;
        width: 100vw;
        height: 1600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(227, 250, 255, 1) 0%,
                /* Bright, near-white light core (#E3FAFF) */
                rgba(56, 189, 248, 0.95) 20%,
                /* Vibrant neon cyan glow (#38BDF8) */
                rgba(30, 57, 102, 0.75) 45%,
                /* Your mid-tone blue (#1E3966) */
                rgba(2, 9, 28, 0.4) 65%,
                /* Your deep background blue (#02091C) */
                rgba(2, 9, 28, 0) 80%
                /* Smooth fade out to transparent */
            );
        top: -1000px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        filter: blur(8px);
    }

    .content-wrap {
        position: relative;
        z-index: 5;
        text-align: center;
    }

    /* =========================
               TOP BADGES
            ========================== */
    .mini-badge {
        display: inline-block;
        background: #fff;
        color: #000;
        font-size: 1rem;
        font-weight: 500;
        padding: 12px 28px;
        border-radius: 2px;
        margin-bottom: 8px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .mini-badge-dark {
        display: none;
        background: #101010;
        color: #fff;
        font-size: 14px;
        padding: 8px 18px;
        border-radius: 6px;
        margin-bottom: 40px;
    }

    /* =========================
               LOGO
            ========================== */
    .brand-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 30px;
    }

    .dot-grid {
        display: grid;
        grid-template-columns: repeat(3, 14px);
        gap: 7px;
    }

    .dot-grid span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #fff;
    }

    .dot-grid span.fill {
        background: var(--green);
        border-color: var(--green);
    }

    .brand-logo h2 {
        color: #fff;
        font-size: 56px;
        font-weight: 300;
        margin: 0;
        margin-top: 30px;
    }

    /* =========================
               MAIN TITLE
            ========================== */
    .hero-title {
        color: #fff !important;
        font-size: 60px !important;
        line-height: 1.15;
        font-weight: 700;
        letter-spacing: -2px;
        margin-bottom: 70px;
    }

    .hero-desc {
        color: #fff;
        font-size: 20px;
        line-height: 1.5;
        max-width: 760px;
        margin: auto;
        font-weight: 400;
    }

    /* =========================
               SPEAKER CARD
            ========================== */
    .speaker-card {
        height: auto;
        width: 70vw;
        margin: 50px auto 35px;
        background: linear-gradient(to bottom, #111, #000);
        border-radius: 18px;
        overflow: hidden;
        /* padding-top: 20px; */
        box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
        position: relative;
    }

    .speaker-card img {
        /* width:100%; */
        /* display:block; */
        position: relative;
    }

    .speaker-card {
        position: relative;
        width: 100%;
        overflow: visible;
    }

    .char-image-sec {
        position: absolute !important;
        bottom: 0;
        right: 46px;
    }

    .main-img-wrpr {
        height: 500px;
        width: 80%;
        border-radius: 20px;
        overflow: hidden;
        margin: auto;
    }

    .main-img-wrpr img {
        width: 100%;
        display: block;
    }

    .character-image {
        position: absolute;
        right: 30px;
        bottom: -10px;
        /* overlap amount */
        z-index: 10;
        pointer-events: none;
    }

    .character-image img {
        display: block;
        width: 260px;
        /* Adjust as needed */
        height: auto;
    }

    /* =========================
               DATE BOX
            ========================== */
    .date-wrap {
        display: flex;
        justify-content: center;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .date-box {
        border: 1px solid rgba(255, 255, 255, .25);
        color: #fff;
        padding: 20px 26px;
        border-radius: 10px;
        font-size: 20px;
        min-width: 420px;
        background: rgba(0, 0, 0, .25);
        backdrop-filter: blur(6px);
    }

    /* =========================
               CTA BUTTON
            ========================== */
    .register-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background: linear-gradient(90deg, #e6ffb2 0%, var(--green) 100%);
        color: #000;
        font-weight: 500;
        font-size: 24px;
        padding: 22px 42px;
        border-radius: 16px;
        margin-top: 38px;
        text-decoration: none;
        transition: .4s ease;
        box-shadow: 0 12px 40px rgba(200, 255, 56, .15);
    }

    .register-btn:hover {
        transform: translateY(-5px) scale(1.02);
        color: #000;
        box-shadow: 0 20px 50px rgba(200, 255, 56, .35);
    }

    .register-btn del {
        opacity: .8;
        font-size: 20px;
    }

    /* =========================
               FOOT INFO
            ========================== */
    .bottom-info {
        margin-top: 55px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 80px;
        flex-wrap: wrap;
    }

    .seat-text {
        color: #fff;
        font-size: 18px;
        margin-bottom: 14px;
        text-align: left;
    }

    .seat-icons {
        display: flex;
        gap: 8px;
        color: var(--green);
        font-size: 22px;
    }

    .pricing {
        display: flex;
        align-items: flex-start;
        gap: 38px;
    }

    .price-item h5 {
        color: #8b8b8b;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .price-item h3 {
        color: #fff;
        font-size: 54px;
        font-family: 'Cormorant Garamond', serif;
        margin: 0;
    }

    .price-item.active h3 {
        color: var(--green);
    }

    .divider {
        width: 1px;
        height: 80px;
        background: rgba(255, 255, 255, .3);
    }

    /* =========================
               RESPONSIVE
            ========================== */
    .gen-ai-section {
        /* margin: 15px; */
        border-radius: 22px;
        padding: 30px 15px 50px;
    }

    .green-glow {
        width: 100vw;
        height: 1200px;
        top: -790px;
    }

    .brand-logo h2 {
        font-size: 42px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 18px;
    }

    .speaker-card {
        width: 100%;
        max-width: 420px;
    }

    .date-box {
        min-width: 100%;
        font-size: 16px;
        padding: 18px;
    }

    .register-btn {
        font-size: 20px;
        padding: 18px 30px;
    }

    .bottom-info {
        gap: 30px;
    }

    .pricing {
        gap: 22px;
    }

    .price-item h3 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {


    .cta-grad-strip {
        position: relative;
        padding: 50px 20px;
        background-image: url(../images/cta-grad.png);
        background-size: cover;
        background-position: top;
        text-align: center;
        overflow: hidden;
        width: 100%;
        min-height: fit-content;
    }

    .cta-grad-strip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 50% 120%, rgba(43, 222, 176, 0.15), transparent 60%);
        pointer-events: none;
    }

    .cta-grad-container {
        max-width: 820px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    .cta-grad-title {
        font-size: 48px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 18px;
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .cta-grad-subtitle {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 40px;
        font-weight: 400;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-grad-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    /* Primary Button (White Pill with Neon Lime Green Icon Box) */
    .cta-btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: #ffffff;
        color: #111827;
        padding: 6px 6px 6px 22px;
        border-radius: 40px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border: 1px solid transparent;
    }

    .cta-btn-primary .btn-icon-box {
        width: 34px;
        height: 34px;
        border-radius: 99px;
        background: #b5f23d;
        /* Pixel-perfect neon lime green */
        color: #111827;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        transition: transform 0.25s ease, background-color 0.25s ease;
    }

    .cta-btn-primary:hover {
        background: #f8fafc;
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        color: #111827;
        text-decoration: none;
    }

    .cta-btn-primary:hover .btn-icon-box {
        transform: translateX(3px);
        background: #a3e62c;
    }

    /* Secondary Button (Translucent Glass Pill with White Icon Box) */
    .cta-btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 14px;
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        padding: 6px 6px 6px 22px;
        border-radius: 40px;
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .cta-btn-secondary .btn-icon-box {
        width: 34px;
        height: 34px;
        border-radius: 99px;
        background: #ffffff;
        color: #111827;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        transition: transform 0.25s ease, background-color 0.25s ease;
    }

    .cta-btn-secondary:hover {
        background: rgba(255, 255, 255, 0.16);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-3px);
        color: #ffffff;
        text-decoration: none;
    }

    .cta-btn-secondary:hover .btn-icon-box {
        transform: translateX(3px);
    }

    /* Responsive Media Queries */
    .cta-grad-strip {
        padding: 80px 16px;
    }

    .cta-grad-title {
        font-size: 32px;
    }

    .cta-grad-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .cta-grad-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: space-between;
    }


    .pm-dashboard-sec {
        padding: 80px 0;
        background: #d9edf9;
        overflow: hidden;
    }

    .pm-dashboard-sec .hero-title {
        color: var(--sd-black) !important;
        font-size: 72px !important;
        line-height: 1.08 !important;
        font-weight: 700 !important;
        letter-spacing: -2px !important;
        margin-bottom: 40px !important;
        text-align: center;
    }



    /* =========================================================
           TABS
        =====================================================  */

    .pm-feature-tabs {
        width: fit-content;
        margin: 20px auto 40px;
        background: #fff;
        padding: 10px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .pm-feature-tab {
        border: 0;
        outline: 0;

        background: #fff;

        height: 52px;

        padding: 0 22px;

        border-radius: 14px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        font-size: 1.2rem;
        font-weight: 500;

        color: var(--teal-title);

        cursor: pointer;

        transition: 0.35s ease;
    }

    .pm-feature-tab i {
        font-size: 14px;
    }

    /* ACTIVE */
    .pm-feature-tab.active {
        background: #d6ef53;
        color: #111;
    }

    /* HOVER */
    .pm-feature-tab:hover {
        transform: translateY(-2px);
    }


    /* =========================================================
            IMAGE WRAPPER
            ========================================================= */

    .pm-dashboard-wrapper {
        position: relative;

        max-width: 980px;
        margin: auto;

        overflow: hidden;
    }


    /* =========================================================
           SLIDES
        =====================================================   */

    .pm-dashboard-slide {
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;

        opacity: 0;
        visibility: hidden;

        transform: translateX(140px);

        transition:
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            opacity 0.7s ease,
            visibility 0.7s ease;

        z-index: 1;
    }

    .pm-dashboard-slide img {
        width: 100%;
        display: block;

        border-radius: 24px;

        border: 5px solid #08213a;

        box-shadow:
            0 25px 70px rgba(0, 0, 0, 0.12);

        transition: 0.45s ease;
    }

    /* ACTIVE */
    .pm-dashboard-slide.active {
        position: relative;

        opacity: 1;
        visibility: visible;

        transform: translateX(0);

        z-index: 5;
    }

    /* LEFT EXIT */
    .pm-slide-exit-left {
        transform: translateX(-140px);
        opacity: 0;
    }

    /* RIGHT EXIT */
    .pm-slide-exit-right {
        transform: translateX(140px);
        opacity: 0;
    }

    /* IMAGE HOVER */
    .pm-dashboard-slide.active img:hover {
        transform: translateY(-6px) scale(1.01);
    }


    /* =========================================================
           MOBILE
        =====================================================   */
    .pm-dashboard-sec {
        padding: 60px 0;
    }

    .pm-feature-tabs {
        width: 100%;
        border-radius: 20px;
    }

    .pm-feature-tab {
        width: calc(50% - 5px);

        padding: 0 12px;

        font-size: 13px;

        height: 48px;
    }

    .pm-dashboard-slide img {
        border-radius: 18px;
        border-width: 4px;
    }


    /* =========================================================
           MOBILE
        =====================================================   */
    .pos-card-stack-deak {
        padding: 70px 0;
    }

    .pos-stack-card {
        border-radius: 24px;
        margin-bottom: 24px;
    }

    .pos-stack-content {
        padding: 50px 24px;
    }

    .pos-stack-title {
        font-size: 34px;
        margin-bottom: 24px;
    }

    .pos-stack-btn {
        height: 52px;
        padding: 0 20px;
        font-size: 15px;
        margin-bottom: 36px;
    }

    .pos-stack-subtitle {
        font-size: 26px;
    }

    .pos-stack-text {
        font-size: 17px;
        line-height: 1.7;
    }

    .pos-stack-stats {
        gap: 18px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .pos-stack-image {
        height: 320px;
    }
}

/* =========================================================
   575PX - MOBILE DEVICES
   ========================================================= */
@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .pos-cta-grid {
        grid-template-columns: 1fr;
    }

    .pos-cta-title {
        font-size: 28px;
    }

    .pos-cta-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .pos-cta-growth-section {
        padding: 60px 16px;
    }

    .pos-cta-domains-list {
        gap: 16px;
    }

    .usecase-section {
        padding: 60px 16px;
    }

    .usecase-card {
        flex-direction: column;
        padding: 20px;
    }

    .usecase-card-preview {
        width: 100%;
        height: 160px;
    }

    .usecase-tab-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .sd-support-section {
        padding: 60px 0;
    }

    .sd-support-title {
        font-size: 28px;
    }

    .sticky-section h1 {
        font-size: 42px;
        font-weight: 700;
        line-height: 1.25;
        margin-bottom: 40px;
        color: var(--sd-black);
        text-align: center;
    }

    .pm-stack-wrapper {
        transform: scale(.68);
        margin-left: -35px;
    }

    .pm-content-box p {
        font-size: 17px;
        line-height: 1.7;
    }

    .pm-badge {
        font-size: 16px;
        padding: 10px 20px;
    }

    .pm-feature-tab {
        width: 100%;
    }

    .hero-title {
        font-size: 34px !important;
        margin-bottom: 15px;
    }

    .char-image-sec {
        width: 100%;
        position: unset !important;
    }

    .speaker-card {
        background: transparent !important;
    }

    .main-img-wrpr {
        /* height: 500px; */
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px;
        overflow: hidden;
        margin: auto;
        display: flex;
        /* flex-direction: column-reverse; */
    }

    .brand-logo {
        gap: 12px;
    }

    .brand-logo h2 {
        font-size: 34px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .seat-text {
        text-align: center;
    }

    .seat-icons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .pricing {
        flex-direction: column;
        align-items: center;
    }

    .divider {
        width: 100%;
        height: 1px;
    }

    .sd-project-thumb img {
        width: 100%;
        transition: all 0.7s ease;
        height: auto;
    }

    .sd-project-meta span {
        color: rgba(30, 29, 48, 0.72);
        font-size: 15px;
        font-weight: 500;
        transition: var(--sd-transition);
    }

    .pm-stat-top {
        margin-bottom: 30px;
    }

    .pm-dashboard-sec .hero-title {
        color: var(--sd-black) !important;
        font-size: 2rem !important;
        margin-bottom: 10px !important;
        margin-top: 15px;
    }

    .pm-feature-tab {
        font-size: 1.2rem !important;

    }

    .pos-stack-title {

        margin-bottom: 10px !important;
    }

    .cta-grad-strip {
        padding: 80px 16px;
        height: 38vh;
        display: flex;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: fit-content;
        justify-content: space-between;
    }

    .cta-grad-buttons {
        flex-direction: column;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
    }
    .float-text p {
        font-size: 1.5rem !important;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin: 0;
    }

    













}