
/* ===== 1. RESET & BASE ===== */
:root {
            --color-primary: #E20074;
            --color-primary-dark: #B5005B;
            --color-yellow: #FDD400;
            --color-success: #22C55E;
            --color-bg-base: #FFFFFF;
            --color-bg-gray: #F4F4F5;
            --color-text-title: #0A0A0A;
            --color-text-body: #52525B;
            --color-text-secondary: #71717A;
            --color-text-muted: #A1A1AA;
            --color-text-dark: #1a1a1a;
            --color-border: #E7E5E4;
            --radius-md: 16px;
            --radius-lg: 32px;
            --radius-xl: 40px;
            --radius-pill: 9999px;
            --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.05);
            --shadow-glow: 0 10px 30px rgba(226, 0, 116, 0.15);
            --font-headings: 'Ubuntu', sans-serif;
            --font-body: 'Ubuntu', sans-serif;

            /* New Premium Gradients */
            --grad-premium: linear-gradient(135deg, #E20074 0%, #FA4C8C 100%);
            --grad-primary: linear-gradient(135deg, #DF1564 0%, #FA4C8C 100%);
            --grad-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
            --grad-surface: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
        }

        /* Reveal Animation Classes */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            filter: blur(6px);
            transition: opacity 0.8s cubic-bezier(0.2, 1, 0.2, 1), transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), filter 0.8s cubic-bezier(0.2, 1, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }


        html {
            overflow-x: clip;
            width: 100%;
        }

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

        body {
            font-family: var(--font-body);
            background-color: var(--color-bg-base);
            color: var(--color-text-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: clip;
            width: 100%;
        }

        * {
            -webkit-tap-highlight-color: transparent;
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 8px;
            z-index: 1000;
            background: var(--color-primary);
            color: #fff;
            padding: 12px 24px;
            border-radius: 0 0 8px 8px;
            font-weight: 700;
            font-size: 0.875rem;
            text-decoration: none;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 0;
        }

        button, a, input, textarea, [role="button"] {
            touch-action: manipulation;
        }

        :focus-visible {
            outline: 2px solid var(--color-primary);
            outline-offset: 2px;
        }

        section[id] {
            scroll-margin-top: 100px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-headings);
            color: var(--color-text-title);
            line-height: 1.1;
            font-weight: 800 !important;
            letter-spacing: -0.04em;
            text-wrap: pretty;
        }

        ul {
            list-style: none;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font-family: inherit;
        }

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

        .text-primary {
            color: var(--color-primary);
        }

        .badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background-color: var(--color-bg-gray);
            border-radius: var(--radius-pill);
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-text-title);
            margin-bottom: 24px;
        }

        .badge--yellow {
            background-color: var(--color-yellow);
            color: #0A0A0A;
        }

        @media (min-width: 769px) {
            .badge {
                margin-bottom: 32px;
            }
        }

        @media (max-width: 480px) {
            .badge {
                padding: 0.35rem 0.75rem;
                font-size: 0.65rem;
                white-space: nowrap;
            }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: var(--radius-pill);
            font-weight: 800;
            font-size: 0.875rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .btn--primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(223, 21, 100, 0.25);
        }

        .btn--secondary {
            background-color: transparent;
            color: var(--color-text-title);
            border: 2px solid var(--color-text-title);
        }

        .btn--secondary:hover {
            background-color: var(--color-text-title);
            color: #fff;
            transform: translateY(-2px);
        }

        /* NAVBAR = Pill Header */
        .navbar-wrapper {
            position: fixed;
            top: 24px;
            left: 0;
            width: 100%;
            z-index: 100;
            display: flex;
            justify-content: center;
            padding: 0 24px;
            pointer-events: none;
            transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            /* Let clicks pass through outside the pill */
        }

        .navbar-wrapper.is-scrolled {
            top: 12px;
        }

        .navbar {
            background: rgba(255, 250, 249, 0.67);
            /* Glassmorphism */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 60px;
            height: 60px;
            padding: 0 10px 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            box-shadow: 0 15px 35px rgba(255, 0, 122, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02);
            pointer-events: auto;
            transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            /* Re-enable clicks */
        }

        .is-scrolled .navbar {
            max-width: 1300px;
            border-top-color: rgba(255, 255, 255, 0);
            border-left-color: rgba(255, 255, 255, 0);
            border-right-color: rgba(255, 255, 255, 0);
            border-bottom-color: rgba(0, 0, 0, 0.08);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .is-over-dark .navbar {
            background: rgba(255, 250, 249, 0.95);
        }

        .navbar__brand {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--color-primary);
            letter-spacing: -0.04em;
            margin-right: 48px;
        }

        .navbar__menu {
            display: flex;
            gap: 32px;
            align-items: center;
            flex-grow: 1;
        }

        .navbar__link {
            font-family: var(--font-headings);
            font-size: 0.875rem;
            font-weight: 700;
            color: #55444D;
            /* Warm dark gray */
            position: relative;
            padding: 8px 0;
        }

        .navbar__link:hover {
            color: var(--color-primary);
        }

        .navbar__link.is-active {
            color: var(--color-primary);
        }

        .navbar__link.is-active::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--color-primary);
        }

        .navbar__actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .navbar__login {
            font-family: var(--font-headings);
            font-size: 0.875rem;
            font-weight: 700;
            color: #55444D;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.2s;
        }

        .navbar__login:hover {
            color: var(--color-primary);
        }

        .btn--primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 6px 6px 24px;
            background: var(--grad-primary);
            color: #FFFFFF;
            box-shadow: 0 10px 25px rgba(223, 21, 100, 0.25);
            border-radius: 999px;
            font-family: var(--font-headings);
            font-weight: 800;
            font-size: 0.85rem;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            border: none;
            white-space: nowrap;
        }

        .btn__icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            overflow: hidden;
            transition: background 0.3s ease;
        }

        .btn__icon svg {
            animation: icon-slide 1.2s ease-in-out infinite;
            transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .btn--primary:hover .btn__icon {
            background: rgba(255, 255, 255, 0.25);
        }

        @keyframes icon-slide {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(4px); }
        }

        .navbar__actions .btn {
            text-transform: none;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .navbar__toggle {
            display: none;
            width: 44px;
            height: 44px;
            align-items: center;
            justify-content: center;
            color: var(--color-text-title);
            background: rgba(0, 0, 0, 0.03);
            border-radius: 50%;
            cursor: pointer;
            transition: 0.2s;
        }

        .navbar__toggle:hover {
            background: rgba(0, 0, 0, 0.06);
        }

        @media (max-width: 1024px) {
            .navbar-wrapper {
                top: 12px;
                padding: 0 12px;
                transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .navbar-wrapper.is-scrolled {
                padding: 0;
            }

            .navbar {
                height: 60px;
                padding: 0 8px 0 20px;
                margin: 0;
                border-radius: 60px;
                transition: max-width 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .is-scrolled .navbar {
                border-top-color: rgba(255, 255, 255, 0);
                border-left-color: rgba(255, 255, 255, 0);
                border-right-color: rgba(255, 255, 255, 0);
                border-bottom-color: rgba(0, 0, 0, 0.08);
            }

            .navbar__brand {
                margin-right: 0;
                font-size: 1.35rem;
            }

            .navbar__link {
                opacity: 0;
                transform: translateY(-10px);
            }

            .navbar__menu {
                position: absolute;
                top: calc(100% + 8px);
                left: 0;
                right: 0;
                background: white;
                border-radius: 24px;
                flex-direction: column;
                padding: 20px;
                gap: 12px;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                border: 1px solid rgba(0, 0, 0, 0.05);
                display: none;
                opacity: 0;
                transform: translateY(-10px);
                pointer-events: none;
            }

            .navbar__menu.is-active {
                display: flex;
                opacity: 1;
                transform: translateY(0);
                pointer-events: auto;
                padding-bottom: 80px;
            }

            .navbar__toggle {
                display: flex;
            }

            .navbar__actions .btn--primary {
                display: none;
            }

            .navbar__actions .btn {
                padding: 10px 20px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                height: 60px;
                padding: 0 6px 0 16px;
            }

            .navbar__brand {
                font-size: 1.2rem;
            }

            .navbar__actions .btn {
                padding: 8px 14px;
                font-size: 0.75rem;
            }

            .navbar__toggle {
                width: 36px;
                height: 36px;
            }

            @media (max-width: 360px) {
                .navbar__brand {
                    font-size: 1.1rem;
                }

                .navbar__actions .btn {
                    padding: 6px 10px;
                    font-size: 0.7rem;
                }
            }
        }

        /* Responsive adjustments consolidated above */

        @media (max-width: 450px) {
            .navbar-wrapper.is-scrolled {
                padding: 0 12px;
            }

            .navbar-wrapper.is-scrolled .navbar {
                border-color: rgba(255, 255, 255, 0.4);
                max-width: 1200px;
            }
        }

        /* HERO */
        .hero {
            width: 100%;
            min-height: 100vh;
            padding-left: 24px;
            padding-right: 24px;
            padding-top: 115px;
            padding-bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            background: radial-gradient(circle at 80% 20%, rgba(226, 0, 116, 0.08), transparent 800px),
                radial-gradient(circle at 20% 80%, rgba(253, 212, 0, 0.04), transparent 600px);
            overflow: hidden;
        }

        .hero > .container {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 16px 24px 0;
        }

        .hero__content {
            flex: 1;
            max-width: 900px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 24px;
            line-height: 1;
        }

        .hero__description {
            font-size: 1.125rem;
            margin-bottom: 5px;
            max-width: 650px;
            color: var(--color-text-body);
        }

        /* Hero CTA Buttons */
        .hero__cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding-top: 10px;
        }

        .hero__btn-primary,
        .hero__btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border-radius: var(--radius-pill);
            height: 56px;
            /* Explicit height for perfect alignment */
            box-sizing: border-box;
            font-family: var(--font-headings);
            font-weight: 800;
            font-size: 1rem;
            letter-spacing: 0.01em;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .hero__btn-primary {
            padding: 8px 8px 8px 32px;
            background: var(--grad-primary);
            color: white;
            box-shadow: 0 15px 35px rgba(223, 21, 100, 0.3);
            position: relative;
            overflow: hidden;
        }

        .hero__btn-secondary {
            padding: 8px 32px 8px 8px;
            background: white;
            color: var(--color-text-title);
            border: 1px solid rgba(0, 0, 0, 0.06);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
        }

        .hero__btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 45px rgba(223, 21, 100, 0.4);
        }

        .hero__btn-secondary:hover,
        .btn--hero-white:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 45px rgba(226, 0, 116, 0.2);
        }

        /* White variant for Bento Cards */
        .btn--hero-white {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 8px 8px 32px;
            border-radius: var(--radius-pill);
            font-family: var(--font-headings);
            font-weight: 800;
            font-size: 0.85rem;
            letter-spacing: 0.01em;
            transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            border: none;
            cursor: pointer;
            background: white;
            color: var(--color-primary);
            box-shadow: 0 10px 25px rgba(226, 0, 116, 0.15);
            width: 100%;
            margin-top: 32px;
        }

        .btn--hero-white .btn__icon {
            color: var(--color-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
        }

        .btn--hero-white:hover .btn__icon {
            background: rgba(226, 0, 116, 0.1);
        }

        /* Hero Button Icons */
        .hero__btn-primary .btn__icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.3s ease;
        }

        .hero__btn-primary:hover .btn__icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .hero__btn-secondary .chat-icon-container {
            background: rgba(226, 0, 116, 0.08);
            color: var(--color-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            overflow: visible;
            margin-left: 3px;
        }

        .hero__btn-secondary .chat-bubble--1,
        .hero__btn-secondary .chat-bubble--2 {
            position: absolute;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .chat-bubble--1 {
            left: 3px;
            top: 3px;
            animation: chat-talk-1 4s infinite ease-in-out;
        }

        .chat-bubble--2 {
            right: 3px;
            bottom: 3px;
            animation: chat-talk-2 4s infinite ease-in-out;
            color: #25D366;
        }

        @keyframes chat-talk-1 {

            0%,
            40%,
            100% {
                transform: scale(0.8) rotate(0);
            }

            5%,
            35% {
                transform: scale(1.1) rotate(-5deg);
            }

            10%,
            20%,
            30% {
                transform: scale(1.15) rotate(5deg);
            }

            15%,
            25% {
                transform: scale(1.15) rotate(-5deg);
            }
        }

        @keyframes chat-talk-2 {

            0%,
            45%,
            95%,
            100% {
                transform: scale(0.8) rotate(0);
            }

            50%,
            90% {
                transform: scale(1.1) rotate(5deg);
            }

            55%,
            65%,
            75%,
            85% {
                transform: scale(1.15) rotate(-5deg);
            }

            60%,
            70%,
            80% {
                transform: scale(1.15) rotate(5deg);
            }
        }

        .hero__trust {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 24px;
        }

        .hero__trust-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.78rem;
            font-weight: 700;
            color: var(--color-text-muted);
            letter-spacing: 0.02em;
        }

        .hero__trust-item svg {
            color: var(--color-success);
            flex-shrink: 0;
        }

        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.85rem;
            }
            .hero__description {
                font-size: 0.9rem;
            }
            .hero__trust-item {
                font-size: 0.65rem;
            }
        }

        /* === DASHBOARD WIDGET (Browser Mockup) === */
        .dashboard-widget {
            width: calc(100% + 48px);
            max-width: 1200px;
            margin-left: -24px;
            margin-right: -24px;
            min-height: 200px;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px 24px 0 0;
            border: 1px solid rgba(0, 0, 0, 0.04);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: -2px;
            position: relative;
            z-index: 10;
        }

        /* Chrome Bar */
        .widget-chrome {
            background: rgba(248, 248, 250, 0.95);
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .widget-chrome__dots {
            display: flex;
            gap: 6px;
        }

        .widget-chrome__dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #E5E5E7;
        }

        .widget-chrome__addressbar {
            flex: 1;
            height: 28px;
            background: rgba(0, 0, 0, 0.04);
            border-radius: 6px;
            max-width: 280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0 10px;
            gap: 6px;
        }

        .widget-chrome__addressbar svg {
            opacity: 0.3;
            flex-shrink: 0;
        }

        .widget-chrome__addressbar span {
            height: 8px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            flex: 1;
        }

        /* App Body */
        .widget-body {
            display: flex;
            min-height: 200px;
        }

        /* Sidebar */
        .widget-sidebar {
            width: 64px;
            background: #FAFAFA;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            gap: 8px;
        }

        .widget-sidebar__item {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #C4C4CC;
            cursor: pointer;
            transition: color 0.2s, background 0.2s;
        }

        .widget-sidebar__item--active {
            background: rgba(226, 0, 116, 0.08);
            color: var(--color-primary);
        }

        .widget-sidebar__item--active .widget-sidebar__label {
            background: rgba(226, 0, 116, 0.15);
        }

        .widget-sidebar__label {
            height: 6px;
            width: 48px;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 4px;
            margin-left: 8px;
        }

        .widget-sidebar__row {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, color 0.3s;
            position: relative;
        }

        .widget-sidebar__row--active {
            background: rgba(226, 0, 116, 0.08);
        }

        .widget-sidebar__row--active svg {
            color: var(--color-primary);
        }

        /* Main Content */
        .widget-content {
            flex: 1;
            padding: 16px 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        /* Metrics Row */
        .widget-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .widget-metric {
            background: white;
            border-radius: 14px;
            padding: 12px 14px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .widget-metric__label {
            font-size: 0.6rem;
            font-weight: 800;
            color: var(--color-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.12em;
        }

        .widget-metric__value {
            font-family: var(--font-headings);
            font-size: 1.4rem;
            color: var(--color-text-title);
            font-weight: 900;
            line-height: 1;
            margin: 2px 0;
        }

        .widget-metric__tag {
            font-size: 0.7rem;
            font-weight: 700;
            color: var(--color-success);
        }

        .widget-metric__tag--pink {
            color: var(--color-primary);
        }

        .widget-metric__tag--green {
            color: var(--color-success);
        }

        /* Bottom Placeholder */
        .widget-footer-hint {
            display: flex;
            align-items: center;
            gap: 8px;
            padding-top: 4px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }

        .widget-footer-hint span {
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.2);
        }

        .widget-footer-hint__bar {
            height: 6px;
            background: rgba(0, 0, 0, 0.06);
            border-radius: 4px;
            flex: 1;
            max-width: 80px;
        }

        /* User Skeleton List */
        .widget-users {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: 12px;
            padding-top: 24px;
            border-top: 1px solid rgba(0, 0, 0, 0.04);
        }

        .widget-user {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .widget-user__avatar {
            width: 32px;
            height: 32px;
            background: #E5E7EB;
            border-radius: 50%;
            flex-shrink: 0;
            animation: skeleton-pulse 2s infinite ease-in-out;
        }

        .widget-user__info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .widget-user__name {
            height: 10px;
            width: 100px;
            background: #E5E7EB;
            border-radius: 4px;
            animation: skeleton-pulse 2s infinite ease-in-out;
        }

        .widget-user__plan {
            height: 7px;
            width: 60px;
            background: #F3F4F6;
            border-radius: 4px;
            animation: skeleton-pulse 2s infinite ease-in-out;
            animation-delay: 0.2s;
        }

        .widget-user__usage {
            width: 140px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            align-items: flex-end;
        }

        .widget-user__usage-text {
            height: 7px;
            width: 40px;
            background: #E5E7EB;
            border-radius: 4px;
            animation: skeleton-pulse 2s infinite ease-in-out;
            animation-delay: 0.4s;
        }

        .widget-user__usage-bar-bg {
            width: 100%;
            height: 5px;
            background: #F3F4F6;
            border-radius: 2px;
            overflow: hidden;
        }

        .widget-user__usage-bar {
            height: 100%;
            background: var(--color-primary);
            border-radius: 2px;
            opacity: 0.6;
        }

        @keyframes skeleton-pulse {
            0% {
                opacity: 0.6;
            }

            50% {
                opacity: 0.3;
            }

            100% {
                opacity: 0.6;
            }
        }

        /* WhatsApp Simulation Styles */
        .whatsapp-chat {
            width: 100%;
            height: 100%;
            background: #E5DDD5;
            /* Classic WA Background */
            display: flex;
            flex-direction: column;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .chat-header {
            background: #075E54;
            color: white;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .chat-header__avatar {
            width: 40px;
            height: 40px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.1rem;
        }

        .chat-header__info h4 {
            font-size: 0.9rem;
            margin: 0;
            color: white;
        }

        .chat-header__info span {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .chat-body {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow-y: auto;
            overscroll-behavior: contain;
            background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
            /* WA pattern */
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE and Edge */
        }

        .chat-body::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari and Opera */
        }

        .chat-bubble {
            max-width: 85%;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.85rem;
            line-height: 1.4;
            position: relative;
            box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
        }

        .chat-bubble--left {
            align-self: flex-start;
            background: white;
            border-top-left-radius: 0;
        }

        .chat-bubble--right {
            align-self: flex-end;
            background: #DCF8C6;
            border-top-right-radius: 0;
        }

        .chat-bubble__time {
            display: block;
            font-size: 0.65rem;
            color: rgba(0, 0, 0, 0.45);
            text-align: right;
            margin-top: 4px;
        }

        .chat-bubble__action {
            display: block;
            margin-top: 8px;
            padding: 8px;
            background: rgba(7, 94, 84, 0.1);
            border-radius: 6px;
            color: #075E54;
            text-align: center;
            font-weight: 700;
            text-decoration: none;
        }

        /* DASHBOARD PAGE CONTROLS */
        .widget-content {
            flex: 1;
            padding: 24px;
            overflow: hidden;
            background: white;
            display: grid;
        }

        .widget-page {
            grid-area: 1 / 1 / 2 / 2;
            opacity: 0;
            pointer-events: none;
            overflow: hidden;
            transition: opacity 0.4s ease;
        }

        .widget-page--active {
            opacity: 1;
            pointer-events: auto;
        }

        /* USER DETAILS STYLES */
        .user-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .detail-card {
            background: #F9F9FB;
            border-radius: 12px;
            padding: 16px;
        }

        .detail-label {
            font-size: 0.6rem;
            font-weight: 800;
            color: var(--color-text-muted);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .usage-circle-container {
            display: flex;
            justify-content: center;
            padding: 10px 0;
        }

        .usage-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 5px solid var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 0.8rem;
            color: var(--color-primary);
        }

        .bar-chart {
            display: flex;
            align-items: flex-end;
            gap: 6px;
            height: 60px;
            padding-top: 10px;
        }

        .bar-chart__item {
            flex: 1;
            background: #E5E7EB;
            border-radius: 2px;
            transition: height 0.3s ease;
        }

        .bar-chart__item--active {
            background: var(--color-primary);
        }

        .report-skeleton-line {
            height: 8px;
            background: #E5E7EB;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .partners {
            padding: 80px 0;
            text-align: center;
        }

        .partners p {
            font-size: 0.875rem;
            font-weight: 800;
            color: var(--color-text-muted);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.15em;
        }

        .partners__grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 64px;
            flex-wrap: wrap;
            color: var(--color-text-muted);
        }

        .partners__grid span {
            font-family: var(--font-headings);
            font-size: 1.5rem;
            font-weight: 800;
            opacity: 0.6;
        }

        .bento-section {
            padding: 80px 0;
        }

        .bento-section--gray {
            background-color: #F8F8F9;
        }

        .bento-header {
            text-align: center;
            margin-bottom: 48px;
            max-width: 800px;
            margin-inline: auto;
        }

        .bento-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0A0A0A;
            margin-bottom: 16px;
        }

        .bento-header p {
            color: #71717A;
            font-weight: 500;
            font-size: 1.1rem;
        }

        /* BENTO GRID FIXED */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            align-items: stretch;
        }

        .bento-card {
            background-color: #FFFFFF;
            border-radius: var(--radius-xl);
            padding: 3rem;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            perspective: 1000px;
        }

        .bento-card:hover {
            transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
            border-color: rgba(226, 0, 116, 0.2);
        }

        .c-span--4 {
            grid-column: span 4;
        }

        .c-span--3 {
            grid-column: span 3;
        }

        .c-span--2 {
            grid-column: span 2;
        }

        .c-span--1 {
            grid-column: span 1;
        }

        .bento-card--light-gray {
            background-color: #F4F4F5;
            border: none;
        }

        .bento-card--yellow {
            background-color: var(--color-yellow);
            color: #0A0A0A;
            border: none;
        }

        .bento-card--pink {
            background-color: var(--color-primary);
            color: white;
            border: none;
            box-shadow: var(--shadow-glow);
            display: flex !important;
            flex-direction: column !important;
            justify-content: flex-start !important;
            align-items: flex-start !important;
        }

        .bento-card--yellow h4,
        .bento-card--yellow p,
        .bento-card--pink h4,
        .bento-card--pink p,
        .bento-card--pink h3 {
            color: inherit;
        }

        /* Exact Bento Fixes (from Image) */
        .grid-layout-image {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 24px;
        }

        .grid-layout-image .bento-card {
            padding: 48px;
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
        }

        .card-management h2 {
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 32px;
            max-width: 500px;
            color: var(--color-text-title);
        }

        .highlight--yellow {
            position: relative;
            padding: 0 8px;
            display: inline-block;
            z-index: 1;
        }

        .highlight--yellow::after {
            content: '';
            position: absolute;
            bottom: 10%;
            left: -2px;
            width: 0;
            height: 85%;
            background-color: var(--color-yellow);
            z-index: -1;
            /* Irregular Hand-Drawn Shape */
            transform: rotate(-1.2deg) skewX(-12deg);
            border-radius: 40% 10% 30% 5% / 15% 20% 10% 15%;
            animation: marker-draw 5s infinite cubic-bezier(0.6, 0.05, 0.1, 0.99);
            opacity: 0.8;
            filter: blur(0.4px);
        }

        @keyframes marker-draw {

            0%,
            5% {
                width: 0;
                opacity: 0;
            }

            15%,
            85% {
                width: 105%;
                opacity: 0.8;
            }

            95%,
            100% {
                width: 105%;
                opacity: 0;
            }
        }

        .card-management__bullets {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .card-management__bullet-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .card-management__bullet-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            color: var(--color-primary);
            margin-top: 2px;
        }

        .card-management__bullet-text {
            font-size: 0.85rem;
            color: var(--color-text-body);
            font-weight: 600;
            line-height: 1.4;
        }

        .icon-box {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            margin-bottom: 24px;
        }

        .icon-box--rocket {
            width: 56px;
            height: 56px;
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .bento-card--shield {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 32px;
        }

        .icon-box--shield {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #D1FAE5;
            color: #059669;
            flex-shrink: 0;
        }

        .card-shield__content h4 {
            font-size: 1.25rem;
            margin-bottom: 8px;
        }

        .card-shield__content p {
            font-size: 0.85rem;
            color: #71717A;
            font-weight: 500;
        }

        .icon-box--lighting {
            width: 32px;
            height: 32px;
            color: #000;
            margin-bottom: 12px;
        }

        /* Dashboard Highlights */
        .dashboard-img {
            height: 180px;
            width: 100%;
            background: #F4F4F5;
            border-radius: 24px;
            margin-top: 24px;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wavy-line {
            height: 60px;
            width: 100%;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0 10 Q 25 0 50 10 T 100 10" fill="none" stroke="%23E20074" stroke-width="2"/></svg>') repeat-x;
            background-size: 100px 20px;
            margin-top: 24px;
        }

        .mock-graphic {
            height: 120px;
            width: 100%;
            background: linear-gradient(135deg, rgba(226, 0, 116, 0.1) 0%, rgba(253, 212, 0, 0.1) 100%);
            border-radius: 20px;
            margin-top: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(226, 0, 116, 0.5);
            font-weight: bold;
            font-size: 0.85rem;
            text-transform: uppercase;
        }

        /* Compliance Highlights overrides */
        .card-compliance-highlight {
            background: var(--color-primary);
            color: white;
            transform: scale(1.05);
            z-index: 10;
            box-shadow: 0 30px 60px rgba(226, 0, 116, 0.2);
            border: none;
        }

        .card-compliance-highlight h4,
        .card-compliance-highlight p,
        .card-compliance-highlight .badge {
            color: white;
        }

        .card-compliance-highlight .badge {
            background: rgba(255, 255, 255, 0.2);
        }

        .card-compliance-highlight .mock-graphic {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        /* Feature Split Section (Gestão Inteligente) */
        .feature-split-section {
            padding: 80px 0 120px;
            background-color: var(--color-bg-base);
        }

        .feature-split {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 80px;
            align-items: start;
        }

        .feature-split__media {
            margin-right: 40px;
        }

        .feature-split__image-container {
            position: relative;
            border-radius: 40px;
            border: 6px solid white;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
            background: #111;
            aspect-ratio: 1/1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-split__main-image {
            width: 100%;
            height: 100%;
            border-radius: 34px;
            object-fit: cover;
        }

        .floating-widget {
            position: absolute;
            bottom: -90px;
            /* Precise 30/70 overlap */
            right: -10px;
            /* Alinhado à divisa da direita */
            background: white;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            width: 220px;
            z-index: 30;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1), opacity 0.4s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 1, 0.2, 1);
        }

        .floating-widget__header {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 12px;
        }

        .dot--green {
            width: 8px;
            height: 8px;
            background: #22C55E;
            border-radius: 50%;
            display: inline-block;
        }

        .floating-widget__title {
            font-size: 0.5rem;
            font-weight: 800;
            color: #B5005B;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .floating-widget__value {
            font-size: 1.75rem;
            font-family: var(--font-headings);
            font-weight: 900;
            color: #1a1a1a;
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .floating-widget__bar {
            height: 6px;
            background: #B5005B;
            border-radius: 4px;
            width: 100%;
            margin-bottom: 16px;
        }

        .floating-widget__sub {
            font-size: 0.6rem;
            color: #71717A;
            font-weight: 600;
            line-height: 1.4;
            text-transform: uppercase;
            letter-spacing: 0.02em;
        }

        .feature-split__content {
            display: flex;
            flex-direction: column;
        }

        .feature-split__heading {
            font-size: 3rem;
            font-family: var(--font-headings);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 48px;
            color: #2A2A2A;
            letter-spacing: -0.03em;
            max-width: 500px;
        }

        .text-primary-dark {
            color: #B5005B;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 24px;
        }

        .feature-item__icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-item__icon--yellow {
            background: #EFE45B;
            color: #1a1a1a;
        }

        .feature-item__icon--pink {
            background: #F6E5EB;
            color: #B5005B;
        }

        .feature-item__text h3 {
            font-size: 1.25rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
        }

        .feature-item__text p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.5;
            font-weight: 500;
            margin: 0;
        }

        /* Gestão Conectividade Section */
        .connectivity-section {
            padding: 80px 0;
            background: white;
            text-align: center;
        }

        .connectivity-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a1a1a;
            letter-spacing: -0.03em;
            margin-bottom: 12px;
        }

        .connectivity-header h2 .highlight-pink {
            color: #DF1564;
        }

        .connectivity-header p {
            font-size: 1rem;
            color: #71717A;
            font-weight: 500;
            margin-bottom: 48px;
        }

        .connectivity-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
            text-align: left;
            position: relative;
            width: 100%;
            align-items: stretch;
        }

        .conn-card-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .conn-card-header .icon-circle {
            margin: 0;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            display: grid;
            place-items: center;
        }

        .conn-card-header .icon-circle svg {
            width: 20px;
            height: 20px;
            stroke: white;
        }

        .conn-card h3 {
            margin: 0;
            font-size: 1.15rem;
            line-height: 1.2;
        }

        .conn-card--pink .icon-circle {
            background: white;
            color: #E20074;
        }

        .conn-card--pink .icon-circle svg {
            stroke: #E20074;
        }

        .conn-connector {
            width: 16px;
            /* This is the actual gap width */
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
        }

        .conn-connector-circle {
            position: absolute;
            width: 56px;
            height: 56px;
            background: #1a1a1a;
            color: white;
            border-radius: 50%;
            display: grid;
            place-items: center;
            font-size: 2.2rem;
            font-weight: 300;
            border: 6px solid white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            user-select: none;
            left: 50%;
            transform: translateX(-50%);
            line-height: 0;
            padding-bottom: 2px;
        }

        .premium-schedule-box {
            background: rgba(255, 255, 255, 0.1);
            padding: 24px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            margin-bottom: 32px;
            width: 100%;
            box-sizing: border-box;
        }

        .schedule-track {
            height: 12px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 6px;
            position: relative;
            overflow: hidden;
            margin-bottom: 16px;
        }

        .schedule-indicator {
            position: absolute;
            height: 100%;
            background: var(--color-yellow);
            box-shadow: 0 0 20px rgba(253, 212, 0, 0.4);
            border-radius: 6px;
            animation: scheduleFlow 12s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
        }

        .schedule-label-group {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            font-weight: 700;
            opacity: 0;
        }

        .schedule-label-group--fade1 {
            animation: labelFade1 12s infinite;
        }

        .schedule-label-group--fade2 {
            animation: labelFade2 12s infinite;
        }

        .schedule-label-group--fade3 {
            animation: labelFade3 12s infinite;
        }

        @keyframes scheduleFlow {

            /* 07:00 - 15:00 (Jornada A) */
            0%,
            28% {
                left: 29%;
                width: 33%;
            }

            30% {
                left: 27%;
                width: 35%;
            }

            /* Elastic bounce */

            /* 09:00 - 18:00 (Jornada B) */
            33%,
            61% {
                left: 37%;
                width: 38%;
            }

            63% {
                left: 35%;
                width: 40%;
            }

            /* Elastic bounce */

            /* 03:00 - 20:00 (Plantão) */
            66%,
            94% {
                left: 12%;
                width: 71%;
            }

            96% {
                left: 14%;
                width: 69%;
            }

            /* Elastic bounce */
            100% {
                left: 29%;
                width: 33%;
            }
        }

        @keyframes labelFade1 {

            0%,
            28% {
                opacity: 1;
                transform: translateY(0);
            }

            30%,
            100% {
                opacity: 0;
                transform: translateY(5px);
            }
        }

        @keyframes labelFade2 {

            0%,
            30% {
                opacity: 0;
                transform: translateY(5px);
            }

            33%,
            61% {
                opacity: 1;
                transform: translateY(0);
            }

            63%,
            100% {
                opacity: 0;
                transform: translateY(5px);
            }
        }

        @keyframes labelFade3 {

            0%,
            63% {
                opacity: 0;
                transform: translateY(5px);
            }

            66%,
            94% {
                opacity: 1;
                transform: translateY(0);
            }

            96%,
            100% {
                opacity: 0;
                transform: translateY(5px);
            }
        }

        .conn-card {
            border-radius: 36px;
            padding: 48px 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            min-height: 580px;
            /* Base height for all cards */
            height: 100%;
            /* Stretch to fill grid row */
        }

        /* Card 1: Gray with Wave */
        /* Card 1 & 3: Light Pink Theme */
        .conn-card--gray,
        .conn-card--white {
            background: #FFF0F6;
            border: 1px solid rgba(226, 0, 116, 0.08);
        }

        .conn-card--gray h3,
        .conn-card--white h3 {
            color: #1a1a1a;
        }

        .conn-card--gray p,
        .conn-card--white p {
            color: #4B5563;
            opacity: 1;
        }

        .gov-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 24px;
        }

        .gov-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.85rem;
            color: var(--color-text-dark);
            font-weight: 600;
        }

        .conn-card--gray .badge-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
        }

        .conn-card--gray .badge-text {
            font-size: 0.65rem;
            font-weight: 800;
            color: #71717A;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .conn-card--gray h3 {
            font-size: 1.5rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 12px;
            letter-spacing: -0.02em;
        }

        .conn-card--gray p {
            font-size: 0.9rem;
            color: #71717A;
            line-height: 1.5;
            font-weight: 500;
            max-width: 250px;
        }

        .conn-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 140px;
            display: block;
        }

        /* Card 2: Pink Center */
        .conn-card--pink {
            background: var(--grad-premium);
            color: white;
            align-items: flex-start;
            text-align: left;
            justify-content: flex-start;
            box-shadow: 0 30px 70px rgba(226, 0, 116, 0.35);
            z-index: 5;
            padding: 48px 40px;
            border: none;
            position: relative;
            overflow: hidden;
            border-radius: 32px;
            transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 1, 0.2, 1);
        }

        /* Animated Mesh Background */
        .conn-card--pink::before {
            content: '';
            position: absolute;
            inset: -50%;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
            animation: mesh-float 8s infinite alternate ease-in-out;
            pointer-events: none;
            z-index: 0;
        }

        /* Noise Texture */
        .conn-card--pink::after {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 1;
        }

        @keyframes mesh-float {
            0% {
                transform: rotate(0deg) scale(1);
            }

            100% {
                transform: rotate(5deg) scale(1.1);
            }
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.4rem 1rem;
            border-radius: var(--radius-pill);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 24px;
            margin-left: auto;
            margin-right: auto;
        }

        .conn-card--pink .status-badge {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .conn-card--gray .status-badge,
        .conn-card--white .status-badge {
            background: rgba(226, 0, 116, 0.08);
            color: var(--color-primary);
            border: 1px solid rgba(226, 0, 116, 0.1);
        }

        .icon-circle {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            z-index: 2;
        }

        .conn-card--pink .icon-circle {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
        }

        .conn-card--gray .icon-circle,
        .conn-card--white .icon-circle {
            background: rgba(226, 0, 116, 0.08);
            color: #E20074;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .conn-card--gray .icon-circle svg,
        .conn-card--white .icon-circle svg {
            stroke: #E20074;
        }

        .conn-card--pink h3 {
            font-size: 1.85rem;
            font-weight: 900;
            margin-bottom: 12px;
            letter-spacing: -0.04em;
            position: relative;
            z-index: 2;
            line-height: 1.1;
            color: white;
            /* Ensure text is white on pink background */
        }

        .conn-card--pink p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            font-weight: 500;
            margin-bottom: 32px;
            max-width: 280px;
            position: relative;
            z-index: 2;
        }

        .conn-btn--yellow {
            background: var(--color-yellow);
            color: #0A0A0A;
            font-size: 0.85rem;
            font-weight: 900;
            padding: 14px 32px;
            border-radius: var(--radius-pill);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            box-shadow: 0 10px 30px rgba(253, 212, 0, 0.3);
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            position: relative;
            z-index: 2;
            cursor: pointer;
            border: none;
            display: inline-block;
            text-decoration: none;
        }

        .conn-btn--yellow:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(253, 212, 0, 0.5);
            background: #FFE000;
        }


        .conn-card--white .top-part {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 40px;
        }

            .conn-card--white .icon-box--yellow {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #FFF9D6;
            color: #8C7519;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .conn-card--white h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 8px;
            letter-spacing: -0.01em;
            margin-top: -2px;
        }

        .conn-card--white p {
            font-size: 0.85rem;
            color: #71717A;
            line-height: 1.5;
            font-weight: 500;
        }

        .conn-separator {
            height: 1px;
            background: rgba(0, 0, 0, 0.06);
            margin: auto 0 24px 0;
            border: none;
            width: 100%;
        }

        .conn-bottom {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            width: 100%;
        }

        .conn-100 {
            font-size: 2.75rem;
            font-weight: 900;
            color: #B5005B;
            letter-spacing: -0.04em;
            line-height: 1;
        }

        .conn-inventory {
            font-size: 0.55rem;
            font-weight: 800;
            color: #71717A;
            text-align: right;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            line-height: 1.4;
            max-width: 80px;
        }

        /* Case Study Section specific */
        .case-study {
            padding: 80px 0;
            background-color: #FDFAFB;
        }

        .case-study__wrapper {
            background: #FFFFFF;
            border-radius: 40px;
            padding: 80px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 80px;
            align-items: stretch;
            border: 1px solid rgba(0, 0, 0, 0.02);
        }

        /* Solo mode: calculator removed, quote takes full width */
        .case-study__wrapper--solo {
            grid-template-columns: 1fr;
            max-width: 760px;
            margin-inline: auto;
            padding: 72px 80px;
        }

        .case-study__wrapper--solo .quote-content {
            align-items: flex-start;
        }

        .case-study__wrapper--solo .quote-text {
            font-size: 2.5rem;
        }

        .case-study__wrapper--solo .quote-stats {
            grid-template-columns: 1fr 1fr;
            width: 100%;
        }

        /* Right Column: Quote */
        .quote-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .quote-text {
            font-family: var(--font-headings);
            font-size: 2.25rem;
            font-style: italic;
            font-weight: 800;
            color: #1a1a1a;
            line-height: 1.25;
            margin-bottom: 48px;
            letter-spacing: -0.02em;
        }

        .quote-text span {
            color: #DF1564;
        }

        .quote-author {
            border: 1px solid rgba(0, 0, 0, 0.06);
            padding: 20px 32px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 20px;
            background: white;
            margin-bottom: 48px;
            width: fit-content;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .quote-author__img {
            width: 64px;
            height: 64px;
            background: #111;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .quote-author__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quote-author__name {
            font-size: 1.2rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 6px;
        }

        .quote-author__role {
            font-size: 0.65rem;
            font-weight: 800;
            color: #DF1564;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .quote-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .quote-stat-box {
            background: #FAFAFA;
            border-radius: 20px;
            padding: 32px;
            text-align: center;
        }

        .quote-stat-box__val {
            font-size: 2rem;
            font-weight: 900;
            font-family: var(--font-headings);
            margin-bottom: 12px;
            color: #1a1a1a;
            letter-spacing: -0.02em;
        }

        .quote-stat-box__val--pink {
            color: #DF1564;
        }

        .quote-stat-box__label {
            font-size: 0.65rem;
            font-weight: 800;
            color: #A1A1AA;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        /* CONNECT SECTION */
        .connect-section {
            padding: 80px 0;
            background: #FFFFFF;
        }

        .connect-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .connect-header h2 {
            font-size: 3rem;
            font-family: var(--font-headings);
            font-weight: 900;
            color: #1a1a1a;
            letter-spacing: -0.04em;
            margin-bottom: 8px;
        }

        .connect-header h2 span {
            color: #DF1564;
        }

        .connect-header p {
            font-size: 1.1rem;
            font-weight: 600;
            color: #71717A;
        }

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

        .connect-card--lifestyle {
            height: 580px;
            border-radius: 32px;
            position: relative;
            overflow: visible;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            padding: 52px;
            background-size: cover;
            background-position: center;
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.2, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.2, 1);
            color: white;
            border: none;
            box-shadow:
                0 2px 4px rgba(0,0,0,0.04),
                0 8px 24px rgba(0,0,0,0.06),
                0 24px 48px rgba(0,0,0,0.08);
        }

        .connect-card--lifestyle:hover {
            transform: translateY(-6px) scale(1.008);
            box-shadow:
                0 4px 8px rgba(0,0,0,0.04),
                0 12px 32px rgba(0,0,0,0.08),
                0 32px 64px rgba(0,0,0,0.12);
        }

        .connect-card--lifestyle::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(180deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.85) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .connect-card--lifestyle .card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .connect-card--lifestyle h3 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 16px;
            color: white;
            line-height: 1.1;
            letter-spacing: -0.02em;
            text-shadow: 0 2px 20px rgba(0,0,0,0.6);
        }

        .connect-card--lifestyle--esim h3 {
            font-size: 2rem;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .connect-card--lifestyle p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            line-height: 1.5;
            max-width: 100%;
            text-shadow: 0 1px 12px rgba(0,0,0,0.5);
        }

        /* Badges - Minimal pills */
        .card-badge {
            position: absolute;
            z-index: 3;
            pointer-events: none;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            border-radius: 999px;
            padding: 8px 20px;
            font-size: 0.7rem;
            top: 24px;
            left: 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .card-badge--pink {
            background: #DF1564;
            color: white;
            text-transform: none;
        }

        .card-badge--yellow {
            background: #2C2C2C;
            color: white;
        }

        .card-badge--glass {
            background: #25D366;
            color: white;
        }

        .connect-card--lifestyle--virtual {
            overflow: hidden !important;
        }

        .card-badge--soon {
            position: absolute;
            top: 28px;
            right: -48px;
            width: 180px;
            text-align: center;
            background: #FDD52F;
            color: #000000;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 8px 0;
            font-size: 0.65rem;
            transform: rotate(45deg);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            z-index: 3;
            pointer-events: none;
            left: auto;
            border: none;
            border-radius: 0;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
        }

        .btn-link--pink {
            margin-top: 16px;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            transition: opacity 0.3s ease;
            width: fit-content;
        }

        .btn-link--pink:hover {
            background: rgba(255,255,255,0.1);
            border-radius: 999px;
        }

        .btn-link--pink .btn-link__arrow {
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .btn-link--pink:hover .btn-link__arrow {
            transform: translateX(4px);
        }

        @media (max-width: 1024px) {
            .connect-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .connect-card--lifestyle {
                height: 450px;
            }

            .badge-overlap {
                right: 20px !important;
                left: auto !important;
            }
        }

        /* PRICING SECTION */
        .pricing-section {
            background-color: #FDFAFB;
            padding: 80px 0;
        }

        .pricing-slider-wrapper {
            position: relative;
        }

        .pricing-slider-wrapper::before,
        .pricing-slider-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            pointer-events: none;
            z-index: 10;
        }

        .pricing-slider-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #FDFAFB, transparent);
        }

        .pricing-slider-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #FDFAFB, transparent);
        }

        .pricing-card {
            width: 283.5px;
            background-color: #FFFFFF;
            border-radius: 36px;
            padding: 48px 32px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
            position: relative;
            transition: 0.3s;
            border: 1px solid rgba(0, 0, 0, 0.03);
            height: auto;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
        }

        .swiper-pagination {
            position: relative;
            bottom: 0 !important;
            margin-top: 24px;
        }

        .swiper-pagination-bullet {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: #D4D4D8;
            opacity: 1;
            transition: width 0.3s ease, background 0.3s ease, opacity 0.3s ease;
        }

        .swiper-pagination-bullet-active {
            width: 24px;
            background: #DF1564;
        }

        #pricingSwiper {
            padding: 40px 0 60px;
        }

        #pricingPagination {
            margin-top: 36px;
        }


        @media (max-width: 768px) {
            .pricing-card {
                width: 250px;
                transform: scale(0.96);
                transition: transform 0.3s;
            }

            .pricing-card--popular {
                transform: scale(1);
                border-width: 2px;
            }

            .pricing-toggle-btn {
                display: none !important;
            }

            .pricing-slider-wrapper::before,
            .pricing-slider-wrapper::after {
                display: none;
            }
        }

        /* Pricing Navigation */
        .pricing-nav-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            margin-top: -36px;
        }

        .pricing-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 10;
        }

        .pricing-prev-btn {
            display: none;
            /* Hidden by default (desktop) */
            background: white;
            border: 2px solid #F1F1F4;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: #1A1A1A;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .pricing-prev-btn {
                display: flex;
            }
        }

        .pricing-prev-btn:hover {
            border-color: #DF1564;
            color: #DF1564;
        }

        .pricing-toggle-btn {
            background: white;
            border: 2px solid #F1F1F4;
            padding: 14px 32px;
            border-radius: 100px;
            color: #1A1A1A;
            font-weight: 800;
            font-size: 0.85rem;
            cursor: pointer;
            transition: border-color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .pricing-toggle-btn:hover {
            border-color: #DF1564;
            color: #DF1564;
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(223, 21, 100, 0.1);
        }

        .pricing-toggle-btn:active {
            transform: translateY(-1px);
        }

        .pricing-toggle-btn svg {
            transition: transform 0.4s;
        }

        .pricing-badge {
            background: #F4F4F5;
            color: #A1A1AA;
            font-size: 0.6rem;
            font-weight: 900;
            text-transform: uppercase;
            padding: 6px 14px;
            border-radius: 99px;
            width: fit-content;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
        }

        .pricing-title {
            font-size: 1.25rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 4px;
            font-family: var(--font-headings);
            letter-spacing: -0.01em;
        }

        .pricing-price {
            font-size: 2.2rem;
            font-weight: 900;
            color: #1a1a1a;
            margin-bottom: 24px;
            font-family: var(--font-headings);
            letter-spacing: -0.02em;
            display: flex;
            align-items: baseline;
            gap: 4px;
            line-height: 1;
            white-space: nowrap;
        }

        .pricing-price span {
            font-size: 0.8rem;
            color: #A1A1AA;
            font-weight: 600;
            letter-spacing: 0;
            font-family: var(--font-body);
        }

        .pricing-icons {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 40px;
        }

        .p-icon {
            width: 24px;
            height: 24px;
            background: #F4F4F5;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #A1A1AA;
        }

        .p-icon-text {
            font-size: 0.65rem;
            font-weight: 800;
            color: #A1A1AA;
            letter-spacing: 0.1em;
            margin-left: 4px;
        }

        .pricing-features {
            flex-grow: 1;
            border-top: none;
            padding: 0;
            margin-bottom: 32px;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .pricing-features li {
            font-size: 0.9rem;
            color: #1a1a1a;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 12px;
            line-height: 1.2;
        }

        .pricing-features li svg {
            flex-shrink: 0;
            color: #DF1564;
            width: 20px;
            height: 20px;
        }

        .pricing-desc {
            font-size: 0.85rem;
            color: #71717A;
            line-height: 1.5;
            font-weight: 500;
            margin-bottom: 32px;
            flex-grow: 1;
        }

        .btn-pricing {
            width: 100%;
            border-radius: 16px;
            padding: 16px;
            font-size: 0.95rem;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            transition: 0.2s;
            cursor: pointer;
            display: block;
            margin-top: auto;
        }

        .btn-pricing--light {
            background: #FCE7F0;
            color: #DF1564;
        }

        .btn-pricing--light:hover {
            background: #F9D6E4;
        }

        .btn-pricing--outline {
            background: transparent;
            color: #DF1564;
            border: 2px solid #DF1564;
        }

        .btn-pricing--outline:hover {
            background: #FCE7F0;
        }

        /* The Popular Card */
        .pricing-card--popular {
            background-color: #DF1564;
            border: 4px solid #EFE45B;
            box-shadow: 0 30px 80px rgba(223, 21, 100, 0.35);
            transform: scale(1.05);
            z-index: 10;
            padding: 48px 32px 40px;
        }

        .pricing-card--popular:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .popular-tag {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background: #EFE45B;
            color: #1a1a1a;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            padding: 6px 20px;
            border-radius: 99px;
            letter-spacing: 0.1em;
            white-space: nowrap;
        }

        .pricing-card--popular .pricing-badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            margin-top: 16px;
        }

        .pricing-card--popular .pricing-title,
        .pricing-card--popular .pricing-price {
            color: white;
        }

        .pricing-card--popular .pricing-price span {
            color: rgba(255, 255, 255, 0.8);
        }

        .pricing-card--popular .p-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .pricing-card--popular .p-icon-text {
            color: white;
        }

        .pricing-card--popular .pricing-features li {
            color: white;
        }

        .pricing-card--popular .pricing-features li svg {
            color: #EFE45B;
        }

        .btn-pricing--white {
            background: white;
            color: #DF1564;
        }

        .btn-pricing--white:hover {
            background: #f8f8f8;
        }

        /* FOOTER */
        .footer {
            background: linear-gradient(135deg, #090209 0%, #07071b 50%, #130214 100%);
            color: white;
            padding: 96px 0 40px;
        }

        .footer__top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 64px;
            margin-bottom: 96px;
        }

        .footer__brand {
            font-family: var(--font-headings);
            font-size: 2rem;
            font-weight: 900;
            color: white;
            margin-bottom: 16px;
        }

        .footer__title {
            font-size: 0.85rem;
            font-weight: 800;
            color: white;
            margin-bottom: 24px;
            letter-spacing: 0.1em;
        }

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

        .footer__link {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        .footer__link:hover {
            color: white;
        }

        /* RESPONSIVE DESIGN: MOBILE & TABLET */
        @media (max-width: 1024px) {
            /* Removed conflicting hidden rules to allow new responsive navbar to work */

            .hero__content h1 {
                font-size: 3rem;
            }

            .hero {
                padding: 90px 0 0;
            }

            .hero > .container {
                padding: 16px 24px 0;
            }

            /* Global Grids Flattening */
            .grid-layout-image,
            .connectivity-grid {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0;
            }

            .grid-layout-image {
                gap: 16px;
            }

            .connectivity-grid {
                grid-template-rows: auto 16px auto 16px auto;
            }

            .conn-card {
                border-radius: 32px;
                border: 1px solid rgba(226, 0, 116, 0.08) !important;
                margin-bottom: 0;
                min-height: auto;
                padding: 40px 30px;
                transform: none !important;
                width: 100%;
            }

            .conn-connector {
                width: 100%;
                height: 16px;
                margin: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                position: relative;
                z-index: 10;
            }

            .conn-connector-circle {
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }

            .case-study__wrapper,
            .connect-grid,
            .pricing-grid,
            .footer__top {
                grid-template-columns: 1fr;
            }

            .bento-card {
                grid-column: 1 !important;
                grid-row: auto !important;
            }

            /* Hero Internal Widget */
            .dashboard-widget {
                max-width: 100%;
                width: 100%;
                margin-left: 0;
                margin-right: 0;
                border-radius: 24px 24px 0 0;
            }

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

            .widget-sidebar {
                display: none;
            }

            /* Case Study Internal Fixes */
            .case-study__wrapper {
                padding: 40px 24px;
                border-radius: 24px;
            }

            .quote-text {
                font-size: 1.5rem;
            }

            .quote-stats {
                grid-template-columns: 1fr;
            }

            /* Connect Details Flattening */
            .connect-split {
                grid-template-columns: 1fr;
            }

            .card-sim {
                flex-direction: column;
                align-items: flex-start;
                gap: 48px;
                padding: 40px;
            }

            .card-sim__content {
                max-width: 100%;
            }

            /* Feature Split Section */
            .feature-split {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .feature-split__media {
                margin-right: 0;
                max-width: 100%;
            }

            .floating-widget {
                left: 50%;
                transform: translateX(-50%);
                width: 90%;
                right: auto;
                padding: 24px;
            }

            .feature-split__heading {
                max-width: 100%;
                font-size: 2.1rem;
                /* Reduced to avoid overflow */
                word-wrap: break-word;
            }

            /* Pricing */
            .pricing-card--popular {
                transform: none !important;
                box-shadow: 0 10px 40px rgba(226, 0, 116, 0.15);
                margin: 0;
            }
        }

        @media (max-width: 480px) {
            .hero__content h1 {
                font-size: 2.25rem;
            }

            .hero__description {
                font-size: 1rem;
            }

            .connect-card--lifestyle {
                padding: 32px 24px;
                border-radius: 24px;
                height: auto;
                min-height: 350px;
            }

            .card-badge {
                font-size: 0.6rem;
                padding: 6px 12px;
                top: 16px;
                left: 16px;
            }

            .card-badge--soon {
                left: auto;
                right: -48px;
                top: 28px;
                transform: rotate(45deg);
            }

            .connect-card--lifestyle h3 {
                font-size: 1.5rem;
            }

            .connect-card--lifestyle p {
                font-size: 0.85rem;
            }

            .bento-card {
                padding: 32px 24px !important;
            }

            .card-management__bullets {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .bento-card--shield {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .icon-box--shield {
                width: 56px;
                height: 56px;
            }

            .card-management h2 {
                font-size: 1.5rem;
            }

            .bento-card--pink h3 {
                font-size: 1.25rem;
            }

            .card-management__bullet-item {
                font-size: 0.8rem;
            }

            .card-management__bullet-icon {
                width: 16px;
                height: 16px;
            }

            .conn-card {
                padding: 32px 24px !important;
                min-height: auto;
            }

            .conn-card--pink p {
                max-width: 100%;
            }

            .premium-schedule-box {
                padding: 16px;
            }

            .schedule-label-group {
                font-size: 0.65rem;
            }

            .conn-card--white .top-part {
                flex-direction: column;
            }

            .conn-card-header {
                flex-direction: column;
                text-align: center;
            }

            .marquee-wrapper {
                mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
                -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20px, black calc(100% - 20px), transparent 100%);
            }

            .floating-widget__value {
                font-size: 2.5rem;
            }

            /* Dashboard Widget - Mobile */
            .widget-sidebar {
                display: none !important;
            }

            .widget-metrics {
                grid-template-columns: 1fr !important;
            }

            .widget-metric__value {
                font-size: 1.6rem;
            }

            .widget-content {
                padding: 16px;
            }

            .widget-footer-hint {
                flex-wrap: wrap;
            }

            .widget-metric--desktop-only,
            .widget-users {
                display: none !important;
            }

            /* Feature-Split mobile */
            .feature-split__heading {
                font-size: 2rem;
            }

            .feature-split__media {
                margin-right: 0;
            }

            .floating-widget {
                position: absolute;
                bottom: -26px;
                width: 90%;
                left: 50px;
                right: auto;
                transform: none;
                margin-top: 0;
                padding: 16px;
            }

            .feature-split__image-container {
                aspect-ratio: auto;
                min-height: 400px;
            }

            .feature-item {
                gap: 16px;
            }

            .feature-item__icon {
                width: 40px;
                height: 40px;
            }

            .feature-item__text h3 {
                font-size: 1.1rem;
            }

            .whatsapp-chat {
                max-height: 500px;
                overflow-y: auto;
            }

            .chat-body {
                padding-bottom: 160px;
            }

            /* Persona-Experience mobile handled in its own style block */

            /* Footer mobile */
            .footer {
                padding: 64px 0 32px;
            }

            .footer__top {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
                margin-bottom: 48px;
            }

            .footer__link {
                font-size: 0.85rem;
            }

            /* Consistent mobile section padding */
            .bento-section,
            .feature-split-section,
            .connectivity-section,
            .connect-section,
            .pricing-section,
            .contact-section,
            .invoice-section,
            .faq-section,
            .case-study,
            .partners {
                padding-top: 40px;
                padding-bottom: 40px;
            }
        }

/* ===== 2. PERSONA EXPERIENCE ===== */
.persona-experience {
                    --accent-rh: #E20074;
                    --accent-ti: #FDD400;
                    min-height: 650px;
                    display: flex;
                    width: 100%;
                    /* Unified background for both sides - No Seams */
                    background: linear-gradient(135deg, #090209 0%, #07071b 50%, #130214 100%);
                    overflow: hidden;
                    border-top: 1px solid rgba(255, 255, 255, 0.05);
                }

                .exp-side {
                    flex: 1;
                    position: relative;
                    padding: 80px 0;
                    /* Reduced horizontal padding, will use inner container */
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    background: transparent !important;
                    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                    cursor: default;
                    overflow: hidden;
                }

                .exp-side-inner {
                    width: 100%;
                    max-width: 600px;
                    padding: 0 40px;
                }

                .exp-side--rh .exp-side-inner {
                    margin-left: auto;
                }

                .exp-side--ti .exp-side-inner {
                    margin-right: auto;
                }

                .exp-side--rh {
                    /* Handled by parent bg */
                }

                .exp-side--ti {
                    /* Handled by parent bg */
                }

                /* Soft Atmospheric Glow (Apple Quality) */
                .exp-side::before {
                    content: '';
                    position: absolute;
                    inset: 0;
                    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                            rgba(255, 255, 255, 0.04) 0%,
                            transparent 60%);
                    opacity: 0;
                    transition: opacity 0.8s ease;
                    pointer-events: none;
                    z-index: 1;
                }

                .exp-side:hover::before {
                    opacity: 1;
                }

                /* Technical Lens Reveal (Apple Premium) */
                .exp-glyph {
                    position: absolute;
                    width: 600px;
                    height: 600px;
                    opacity: 0.15;
                    /* Increased opacity since it's masked */
                    color: #FFF;
                    bottom: -100px;
                    right: -100px;
                    pointer-events: none;
                    z-index: 0;
                    mask-image: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                            black 0%,
                            transparent 40%);
                    -webkit-mask-image: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                            black 0%,
                            transparent 40%);
                    transition: opacity 0.8s ease;
                }

                .exp-side:not(:hover) .exp-glyph {
                    opacity: 0;
                }

                .exp-content {
                    position: relative;
                    z-index: 2;
                }

                .exp-icon {
                    width: 48px;
                    height: 48px;
                    margin-bottom: 40px;
                    color: currentColor;
                    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1), filter 0.6s cubic-bezier(0.2, 1, 0.2, 1);
                }

                .exp-side:hover .exp-icon {
                    transform: scale(1.1);
                    filter: drop-shadow(0 0 20px currentColor);
                }

                .exp-label {
                    font-size: 0.75rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 0.3em;
                    margin-bottom: 24px;
                    color: rgba(255, 255, 255, 0.3);
                    display: flex;
                    align-items: center;
                    gap: 16px;
                }

                .exp-label::after {
                    content: '';
                    height: 1px;
                    width: 40px;
                    background: currentColor;
                    opacity: 0.3;
                }

                .exp-title {
                    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
                    font-weight: 800;
                    line-height: 1.05;
                    letter-spacing: -0.04em;
                    color: #FFF;
                    margin-bottom: 24px;
                }

                .exp-title span {
                    color: rgba(255, 255, 255, 0.25);
                    display: block;
                }

                .exp-desc {
                    font-size: 1.05rem;
                    color: rgba(255, 255, 255, 0.45);
                    max-width: 420px;
                    line-height: 1.6;
                    margin-bottom: 48px;
                    font-weight: 400;
                }

                .exp-features {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    display: grid;
                    gap: 20px;
                }

                .exp-feature-item {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    color: rgba(255, 255, 255, 0.5);
                    font-size: 1rem;
                    font-weight: 500;
                    transition: color 0.4s ease, transform 0.4s ease;
                }

                .exp-side:hover .exp-feature-item {
                    color: #FFF;
                    transform: translateX(8px);
                }

                /* Expertise Section - Mobile Adjustments */
                @media (max-width: 480px) {
                    .exp-section {
                        padding: 80px 0;
                    }

                    .exp-side {
                        padding: 60px 0;
                    }

                    .exp-side-inner {
                        max-width: 100%;
                        padding: 0 24px;
                    }

                    .exp-glyph {
                        width: 300px;
                        height: 300px;
                        opacity: 0.5;
                    }

                    .exp-icon {
                        width: 36px;
                        height: 36px;
                        margin-bottom: 24px;
                    }

                    .exp-label {
                        font-size: 0.7rem;
                        margin-bottom: 8px;
                    }

                    .exp-side .exp-feature-item {
                        font-size: 0.8rem;
                    }

                    .exp-feature-item svg {
                        width: 20px;
                        height: 20px;
                    }

                    .exp-side:hover .exp-feature-item {
                        transform: translateX(6px);
                    }

                    .exp-side:hover .exp-icon {
                        transform: scale(1.05);
                    }
                }

                .exp-feature-dot {
                    width: 4px;
                    height: 4px;
                    background: currentColor;
                    border-radius: 50%;
                    box-shadow: 0 0 10px currentColor;
                }

                @media (max-width: 1024px) {
                    .persona-experience {
                        flex-direction: column;
                        min-height: auto;
                    }

                    .exp-side {
                        padding: 80px 32px;
                        border-right: none;
                        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                    }

                    .exp-title {
                        font-size: 2.5rem;
                    }

                    .exp-side:hover .exp-feature-item {
                        transform: none;
                    }
                }

                @media (max-width: 480px) {
                    .exp-side {
                        padding: 48px 24px;
                    }

                    .exp-glyph {
                        display: none;
                    }

                    .exp-side-inner {
                        padding: 0 24px;
                    }

                    .exp-icon {
                        margin-bottom: 24px;
                        width: 36px;
                        height: 36px;
                    }

                    .exp-label::after {
                        width: 24px;
                    }

                    .exp-title {
                        font-size: 2rem;
                    }

                    .exp-desc {
                        font-size: 0.95rem;
                    }

                    .exp-features {
                        gap: 16px;
                    }

                    .exp-feature-item {
                        font-size: 0.85rem;
                    }
                }

/* ===== 3. TESTIMONIALS ===== */

        .testimonial-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .testimonial-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .testimonial-header p {
            font-size: 1.15rem;
            color: #4B5563;
            max-width: 700px;
            margin: 0 auto;
        }

        .testimonial-section {
                    padding: 80px 0;
                    background: #F8F9FB;
                    overflow: hidden;
                }

                .testimonial-slider-container {
                    width: 100%;
                    position: relative;
                    /* Removed max-width/margin as it's inside a .container */
                }

                .testimonial-track {
                    display: flex;
                    flex-wrap: nowrap;
                    gap: 16px;
                    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
                    padding: 60px 0 90px;
                    /* Balanced padding: enough for shadow, but more compact */
                    /* Align with the site's main content grid */
                    padding-left: calc((100% - 1200px) / 2 + 24px);
                }

                @media (max-width: 1024px) {
                    .testimonial-track {
                        padding-left: 24px;
                    }
                }

                .testimonial-card {
                    background: #FFFFFF;
                    border-radius: 32px;
                    padding: 56px;
                    /* Long-range soft shadows (50px spread equivalent) */
                    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.08), 0 20px 50px -15px rgba(0, 0, 0, 0.04);
                    flex: 0 0 80vw;
                    /* 80% of the viewport for the peek effect */
                    max-width: 960px;
                    /* Limits size on very large screens */
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    border: none;
                    /* Removed borders for premium look */
                    min-height: 420px;
                    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), opacity 0.5s ease, box-shadow 0.5s ease;
                    margin: 0;
                    position: relative;
                }

                /* Active card: Perfectly aligned and scaled */
                .testimonial-card.is-active {
                    opacity: 1;
                    transform: scale(1);
                    z-index: 2;
                    box-shadow: 0 40px 100px -10px rgba(0, 0, 0, 0.12), 0 20px 50px -10px rgba(0, 0, 0, 0.06);
                }

                /* Non-active cards are scaled down */
                .testimonial-card:not(.is-active) {
                    opacity: 0.8;
                    /* Adjusted from 0.1 to 0.8 for better visibility */
                    transform: scale(0.8);
                    z-index: 1;
                }

                /* The "Peek" card: Next one is solid but scaled */
                .testimonial-card.is-next {
                    opacity: 1 !important;
                    /* Visual fidelity: no opacity on peek */
                    transform: scale(0.8);
                    transform-origin: left center;
                    /* Keeps gap with active card consistent */
                    z-index: 1;
                }

                /* The "Passed" card: Previous one is also scaled but aligned to the right */
                .testimonial-card.is-prev {
                    opacity: 0.8 !important;
                    transform: scale(0.8);
                    transform-origin: right center;
                    /* Keeps gap with active card consistent */
                    z-index: 1;
                }

                .testimonial-text {
                    font-family: var(--font-headings);
                    font-size: 1.3rem;
                    font-weight: 700;
                    color: #1A1A1A;
                    line-height: 1.5;
                    margin-bottom: 24px;
                }

                .testimonial-text em {
                    font-style: normal;
                    color: #E20074;
                }

                .testimonial-impact {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-bottom: 32px;
                }

                .impact-pill {
                    background: #E20074;
                    color: white;
                    padding: 6px 12px;
                    border-radius: 10px;
                    font-family: var(--font-headings);
                    font-weight: 900;
                    font-size: 1.1rem;
                }

                .impact-label {
                    font-size: 0.75rem;
                    font-weight: 700;
                    color: #0A0A0A;
                    text-transform: uppercase;
                    letter-spacing: 0.05em;
                }

                .testimonial-author-row {
                    display: flex;
                    align-items: center;
                    gap: 16px;
                    padding-top: 24px;
                    border-top: 1px solid #F1F1F1;
                }

                .testimonial-photo {
                    width: 56px;
                    height: 56px;
                    border-radius: 50%;
                    object-fit: cover;
                    border: 3px solid #F8F9FB;
                }

                .testimonial-author-info {
                    display: flex;
                    flex-direction: column;
                }

                .testimonial-name {
                    font-family: var(--font-headings);
                    font-size: 0.95rem;
                    font-weight: 800;
                    color: #0A0A0A;
                }

                .testimonial-role {
                    font-size: 0.7rem;
                    font-weight: 600;
                    color: #71717A;
                    line-height: 1.3;
                }

                @media (max-width: 768px) {
                    .testimonial-section {
                        padding: 48px 0;
                    }

                    .testimonial-slider-container {
                        max-width: 100%;
                        padding: 0 24px;
                    }

                    .testimonial-track {
                        gap: 0 !important;
                        padding: 20px 0;
                        padding-left: 0 !important;
                    }

                    .testimonial-card {
                        flex: 0 0 100% !important;
                        max-width: none !important;
                        width: 100% !important;
                        padding: 32px;
                        min-height: auto;
                        border-radius: 24px;
                        opacity: 1 !important;
                        transform: scale(1) !important;
                        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                    }

                    .testimonial-card.is-next {
                        opacity: 1 !important;
                        transform: scale(1) !important;
                    }
                }

                @media (max-width: 480px) {
                    .testimonial-card {
                        padding: 24px;
                    }

                    .testimonial-text {
                        font-size: 1.1rem;
                    }

                    .testimonial-impact {
                        flex-wrap: wrap;
                    }

                    .testimonial-author-row {
                        gap: 12px;
                    }
                }

/* ===== 4. CONTACT ===== */
.contact-section {
                    padding: 60px 0;
                    background: #FAFAFA;
                    border-top: 1px solid rgba(0, 0, 0, 0.03);
                    position: relative;
                }

                .contact-grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 100px;
                    align-items: center;
                }

                .contact-info h2 {
                    font-size: 3.5rem;
                    line-height: 1.1;
                    margin-bottom: 24px;
                    color: #1a1a1a;
                    font-weight: 900;
                    letter-spacing: -0.04em;
                }

                .contact-info p {
                    font-size: 1.125rem;
                    color: #52525B;
                    margin-bottom: 48px;
                    max-width: 500px;
                    line-height: 1.6;
                }

                .contact-benefits {
                    display: flex;
                    flex-direction: column;
                    gap: 32px;
                }

                .contact-benefit {
                    display: flex;
                    align-items: flex-start;
                    gap: 20px;
                }

                .contact-benefit-icon {
                    width: 56px;
                    height: 56px;
                    background: white;
                    border-radius: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
                    color: var(--color-primary);
                    flex-shrink: 0;
                }

                .contact-benefit-text h4 {
                    font-size: 1.25rem;
                    font-weight: 800;
                    margin-bottom: 6px;
                    color: #1a1a1a;
                    letter-spacing: -0.01em;
                }

                .contact-benefit-text p {
                    font-size: 0.95rem;
                    margin-bottom: 0;
                    color: #71717A;
                    font-weight: 500;
                    line-height: 1.5;
                }

                .contact-form-card {
                    background: white;
                    border-radius: 40px;
                    padding: 48px;
                    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.06);
                    border: 1px solid rgba(0, 0, 0, 0.02);
                    position: relative;
                }

                .contact-form-card::before {
                    content: '';
                    position: absolute;
                    top: -2px;
                    left: -2px;
                    right: -2px;
                    bottom: -2px;
                    background: linear-gradient(135deg, var(--color-primary), var(--color-yellow));
                    border-radius: 42px;
                    z-index: -1;
                    opacity: 0.1;
                }

                .form-header {
                    margin-bottom: 32px;
                }

                .form-header h3 {
                    font-size: 1.75rem;
                    font-weight: 800;
                    margin-bottom: 8px;
                    color: #1a1a1a;
                }

                .form-header p {
                    font-size: 0.95rem;
                    color: #71717A;
                    font-weight: 500;
                }

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

                .form-group {
                    margin-bottom: 16px;
                }

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

                .form-group label {
                    display: block;
                    font-size: 0.75rem;
                    font-weight: 800;
                    color: #0A0A0A;
                    margin-bottom: 8px;
                    text-transform: uppercase;
                    letter-spacing: 0.1em;
                }

                .form-group input,
                .form-group textarea {
                    width: 100%;
                    background: #F8F8F9;
                    border: 2px solid transparent;
                    border-radius: 18px;
                    padding: 18px 24px;
                    font-family: var(--font-body);
                    font-size: 1rem;
                    color: #1a1a1a;
                    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                    font-weight: 500;
                }

                .form-group input:focus,
                .form-group textarea:focus {
                    background: white;
                    border-color: var(--color-primary);
                    box-shadow: 0 10px 25px rgba(226, 0, 116, 0.08);
                }

                .form-group input:focus-visible,
                .form-group textarea:focus-visible {
                    outline: 2px solid var(--color-primary);
                    outline-offset: 2px;
                }

                .form-group input::placeholder {
                    color: #A1A1AA;
                    font-weight: 400;
                }

                .btn-submit {
                    width: 100%;
                    background: var(--grad-primary);
                    color: white;
                    border: none;
                    border-radius: 999px;
                    padding: 22px;
                    font-size: 1rem;
                    font-weight: 900;
                    font-family: var(--font-headings);
                    text-transform: uppercase;
                    letter-spacing: 0.08em;
                    cursor: pointer;
                    position: relative;
                    overflow: hidden;
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
                    box-shadow: 0 12px 30px rgba(223, 21, 100, 0.3);
                    margin-top: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                }

                .btn-submit:hover {
                    transform: translateY(-4px);
                    box-shadow: 0 20px 40px rgba(223, 21, 100, 0.4);
                }

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

                @media (max-width: 1024px) {
                    .contact-grid {
                        grid-template-columns: 1fr;
                        gap: 80px;
                    }

                    .contact-info {
                        text-align: center;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                    }

                    .contact-info p {
                        margin-bottom: 40px;
                    }

                    .contact-form-card {
                        padding: 40px 24px;
                    }
                }

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

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

                    .contact-info h2 {
                        font-size: 2.5rem;
                    }

                    .contact-benefit {
                        flex-direction: row;
                        align-items: start;
                        text-align: left;
                        gap: 16px;
                    }

                    .contact-benefit-icon {
                        width: 40px;
                        height: 40px;
                    }

                    .contact-benefit-text h4 {
                        font-size: 1.1rem;
                    }

                    .contact-grid {
                        gap: 0;
                    }

                    .contact-benefits {
                        gap: 0;
                    }
                }

/* ===== 5. INVOICE ===== */
.invoice-section {
                    background: linear-gradient(135deg, #090209 0%, #07071b 50%, #130214 100%);
                    padding: 80px 0;
                    position: relative;
                    overflow: hidden;
                }

                .invoice-section::before {
                    content: '';
                    position: absolute;
                    top: -200px;
                    left: -200px;
                    width: 600px;
                    height: 600px;
                    background: radial-gradient(circle, rgba(226, 0, 116, 0.12) 0%, transparent 60%);
                    pointer-events: none;
                }

                .invoice-section::after {
                    content: '';
                    position: absolute;
                    bottom: -150px;
                    right: -150px;
                    width: 500px;
                    height: 500px;
                    background: radial-gradient(circle, rgba(253, 212, 0, 0.08) 0%, transparent 60%);
                    pointer-events: none;
                }

                .invoice-inner {
                    position: relative;
                    z-index: 2;
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 80px;
                    align-items: center;
                }

                .invoice-left {}

                .invoice-eyebrow {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    background: rgba(226, 0, 116, 0.15);
                    border: 1px solid rgba(226, 0, 116, 0.25);
                    border-radius: 99px;
                    padding: 6px 16px;
                    font-size: 0.65rem;
                    font-weight: 800;
                    color: #FA4C8C;
                    letter-spacing: 0.12em;
                    text-transform: uppercase;
                    margin-bottom: 28px;
                }

                .invoice-eyebrow span {
                    width: 6px;
                    height: 6px;
                    background: #FA4C8C;
                    border-radius: 50%;
                    animation: pulse-dot 1.5s ease-in-out infinite;
                }

                @keyframes pulse-dot {

                    0%,
                    100% {
                        opacity: 1;
                        transform: scale(1);
                    }

                    50% {
                        opacity: 0.4;
                        transform: scale(0.8);
                    }
                }

                .invoice-title {
                    font-family: var(--font-headings);
                    font-size: clamp(2rem, 3.5vw, 3rem);
                    font-weight: 900;
                    color: #FFFFFF;
                    line-height: 1.1;
                    letter-spacing: -0.03em;
                    margin-bottom: 24px;
                    text-wrap: balance;
                }

                .invoice-title span {
                    color: #E20074;
                }

                .invoice-desc {
                    font-size: 1rem;
                    color: rgba(255, 255, 255, 0.55);
                    line-height: 1.7;
                    font-weight: 500;
                    margin-bottom: 48px;
                    max-width: 480px;
                }

                /* Upload area */
                .invoice-upload {
                    display: flex;
                    flex-direction: column;
                    gap: 16px;
                }

                .upload-zone {
                    border: 2px dashed rgba(226, 0, 116, 0.35);
                    border-radius: 20px;
                    padding: 40px 32px;
                    text-align: center;
                    background: rgba(226, 0, 116, 0.04);
                    cursor: pointer;
                    transition: border-color 0.3s ease, background 0.3s ease;
                }

                .upload-zone:hover {
                    border-color: rgba(226, 0, 116, 0.7);
                    background: rgba(226, 0, 116, 0.08);
                }

                .upload-zone:focus-visible {
                    outline: 3px solid rgba(250, 76, 140, 0.7);
                    outline-offset: 4px;
                }

                .upload-icon {
                    width: 48px;
                    height: 48px;
                    background: rgba(226, 0, 116, 0.12);
                    border-radius: 14px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 16px;
                    color: #FA4C8C;
                }

                .upload-zone h4 {
                    font-family: var(--font-headings);
                    font-size: 1rem;
                    font-weight: 800;
                    color: white;
                    margin-bottom: 6px;
                }

                .upload-zone p {
                    font-size: 0.8rem;
                    color: rgba(255, 255, 255, 0.4);
                    font-weight: 500;
                }

                .upload-zone p strong {
                    color: #FA4C8C;
                }

                .upload-status {
                    margin-top: -4px;
                    font-size: 0.78rem;
                    color: rgba(255, 255, 255, 0.48);
                    font-weight: 500;
                    line-height: 1.5;
                }

                .upload-btn {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    gap: 10px;
                    padding: 18px 32px;
                    background: var(--grad-primary);
                    color: white;
                    border-radius: 999px;
                    font-family: var(--font-headings);
                    font-weight: 800;
                    font-size: 0.95rem;
                    letter-spacing: 0.02em;
                    text-decoration: none;
                    border: none;
                    cursor: pointer;
                    position: relative;
                    overflow: hidden;
                    transition: transform 0.2s ease, box-shadow 0.2s ease;
                    box-shadow: 0 12px 30px rgba(223, 21, 100, 0.3);
                }

                .upload-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 20px 40px rgba(223, 21, 100, 0.4);
                }

                .invoice-trust {
                    display: flex;
                    gap: 20px;
                    flex-wrap: wrap;
                }

                .invoice-trust-item {
                    display: flex;
                    align-items: center;
                    gap: 6px;
                    font-size: 0.72rem;
                    font-weight: 700;
                    color: rgba(255, 255, 255, 0.35);
                    letter-spacing: 0.04em;
                }

                .invoice-trust-item svg {
                    color: rgba(255, 255, 255, 0.2);
                    flex-shrink: 0;
                }

                /* Right: Output promises */
                .invoice-right {
                    display: flex;
                    flex-direction: column;
                    gap: 20px;
                }

                .invoice-promise-label {
                    font-size: 0.6rem;
                    font-weight: 800;
                    color: rgba(255, 255, 255, 0.25);
                    text-transform: uppercase;
                    letter-spacing: 0.15em;
                    margin-bottom: 4px;
                }

                .invoice-card {
                    background: rgba(255, 255, 255, 0.04);
                    border: 1px solid rgba(255, 255, 255, 0.07);
                    border-radius: 20px;
                    padding: 28px 32px;
                    display: flex;
                    align-items: flex-start;
                    gap: 20px;
                    transition: background 0.3s;
                }

                .invoice-card:hover {
                    background: rgba(255, 255, 255, 0.07);
                }

                .invoice-card__icon {
                    width: 44px;
                    height: 44px;
                    border-radius: 12px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                }

                .invoice-card__icon--pink {
                    background: rgba(226, 0, 116, 0.15);
                    color: #FA4C8C;
                }

                .invoice-card__icon--yellow {
                    background: rgba(253, 212, 0, 0.12);
                    color: #FDD400;
                }

                .invoice-card__icon--green {
                    background: rgba(34, 197, 94, 0.12);
                    color: #22C55E;
                }

                .invoice-card__content h4 {
                    font-family: var(--font-headings);
                    font-size: 1rem;
                    font-weight: 800;
                    color: white;
                    margin-bottom: 4px;
                    letter-spacing: -0.01em;
                }

                .invoice-card__content p {
                    font-size: 0.82rem;
                    color: rgba(255, 255, 255, 0.45);
                    font-weight: 500;
                    line-height: 1.5;
                }

                @media (max-width: 1024px) {
                    .invoice-inner {
                        grid-template-columns: 1fr;
                        gap: 48px;
                    }

                    .invoice-right {
                        order: -1;
                    }
                }

                @media (max-width: 480px) {
                    .invoice-section {
                        padding: 48px 0;
                    }

                    .invoice-title {
                        font-size: 1.85rem;
                    }

                    .invoice-card {
                        padding: 24px 20px;
                    }
                }

/* ===== 6. CTA CARD ===== */
.cta-section {
                    background: #000000;
                    padding: 80px 0;
                    position: relative;
                    overflow: hidden;
                }

                .cta-section::before {
                    content: '';
                    position: absolute;
                    top: -200px;
                    left: -200px;
                    width: 600px;
                    height: 600px;
                    background: radial-gradient(circle, rgba(226, 0, 116, 0.08) 0%, transparent 60%);
                    pointer-events: none;
                }

                .cta-section::after {
                    content: '';
                    position: absolute;
                    bottom: -150px;
                    right: -150px;
                    width: 500px;
                    height: 500px;
                    background: radial-gradient(circle, rgba(253, 212, 0, 0.06) 0%, transparent 60%);
                    pointer-events: none;
                }

.cta-card {
                    background: #121214;
                    border: 1px solid rgba(255, 255, 255, 0.05);
                    border-radius: 40px;
                    padding: 96px 32px;
                    text-align: center;
                    position: relative;
                    overflow: hidden;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
                }

                .cta-card::before {
                    content: '';
                    position: absolute;
                    bottom: -150px;
                    left: -150px;
                    width: 500px;
                    height: 500px;
                    background: radial-gradient(circle, rgba(239, 228, 91, 0.12) 0%, transparent 60%);
                    z-index: 1;
                }

                .cta-card::after {
                    content: '';
                    position: absolute;
                    top: -100px;
                    right: -100px;
                    width: 400px;
                    height: 400px;
                    background: radial-gradient(circle, rgba(223, 21, 100, 0.15) 0%, transparent 60%);
                    z-index: 1;
                }

                .cta-inner {
                    position: relative;
                    z-index: 2;
                    max-width: 800px;
                }

                .cta-card h2 {
                    font-size: clamp(2.25rem, 4vw, 3.25rem);
                    font-family: var(--font-headings);
                    font-weight: 900;
                    color: white;
                    letter-spacing: -0.03em;
                    line-height: 1.15;
                    margin-bottom: 24px;
                    text-wrap: balance;
                }

                .cta-card p {
                    font-size: 1.15rem;
                    color: #A1A1AA;
                    line-height: 1.6;
                    font-weight: 500;
                    margin-bottom: 48px;
                    max-width: 680px;
                    margin-inline: auto;
                }

                .cta-actions {
                    display: flex;
                    gap: 16px;
                    justify-content: center;
                    flex-wrap: wrap;
                }

                .btn-cta-primary {
                    background: var(--grad-primary);
                    color: white !important;
                    font-weight: 800;
                    font-size: 0.95rem;
                    padding: 20px 36px;
                    border-radius: 999px;
                    text-decoration: none;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 12px;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    border: none;
                    position: relative;
                    overflow: hidden;
                    transition: transform 0.2s ease, box-shadow 0.2s ease;
                }

                .btn-cta-primary:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 15px 35px rgba(223, 21, 100, 0.35);
                }

                .btn-cta-secondary {
                    background: #18181B;
                    color: white !important;
                    font-weight: 800;
                    font-size: 0.95rem;
                    padding: 20px 36px;
                    border-radius: 999px;
                    text-decoration: none;
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    letter-spacing: 0.05em;
                    text-transform: uppercase;
                    border: 1px solid rgba(255, 255, 255, 0.05);
                    transition: 0.2s;
                }

                .btn-cta-secondary:hover {
                    background: #27272A;
                }

                .btn-cta-primary .btn__icon {
                    width: 32px;
                    height: 32px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                    transition: background 0.3s ease;
                }

                .btn-cta-primary .btn__icon svg {
                    animation: icon-slide 1.2s ease-in-out infinite;
                    transition: transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                .btn-cta-primary:hover .btn__icon {
                    background: rgba(255, 255, 255, 0.2);
                }

                .btn-cta-primary:hover .btn__icon svg {
                    transform: translateX(4px);
                }

                .btn-cta-secondary:hover {
                    background: #27272A;
                }

                @media (max-width: 768px) {
                    .cta-card {
                        padding: 80px 32px;
                        border-radius: 32px;
                    }
                }

                @media (max-width: 480px) {
                    .cta-actions {
                        flex-direction: row;
                        justify-content: center;
                    }

                    .btn-cta-primary,
                    .btn-cta-secondary {
                        white-space: nowrap;
                    }

                    .cta-card {
                        padding: 48px 20px;
                        border-radius: 24px;
                        margin-top: 48px;
                    }

                    .cta-card h2 {
                        font-size: 1.75rem;
                        margin-bottom: 16px;
                    }

                    .cta-card p {
                        font-size: 1rem;
                        margin-bottom: 32px;
                    }

                    .btn-cta-primary,
                    .btn-cta-secondary {
                        padding: 12px 16px;
                        font-size: 0.75rem;
                    }

                    .btn-cta-primary .btn__icon {
                        width: 24px;
                        height: 24px;
                    }

                    .btn-cta-primary .btn__icon svg {
                        width: 14px;
                        height: 14px;
                    }
                }

/* ===== 7. FAQ ===== */
.faq-section {
                    background-color: #FFFFFF;
                    padding: 80px 0;
                }

                .faq-header-main {
                    text-align: center;
                    max-width: 800px;
                    margin: 0 auto 80px;
                }

                .faq-label {
                    display: inline-block;
                    padding: 8px 16px;
                    background: rgba(226, 0, 116, 0.08);
                    color: var(--color-primary);
                    border-radius: 99px;
                    font-size: 0.85rem;
                    font-weight: 800;
                    letter-spacing: 0.1em;
                    margin-bottom: 24px;
                    text-transform: uppercase;
                }

                .faq-header-main h2 {
                    font-size: 3.5rem;
                    font-family: var(--font-headings);
                    font-weight: 900;
                    color: #1a1a1a;
                    line-height: 1.1;
                    margin-bottom: 20px;
                    letter-spacing: -0.03em;
                }

                .faq-header-main p {
                    font-size: 1.25rem;
                    color: #555;
                    font-weight: 500;
                }

                .faq-grid {
                    display: grid;
                    grid-template-columns: 1fr 380px;
            gap: 40px;
            align-items: start;
                }

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

                .faq-item {
                    background-color: #F9FAFB;
                    border-radius: 24px;
                    overflow: hidden;
                    border: 1px solid rgba(0, 0, 0, 0.04);
                    transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                }

                .faq-item:hover {
                    background-color: #FFFFFF;
                    border-color: var(--color-primary);
                    box-shadow: 0 10px 30px rgba(226, 0, 116, 0.05);
                }

                .faq-header {
                    padding: 32px;
                    font-size: 1.25rem;
                    font-weight: 800;
                    color: #1a1a1a;
                    cursor: pointer;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    letter-spacing: -0.02em;
                    width: 100%;
                    text-align: left;
                    border: none;
                    background: none;
                    font-family: inherit;
                }

                .faq-plus {
                    position: relative;
                    width: 32px;
                    height: 32px;
                    background: #FFF;
                    border-radius: 50%;
                    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
                    transition: transform 0.4s ease, background 0.4s ease;
                    flex-shrink: 0;
                }

                .faq-plus::before,
                .faq-plus::after {
                    content: '';
                    position: absolute;
                    background: var(--color-primary);
                    top: 50%;
                    left: 50%;
                    width: 14px;
                    height: 3px;
                    transform: translate(-50%, -50%);
                    transition: background 0.4s ease;
                    border-radius: 1.5px;
                }

                .faq-plus::after {
                    width: 3px;
                    height: 14px;
                }

                .faq-item.is-open {
                    background-color: #FFFFFF;
                    border-color: var(--color-primary);
                    box-shadow: 0 20px 40px rgba(226, 0, 116, 0.08);
                }

                .faq-item.is-open .faq-plus {
                    transform: rotate(45deg);
                    background: var(--color-primary);
                }

                .faq-item.is-open .faq-plus::before,
                .faq-item.is-open .faq-plus::after {
                    background: #FFF;
                }

                .faq-content {
                    height: 0;
                    overflow: hidden;
                    transition: height 0.4s ease;
                }

                .faq-content-inner {
                    padding: 0 32px 32px;
                    font-size: 1.05rem;
                    color: #555;
                    font-weight: 400;
                    line-height: 1.7;
                }

                .faq-cta-card {
                    background: #F9FAFB;
                    border-radius: 32px;
                    padding: 40px;
                    border: 1px solid rgba(0, 0, 0, 0.04);
                    text-align: center;
                    position: sticky;
                    top: 100px;
                }

                .faq-cta-icon {
                    width: 64px;
                    height: 64px;
                    background: #FFFFFF;
                    border-radius: 20px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto 24px;
                    color: var(--color-primary);
                    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
                }

                .faq-cta-card h3 {
                    font-size: 1.5rem;
                    font-weight: 900;
                    margin-bottom: 12px;
                    color: #1a1a1a;
                }

                .faq-cta-card p {
                    font-size: 1rem;
                    color: #555;
                    margin-bottom: 24px;
                    font-weight: 500;
                }

                @media (max-width: 1024px) {
                    .faq-grid {
                        grid-template-columns: 1fr;
                    }
                    .faq-cta-card {
                        position: static;
                        max-width: 450px;
                        margin: 40px auto 0;
                    }
                    .faq-header-main h2 { font-size: 2.75rem; }
                }

                @media (max-width: 480px) {
                    .faq-header-main h2 { font-size: 2.25rem; }
                    .faq-header-main { margin-bottom: 48px; }
                    .faq-header { padding: 20px; font-size: 1rem; }
                    .faq-content-inner { padding: 0 20px 20px 20px; font-size: 1rem; }
                    .faq-plus { width: 25px; height: 25px; }
                    .faq-plus::before { width: 11px; height: 3px; }
                    .faq-plus::after { width: 3px; height: 11px; }
                    .faq-cta-card { padding: 24px; }
                    .faq-grid { gap: 24px; }
                }

                @media (max-width: 360px) {
                    .faq-header { padding: 16px; font-size: 0.95rem; }
                    .faq-content-inner { padding: 0 16px 16px 16px; font-size: 1rem; }
                    .faq-plus { width: 22px; height: 22px; }
                    .faq-plus::before { width: 10px; height: 2px; }
                    .faq-plus::after { width: 2px; height: 10px; }
                    .faq-cta-card { padding: 20px; }
                }

/* ===== 8. FAB WHATSAPP ===== */
.fab-whatsapp {
            position: fixed;
            bottom: 32px;
            right: 32px;
            background: #25D366;
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
            z-index: 50;
            transition: transform 0.3s;
        }

        .fab-whatsapp:hover {
            transform: scale(1.1);
        }

        .fab-tooltip {
            position: absolute;
            right: 80px;
            background: #1a1a1a;
            color: white;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: 0.3s;
            transform: translateX(10px);
        }

        .fab-whatsapp:hover .fab-tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        .fab-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 6px solid #1a1a1a;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

        @media (max-width: 480px) {
            .fab-whatsapp {
                bottom: 24px;
                right: 24px;
                width: 56px;
                height: 56px;
            }

            .fab-whatsapp svg {
                width: 32px;
                height: 32px;
            }

            .fab-tooltip {
                display: none;
            }
        }

/* ===== 9. PREMIUM ANIMATIONS ===== */

/* Float Cards Dashboard */
@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.widget-metric {
    animation: float-card 3.5s ease-in-out var(--float-delay, 0s) infinite;
}

.widget-metric:nth-child(1) { --float-delay: 0s; }
.widget-metric:nth-child(2) { --float-delay: 0.6s; }
.widget-metric:nth-child(3) { --float-delay: 1.2s; }

.widget-metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(226,0,116,0.12);
    animation-play-state: paused;
}

/* Rolling Counter */
.roll-number {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    vertical-align: middle;
}

.roll-digit {
    display: inline-block;
    height: 2.4rem;
    overflow: hidden;
    vertical-align: middle;
    line-height: 1;
}

.roll-digit-inner {
    display: block;
    transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
    will-change: transform;
}

.roll-num {
    display: block;
    height: 2.4rem;
    line-height: 2.4rem;
    text-align: center;
}

/* Badges Premium */
.badge-glass {
    background: rgba(226,0,116,0.06);
    border: 1px solid rgba(226,0,116,0.15);
    color: #E20074;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.78rem;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.badge-glass:hover {
    background: rgba(226,0,116,0.12);
    box-shadow: 0 4px 12px rgba(226,0,116,0.15);
    transform: translateY(-2px);
}

.badge-glass--green {
    background: rgba(34,197,94,0.06);
    border-color: rgba(34,197,94,0.15);
    color: #22C55E;
}

.badge-glass--green:hover {
    background: rgba(34,197,94,0.12);
    box-shadow: 0 4px 12px rgba(34,197,94,0.15);
}

.badge-glass--blue {
    background: rgba(59,130,246,0.06);
    border-color: rgba(59,130,246,0.15);
    color: #3B82F6;
}

.badge-glass--blue:hover {
    background: rgba(59,130,246,0.12);
    box-shadow: 0 4px 12px rgba(59,130,246,0.15);
}

.badge-outline {
    background: transparent;
    border: 1.5px solid rgba(226,0,116,0.4);
    color: #E20074;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.78rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.badge-outline:hover {
    border-color: #E20074;
    box-shadow: 0 0 20px rgba(226,0,116,0.12);
    transform: translateY(-2px);
}

/* Marquee Logos */
.marquee-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-section h4 {
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    text-align: center;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 80px, black calc(100% - 80px), transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 48px;
    width: fit-content;
    animation: marquee-scroll 22s linear infinite;
    padding: 8px 0;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 80px;
    text-align: center;
    flex-shrink: 0;
}

.marquee-item span {
    font-size: 0.6rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.marquee-item__text--pink {
    color: #E20074;
}

/* Button Shine Effect */
.btn--primary::after,
.hero__btn-primary::after,
.btn-cta-primary::after,
.upload-btn::after,
.btn-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
    transition: left 1.2s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.35s ease;
}

.btn--primary:hover::after,
.hero__btn-primary:hover::after,
.btn-cta-primary:hover::after,
.upload-btn:hover::after,
.btn-submit:hover::after {
    opacity: 1;
    left: 150%;
}

/* Secondary button hover */
.hero__btn-secondary:hover {
    border-color: #E20074;
    color: #E20074;
}

/* Upload is-dragover */
.upload-zone.is-dragover {
    border-color: #E20074;
    border-style: solid;
    background: rgba(226,0,116,0.08);
    box-shadow: 0 0 40px rgba(226,0,116,0.1);
    transform: scale(1.01);
}

.upload-icon:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Dark Section Enterprise Enhancement */
.invoice-section {
    background: linear-gradient(135deg, #090209 0%, #07071b 50%, #130214 100%);
}

.invoice-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226,0,116,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.invoice-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(226,0,116,0.08);
}

/* ===== 10. 360px BREAKPOINT ===== */
@media (max-width: 360px) {
    .contact-info h2 {
        font-size: 2rem;
    }

    .invoice-title {
        font-size: 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.75rem;
    }

    .faq-header-main h2 {
        font-size: 1.75rem;
    }

    .hero__trust-item {
        font-size: 0.65rem;
    }
}

/* ===== 11. TOUCH DEVICE OVERRIDES ===== */
@media (hover: none) and (pointer: coarse) {
    .exp-side::before {
        opacity: 0 !important;
    }

    .exp-side .exp-glyph {
        opacity: 0 !important;
    }

    .exp-side:hover .exp-feature-item {
        transform: none;
    }

    .exp-side:hover .exp-icon {
        transform: none;
        filter: none;
    }

    .bento-card:hover {
        transform: none;
    }

    .widget-metric:hover {
        transform: none;
        animation-play-state: running;
    }

    .pricing-card:hover {
        transform: none;
    }

    .conn-card--pink:hover {
        transform: none;
    }

    .connect-card--lifestyle:hover {
        transform: none;
    }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { filter: none; }
    .roll-digit-inner { transition-duration: 0.01ms !important; }
    .marquee-track { animation: none; }
    .widget-metric { animation: none; }
}

/* ===== 12. COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    background: rgba(255, 250, 249, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(255, 0, 122, 0.08), 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    display: none;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    animation: slideInUpCookie 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.cookie-banner__title {
    color: #1A1A1A;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-headings, inherit);
}

.cookie-banner__text {
    color: #27272A;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__link {
    color: var(--color-primary, #DF1564);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner__link:hover {
    color: #FF2E93;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-cookie {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-cookie--primary {
    background: var(--color-primary, #DF1564);
    color: #FFFFFF;
    border: none;
}

.btn-cookie--primary:hover {
    background: #FF2E93;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(223, 21, 100, 0.3);
}

.btn-cookie--secondary {
    background: transparent;
    color: #27272A;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-cookie--secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    border-color: rgba(0, 0, 0, 0.3);
}

/* Mobile responsive */
@media (max-width: 576px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
        padding: 20px;
        border-radius: 20px;
    }
    
    .cookie-banner__actions {
        flex-direction: column-reverse;
    }
    
    .btn-cookie {
        width: 100%;
    }
}