            :root {
                --primary: #4f46e5;
                --primary-dark: #4338ca;
                --primary-light: #e0e7ff;
                --primary-glow: #818cf8;
                --accent: #ec4899;
                --accent-glow: #f472b6;
                --dark: #020617;
                --text-main: #334155;
                --text-heading: #0f172a;
                --text-muted: #64748b;
                --bg-surface: #ffffff;
                --bg-subtle: #f8fafc;
                --border-light: #e2e8f0;
                --card-radius: 24px;
                --section-padding: 80px 0;
                --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
                --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
                --shadow-hover: 0 20px 40px -12px rgba(79, 70, 229, 0.15);
                --shadow-glow: 0 0 50px rgba(79, 70, 229, 0.25);
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: 'Outfit', sans-serif;
                color: var(--text-main);
                background-color: var(--bg-surface);
                -webkit-font-smoothing: antialiased;
                overflow-x: hidden;
                line-height: 1.6;
            }

            /* --- Global Layout --- */
            .container-xl {
                max-width: 1240px;
                margin: 0 auto;
                padding: 0 24px;
                position: relative;
                z-index: 2;
            }

            .section-padding {
                padding: var(--section-padding);
            }

            .section-header-center {
                text-align: center;
                max-width: 650px;
                margin: 0 auto 50px;
            }

            .section-tag {
                font-size: 12px;
                font-weight: 700;
                color: var(--primary);
                text-transform: uppercase;
                letter-spacing: 0.15em;
                display: inline-block;
                margin-bottom: 16px;
                background: var(--primary-light);
                padding: 4px 12px;
                border-radius: 100px;
            }

            .section-headline {
                font-size: 2.5rem;
                font-weight: 800;
                color: var(--text-heading);
                margin-bottom: 16px;
                letter-spacing: -0.03em;
                line-height: 1.1;
            }

            .section-subhead {
                font-size: 1.125rem;
                color: var(--text-muted);
                line-height: 1.6;
            }

            /* --- HERO SECTION --- */
            .hero-wrapper {
                position: relative;
                padding-top: 137px;
                padding-bottom: 80px;
                background:
                    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 70, 229, 0.15) 0%, transparent 100%),
                    linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
                overflow: hidden;
            }

            .hero-wrapper::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    radial-gradient(circle at 20% 30%, rgba(79, 70, 229, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
                z-index: 1;
            }

            .bg-shape {
                position: absolute;
                border-radius: 50%;
                filter: blur(80px);
                z-index: 0;
                opacity: 0.5;
                animation: float-bg 10s ease-in-out infinite alternate;
            }

            .shape-1 {
                top: -150px;
                right: -100px;
                width: 600px;
                height: 600px;
                background: linear-gradient(135deg, var(--primary-light), var(--primary-glow));
                opacity: 0.3;
            }

            .shape-2 {
                bottom: -100px;
                left: -200px;
                width: 700px;
                height: 700px;
                background: linear-gradient(135deg, #fce7f3, #e0e7ff);
                animation-delay: -5s;
            }

            /* MODIFIED: Adjusted Grid to give image more space */
            .hero-layout {
                display: grid;
                grid-template-columns: 0.9fr 1.2fr;
                gap: 40px;
                align-items: center;
            }

            .new-pill {
                display: inline-flex;
                align-items: center;
                padding: 6px 16px 6px 8px;
                background: rgba(255, 255, 255, 0.8);
                backdrop-filter: blur(10px);
                border: 1px solid var(--border-light);
                border-radius: 100px;
                font-size: 13px;
                font-weight: 600;
                color: var(--text-heading);
                margin-bottom: 32px;
                box-shadow: var(--shadow-xs);
                transition: transform 0.3s;
            }

            .new-pill:hover {
                transform: translateY(-2px);
                border-color: var(--primary-glow);
            }

            .dot {
                width: 8px;
                height: 8px;
                background: #22c55e;
                border-radius: 50%;
                display: inline-block;
                margin-right: 10px;
                box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
                animation: pulse 2s infinite;
            }

            .hero-heading {
                font-size: 3.75rem;
                line-height: 1.1;
                font-weight: 800;
                color: var(--text-heading);
                margin-bottom: 24px;
                letter-spacing: -0.04em;
            }

            .text-gradient {
                background: linear-gradient(135deg, var(--primary), var(--accent));
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                position: relative;
                display: inline-block;
            }

            .hero-desc {
                font-size: 1.25rem;
                line-height: 1.7;
                color: var(--text-muted);
                margin-bottom: 40px;
                max-width: 520px;
            }

            .btn-row {
                display: flex;
                gap: 16px;
                margin-bottom: 40px;
                flex-wrap: wrap;
            }

            .btn-base {
                padding: 14px 28px;
                border-radius: 12px;
                font-weight: 600;
                font-size: 15px;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
            }

            .btn-primary-modern {
                background: var(--dark);
                color: white;
                border: 1px solid transparent;
                box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            }

            .btn-primary-modern:hover {
                transform: translateY(-3px);
                background: #1e293b;
                box-shadow: 0 10px 25px -5px rgba(2, 6, 23, 0.4);
            }

            .btn-outline-modern {
                background: rgba(255, 255, 255, 0.5);
                color: var(--text-heading);
                border: 1px solid var(--border-light);
                backdrop-filter: blur(4px);
            }

            .btn-outline-modern:hover {
                border-color: var(--text-heading);
                background: white;
                transform: translateY(-3px);
            }

            .trust-strip {
                padding-top: 24px;
                border-top: 1px solid var(--border-light);
                width: 100%;
            }

            .trust-grid {
                display: flex;
                gap: 32px;
                flex-wrap: wrap;
            }

            .trust-item strong {
                font-size: 14px;
                color: var(--text-heading);
                font-weight: 700;
                display: block;
                margin-bottom: 2px;
            }

            .trust-item span {
                font-size: 13px;
                color: var(--text-muted);
            }

            /* --- NEW HERO IMAGE STYLING --- */
            .hero-visual {
                position: relative;
                perspective: 1500px;
                /* Adds depth for 3D effect */
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 10;
            }

            /* The wrapper for the image to apply tilt */
            .hero-img-wrapper {
                position: relative;
                width: 100%;
                transform-style: preserve-3d;
                animation: hero-float 6s ease-in-out infinite;
                transform: rotateY(-10deg) rotateX(5deg);
                transition: transform 0.5s ease-out;
            }

            .hero-img-wrapper:hover {
                transform: rotateY(0deg) rotateX(0deg) scale(1.02);
            }

            .hero-visual img {
                width: 100%;
                height: auto;
                border-radius: 20px;
                /* box-shadow: 0 25px 60px -12px rgba(79, 70, 229, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
                                                        background: white; */
            }

            /* --- Floating Cards (Now Used) --- */
            .float-card {
                position: absolute;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(16px);
                padding: 12px 20px;
                border-radius: 16px;
                box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
                border: 1px solid rgba(255, 255, 255, 0.8);
                display: flex;
                align-items: center;
                gap: 12px;
                z-index: 20;
                min-width: 160px;
                transform: translateZ(40px);
                /* Pushes it forward in 3D space */
            }

            .fc-1 {
                top: 15%;
                right: -20px;
                animation: float-card-1 6s ease-in-out infinite;
            }

            .fc-2 {
                bottom: 15%;
                left: -30px;
                animation: float-card-2 7s ease-in-out infinite 1s;
            }

            .float-icon {
                width: 40px;
                height: 40px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 20px;
            }

            .bg-green {
                background: #dcfce7;
                color: #16a34a;
            }

            .bg-purple {
                background: #f3e8ff;
                color: #9333ea;
            }

            /* --- FEATURES SECTION --- */
            .features-wrapper {
                position: relative;
                background:
                    linear-gradient(180deg, #ffffff 0%, #fafafa 100%),
                    radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 50%);
                border-top: 1px solid rgba(226, 232, 240, 0.6);
                border-bottom: 1px solid rgba(226, 232, 240, 0.6);
            }

            .features-wrapper::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    repeating-linear-gradient(0deg,
                        transparent,
                        transparent 1px,
                        rgba(79, 70, 229, 0.02) 1px,
                        rgba(79, 70, 229, 0.02) 2px);
                z-index: 1;
                pointer-events: none;
            }

            .premium-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                position: relative;
                z-index: 2;
            }

            .grid-card {
                display: flex;
                flex-direction: row;
                align-items: flex-start;
                gap: 20px;
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(10px);
                padding: 24px;
                border-radius: var(--card-radius);
                border: 1px solid rgba(255, 255, 255, 0.8);
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                height: 100%;
                box-shadow:
                    0 4px 12px rgba(0, 0, 0, 0.04),
                    0 1px 2px rgba(0, 0, 0, 0.02);
            }

            .grid-card:hover {
                transform: translateY(-6px);
                box-shadow: var(--shadow-hover);
                border-color: rgba(79, 70, 229, 0.2);
                background: rgba(255, 255, 255, 0.95);
            }

            .card-icon-box {
                width: 48px;
                height: 48px;
                border-radius: 14px;
                background: white;
                border: 1px solid var(--border-light);
                color: var(--primary);
                font-size: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.3s;
                flex-shrink: 0;
                box-shadow: var(--shadow-xs);
            }

            .grid-card:hover .card-icon-box {
                background: var(--primary);
                color: white;
                transform: rotate(-5deg) scale(1.1);
            }

            .card-title {
                font-size: 1.125rem;
                font-weight: 700;
                color: var(--text-heading);
                margin-bottom: 6px;
            }

            .card-text {
                color: var(--text-muted);
                font-size: 0.95rem;
                line-height: 1.5;
                margin: 0;
            }

            /* --- HOW IT WORKS --- */
            #how {
                position: relative;
                padding: var(--section-padding);
                background-color: #ffffff;
                background-image: radial-gradient(rgba(79, 70, 229, 0.15) 2px, transparent 2px);
                background-size: 30px 30px;
                overflow: hidden;
            }

            #how::after {
                content: '';
                position: absolute;
                inset: 0;
                background: radial-gradient(circle at 50% 50%, transparent 20%, #ffffff 90%);
                pointer-events: none;
                z-index: 0;
            }

            #how::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
            }

            .hiw-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
                position: relative;
                z-index: 2;
            }

            .hiw-card {
                display: flex;
                flex-direction: row;
                align-items: flex-start;
                gap: 16px;
                padding: 24px;
                background: rgba(255, 255, 255, 0.9);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.8);
                border-radius: 20px;
                position: relative;
                transition: all 0.4s;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
                overflow: hidden;
                height: 100%;
            }

            .hiw-card:hover {
                transform: translateY(-8px);
                border-color: rgba(79, 70, 229, 0.3);
                box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12), 0 8px 20px rgba(79, 70, 229, 0.08);
            }

            .hiw-watermark {
                position: absolute;
                top: -5px;
                right: 10px;
                font-size: 60px;
                font-weight: 800;
                color: var(--primary);
                opacity: 0.04;
                line-height: 1;
                transition: 0.4s;
                z-index: 0;
            }

            .hiw-card:hover .hiw-watermark {
                opacity: 0.1;
                transform: scale(1.1) rotate(-10deg);
            }

            .hiw-icon-box {
                width: 44px;
                height: 44px;
                border-radius: 12px;
                background: var(--bg-subtle);
                border: 1px solid var(--border-light);
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                position: relative;
                z-index: 1;
                flex-shrink: 0;
                transition: 0.3s;
            }

            .hiw-card:hover .hiw-icon-box {
                background: var(--primary);
                color: white;
            }

            .arrow-connector {
                position: absolute;
                top: 50%;
                right: -26px;
                transform: translateY(-50%);
                z-index: 10;
                color: var(--text-muted);
                opacity: 0.3;
                width: 24px;
            }

            .hiw-card:last-child .arrow-connector {
                display: none;
            }

            .hiw-title {
                font-size: 1.05rem;
                font-weight: 700;
                color: var(--text-heading);
                margin-bottom: 4px;
                position: relative;
                z-index: 1;
            }

            .hiw-desc {
                font-size: 0.9rem;
                color: var(--text-muted);
                line-height: 1.4;
                position: relative;
                z-index: 1;
                margin: 0;
            }

            /* --- PRICING --- */
            #pricing {
                position: relative;
                background:
                    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%),
                    radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
                border-top: 1px solid rgba(226, 232, 240, 0.6);
                border-bottom: 1px solid rgba(226, 232, 240, 0.6);
                overflow: hidden;
            }

            #pricing::before {
                content: '';
                position: absolute;
                inset: 0;
                background-image:
                    repeating-radial-gradient(circle at 20% 30%,
                        rgba(79, 70, 229, 0.02) 0%,
                        rgba(79, 70, 229, 0.02) 1px,
                        transparent 1px,
                        transparent 100%);
                background-size: 40px 40px;
                z-index: 1;
                pointer-events: none;
            }

            .pricing-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                gap: 24px;
                max-width: 1240px;
                margin: 0 auto;
                position: relative;
                z-index: 2;
            }

            .pricing-card {
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.8);
                border-radius: 24px;
                padding: 32px 24px;
                position: relative;
                transition: all 0.4s;
                display: flex;
                flex-direction: column;
                height: 100%;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
            }

            .pricing-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 25px 50px rgba(79, 70, 229, 0.12), 0 10px 30px rgba(79, 70, 229, 0.08);
                border-color: rgba(79, 70, 229, 0.2);
                background: rgba(255, 255, 255, 0.95);
            }

            .pricing-card.featured {
                border: 2px solid var(--primary);
                background: rgba(255, 255, 255, 0.95);
                box-shadow: 0 25px 50px rgba(79, 70, 229, 0.15), 0 12px 36px rgba(79, 70, 229, 0.1);
                transform: scale(1.03);
                z-index: 2;
            }

            .pricing-card.featured:hover {
                transform: scale(1.03) translateY(-8px);
            }

            .featured-badge {
                position: absolute;
                top: -14px;
                left: 50%;
                transform: translateX(-50%);
                background: linear-gradient(135deg, var(--primary), var(--primary-dark));
                color: white;
                padding: 6px 20px;
                border-radius: 100px;
                font-size: 11px;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
                z-index: 3;
            }

            .pricing-card-header {
                text-align: center;
                margin-bottom: 30px;
                position: relative;
                z-index: 2;
            }

            .plan-name {
                font-size: 1.25rem;
                font-weight: 700;
                color: var(--text-heading);
                margin-bottom: 12px;
            }

            .price-amount {
                font-size: 2.75rem;
                font-weight: 800;
                color: var(--text-heading);
                line-height: 1;
                letter-spacing: -0.02em;
            }

            .price-period {
                font-size: 0.95rem;
                color: var(--text-muted);
                margin-left: 4px;
                font-weight: 500;
            }

            .feature-item {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 14px;
                font-size: 14px;
                color: var(--text-main);
                position: relative;
                z-index: 2;
            }

            .feature-item svg {
                color: #10b981;
                width: 18px;
                height: 18px;
                flex-shrink: 0;
                background: #dcfce7;
                border-radius: 50%;
                padding: 2px;
            }

            .pricing-btn {
                margin-top: auto;
                padding: 12px 20px;
                font-size: 14px;
                font-weight: 600;
                text-align: center;
                transition: 0.3s;
                position: relative;
                z-index: 2;
            }

            /* --- COMPARISON TABLE --- */
            .comparison-section {
                position: relative;
                background:
                    linear-gradient(135deg, #ffffff 0%, #fafafa 100%),
                    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(79, 70, 229, 0.01) 40px, rgba(79, 70, 229, 0.01) 80px);
                padding-bottom: 100px;
                overflow: hidden;
            }

            .comparison-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.3), transparent);
            }

            .modern-table-wrapper {
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(10px);
                border-radius: 24px;
                border: 1px solid rgba(255, 255, 255, 0.8);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
                overflow: hidden;
                position: relative;
                z-index: 2;
            }

            .modern-table {
                width: 100%;
                border-collapse: separate;
                border-spacing: 0;
            }

            .modern-table th {
                background: rgba(248, 250, 252, 0.8);
                padding: 24px 16px;
                text-align: center;
                border-bottom: 1px solid var(--border-light);
                position: sticky;
                top: 0;
                backdrop-filter: blur(10px);
            }

            .modern-table th.feature-head {
                text-align: left;
                width: 25%;
                background: rgba(255, 255, 255, 0.9);
                font-size: 1.1rem;
                font-weight: 800;
            }

            .modern-table td {
                padding: 16px;
                border-bottom: 1px solid var(--border-light);
                color: var(--text-muted);
                font-size: 14px;
                text-align: center;
                transition: background 0.2s;
            }

            .modern-table td.feature-row {
                text-align: left;
                font-weight: 600;
                color: var(--text-heading);
                background: rgba(255, 255, 255, 0.9);
                border-right: 1px solid var(--border-light);
            }

            .modern-table tr:hover td {
                background: rgba(248, 250, 252, 0.5);
            }

            .check-icon {
                color: #10b981;
                display: inline-flex;
                background: #d1fae5;
                padding: 6px;
                border-radius: 50%;
                box-shadow: 0 2px 4px rgba(16, 185, 129, 0.1);
            }

            .close-icon {
                color: #cbd5e1;
                font-weight: 700;
                font-size: 12px;
            }

            /* --- UPDATED TESTIMONIALS SLIDER (Same Design) --- */
            .testimonial-section {
                background: var(--dark);
                color: white;
                position: relative;
                overflow: hidden;
                padding: 80px 0;
            }

            .glow-orb {
                position: absolute;
                width: 400px;
                height: 400px;
                background: var(--primary);
                filter: blur(100px);
                opacity: 0.2;
                border-radius: 50%;
                z-index: 0;
            }

            .orb-1 {
                top: -150px;
                right: -50px;
            }

            .orb-2 {
                bottom: -150px;
                left: -50px;
                background: var(--accent);
            }

            /* Swiper specific for Testimonials */
            .swiper {
                width: 100%;
                padding-bottom: 50px !important;
                /* Space for pagination */
            }

            .t-card {
                background: rgba(255, 255, 255, 0.05);
                border: 1px solid rgba(255, 255, 255, 0.1);
                backdrop-filter: blur(10px);
                padding: 24px;
                border-radius: 20px;
                transition: transform 0.3s ease;
                height: 100%;
            }

            .t-card:hover {
                transform: translateY(-5px);
                border-color: rgba(255, 255, 255, 0.3);
                background: rgba(255, 255, 255, 0.08);
            }

            .t-stars {
                color: #fbbf24;
                margin-bottom: 12px;
                display: flex;
                gap: 2px;
                font-size: 12px;
            }

            .t-quote {
                font-size: 0.95rem;
                line-height: 1.6;
                color: #e2e8f0;
                margin-bottom: 20px;
                font-weight: 300;
            }

            .t-profile {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .t-avatar {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--primary), var(--accent));
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: 700;
                font-size: 14px;
                color: white;
            }

            .t-info h4 {
                font-size: 14px;
                font-weight: 700;
                color: white;
                margin: 0;
            }

            .t-info span {
                font-size: 12px;
                color: #94a3b8;
            }

            /* --- NEW BLOG SECTION (Slider + Same Design) --- */
            .blog-section {
                position: relative;
                background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
                border-top: 1px solid rgba(226, 232, 240, 0.6);
                overflow: hidden;
            }

            .blog-card {
                background: rgba(255, 255, 255, 0.85);
                backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.8);
                border-radius: 20px;
                overflow: hidden;
                transition: all 0.4s;
                height: 100%;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
                display: flex;
                flex-direction: column;
            }

            .blog-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12);
                border-color: rgba(79, 70, 229, 0.2);
                background: rgba(255, 255, 255, 0.95);
            }

            .blog-img {
                width: 100%;
                height: 200px;
                object-fit: cover;
                border-bottom: 1px solid var(--border-light);
            }

            .blog-content {
                padding: 24px;
                flex: 1;
                display: flex;
                flex-direction: column;
            }

            .blog-tag {
                font-size: 11px;
                font-weight: 700;
                color: var(--primary);
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin-bottom: 8px;
            }

            .blog-title {
                font-size: 1.125rem;
                font-weight: 700;
                color: var(--text-heading);
                margin-bottom: 10px;
                line-height: 1.4;
            }

            .blog-desc {
                font-size: 0.9rem;
                color: var(--text-muted);
                line-height: 1.6;
                margin-bottom: 20px;
                flex: 1;
            }

            .blog-link {
                font-size: 14px;
                font-weight: 600;
                color: var(--primary);
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 6px;
                transition: 0.3s;
            }

            .blog-link:hover {
                gap: 10px;
                color: var(--primary-dark);
            }

            /* Swiper Pagination Customization */
            .swiper-pagination-bullet {
                width: 10px;
                height: 10px;
                background: #cbd5e1;
                opacity: 0.8;
                transition: 0.3s;
            }

            .swiper-pagination-bullet-active {
                background: var(--primary) !important;
                width: 24px;
                border-radius: 5px;
            }


            /* --- Animations --- */
            @keyframes hero-float {

                0%,
                100% {
                    transform: translateY(0) rotateY(-10deg) rotateX(5deg);
                }

                50% {
                    transform: translateY(-15px) rotateY(-10deg) rotateX(5deg);
                }
            }

            @keyframes float-card-1 {

                0%,
                100% {
                    transform: translateY(0) translateZ(40px);
                }

                50% {
                    transform: translateY(-10px) translateZ(40px);
                }
            }

            @keyframes float-card-2 {

                0%,
                100% {
                    transform: translateY(0) translateZ(40px);
                }

                50% {
                    transform: translateY(-12px) translateZ(40px);
                }
            }

            @keyframes float-bg {
                0% {
                    transform: translate(0, 0) scale(1);
                }

                100% {
                    transform: translate(30px, -30px) scale(1.1);
                }
            }

            @keyframes pulse {
                0% {
                    transform: scale(0.95);
                    opacity: 0.7;
                }

                50% {
                    transform: scale(1.05);
                    opacity: 1;
                }

                100% {
                    transform: scale(0.95);
                    opacity: 0.7;
                }
            }

            /* --- Responsive --- */
            @media (max-width: 1100px) {

                .pricing-grid,
                .hiw-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .hero-heading {
                    font-size: 3rem;
                }

                .hero-layout {
                    grid-template-columns: 1fr 0.8fr;
                }
            }

            @media (max-width: 900px) {
                .hero-layout {
                    grid-template-columns: 1fr;
                    text-align: center;
                    gap: 60px;
                }

                .hero-img-wrapper {
                    transform: none;
                    animation: none;
                }

                .hero-visual img {
                    transform: none;
                }

                .btn-row {
                    justify-content: center;
                }

                .hero-desc {
                    margin-left: auto;
                    margin-right: auto;
                }

                .trust-grid {
                    justify-content: center;
                }

                .float-card {
                    display: none;
                }

                .grid-card {
                    flex-direction: column;
                    text-align: center;
                    align-items: center;
                }

                .grid-card:hover .card-icon-box {
                    transform: scale(1.1);
                }

                .premium-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }

            @media (max-width: 650px) {

                .premium-grid,
                .pricing-grid,
                .hiw-grid {
                    grid-template-columns: 1fr;
                }

                .arrow-connector {
                    display: none;
                }

                .hero-heading {
                    font-size: 2.5rem;
                }

                .section-headline {
                    font-size: 2rem;
                }

                .modern-table-container {
                    overflow-x: auto;
                }

                .modern-table {
                    min-width: 700px;
                }

                .btn-row {
                    flex-direction: column;
                    width: 100%;
                }

                .btn-base {
                    width: 100%;
                    justify-content: center;
                }
            }
