        :root {
            --font-family-sans:
                "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont,
                "Segoe UI", Ubuntu, "Helvetica Neue", sans-serif;
            --primary-purple: #6c5ce7;
            --primary-purple-dark: #5849c2;
            --primary-purple-light: #a29bfe;
            --accent-green: #00b894;
            --accent-yellow: #ffeaa7;
            --bg-cream: #fdf6e3;
            --bg-light-purple: #f8f7ff;
            --text-dark: #1a1a2e;
            --text-gray: #636e72;
            --text-light: #b2bec3;
            --white: #ffffff;
            --border-light: #e8e8e8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family-sans);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--white);
            z-index: 1000;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-purple);
            text-decoration: none;
        }

        .logo-img {
            height: 36px;
            width: auto;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-list {
            display: flex;
            gap: 32px;
            list-style: none;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--primary-purple);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--primary-purple);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--primary-purple-dark);
        }

        .btn-secondary {
            background: var(--bg-light-purple);
            color: var(--primary-purple);
        }

        .btn-secondary:hover {
            background: #eeedff;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-dark);
            border: 1px solid var(--border-light);
        }

        .btn-outline:hover {
            border-color: var(--primary-purple);
            color: var(--primary-purple);
        }

        .btn-sm {
            padding: 8px 16px;
            font-size: 0.875rem;
        }

        .btn-lg {
            padding: 16px 32px;
            font-size: 1rem;
        }

        .nav-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 80px;
            background: linear-gradient(180deg,
                    var(--bg-light-purple) 0%,
                    var(--white) 100%);
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-content {
            max-width: 560px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--white);
            border: 1px solid var(--border-light);
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-bottom: 24px;
        }

        .hero-badge i {
            color: var(--primary-purple);
        }

        .hero-title {
            font-size: 3.25rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 24px;
            color: var(--text-dark);
        }

        .hero-title .highlight {
            color: var(--primary-purple);
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--text-gray);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 32px;
        }

        .app-store-btn {
            display: inline-flex;
            text-decoration: none;
            transition: transform 0.2s, opacity 0.3s;
            padding: 0;
            background: transparent;
        }

        .app-store-btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .app-store-btn img {
            height: 48px;
            width: auto;
            display: block;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.875rem;
            color: var(--text-dark);
        }

        .hero-feature i {
            color: var(--accent-green);
            font-size: 1.1rem;
        }

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

        .hero-phone {
            position: relative;
            z-index: 2;
        }

        .hero-phone-frame {
            background: #1a1a1a;
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .hero-phone-frame img {
            border-radius: 28px;
            width: 260px;
            display: block;
        }

        .floating-card {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 12px 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 4s ease-in-out infinite;
            z-index: 3;
        }

        .floating-card-1 {
            top: 20%;
            right: -20px;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 25%;
            left: -30px;
            animation-delay: 1s;
        }

        .floating-card-3 {
            top: 60%;
            right: -40px;
            animation-delay: 2s;
        }

        .floating-card i {
            font-size: 1.5rem;
        }

        .floating-card .whatsapp-icon {
            color: #25d366;
        }

        .floating-card .check-icon {
            color: var(--accent-green);
        }

        .floating-card .rupee-icon {
            color: var(--primary-purple);
        }

        .floating-card-content span {
            display: block;
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--text-dark);
        }

        .floating-card-content small {
            font-size: 0.75rem;
            color: var(--text-gray);
        }

        @keyframes float {

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

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

        /* Section Styles */
        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }

        .section-overline {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--primary-purple);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-dark);
        }

        .section-title .underline {
            text-decoration: underline;
            text-decoration-color: var(--primary-purple);
            text-underline-offset: 4px;
        }

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

        /* ===== Problems: premium look ===== */
        .problems {
            position: relative;
            overflow: hidden;
            padding: 90px 0;
            background:
                radial-gradient(900px 520px at 50% 0%, rgba(91, 73, 255, .16), rgba(91, 73, 255, 0) 60%),
                #fff;
        }

        .problems::before {
            content: "";
            position: absolute;
            inset: -200px -200px auto -200px;
            height: 420px;
            background: radial-gradient(closest-side, rgba(91, 73, 255, .18), transparent 70%);
            filter: blur(10px);
            pointer-events: none;
            opacity: .8;
        }

        /* Grid */
        .problems-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            margin-top: 38px;
        }

        @media (max-width: 980px) {
            .problems-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .problems-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Card base */
        .problem-card {
            position: relative;
            border-radius: 18px;
            padding: 22px 22px 18px;
            background: rgba(248, 249, 255, .85);
            border: 1px solid rgba(20, 20, 45, .08);
            box-shadow: 0 14px 40px rgba(16, 24, 40, 0.06);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
            overflow: hidden;
            will-change: transform;
        }

        /* Soft glow layer */
        .problem-card::before {
            content: "";
            position: absolute;
            inset: -1px;
            background: radial-gradient(520px 260px at 20% 0%,
                    rgba(91, 73, 255, .12) 0%,
                    rgba(91, 73, 255, 0) 60%);
            opacity: .85;
            pointer-events: none;
        }

        /* Hover: lift + glow */
        /* Hover: lift + glow + active colors */
        .problem-card:hover {
            transform: translateY(-8px);
            background: linear-gradient(135deg, #5b49ff 0%, #7a6bff 100%);
            border-color: rgba(255, 255, 255, .18);
            box-shadow: 0 26px 90px rgba(91, 73, 255, .30);
        }

        /* Image container (replaces icon) */
        .problem-media {
            height: 140px;
            /* increase height */
            border-radius: 18px;
            overflow: hidden;
            background: radial-gradient(900px 280px at 30% 0%,
                    rgba(91, 73, 255, .18), rgba(255, 255, 255, 1) 60%);
            border: 1px solid rgba(20, 20, 45, .08);
            display: block;
            position: relative;
            /* Maintain margin-bottom from previous design if not specified, but user didn't include it.
               The user's snippet ends with position: relative.
               I will assume margin-bottom is still desired or check if missing affects layout.
               The previous had margin-bottom: 14px. I will add it back to be safe as it provides spacing to the title. */
            margin-bottom: 14px;
        }

        /* Subtle moving light streak on hover */
        .problem-media::after {
            content: "";
            position: absolute;
            top: -40%;
            left: -60%;
            width: 60%;
            height: 180%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
            transform: rotate(18deg);
            opacity: 0;
            transition: opacity .25s ease;
        }

        .problem-card:hover .problem-media::after {
            opacity: 1;
            animation: sweep 1.1s ease forwards;
        }

        @keyframes sweep {
            from {
                left: -70%;
            }

            to {
                left: 120%;
            }
        }

        .problem-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* IMPORTANT: fill & crop */
            object-position: center 35%;
            /* lift subject slightly */
            transform: scale(1.06);
            /* make it feel larger */
            transition: transform .35s ease;
        }

        .problem-card:hover .problem-media img {
            /* Keep the hover scale effect but relative to the new base scale */
            transform: scale(1.1);
        }

        /* Text */
        .problem-title {
            font-size: 18px;
            line-height: 1.35;
            font-weight: 800;
            color: #0b0b0f;
            margin: 0 0 10px;
        }

        .problem-desc {
            margin: 0;
            font-size: 15.5px;
            line-height: 1.65;
            color: #6b7280;
        }

        /* Chips */
        .problem-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 14px;
        }

        .problem-stat {
            display: inline-flex;
            padding: 7px 12px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
            background: rgba(91, 73, 255, .08);
            color: #2b2b55;
            border: 1px solid rgba(91, 73, 255, .14);
        }

        /* Highlight card */
        /* Reuse active styles for hover state content */
        .problem-card:hover::before {
            background: radial-gradient(560px 260px at 20% 0%,
                    rgba(255, 255, 255, .24) 0%,
                    rgba(255, 255, 255, 0) 58%);
        }

        .problem-card:hover .problem-title,
        .problem-card:hover .problem-desc {
            color: #fff;
        }

        .problem-card:hover .problem-stat {
            background: rgba(255, 255, 255, .16);
            border-color: rgba(255, 255, 255, .22);
            color: #fff;
        }

        .problem-card:hover .problem-media {
            background: rgba(255, 255, 255, .12);
            border-color: rgba(255, 255, 255, .18);
        }

        /* ===== Scroll-in animation ===== */
        .reveal {
            opacity: 0;
            transform: translateY(18px);
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
            transition: opacity .7s ease, transform .7s ease;
            transition-delay: var(--d, 0ms);
        }

        /* ===== Optional: subtle idle float (only after revealed) ===== */
        .reveal.in {
            animation: floaty 5.5s ease-in-out infinite;
            animation-delay: calc(var(--d, 0ms) + 600ms);
        }

        @keyframes floaty {

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

            50% {
                transform: translateY(-6px);
            }
        }

        /* Reduce motion accessibility */
        @media (prefers-reduced-motion: reduce) {

            .reveal,
            .reveal.in,
            .problem-card,
            .problem-media::after {
                animation: none !important;
                transition: none !important;
            }
        }

        /* =========================
/* =========================================================
   TAKKADA WAY — Premium animations + premium look
   Drop this in assets/css/style.css
========================================================= */

        /* Section */
        .takkada-way {
            position: relative;
            padding: 84px 0;
            overflow: hidden;
            background: radial-gradient(1200px 700px at 20% 20%, rgba(91, 73, 255, 0.10), rgba(255, 255, 255, 0) 55%),
                radial-gradient(1000px 600px at 80% 60%, rgba(16, 185, 129, 0.10), rgba(255, 255, 255, 0) 55%),
                #fbf7ef;
            /* matches your beige */
        }

        /* Layout */
        .takkada-way-container {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 64px;
            align-items: center;
        }

        @media (max-width: 980px) {
            .takkada-way-container {
                grid-template-columns: 1fr;
                gap: 34px;
            }

            .takkada-way {
                padding: 64px 0;
            }
        }

        /* Visual block */
        .takkada-way-visual {
            position: relative;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translateZ(0);
        }

        @media (max-width: 980px) {
            .takkada-way-visual {
                min-height: auto;
            }
        }

        /* Glow behind phone */
        .takkada-way-glow {
            position: absolute;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background:
                radial-gradient(circle at 30% 30%, rgba(91, 73, 255, 0.28), rgba(91, 73, 255, 0) 55%),
                radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.24), rgba(16, 185, 129, 0) 55%),
                radial-gradient(circle at 55% 25%, rgba(249, 115, 22, 0.18), rgba(249, 115, 22, 0) 55%);
            filter: blur(18px);
            opacity: 0.9;
            z-index: 0;
        }

        /* Phone */
        .takkada-way-phone {
            position: relative;
            z-index: 2;
            width: min(360px, 90%);
            border-radius: 34px;
            transform: translateZ(0);
            will-change: transform;
        }

        .takkada-way-phone img {
            width: 100%;
            display: block;
            border-radius: 34px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow:
                0 28px 90px rgba(0, 0, 0, 0.16),
                0 10px 26px rgba(0, 0, 0, 0.10);
        }

        /* Floating cards */
        .way-floating-card {
            position: absolute;
            z-index: 3;
            max-width: 240px;
            padding: 14px 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.84);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
            transform: translateZ(0);
            will-change: transform, opacity;
        }

        .way-floating-card p {
            margin: 8px 0 0;
            font-size: 13px;
            line-height: 1.35;
            color: rgba(15, 18, 35, 0.70);
        }

        /* pill header inside card */
        .way-card-pill {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            font-weight: 800;
            color: rgba(15, 18, 35, 0.92);
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 999px;
            display: inline-block;
        }

        .dot-purple {
            background: rgba(91, 73, 255, 0.95);
        }

        .dot-green {
            background: rgba(16, 185, 129, 0.95);
        }

        /* Positions */
        .way-floating-card-1 {
            top: 64px;
            right: -12px;
        }

        .way-floating-card-2 {
            bottom: 88px;
            right: -4px;
        }

        @media (max-width: 980px) {
            .way-floating-card-1 {
                top: 12px;
                right: 8px;
                transform: scale(0.96);
            }

            .way-floating-card-2 {
                bottom: 12px;
                right: 8px;
                transform: scale(0.96);
            }
        }

        /* Content typography */
        .takkada-way-title {
            margin: 0 0 12px;
            font-size: clamp(30px, 3.3vw, 46px);
            line-height: 1.12;
            font-weight: 950;
            letter-spacing: -0.02em;
            color: rgba(10, 12, 20, 0.96);
        }

        .takkada-way-subtitle {
            margin: 0 0 28px;
            font-size: 16.5px;
            line-height: 1.65;
            color: rgba(15, 18, 35, 0.72);
            max-width: 560px;
        }

        /* Underline animation */
        .underline {
            position: relative;
            display: inline-block;
        }

        .underline::after {
            content: "";
            position: absolute;
            left: 2%;
            right: 2%;
            bottom: -7px;
            height: 10px;
            border-radius: 999px;
            background: rgba(91, 73, 255, 0.20);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 750ms cubic-bezier(.2, .8, .2, 1);
        }

        /* Feature list */
        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .feature-item {
            display: grid;
            grid-template-columns: 48px 1fr;
            gap: 14px;
            padding: 14px 14px;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.06);
            background: rgba(255, 255, 255, 0.55);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);

            transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
            will-change: transform, opacity;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10);
            background: rgba(255, 255, 255, 0.72);
            border-color: rgba(0, 0, 0, 0.08);
        }

        /* icon box */
        .feature-item-icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: grid;
            place-items: center;
            background: rgba(91, 73, 255, 0.12);
            box-shadow: inset 0 0 0 1px rgba(91, 73, 255, 0.10);
            transition: transform 220ms ease;
        }

        .feature-item:hover .feature-item-icon {
            transform: scale(1.04);
        }

        .feature-item-icon.green {
            background: rgba(16, 185, 129, 0.14);
            box-shadow: inset 0 0 0 1px rgba(16, 185, 129, 0.12);
        }

        .feature-item-icon.orange {
            background: rgba(249, 115, 22, 0.14);
            box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.12);
        }

        .feature-item-icon.blue {
            background: rgba(59, 130, 246, 0.14);
            box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.12);
        }

        .feature-item-icon i {
            font-size: 22px;
        }

        .feature-item-content h4 {
            margin: 0 0 6px;
            font-size: 15.5px;
            font-weight: 900;
            color: rgba(10, 12, 20, 0.92);
        }

        .feature-item-content p {
            margin: 0;
            font-size: 14px;
            line-height: 1.55;
            color: rgba(15, 18, 35, 0.70);
        }

        /* badges */
        .feature-badges {
            margin-top: 10px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .feature-badge {
            font-size: 12px;
            font-weight: 800;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.06);
            color: rgba(10, 12, 20, 0.78);
        }

        /* =========================================================
   ANIMATION SYSTEM — Scroll reveal + stagger + float
========================================================= */

        [data-animate="takkada-way"] .takkada-way-visual,
        [data-animate="takkada-way"] .takkada-way-title,
        [data-animate="takkada-way"] .takkada-way-subtitle,
        [data-animate="takkada-way"] .feature-item,
        [data-animate="takkada-way"] .way-floating-card {
            opacity: 0;
            transform: translateY(16px);
        }

        [data-animate="takkada-way"].is-inview .takkada-way-visual {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 800ms ease, transform 800ms cubic-bezier(.2, .8, .2, 1);
        }

        [data-animate="takkada-way"].is-inview .takkada-way-title {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 700ms ease 80ms, transform 700ms cubic-bezier(.2, .8, .2, 1) 80ms;
        }

        [data-animate="takkada-way"].is-inview .takkada-way-subtitle {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 700ms ease 160ms, transform 700ms cubic-bezier(.2, .8, .2, 1) 160ms;
        }

        [data-animate="takkada-way"].is-inview .underline::after {
            transform: scaleX(1);
            transition-delay: 220ms;
        }

        [data-animate="takkada-way"].is-inview .feature-item {
            opacity: 1;
            transform: translateY(0);
            transition:
                opacity 650ms ease calc(240ms + var(--stagger, 0ms)),
                transform 650ms cubic-bezier(.2, .8, .2, 1) calc(240ms + var(--stagger, 0ms));
        }

        /* cards appear a bit later */
        [data-animate="takkada-way"].is-inview .way-floating-card {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 900ms ease 260ms, transform 900ms cubic-bezier(.2, .8, .2, 1) 260ms;
        }

        /* Subtle continuous motion (after reveal) */
        @keyframes floatA {

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

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

        @keyframes floatB {

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

            50% {
                transform: translateY(8px);
            }
        }

        [data-animate="takkada-way"].is-inview .way-floating-card-1 {
            animation: floatA 4.6s ease-in-out infinite;
        }

        [data-animate="takkada-way"].is-inview .way-floating-card-2 {
            animation: floatB 5.2s ease-in-out infinite;
        }

        /* Hover lift on floating cards */
        .way-floating-card:hover {
            transform: translateY(-6px);
            transition: transform 220ms ease;
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation: none !important;
                transition: none !important;
            }
        }


        /* Everything Section */
        .everything {
            padding: 100px 0;
            background: var(--white);
        }

        .everything-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .everything-header h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .everything-header h2 .highlight {
            font-style: italic;
        }

        .everything-header p {
            color: var(--text-gray);
            font-size: 1rem;
        }

        .everything-visual {
            background: linear-gradient(135deg, #2d3436 0%, #1a1a2e 100%);
            border-radius: 24px;
            padding: 60px;
            position: relative;
            overflow: hidden;
        }

        .everything-visual-content {
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: flex-end;
        }

        .everything-phone {
            background: #1a1a1a;
            border-radius: 32px;
            padding: 8px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        .everything-phone img {
            border-radius: 24px;
            width: 200px;
            display: block;
        }

        .everything-phone.main {
            transform: translateY(-20px);
        }

        .everything-phone.main img {
            width: 240px;
        }

        /* Smart Collection Section */
        .smart-collection {
            padding: 100px 0;
            background: var(--bg-light-purple);
        }

        .smart-collection-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .smart-collection-content h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .smart-collection-content>p {
            color: var(--text-gray);
            margin-bottom: 32px;
            font-size: 1rem;
            line-height: 1.7;
        }

        .check-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .check-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .check-item i {
            color: var(--primary-purple);
            font-size: 1.25rem;
        }

        .smart-collection-visual {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .smart-collection-phones {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .smart-phone {
            background: #1a1a1a;
            border-radius: 32px;
            padding: 8px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .smart-phone img {
            border-radius: 24px;
            width: 180px;
            display: block;
        }

        .smart-phone.main img {
            width: 220px;
        }

        /* How It Works Section */
        .how-it-works {
            padding: 100px 0;
            background: var(--white);
        }

        .how-it-works-grid {
            display: grid;
            grid-template-columns: 4fr 5fr;
            gap: 60px;
            align-items: center;
        }

        .how-content .section-title {
            text-align: left;
            margin-bottom: 16px;
        }

        .how-content .section-subtitle {
            text-align: left;
            margin-bottom: 40px;
            max-width: 90%;
        }

        .how-steps {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .how-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid var(--primary-purple-light);
            background: var(--white);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .how-step:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .how-step.active {
            background: var(--primary-purple);
            border-color: var(--primary-purple);
            color: var(--white);
        }

        .how-step.active .how-step-title,
        .how-step.active .how-step-desc {
            color: var(--white);
        }

        .how-step.active .how-step-icon,
        .how-step.active .how-step-icon i {
            color: var(--white);
        }

        .how-step-icon {
            font-size: 24px;
            color: var(--text-dark);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .how-step-icon i {
            font-size: 24px;
            color: var(--primary-purple);
        }

        .how-step-title {
            font-size: 1.125rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .how-step-desc {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.5;
        }

        .how-visual-card {
            border-radius: 20px;
            padding: 0;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: background-color 300ms ease;
            background: #f4f6ff;
            /* Default bg */
        }

        .how-visual-image {
            max-width: 100%;
            height: auto;
            display: block;
            opacity: 1;
            transition: opacity 0.3s ease-in-out;
        }

        .how-visual-image.fade-out {
            opacity: 0;
        }

        @media screen and (max-width: 968px) {
            .how-it-works-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .how-content .section-title,
            .how-content .section-subtitle {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .how-visual {
                order: -1;
                /* Image first on mobile if desired, or remove to keep at bottom */
            }
        }

        .step-visual {
            background: var(--bg-light-purple);
            border-radius: 12px;
            padding: 16px 24px;
            margin-top: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .step-visual i {
            font-size: 1.5rem;
            color: var(--primary-purple);
        }

        .step-visual span {
            font-size: 0.875rem;
            color: var(--text-dark);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: var(--bg-cream);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .testimonials-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .testimonials-header p {
            color: var(--text-gray);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 16px;
            padding: 24px;
            border: 1px solid var(--border-light);
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 16px;
        }

        .testimonial-stars i {
            color: #f1c40f;
            font-size: 1rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--bg-light-purple);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            font-size: 1.25rem;
        }

        .testimonial-info h4 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .testimonial-info span {
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            background: var(--white);
        }

        .faq-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .faq-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .faq-header p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            background: var(--bg-light-purple);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
        }

        .faq-question {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: background 0.3s;
        }

        .faq-question:hover {
            background: #eeedff;
        }

        .faq-question h4 {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .faq-question i {
            color: var(--text-gray);
            transition: transform 0.3s;
        }

        .faq-answer {
            padding: 0 20px 16px;
            font-size: 0.875rem;
            color: var(--text-gray);
            line-height: 1.6;
            display: none;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Blog Section */
        .blog {
            padding: 100px 0;
            background: var(--bg-light-purple);
        }

        .blog-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .blog-header h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .blog-header p {
            color: var(--text-gray);
        }

        .blog-featured {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 40px;
            border: 1px solid var(--border-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .blog-featured-image {
            padding: 0;
            background: #f1f2f6;
            display: block;
            overflow: hidden;
        }

        .blog-featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-featured:hover .blog-featured-image img {
            transform: scale(1.05);
        }

        .blog-featured-content {
            padding: 40px;
        }

        .blog-tag {
            display: inline-block;
            background: var(--bg-light-purple);
            color: var(--primary-purple);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .blog-featured h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .blog-featured p {
            color: var(--text-gray);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .blog-meta {
            display: flex;
            gap: 16px;
            font-size: 0.8rem;
            color: var(--text-gray);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .blog-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: all 0.3s;
        }

        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 40px rgba(108, 92, 231, 0.1);
        }

        .blog-card-image {
            height: 200px;
            background: #f1f2f6;
            display: block;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }

        .blog-card-content {
            padding: 20px;
        }

        .blog-card h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .blog-card p {
            font-size: 0.875rem;
            color: var(--text-gray);
            margin-bottom: 12px;
        }

        .blog-link {
            text-align: center;
            margin-top: 40px;
        }

        /* App Download Section */
        .app-download {
            padding: 100px 0;
            background: var(--white);
        }

        .app-download-container {
            text-align: center;
        }

        .app-download h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .app-download>p {
            color: var(--text-gray);
            margin-bottom: 32px;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 48px;
        }

        .app-features {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .app-feature {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .app-feature-icon {
            width: 56px;
            height: 56px;
            background: var(--bg-light-purple);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--primary-purple);
        }

        .app-feature span {
            font-size: 0.875rem;
            color: var(--text-gray);
        }

        /* Footer */
        .footer {
            background: #1a1a2e;
            color: var(--white);
            padding: 60px 0 24px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .footer-title {
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.125rem;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-purple);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.875rem;
        }

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

            .hero-container,
            .takkada-way-container,
            .smart-collection-container,
            .faq-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero-content {
                text-align: center;
                max-width: 100%;
            }

            .hero-buttons,
            .hero-features {
                justify-content: center;
            }

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

            .blog-featured {
                grid-template-columns: 1fr;
            }

            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .hero-title {
                font-size: 2.25rem;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .problems-grid,
            .testimonials-grid,
            .blog-grid {
                grid-template-columns: 1fr;
            }

            .everything-visual-content {
                flex-direction: column;
                align-items: center;
            }

            .smart-collection-phones {
                flex-direction: column;
            }

            .app-features {
                gap: 24px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .takkada-way-container {
                flex-direction: column-reverse;
            }

            .faq-container {
                gap: 32px;
            }
        }

        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .app-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
            }

            .floating-card {
                display: none;
            }

            .way-floating-card {
                display: none;
            }
        }

        /* Contact Page Styles */
        .contact-page-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            margin-top: 40px;
        }

        /* Add spacing for fixed header on pages without hero section */
        main.main.section {
            padding-top: 140px;
        }

        .contact-info-card {
            background: var(--bg-light-purple);
            border-radius: 24px;
            padding: 40px;
            height: 100%;
        }

        .contact-info-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .contact-info-card p {
            color: var(--text-gray);
            margin-bottom: 32px;
        }

        .info-item {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }

        .info-item i {
            font-size: 1.5rem;
            color: var(--primary-purple);
            background: var(--white);
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-item h4 {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .info-item span {
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .contact-form-wrapper {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid var(--border-light);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .contact-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-light);
            font-family: var(--font-family-sans);
            font-size: 0.95rem;
            color: var(--text-dark);
            background: var(--bg-light-purple);
            transition: all 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-purple);
            background: var(--white);
            box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
        }

        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }

        @media (max-width: 900px) {
            .contact-page-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .contact-form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full-width {
                grid-column: span 1;
            }
        }

        /* Everything Section Updates */
        .everything-section {
            padding: 50px 0;
            background: #ffffff;
        }

        .everything-container {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .everything-section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .everything-title {
            margin: 0 0 10px;
            font-size: 36px;
            line-height: 1.12;
            font-weight: 900;
            color: #0b0b0f;
        }

        .everything-title-highlight {
            position: relative;
            display: inline-block;
        }

        .everything-title-underline {
            position: absolute;
            left: 6%;
            right: 6%;
            bottom: -6px;
            height: 10px;
            background: rgba(91, 73, 255, .22);
            border-radius: 999px;
        }

        .everything-subtitle {
            margin: 0;
            font-size: 18px;
            line-height: 1.65;
            color: #5b6270;
        }

        /* Everything Cards */
        .everything-card {
            border: 1px solid #e9ecf2;
            border-radius: 18px;
            padding: 30px;
            display: flex;
            gap: 24px;
            align-items: stretch;
            background: #fff;
            box-shadow: 0 16px 50px rgba(17, 24, 39, .06);
            margin-bottom: 40px;
            /* Increased margin for better scroll feel */
            flex-wrap: wrap;
            position: sticky;
            top: 120px;
            z-index: 1;
        }

        /* Staggered offsets for stacking effect 
           Note: nth-child count includes the header div which is the 1st child
        */
        .everything-card:nth-child(2) {
            top: 120px;
        }

        .everything-card:nth-child(3) {
            top: 140px;
        }

        .everything-card:nth-child(4) {
            top: 160px;
        }

        .everything-card.large-padding {
            border-radius: 22px;
            padding: 44px;
            gap: 40px;
        }

        .everything-card-content {
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .everything-card-visual-wrapper {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: flex-end;
            align-items: flex-start;
        }

        .everything-card-visual-wrapper.left-align {
            justify-content: flex-start;
        }

        .everything-card-visual {
            width: min(380px, 100%);
            background: linear-gradient(135deg, #f3f0ff, #eee9ff);
            border-radius: 26px;
            padding: 20px;
            border: 1px solid #ebe7ff;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            height: 340px;
            overflow: hidden;
        }

        .everything-card-image {
            width: min(220px, 100%);
            height: auto;
            display: block;
            border-radius: 22px;
            box-shadow: 0 28px 70px rgba(17, 24, 39, .20);
            margin-top: 6px;
            -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
            mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
        }

        .everything-card-title {
            margin: 0 0 14px;
            font-size: 28px;
            line-height: 1.12;
            font-weight: 900;
            color: #0b0b0f;
        }

        .everything-card-desc {
            margin: 0 0 26px;
            font-size: 16px;
            line-height: 1.8;
            color: #5b6270;
            max-width: 560px;
        }

        /* Everything Bullets */
        .card-bullets {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 4px;
        }

        .card-bullet-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .card-bullet-icon {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: #5b49ff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 28px;
        }

        .card-bullet-check {
            color: #fff;
            font-size: 16px;
            font-weight: 900;
            line-height: 0;
        }

        .card-bullet-text {
            font-size: 17px;
            color: #0b0b0f;
        }


        /* How It Works Section Updates */
        .how-section {
            padding: 72px 0;
            background: #ffffff;
        }

        .how-container {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .how-wrapper {
            display: flex;
            gap: 44px;
            align-items: stretch;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .how-content-col {
            flex: 1;
            min-width: 320px;
            max-width: 560px;
        }

        .how-title {
            margin: 0 0 10px;
            font-size: 44px;
            line-height: 1.1;
            font-weight: 800;
            color: #0b0b0f;
        }

        .how-subtitle {
            margin: 0 0 28px;
            font-size: 18px;
            line-height: 1.6;
            color: #555b66;
            max-width: 520px;
        }

        /* How Steps */
        .how-step {
            border-radius: 16px;
            padding: 18px;
            background: #fff;
            border: 1px solid #e9ecf2;
            display: flex;
            gap: 14px;
            align-items: flex-start;
            margin-bottom: 14px;
        }

        .how-step:last-child {
            margin-bottom: 0;
        }

        .how-step.primary {
            padding: 20px 18px;
            background: linear-gradient(135deg, #5b49ff, #6b32ff);
            color: #fff;
            box-shadow: 0 14px 34px rgba(91, 73, 255, .22);
            border: none;
        }

        .how-step-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #f4f6fb;
            display: flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 44px;
        }

        .how-step.primary .how-step-icon {
            background: rgba(255, 255, 255, .18);
        }

        .how-step-icon i {
            font-size: 22px;
            color: #111827;
        }

        .how-step.primary .how-step-icon i {
            color: #fff;
        }

        .how-step-title {
            font-size: 22px;
            font-weight: 800;
            margin: 0 0 6px;
            color: #0b0b0f;
        }

        .how-step.primary .how-step-title {
            color: inherit;
        }

        .how-step-desc {
            font-size: 16px;
            line-height: 1.55;
            color: #5b6270;
            margin: 0;
        }

        .how-step.primary .how-step-desc {
            color: rgba(255, 255, 255, .92);
        }

        /* How Visual */
        .how-visual-col {
            flex: 1;
            min-width: 320px;
            display: flex;
            justify-content: flex-end;
        }

        .how-visual-card {
            width: min(520px, 100%);
            background: #f5f3ff;
            border-radius: 26px;
            padding: 24px;
            border: 1px solid #ebe7ff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .how-visual-image {
            width: min(360px, 100%);
            height: auto;
            display: block;
            border-radius: 26px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
        }

        /* Mobile Responsiveness Updates */
        @media (max-width: 768px) {

            /* Everything Section Mobile */
            .everything-section {
                padding: 40px 0;
            }

            .everything-section-header {
                margin-bottom: 30px;
                padding: 0 16px;
            }

            .everything-title {
                font-size: 28px;
            }

            .everything-subtitle {
                font-size: 16px;
            }

            .everything-card {
                flex-direction: column;
                padding: 24px 20px;
                gap: 24px;
                align-items: center;
                /* Center content */
                top: 80px;
                /* Adjust sticky header offset */
            }

            .everything-card:nth-child(2) {
                top: 80px;
            }

            .everything-card:nth-child(3) {
                top: 90px;
            }

            .everything-card:nth-child(4) {
                top: 100px;
            }

            .everything-card.large-padding {
                padding: 24px 20px;
                gap: 24px;
            }

            .everything-card-content {
                min-width: 0;
                order: 1;
                /* Content first usually reads better */
            }

            .everything-card-visual-wrapper {
                min-width: 0;
                justify-content: center;
                /* Center image */
                order: 2;
                margin-top: 10px;
            }

            .everything-card-visual-wrapper.left-align {
                justify-content: center;
            }

            .everything-card-visual {
                width: 100%;
                /* Full width card */
                height: auto;
                min-height: 250px;
                /* reasonable height */
            }

            .everything-card-image {
                width: 70%;
                /* Scale image down slightly */
                max-width: 220px;
            }

            .everything-card-title {
                font-size: 24px;
                text-align: center;
            }

            .everything-card-desc {
                font-size: 15px;
                text-align: center;
            }

            .card-bullets {
                align-items: flex-start;
                /* Keep aligned left for readability */
            }

            /* How It Works Mobile */
            .how-wrapper {
                flex-direction: column;
                gap: 40px;
            }

            .how-content-col {
                max-width: 100%;
                min-width: 0;
            }

            .how-title {
                font-size: 32px;
                text-align: center;
            }

            .how-subtitle {
                text-align: center;
                margin: 0 auto 30px;
            }

            .how-step {
                padding: 16px;
            }

            .how-step-icon {
                width: 36px;
                height: 36px;
                flex: 0 0 36px;
            }

            .how-step-icon i {
                font-size: 18px;
            }

            .how-step-title {
                font-size: 18px;
            }

            .how-step-desc {
                font-size: 14px;
            }

            .how-visual-col {
                justify-content: center;
            }

            .how-visual-card {
                width: 100%;
                padding: 20px;
            }

            .how-visual-image {
                width: 80%;
                /* scale down */
            }
        }

        /* =========================================================
   TESTIMONIALS — BEST VERSION (premium glass + tilt + swipe)
========================================================= */

        .testimonials {
            position: relative;
            padding: 92px 0;
            overflow: hidden;
            background: #fbf7ef;
        }

        .testimonials-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 44px;
            position: relative;
            z-index: 2;
        }

        .testimonials-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(0, 0, 0, 0.06);
            font-weight: 950;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 12px;
            color: rgba(15, 18, 35, 0.62);
            margin-bottom: 12px;
        }

        .testimonials-header h2 {
            margin: 0 0 10px;
            font-size: clamp(30px, 3.2vw, 52px);
            line-height: 1.1;
            font-weight: 950;
            letter-spacing: -0.03em;
            color: rgba(10, 12, 20, 0.96);
        }

        .testimonials-header p {
            margin: 0;
            font-size: 16.5px;
            line-height: 1.65;
            color: rgba(15, 18, 35, 0.70);
        }

        /* Background ambience */
        .testimonials-bg {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .blob {
            position: absolute;
            width: 560px;
            height: 560px;
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0.7;
        }

        .blob-1 {
            left: -180px;
            top: -160px;
            background: radial-gradient(circle at 30% 30%, rgba(91, 73, 255, 0.35), rgba(91, 73, 255, 0) 60%);
            animation: blobA 10s ease-in-out infinite;
        }

        .blob-2 {
            right: -220px;
            top: 60px;
            background: radial-gradient(circle at 60% 35%, rgba(16, 185, 129, 0.30), rgba(16, 185, 129, 0) 60%);
            animation: blobB 12s ease-in-out infinite;
        }

        .blob-3 {
            left: 22%;
            bottom: -240px;
            background: radial-gradient(circle at 40% 55%, rgba(249, 115, 22, 0.24), rgba(249, 115, 22, 0) 60%);
            animation: blobC 13s ease-in-out infinite;
        }

        @keyframes blobA {

            0%,
            100% {
                transform: translate(0, 0)
            }

            50% {
                transform: translate(26px, 18px)
            }
        }

        @keyframes blobB {

            0%,
            100% {
                transform: translate(0, 0)
            }

            50% {
                transform: translate(-28px, 18px)
            }
        }

        @keyframes blobC {

            0%,
            100% {
                transform: translate(0, 0)
            }

            50% {
                transform: translate(18px, -18px)
            }
        }

        .grid-noise {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(0, 0, 0, 0.035) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
            background-size: 64px 64px;
            opacity: 0.10;
            mask-image: radial-gradient(circle at 50% 40%, #000 30%, transparent 70%);
        }

        /* Track wrapper */
        .testimonials-track {
            position: relative;
            z-index: 2;
        }

        /* Desktop: grid */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
            align-items: stretch;
        }

        /* Mobile: swipe carousel */
        @media (max-width: 980px) {
            .testimonials {
                padding: 68px 0;
            }

            .testimonials-grid {
                grid-template-columns: repeat(3, 88%);
                gap: 14px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-padding: 14px;
                padding: 6px 8px 18px;
                -webkit-overflow-scrolling: touch;
            }

            .testimonials-grid::-webkit-scrollbar {
                height: 8px;
            }

            .testimonials-grid::-webkit-scrollbar-thumb {
                background: rgba(0, 0, 0, 0.12);
                border-radius: 999px;
            }
        }

        .testimonial-card {
            position: relative;
            border-radius: 24px;
            padding: 22px;
            background: rgba(255, 255, 255, 0.66);
            border: 1px solid rgba(0, 0, 0, 0.06);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow:
                0 20px 70px rgba(0, 0, 0, 0.09),
                0 1px 0 rgba(255, 255, 255, 0.55) inset;
            transform: translateZ(0);
            will-change: transform, opacity;
            transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
            overflow: hidden;
            scroll-snap-align: start;
            outline: none;
        }

        /* Gradient border layer */
        .card-border {
            position: absolute;
            inset: -1px;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(90deg,
                    rgba(91, 73, 255, 0.45),
                    rgba(16, 185, 129, 0.36),
                    rgba(249, 115, 22, 0.32),
                    rgba(91, 73, 255, 0.45));
            background-size: 320% 100%;
            animation: borderShift 7.5s ease-in-out infinite;
            opacity: 0;
            pointer-events: none;

            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        @keyframes borderShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Glow that follows pointer (JS sets --mx/--my) */
        .card-glow {
            position: absolute;
            inset: -40%;
            background: radial-gradient(340px 340px at var(--mx, 20%) var(--my, 20%),
                    rgba(91, 73, 255, 0.22),
                    rgba(16, 185, 129, 0.10),
                    rgba(249, 115, 22, 0.08),
                    rgba(255, 255, 255, 0) 60%);
            opacity: 0;
            transition: opacity 220ms ease;
            pointer-events: none;
        }

        /* Hover/focus premium state */
        .testimonial-card:hover,
        .testimonial-card:focus-visible {
            transform: translateY(-8px);
            box-shadow:
                0 30px 110px rgba(0, 0, 0, 0.14),
                0 1px 0 rgba(255, 255, 255, 0.6) inset;
            background: rgba(255, 255, 255, 0.76);
            border-color: rgba(0, 0, 0, 0.10);
        }

        .testimonial-card:hover .card-border,
        .testimonial-card:focus-visible .card-border {
            opacity: 0.95;
        }

        .testimonial-card:hover .card-glow,
        .testimonial-card:focus-visible .card-glow {
            opacity: 1;
        }

        /* Top line */
        .testimonial-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            margin-bottom: 14px;
        }

        .testimonial-stars {
            display: flex;
            gap: 6px;
            color: #f4b400;
            filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.10));
        }

        .testimonial-tag {
            font-size: 12px;
            font-weight: 950;
            padding: 8px 12px;
            border-radius: 999px;
            white-space: nowrap;
            background: rgba(91, 73, 255, 0.12);
            border: 1px solid rgba(91, 73, 255, 0.18);
            color: rgba(15, 18, 35, 0.86);
        }

        .testimonial-tag.green {
            background: rgba(16, 185, 129, 0.13);
            border-color: rgba(16, 185, 129, 0.20);
        }

        .testimonial-tag.orange {
            background: rgba(249, 115, 22, 0.14);
            border-color: rgba(249, 115, 22, 0.20);
        }

        /* Quote */
        .testimonial-text {
            margin: 0 0 16px;
            font-size: 15.6px;
            line-height: 1.72;
            color: rgba(15, 18, 35, 0.78);
        }

        .quote {
            font-size: 28px;
            font-weight: 950;
            color: rgba(91, 73, 255, 0.40);
            position: relative;
            top: 6px;
            margin-right: 4px;
            line-height: 0;
        }

        .quote.end {
            margin-left: 4px;
            margin-right: 0;
        }

        /* Metrics row */
        .testimonial-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 12px;
            border-radius: 16px;
            background: rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            margin-bottom: 16px;
        }

        .metric-value {
            font-size: 16px;
            font-weight: 950;
            color: rgba(10, 12, 20, 0.92);
        }

        .metric-label {
            font-size: 12.5px;
            color: rgba(15, 18, 35, 0.62);
            margin-top: 2px;
        }

        /* Author row */
        .testimonial-author {
            display: grid;
            grid-template-columns: 44px 1fr auto;
            align-items: center;
            gap: 12px;
        }

        .avatar {
            width: 44px;
            height: 44px;
            border-radius: 999px;
            display: grid;
            place-items: center;
            background:
                radial-gradient(circle at 30% 30%, rgba(91, 73, 255, 0.30), rgba(91, 73, 255, 0.10)),
                radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.22), rgba(16, 185, 129, 0.06));
            border: 1px solid rgba(0, 0, 0, 0.06);
        }

        .avatar i {
            font-size: 18px;
            color: rgba(15, 18, 35, 0.70);
        }

        .who h4 {
            margin: 0 0 3px;
            font-size: 15px;
            font-weight: 950;
            color: rgba(10, 12, 20, 0.92);
        }

        .who span {
            font-size: 13.5px;
            color: rgba(15, 18, 35, 0.62);
        }

        /* Verified pill */
        .verified {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 950;
            padding: 8px 10px;
            border-radius: 999px;
            background: rgba(16, 185, 129, 0.12);
            border: 1px solid rgba(16, 185, 129, 0.18);
            color: rgba(15, 18, 35, 0.82);
        }

        .verified i {
            font-size: 16px;
        }

        /* Swipe hint + dots (shown only on mobile) */
        .scroll-hint,
        .dots {
            display: none;
        }

        @media (max-width: 980px) {
            .scroll-hint {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                font-size: 12px;
                font-weight: 900;
                color: rgba(15, 18, 35, 0.55);
                margin-top: 12px;
                opacity: 0.9;
            }

            .scroll-hint i {
                font-size: 16px;
            }

            .dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 10px;
            }

            .dots .dot {
                width: 8px;
                height: 8px;
                border-radius: 999px;
                background: rgba(0, 0, 0, 0.16);
                transition: width 220ms ease, background 220ms ease;
            }

            .dots .dot.is-active {
                width: 22px;
                background: rgba(91, 73, 255, 0.45);
            }
        }

        /* =========================================================
   Scroll reveal (staggered)
========================================================= */
        [data-animate="testimonials"] .testimonials-header,
        [data-animate="testimonials"] .testimonial-card {
            opacity: 0;
            transform: translateY(16px);
        }

        [data-animate="testimonials"].is-inview .testimonials-header {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 800ms ease, transform 800ms cubic-bezier(.2, .8, .2, 1);
        }

        [data-animate="testimonials"].is-inview .testimonial-card {
            opacity: 1;
            transform: translateY(0);
            transition:
                opacity 700ms ease calc(160ms + var(--stagger, 0ms)),
                transform 700ms cubic-bezier(.2, .8, .2, 1) calc(160ms + var(--stagger, 0ms));
        }

        /* =========================================================
   BLOG — BEST VERSION (featured hero + cards + filters)
========================================================= */

        .blog {
            position: relative;
            padding: 92px 0;
            overflow: hidden;
            background: #fbf7ef;
            /* keep your beige theme */
        }

        .blog::before {
            content: "";
            position: absolute;
            inset: -40%;
            background:
                radial-gradient(500px 500px at 20% 20%, rgba(91, 73, 255, 0.18), rgba(255, 255, 255, 0) 60%),
                radial-gradient(520px 520px at 80% 40%, rgba(16, 185, 129, 0.14), rgba(255, 255, 255, 0) 60%),
                radial-gradient(540px 540px at 55% 85%, rgba(249, 115, 22, 0.12), rgba(255, 255, 255, 0) 60%);
            filter: blur(16px);
            opacity: 0.9;
            pointer-events: none;
        }

        .blog-header {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 980px;
            margin: 0 auto 30px;
        }

        .blog-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(0, 0, 0, 0.06);
            font-weight: 950;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-size: 12px;
            color: rgba(15, 18, 35, 0.62);
            margin-bottom: 12px;
        }

        .blog-header h2 {
            margin: 0 0 10px;
            font-size: clamp(30px, 3.2vw, 52px);
            line-height: 1.1;
            font-weight: 950;
            letter-spacing: -0.03em;
            color: rgba(10, 12, 20, 0.96);
        }

        .blog-header p {
            margin: 0 auto;
            font-size: 16.5px;
            line-height: 1.65;
            color: rgba(15, 18, 35, 0.70);
            max-width: 720px;
        }

        /* Controls */
        .blog-controls {
            margin-top: 18px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }

        .blog-search {
            width: min(640px, 100%);
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 14px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.66);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 14px 50px rgba(0, 0, 0, 0.06);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .blog-search i {
            font-size: 18px;
            color: rgba(15, 18, 35, 0.55);
        }

        .blog-search input {
            border: none;
            outline: none;
            width: 100%;
            font-size: 14.5px;
            background: transparent;
            color: rgba(10, 12, 20, 0.90);
        }

        .blog-chips {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .chip {
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.55);
            color: rgba(15, 18, 35, 0.78);
            font-weight: 900;
            font-size: 13px;
            padding: 9px 12px;
            border-radius: 999px;
            cursor: pointer;
            transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
        }

        .chip:hover {
            transform: translateY(-2px);
        }

        .chip.is-active {
            background: rgba(91, 73, 255, 0.14);
            border-color: rgba(91, 73, 255, 0.22);
            color: rgba(15, 18, 35, 0.90);
        }

        /* Featured wrap */
        .featured-wrap {
            position: relative;
            z-index: 2;
            margin: 26px 0 18px;
        }

        /* Featured card */
        .featured-card {
            position: relative;
            border-radius: 28px;
            overflow: hidden;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 0;
            background: rgba(255, 255, 255, 0.66);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 26px 100px rgba(0, 0, 0, 0.10);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .featured-media {
            position: relative;
            min-height: 320px;
            background: linear-gradient(135deg, rgba(91, 73, 255, 0.14), rgba(16, 185, 129, 0.10), rgba(249, 115, 22, 0.08));
        }

        .featured-media::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(500px 320px at 20% 30%, rgba(91, 73, 255, 0.22), rgba(255, 255, 255, 0) 60%),
                radial-gradient(520px 340px at 80% 60%, rgba(16, 185, 129, 0.18), rgba(255, 255, 255, 0) 60%);
            opacity: 0.9;
        }

        .featured-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .featured-content {
            padding: 26px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .badges {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .badge {
            font-size: 12px;
            font-weight: 950;
            padding: 8px 12px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.06);
            color: rgba(15, 18, 35, 0.76);
        }

        .badge.purple {
            background: rgba(91, 73, 255, 0.12);
            border-color: rgba(91, 73, 255, 0.18);
        }

        .badge.green {
            background: rgba(16, 185, 129, 0.12);
            border-color: rgba(16, 185, 129, 0.18);
        }

        .badge.orange {
            background: rgba(249, 115, 22, 0.12);
            border-color: rgba(249, 115, 22, 0.18);
        }

        .featured-content h3 {
            margin: 0 0 10px;
            font-size: 24px;
            font-weight: 950;
            color: rgba(10, 12, 20, 0.96);
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .featured-content p {
            margin: 0 0 16px;
            font-size: 14.8px;
            line-height: 1.7;
            color: rgba(15, 18, 35, 0.74);
        }

        .meta-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-top: 6px;
        }

        .meta {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(15, 18, 35, 0.62);
            font-size: 13px;
            font-weight: 800;
        }

        .meta i {
            font-size: 16px;
        }

        .read-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 950;
            color: rgba(15, 18, 35, 0.90);
            text-decoration: none;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(91, 73, 255, 0.12);
            border: 1px solid rgba(91, 73, 255, 0.18);
            transition: transform 180ms ease;
        }

        .read-cta:hover {
            transform: translateY(-2px);
        }

        /* Responsive featured */
        @media (max-width: 980px) {
            .featured-card {
                grid-template-columns: 1fr;
            }

            .featured-media {
                min-height: 220px;
            }
        }

        /* Blog grid */
        .blog-grid {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-top: 18px;
        }

        @media (max-width: 980px) {
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Blog card */
        .blog-card {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.62);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
            will-change: transform, opacity;
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 26px 90px rgba(0, 0, 0, 0.12);
            background: rgba(255, 255, 255, 0.72);
        }

        .blog-card .media {
            height: 160px;
            background: linear-gradient(135deg, rgba(91, 73, 255, 0.12), rgba(16, 185, 129, 0.08), rgba(249, 115, 22, 0.08));
            position: relative;
        }

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

        .blog-card .body {
            padding: 16px 16px 16px;
        }

        .blog-card .title {
            margin: 0 0 8px;
            font-size: 16px;
            font-weight: 950;
            letter-spacing: -0.01em;
            color: rgba(10, 12, 20, 0.92);
            line-height: 1.25;
        }

        .blog-card .excerpt {
            margin: 0 0 12px;
            font-size: 13.8px;
            line-height: 1.65;
            color: rgba(15, 18, 35, 0.70);
        }

        .blog-card .bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .blog-card .date {
            display: flex;
            gap: 8px;
            align-items: center;
            font-size: 12.5px;
            font-weight: 850;
            color: rgba(15, 18, 35, 0.60);
        }

        .blog-card .date i {
            font-size: 15px;
        }

        .blog-card .more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 950;
            text-decoration: none;
            color: rgba(15, 18, 35, 0.88);
            padding: 9px 10px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.04);
            border: 1px solid rgba(0, 0, 0, 0.06);
            transition: transform 180ms ease;
        }

        .blog-card:hover .more {
            transform: translateY(-2px);
        }

        /* Footer */
        .blog-footer {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            margin-top: 26px;
        }

        .btn-wide {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        /* Skeletons */
        .featured-skeleton,
        .card-skeleton {
            border-radius: 22px;
            padding: 18px;
            background: rgba(255, 255, 255, 0.55);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 14px 50px rgba(0, 0, 0, 0.06);
        }

        .featured-skeleton {
            border-radius: 28px;
            padding: 22px;
        }

        .sk {
            border-radius: 14px;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.09), rgba(0, 0, 0, 0.05));
            background-size: 220% 100%;
            animation: shimmer 1.25s ease-in-out infinite;
        }

        .sk-media {
            height: 180px;
            border-radius: 18px;
            margin-bottom: 14px;
        }

        .sk-line {
            height: 14px;
            margin: 10px 0;
            border-radius: 999px;
        }

        .w60 {
            width: 60%;
        }

        .w90 {
            width: 90%;
        }

        .w95 {
            width: 95%;
        }

        .w70 {
            width: 70%;
        }

        .w55 {
            width: 55%;
        }

        @keyframes shimmer {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        /* =========================================================
   Scroll reveal
========================================================= */
        [data-animate="blog"] .blog-header,
        [data-animate="blog"] .featured-wrap,
        [data-animate="blog"] .blog-grid>*,
        [data-animate="blog"] .blog-footer {
            opacity: 0;
            transform: translateY(16px);
        }

        [data-animate="blog"].is-inview .blog-header {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 800ms ease, transform 800ms cubic-bezier(.2, .8, .2, 1);
        }

        [data-animate="blog"].is-inview .featured-wrap {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 800ms ease 120ms, transform 800ms cubic-bezier(.2, .8, .2, 1) 120ms;
        }

        [data-animate="blog"].is-inview .blog-grid>* {
            opacity: 1;
            transform: translateY(0);
            transition:
                opacity 650ms ease calc(220ms + var(--stagger, 0ms)),
                transform 650ms cubic-bezier(.2, .8, .2, 1) calc(220ms + var(--stagger, 0ms));
        }

        [data-animate="blog"].is-inview .blog-footer {
            opacity: 1;
            transform: translateY(0);
            transition: opacity 700ms ease 300ms, transform 700ms cubic-bezier(.2, .8, .2, 1) 300ms;
        }