     /* * ISOLATED COMPONENT STYLES 
         * All styles are scoped to .sam-root to prevent conflicts 
         */
        .sam-root {
            /* Component-specific variables */
            --sam-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
            --sam-btn-bg: #1e293b; /* Sleek, universal Dark Slate/Blue instead of grey */
            --sam-btn-hover: #0f172a; /* Deeper midnight shade for hover */
            --sam-accent: #3b82f6; /* Vibrant primary blue for the progress ring */
            
            position: fixed;
            bottom: 80px; 
            right: 1rem; 
            z-index: 9999; 
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            font-family: 'Plus Jakarta Sans', sans-serif; 
        }

        /* Scoped Reset - Only applies to elements inside the menu */
        .sam-root *, 
        .sam-root *::before, 
        .sam-root *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* FIX: Apply resets directly to the classes to avoid CSS specificity overriding the background */
        .sam-item, .sam-trigger, .sam-scroll-up {
            border: none;
            font-family: inherit;
            cursor: pointer;
            outline: none;
            -webkit-tap-highlight-color: transparent;
        }

        /* Animated Items Container */
        .sam-container {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 0.5rem;
            margin-bottom: 1rem;
            margin-right: 0.5rem; 
        }

        /* Menu Items */
        .sam-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            background-color: var(--sam-btn-bg);
            color: white;
            padding: 0.625rem 1.25rem;
            border-radius: 9999px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            border: none; 
            
            /* Initial Closed State */
            transform: translateY(20px) scale(0.9);
            opacity: 0;
            filter: blur(4px);
            pointer-events: none;
            
            /* Combined Transitions */
            transition: 
                transform 0.5s var(--sam-spring),
                opacity 0.4s ease,
                filter 0.4s ease,
                background-color 0.15s ease-out; 
        }

        .sam-item:hover {
            background-color: var(--sam-btn-hover);
        }

        /* Opened State */
        .sam-active .sam-item {
            transform: translateY(0) scale(1);
            opacity: 1;
            filter: blur(0);
            pointer-events: auto;
        }

        /* Active/Click State */
        .sam-active .sam-item:active {
            transform: scale(0.95);
            transition: transform 0.15s ease;
        }

        .sam-text {
            font-weight: 600;
            font-size: 15px;
            white-space: nowrap;
        }

        /* Main FAB Trigger */
        .sam-trigger {
            width: 3rem;
            height: 3rem;
            background-color: var(--sam-btn-bg);
            color: white;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
            transition: transform 0.25s var(--sam-spring), background-color 0.15s ease-out;
        }

        .sam-trigger:hover {
            background-color: var(--sam-btn-hover);
            transform: translateY(-2px) scale(1.03); 
        }

        .sam-trigger:active {
            transform: scale(0.92); 
            transition: transform 0.15s ease;
        }

        /* CSS-Only Plus Icon */
        .sam-icon-plus {
            position: relative;
            width: 22px;
            height: 22px;
            transition: transform 0.5s var(--sam-spring);
        }
        
        .sam-icon-plus::before, .sam-icon-plus::after {
            content: '';
            position: absolute;
            background: currentColor;
            border-radius: 4px;
        }
        
        .sam-icon-plus::before {
            top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%);
        }
        
        .sam-icon-plus::after {
            left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%);
        }

        .sam-active .sam-icon-plus {
            transform: rotate(135deg);
        }

        /* Action Row (Bottom) */
        .sam-action-row {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Scroll Up Wrapper & Progress Ring */
        .sam-scroll-wrapper {
            position: relative;
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            transition: transform 0.25s var(--sam-spring), opacity 0.3s ease, visibility 0.3s ease;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .sam-scroll-wrapper.sam-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .sam-scroll-wrapper:hover {
            transform: translateY(-2px) scale(1.03);
        }

        .sam-scroll-wrapper:active {
            transform: scale(0.92);
            transition: transform 0.15s ease;
        }

        .sam-progress-ring {
            position: absolute;
            top: -6px;
            left: -6px;
            width: calc(100% + 12px);
            height: calc(100% + 12px);
            transform: rotate(-90deg);
            z-index: 1;
            pointer-events: none;
        }

        .sam-progress-ring circle {
            fill: transparent;
            stroke-width: 2.5px;
            stroke-linecap: round;
        }

        .sam-ring-bg {
            stroke: rgba(255, 255, 255, 0.1); /* Updated to look better on dark slate */
        }

        .sam-ring-progress {
            stroke: var(--sam-accent);
            transition: stroke-dashoffset 0.1s ease-out, stroke 0.15s ease-out;
        }

        .sam-scroll-wrapper:hover .sam-ring-progress {
            stroke: #60a5fa; /* Lighter blue on hover */
        }

        /* Scroll Up Button inside wrapper */
        .sam-scroll-up {
            width: 100%;
            height: 100%;
            background-color: var(--sam-btn-bg);
            color: white;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            transition: background-color 0.15s ease-out;
            position: relative;
            z-index: 2;
        }

        .sam-scroll-wrapper:hover .sam-scroll-up {
            background-color: var(--sam-btn-hover);
        }

        /* Added just so you can test scrolling in the preview */
        body {
            min-height: 200vh;
        }

        /* --- Responsive / Mobile Adjustments --- */
        @media (max-width: 640px) {
            .sam-root {
                right: 0.25rem; 
            }

            .sam-trigger, .sam-scroll-wrapper {
                width: 2.75rem;
                height: 2.75rem;
            }

            .sam-container {
                margin-right: 0.25rem; 
                gap: 0.4rem;
            }

            .sam-item {
                padding: 0.5rem 1rem;
                gap: 0.5rem;
            }

            .sam-text {
                font-size: 14px;
            }

            .sam-item svg {
                width: 18px;
                height: 18px;
            }

            .sam-action-row {
                gap: 0.75rem;
            }
        }





/* footer price section  */
       
        .ds-banner-module * {
            box-sizing: border-box;
            font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        }

        /* The Main Dock Container */
        .ds-pricing-dock {
            position: fixed;
            bottom: 1.5rem; 
            left: 50%; 
            transform: translateX(-50%); 
            
            /* Expanded State Dimensions */
            width: 95%; 
            max-width: 1000px; 
            height: 64px; /* Fixed height for smooth transitions */
            border-radius: 9999px; 
            
            background-color: #000000; 
            border: 1px solid rgba(255, 255, 255, 0.1); 
            z-index: 50;
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            
            /* Smooth elastic transition for the stretch effect */
            transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
            overflow: hidden; /* Keeps fading content inside */
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        /* Collapsed Circular State */
        .ds-pricing-dock.ds-collapsed {
            width: 56px;
            max-width: 56px;
            height: 56px;
            border-radius: 50%; /* Perfect circle */
            cursor: pointer;
            bottom: 0.9rem;
        }

        /* Responsive Expanded Widths */
        @media (min-width: 768px) {
            .ds-pricing-dock:not(.ds-collapsed) { width: 85%; }
        }
        @media (min-width: 1024px) {
            .ds-pricing-dock:not(.ds-collapsed) { width: 75%; }
        }

        /* --- Inner Content Wrappers --- */
        
        /* 1. The Circular Icon (Visible when collapsed) */
        .ds-dock-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .ds-collapsed .ds-dock-icon {
            opacity: 1;
            transition: opacity 0.4s 0.3s ease; /* Fade in after collapse finishes */
        }

        /* 2. The Banner Content (Visible when expanded) */
        .ds-dock-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 0.5rem 1.5rem; 
            display: flex;
            align-items: center;
            justify-content: space-between;
            opacity: 1;
            transition: opacity 0.4s 0.2s ease; /* Fade in slightly after expansion starts */
        }
        @media (min-width: 768px) {
            .ds-dock-content { padding: 0 3rem; }
        }

        .ds-collapsed .ds-dock-content {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s 0s ease; /* Fade out instantly when collapsing */
        }

        /* Text Layout */
        .ds-pricing-info {
            display: flex;
            flex-direction: column;
            min-width: 0;
            justify-content: center;
        }

        .ds-price-row {
            display: flex;
            align-items: baseline;
            gap: 0.375rem;
            flex-wrap: nowrap;
        }

        .ds-current-price {
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            line-height: 1;
            letter-spacing: 0.025em;
            white-space: nowrap;
        }
        @media (min-width: 640px) { .ds-current-price { font-size: 1.125rem; } }
        @media (min-width: 768px) { .ds-current-price { font-size: 1.25rem; } }

        .ds-original-price {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.75);
            text-decoration: line-through;
            line-height: 1;
            white-space: nowrap;
        }
        @media (min-width: 640px) { .ds-original-price { font-size: 0.75rem; } }

        .ds-gst-text {
            font-size: 9px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0.125rem 0 0 0; 
            white-space: nowrap;
        }
        @media (min-width: 640px) { .ds-gst-text { font-size: 10px; } }

        /* Button & Animation */
        .ds-register-link {
            flex-shrink: 0;
            outline: none;
            text-decoration: none;
        }

        .ds-register-btn {
            background: linear-gradient(93deg, #5135FF 10.65%, #FF5455 89.35%);
            padding: 0.375rem 0.75rem; 
            border-radius: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            color: #ffffff;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        @media (min-width: 640px) { .ds-register-btn { padding: 0.375rem 1rem; } }
        @media (min-width: 768px) {
            .ds-register-btn {
                padding: 0.4rem 1.5rem; 
                font-size: 0.875rem;
            }
        }

        /* Lightning Shine Effect */
        .ds-register-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
            transform: skewX(-25deg);
            animation: shine-sweep 4s infinite;
        }

        @keyframes shine-sweep {
            0% { left: -100%; }
            25% { left: 200%; }
            100% { left: 200%; }
        }

        .ds-register-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        }

        .ds-register-btn:active {
            transform: translateY(0);
        }




        /* grafh section for caio 
         */

            /* --- Isolated CSS Scope --- */
        #caio-impact-widget {
            background-color: #f8fafc;
            color: #111827;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            margin: 0;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            box-sizing: border-box;
        }

        #caio-impact-widget * {
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        #caio-impact-widget .caio-dashboard {
            width: 100%;
            max-width: 1000px;
        }

        /* --- Header Styling --- */
        #caio-impact-widget .caio-header {
            text-align: center;
            margin-bottom: 20px;
        }

        #caio-impact-widget .caio-header h4 {
            color: #6b7280;
            font-size: 13px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin: 0 0 16px 0;
            font-weight: 600;
        }

        #caio-impact-widget .caio-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.5px;
        }

        #caio-impact-widget .caio-caption {
            text-align: center;
            max-width: 750px;
            margin: 20px auto 0;
            color: #6b7280;
            font-size: 14.5px;
            line-height: 1.6;
        }

        /* --- Legend Styling --- */
        #caio-impact-widget .caio-legend-container {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 10px;
            margin-top: 0;
        }

        #caio-impact-widget .caio-legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #374151;
            font-size: 14px;
        }

        #caio-impact-widget .caio-legend-item strong {
            font-weight: 600;
        }

        #caio-impact-widget .caio-legend-color {
            width: 16px;
            height: 16px;
            border-radius: 2px;
        }

        #caio-impact-widget .caio-before-color {
            background-color: #94a3b8; /* Slate gray */
        }

        #caio-impact-widget .caio-after-color {
            background-color: #2563eb; /* Vibrant Blue */
        }

        /* --- Chart Container --- */
        #caio-impact-widget .caio-chart-container {
            width: 100%;
            max-width: 650px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            position: relative;
        }

        #caio-impact-widget canvas {
            display: block;
            width: 100%;
            /* Prevent touch actions on canvas to allow scrolling */
            touch-action: none; 
        }

        /* Responsive */
        @media (max-width: 768px) {
            #caio-impact-widget .caio-header h2 {
                font-size: 28px;
            }
        }