        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Brand Colors - Correct Teal Palette */
            --primary: #1d7882;
            /* Official Teal */
            --primary-light: #2a9dad;
            /* Lighter Teal */
            --primary-dark: #155f66;
            /* Darker Teal */
            --accent: #3cdcc1;
            /* Cyan/Turquoise Accent */

            /* Neutral Colors (Light Theme) */
            --bg-dark: #F8FAFC;
            /* Very Light Gray/Blue for main background */
            --bg-card: #FFFFFF;
            /* White for cards */
            --bg-card-hover: #F1F5F9;
            /* Slight hover effect */

            --text-primary: #0F172A;
            /* Dark Slate for headings */
            --text-secondary: #475569;
            /* Muted Slate for body text */
            --text-muted: #94A3B8;
            /* Light Slate */

            --border: #E2E8F0;
            /* Light Border */

            /* Gradients & Effects */
            --gradient-primary: linear-gradient(135deg, #1d7882 0%, #155f66 100%);
            --gradient-accent: linear-gradient(135deg, #3cdcc1 0%, #2cb6a0 100%);

            --glow-primary: 0 0 20px rgba(60, 220, 193, 0.3);
            /* Cyan Glow */
            --glow-accent: 0 0 30px rgba(29, 120, 130, 0.2);
            /* Teal Glow */

            --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
            /* Soft Shadow */
            --glass-bg: rgba(255, 255, 255, 0.8);
            /* Frosted White */
            --glass-border: rgba(29, 120, 130, 0.1);
            /* Subtle Teal Border */
        }

        .highlight-text,
        .hero-content .highlight-text,
        .benefits-header .highlight-text {
            color: #3cdcc1 !important;
            font-weight: 700 !important;
        }

        html {
            scroll-behavior: smooth;
        }

        html,
        body {
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-primary);
            background-color: var(--bg-dark);
            line-height: 1.5;
            width: 100%;
        }

        html,
        body {
            overflow-x: hidden;
        }

        /* Loading Screen */
        #page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-dark);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s;
        }

        #page-loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .loader-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(60, 220, 193, 0.2);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }



        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(29, 120, 130, 0.15) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            animation: float 20s ease-in-out infinite;
        }

        .bg-animation::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(60, 220, 193, 0.08) 0%, transparent 70%);
            bottom: -150px;
            left: -150px;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            25% {
                transform: translate(50px, 50px) rotate(5deg);
            }

            50% {
                transform: translate(0, 100px) rotate(0deg);
            }

            75% {
                transform: translate(-50px, 50px) rotate(-5deg);
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0.8rem 2rem;
            background: rgba(21, 95, 102, 0.9);
            /* Dark Teal */
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-img {
            height: 32px;
            width: auto;
            display: block;
        }

        .loader-content .logo-img {
            height: 60px;
            margin-bottom: 1rem;
        }

        .footer-logo {
            height: 40px;
            margin-bottom: 1.5rem;
        }

        .logo span {
            display: none;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        .nav-toggle {
            display: none;
        }

        .nav-toggle-label {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .nav-toggle-label span {
            display: block;
            width: 28px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        .btn-primary {
            background: var(--accent);
            border: none;
            color: #0f172a;
            /* Dark text for better contrast on neon */
            box-shadow: 0 4px 15px rgba(60, 220, 193, 0.3);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(29, 120, 130, 0.4);
        }

        .btn-accent {
            background: var(--gradient-accent);
            border: none;
            color: #ffffff;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(60, 220, 193, 0.3);
            transition: all 0.3s ease;
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(60, 220, 193, 0.4);
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 180px 2rem 100px;
            overflow: hidden;
            background-color: #155f66;
            /* Dark Teal Background */
            background-image:
                radial-gradient(at 10% 10%, rgba(60, 220, 193, 0.2) 0px, transparent 50%),
                radial-gradient(at 90% 90%, rgba(21, 95, 102, 0.5) 0px, transparent 50%);
            animation: bgPulse 10s ease-in-out infinite alternate;
        }

        @keyframes bgPulse {
            0% {
                background-position: 0% 50%;
                background-size: 100% 100%;
            }

            100% {
                background-size: 120% 120%;
            }
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            grid-template-areas:
                "content visual"
                "stats visual"
                "buttons visual";
            gap: 2rem 4rem;
            align-items: center;
        }

        .hero-content {
            grid-area: content;
            width: 100%;
        }

        .hero-visual {
            grid-area: visual;
            grid-row: span 3;
            align-self: center;
        }

        .hero-stats {
            grid-area: stats;
            width: 100%;
        }

        .hero-buttons {
            grid-area: buttons;
            width: 100%;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
            color: #ffffff !important;
        }

        #hero_title1,
        #hero_title2 {
            color: #ffffff !important;
        }

        .hero-content h1 .highlight {
            color: #ffffff;
            background: transparent;
            padding: 0;
            box-shadow: none;
            -webkit-text-fill-color: initial;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
        }

        .hero-content h1 .accent {
            color: var(--accent);
        }

        .hero-content p,
        #hero_subtitle {
            font-size: 1.25rem;
            /* color: var(--text-secondary); */
            color: #ffffff !important;
            opacity: 0.95;
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero-buttons .btn-accent {
            background-color: #00ffaa;
            /* Neon Green */
            color: #0f172a;
            /* Dark Text */
            box-shadow: 0 0 15px rgba(0, 255, 170, 0.6);
            /* Neon Green Glow */
        }

        .hero-buttons .btn-accent:hover {
            background-color: #33ffbb;
            box-shadow: 0 0 25px rgba(0, 255, 170, 0.8);
        }

        .hero-buttons .btn-outline {
            color: white;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .hero-buttons .btn-outline:hover {
            background: white;
            color: var(--primary);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
            /* White Neon */
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .stat {
            position: relative;
            padding-right: 0;
        }

        .stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -1.25rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 30px;
            background: rgba(255, 255, 255, 0.2);
        }

        .hero-stats .stat-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: #3cdcc1;
            /* Official Accent */
            text-shadow: 0 0 15px rgba(60, 220, 193, 0.3);
            display: block;
            margin-bottom: 0.2rem;
        }

        .hero-stats .stat-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .card-mockup {
            width: 100%;
            max-width: 380px;
            aspect-ratio: 1.58 / 1;
            height: auto;
            background: #111 url('Gemini_Generated_Image_pegpkqpegpkqpegp.png') center/cover no-repeat;
            border-radius: 16px;
            padding: 1.2rem;
            position: relative;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
            transition: transform 0.5s ease;
            color: #ffffff;
            font-family: 'Inter', sans-serif;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            margin: 0 auto;
        }

        .card-mockup * {
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .card-mockup:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        }

        /* Background overlay to give texture/depth */
        .card-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        /* Card Redesign CSS */
        /* Redesigned Card Styles (Compact & Professional) */
        /* Redesigned Card Styles (Compact & Professional) */
        .card-header-small {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.25rem;
            padding-bottom: 0.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .card-logo-mini {
            height: 12px;
            width: auto;
            opacity: 0;
            /* Hidden as it's baked into the new background image */
        }

        .card-plan-tag {
            font-size: 0.45rem;
            /* Reduced size */
            font-weight: 800;
            letter-spacing: 1px;
            color: var(--accent);
            text-transform: uppercase;
        }

        .card-body-small {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            /* Tighter gap */
            flex-grow: 1;
        }

        .card-field-small {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .card-label-small {
            font-size: 0.4rem;
            /* Reduced size */
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.4px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
            margin-bottom: 1px;
        }

        .card-value-small {
            font-size: 0.65rem;
            /* Reduced size */
            font-weight: 600;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
            line-height: 1.1;
        }

        .card-value-small.mono {
            font-family: 'Courier New', monospace;
            letter-spacing: 0.5px;
            font-size: 0.75rem;
            /* Reduced size */
        }

        .card-bottom-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-top: auto;
            padding-top: 4px;
            /* Ensure space for descenders */
        }

        .card-info-group {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            /* Tighter gap */
            flex: 1;
        }

        .card-qr-placeholder {
            padding: 3px;
            background: white;
            border-radius: 4px;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 0.75rem;
        }

        .qr-box-mini {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .card-value.accent {
            color: var(--accent);
            font-weight: 800;
        }

        .card-qr-floating {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: white;
            padding: 4px;
            border-radius: 6px;
        }

        .card-qr-box {
            width: 50px;
            height: 50px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-qr-code {
            width: 100%;
            height: 100%;
            background-color: #000;
            background-image:
                linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000),
                linear-gradient(45deg, #000 25%, transparent 25%, transparent 75%, #000 75%, #000);
            background-size: 8px 8px;
            opacity: 0.9;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1rem 1.5rem;
            box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
            animation: floatCard 6s ease-in-out infinite;
            backdrop-filter: blur(10px);
        }

        .floating-element.top-right {
            top: -20px;
            right: -40px;
            animation-delay: 0s;
        }

        .floating-element.bottom-left {
            bottom: -20px;
            left: -60px;
            animation-delay: 3s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .floating-element .icon {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }

        .floating-element .value {
            font-weight: 700;
            font-size: 1.1rem;
        }

        .floating-element .label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* Features Section */
        .features {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(29, 120, 130, 0.1);
            border: 1px solid rgba(29, 120, 130, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
            border: 1px solid #ccfbf1;
            border-radius: 24px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            background: var(--bg-card-hover);
            box-shadow: var(--glow-primary);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(29, 120, 130, 0.1);
            color: var(--primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: var(--primary);
            color: #ffffff;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px rgba(29, 120, 130, 0.2);
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .feature-card p {
            color: #334155;
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 500;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 2rem 2rem 0;
            background: #1d7882;
            color: white;
        }


        .benefits-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .benefits-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .benefits-header h2 {
            font-size: 2.75rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            color: white;
        }

        .benefits-header>p {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 2.5rem;
            /* Matches original margin-bottom */
            margin-left: auto;
            margin-right: auto;
            max-width: 600px;
        }

        .highlight-text {
            color: var(--accent);
            font-weight: 700;
        }

        .benefit-list {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .benefit-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background: rgba(60, 220, 193, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .benefit-text h4 {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.25rem;
            color: white;
        }

        .benefit-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .benefits-visual {
            display: flex;
            justify-content: center;
        }

        .benefits-visual .card-static-image {
            animation: lightFloat 4s ease-in-out infinite !important;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
        }

        .app-mockup {
            width: 300px;
            height: 600px;
            background: var(--bg-card);
            border-radius: 40px;
            border: 8px solid #1a1a25;
            position: relative;
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
        }

        .app-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 30px;
            background: #1a1a25;
            border-radius: 20px;
            z-index: 10;
        }

        .app-screen {
            padding: 4rem 1.5rem 2rem;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .app-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .app-header .greeting {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .app-header .name {
            font-size: 1.3rem;
            font-weight: 600;
        }

        .app-balance {
            text-align: center;
            padding: 2rem;
            background: rgba(29, 120, 130, 0.1);
            border-radius: 20px;
            margin-bottom: 2rem;
        }

        .app-balance .label {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .app-balance .amount {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }

        .quick-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .action-btn {
            background: var(--bg-card-hover);
            border: none;
            padding: 1.5rem;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .action-btn:hover {
            background: var(--primary);
            color: white;
        }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: var(--bg-card);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--bg-dark);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid var(--border);
        }

        .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .quote {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .author .name {
            font-weight: 700;
            display: block;
        }

        .author .role {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Pricing */
        .pricing-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(29, 120, 130, 0.05) 50%, var(--bg-dark) 100%);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--bg-card);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #1d7882;
            color: white;
            justify-content: space-between;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Center content horizontally */
        }

        /*
         - [x] Mobile-First UI/UX Overhaul (Centralization, Buttons, Scaling) <!-- id: 60 -->
         - [x] Fix Hero & Global Centralization <!-- id: 61 -->
         - [x] Refactor Cards for Fluid Proportions <!-- id: 62 -->
         - [x] Standardize Mobile Buttons & Spacing <!-- id: 63 -->
        */

        /* Ensure list items are left-aligned but centered in the card */
        .pricing-card ul {
            width: 100%;
            text-align: left;
        }

        .pricing-card .plan-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .pricing-card .plan-price {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: baseline;
            justify-content: center;
        }

        .pricing-card .plan-price span {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.7);
            margin-left: 5px;
        }

        .pricing-card .plan-description {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
            display: block;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            border-color: #3cdcc1;
            box-shadow: 0 20px 40px rgba(60, 220, 193, 0.2);
            z-index: 2;
        }

        .pricing-card.featured .popular-tag {
            background: #3cdcc1;
            color: #0f172a;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 700;
            position: absolute;
            top: 20px;
            right: 20px;
        }

        .pricing-card ul {
            list-style: none;
            margin-bottom: 2.5rem;
            text-align: left;
        }

        .pricing-card ul li {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.9);
        }

        .pricing-card ul li::before {
            content: '✔';
            color: #00ffaa;
            font-weight: bold;
            text-shadow: 0 0 10px rgba(0, 255, 170, 0.6);
        }

        .pricing-card ul li.disabled {
            opacity: 0.5;
            text-decoration: line-through;
        }

        .pricing-card ul li.disabled::before {
            content: '✖';
            color: rgba(255, 255, 255, 0.3);
            text-shadow: none;
        }

        .pricing-card .btn {
            width: 100%;
            justify-content: center;
        }

        .pricing-card .btn-primary {
            background: white;
            color: #1d7882;
        }

        .pricing-card .btn-primary:hover {
            background: #f0fdfa;
            color: #155f66;
        }

        .pricing-card .btn-outline {
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }

        .pricing-card .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background-color: #1d7882;
            /* Dark Teal Background */
            padding: 2.5rem;
            border-radius: 24px;
            width: 90%;
            max-width: 600px;
            position: relative;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 220, 193, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translateY(20px);
            transition: transform 0.3s ease;
            max-height: 85vh;
            overflow-y: auto;
        }

        .modal-overlay.active .modal-content {
            transform: translateY(0);
        }

        .modal-close {
            color: rgba(255, 255, 255, 0.8);
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            position: absolute;
            right: 25px;
            top: 20px;
            transition: all 0.2s;
            background: none;
            border: none;
            z-index: 10;
        }

        .modal-close:hover {
            color: #fff;
            transform: scale(1.1);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .modal-title {
            color: white;
            font-weight: 800;
            font-size: 1.8rem;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 0 0 20px rgba(60, 220, 193, 0.2);
        }

        .procedure-category {
            margin-bottom: 2rem;
        }

        .procedure-category h4 {
            color: white;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding-bottom: 0.5rem;
            font-weight: 800;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        }

        .procedure-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
        }

        .procedure-list li {
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.08);
            /* Dark Glass Effect */
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            font-size: 0.95rem;
            color: white;
            font-weight: 700;
            transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            align-items: center;
            gap: 8px;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
        }

        .procedure-list li:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(8px) scale(1.02);
            color: #fff;
            border-color: #3cdcc1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(60, 220, 193, 0.3);
        }

        .procedure-list li::before {
            content: '●';
            color: #3cdcc1;
            /* Neon green bullet */
            font-size: 0.8rem;
            text-shadow: 0 0 8px rgba(60, 220, 193, 0.8);
        }

        .btn-link {
            background: none;
            border: none;
            color: var(--accent);
            text-decoration: underline;
            cursor: pointer;
            margin-top: 1rem;
            font-size: 0.9rem;
            display: block;
            text-align: center;
            width: 100%;
        }

        /* Partners Section - Compact Carousel */
        .partners-section {
            padding: 2rem 0 4rem;
            /* Reduced top padding to merge better */
            background: #1d7882;
            color: white;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .partners-title {
            position: absolute;
            top: 0.5rem;
            /* Adjusted for larger font */
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.2rem;
            /* Increased significantly */
            font-weight: 950;
            /* Slightly bolder */
            color: #1d7882;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 1;
            margin: 0;
            z-index: 10;
            text-shadow: none;
            /* Removed stroke */
        }

        @keyframes partnersTitleFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .partners-marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            padding: 3rem 0 1.5rem;
            /* Increased top padding for the larger title label */
            background: #FFFFFF;
            /* White track line */
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
        }

        .partners-track {
            display: flex;
            width: max-content;
            gap: 4rem;
            animation: partnersScroll 30s linear infinite;
        }

        .partner-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem 2.5rem;
            border-radius: 16px;
            background: #FFFFFF;
            border: 1px solid #e2e8f0;
            width: 320px;
            height: 160px;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .partner-badge img {
            max-width: 95%;
            max-height: 90%;
            object-fit: contain;
            filter: none;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .partner-badge:hover {
            border-color: #3cdcc1;
            transform: scale(1.08) translateY(-3px);
            box-shadow: 0 10px 25px rgba(60, 220, 193, 0.2);
        }

        .partner-badge:hover img {
            transform: scale(1.05);
        }

        @keyframes partnersScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 2rem));
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 2rem;
            background: #FFFFFF;
            /* White Background */
        }

        .faq-section .section-title {
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 3rem;
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            background: #F1F5F9;
            /* Gray Block */
            padding: 2rem;
            border-radius: 20px;
        }

        .faq-item {
            background: white;
            /* White Item bg on Gray Block */
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent);
        }

        .faq-question {
            width: 100%;
            padding: 1.5rem;
            text-align: left;
            background: transparent;
            border: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text-primary);
            /* Dark Text */
            cursor: pointer;
        }

        .faq-icon {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            display: none;
            color: var(--text-secondary);
            /* Gray Text */
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
            color: var(--accent);
        }

        /* Simplified Footer Styles */
        footer {
            background: #1d7882;
            color: #F8FAFC;
            padding: 3rem 1rem;
            text-align: center;
            width: 100% !important;
            margin: 0 !important;
            display: block !important;
        }

        .footer-simple {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
        }

        .footer-logo {
            margin-bottom: 0.5rem;
        }

        .footer-legal {
            display: flex;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--accent);
        }

        .separator {
            color: rgba(255, 255, 255, 0.3);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            width: 100%;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(5deg);
            background-color: #128c7e;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
            display: block;
        }

        /* Responsive Footer */
        @media (max-width: 768px) {
            .footer-simple {
                gap: 1.2rem;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin: 0 auto 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .stat {
                text-align: center;
            }

            .hero-visual {
                display: block;
                width: 100%;
                margin: 2rem 0;
                position: relative;
                overflow: hidden;
            }

            .card-mockup {
                width: 100%;
                height: auto;
                aspect-ratio: 1.58 / 1;
                transform: none;
                margin: 0 auto;
                display: block;
                position: relative;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                background-size: cover;
                overflow: hidden;
            }

            /* Hierarquia Interna do Cartão com Porcentagens */
            .card-header-small {
                position: absolute;
                top: 8%;
                left: 6%;
                right: 6%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }

            .card-body-small {
                position: absolute;
                top: 35%;
                left: 6%;
                right: 6%;
                bottom: 8%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .card-field-small {
                margin-bottom: 4%;
            }

            .card-label-small {
                font-size: 0.5rem;
                display: block;
                margin-bottom: 2px;
                opacity: 0.8;
            }

            .card-value-small {
                font-size: 0.75rem;
                font-weight: 600;
            }

            .card-bottom-row {
                display: flex;
                justify-content: space-between;
                align-items: flex-end;
            }

            .qr-box-mini {
                width: 15% !important;
                height: auto !important;
                max-width: 45px;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-toggle-label {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: rgba(10, 10, 15, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            }

            .nav-toggle:checked~.nav-links {
                right: 0;
            }

            .nav-toggle:checked~.nav-toggle-label span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 6px);
            }

            .nav-toggle:checked~.nav-toggle-label span:nth-child(2) {
                opacity: 0;
            }

            .nav-toggle:checked~.nav-toggle-label span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -6px);
            }

            .nav-buttons {
                display: none;
            }

            .hero {
                padding: 100px 15px 60px;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                overflow-x: hidden;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.1;
                font-weight: 800;
                margin: 0 auto 1.5rem;
                width: 100%;
                max-width: 100%;
                text-align: center;
            }

            .hero p {
                text-align: center !important;
                color: #ffffff !important;
                width: 90% !important;
                margin: 0 auto 2rem !important;
                font-size: 1rem !important;
                line-height: 1.5 !important;
                opacity: 0.9;
            }

            /* Buttons Optimization */
            .hero-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 15px;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
                padding: 12px 20px;
                margin: 0 auto;
                justify-content: center;
                border-radius: 50px;
            }

            /* Card Optimization */
            .hero-visual {
                display: block;
                width: 90%;
                max-width: 340px;
                margin: 2rem auto;
                position: relative;
                overflow: visible;
            }

            @keyframes float {
                0% {
                    transform: translateY(0px);
                }

                50% {
                    transform: translateY(-10px);
                }

                100% {
                    transform: translateY(0px);
                }
            }

            .card-mockup {
                display: none !important;
                /* Hide old mockup if present */
            }

            .card-static-image {
                width: 85%;
                max-width: 320px;
                height: auto;
                display: block;
                margin: 2rem auto -30px;
                /* Negative margin for overlap effect */
                border-radius: 16px;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
                transform: rotate(-3deg);
                position: relative;
                z-index: 10;
            }

            /* Internal Card Data - Strictly Organized */
            .card-body-small {
                position: absolute;
                top: 35%;
                left: 6%;
                right: 6%;
                bottom: 8%;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }

            .card-label-small {
                font-size: 0.5rem;
                display: block;
                margin-bottom: 2px;
                opacity: 0.8;
            }

            .card-value-small {
                font-size: 0.75rem;
                /* ~12px */
                font-weight: 600;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .card-bottom-row {
                display: flex;
                justify-content: space-between;
                align-items: flex-end;
            }

            .qr-box-mini {
                width: 40px;
                height: 40px;
            }

            .hero-stats {
                display: flex;
                flex-direction: row;
                justify-content: space-around;
                align-items: center;
                width: 95%;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 15px;
                padding: 10px 5px;
                margin: 20px auto;
                border: 1px solid rgba(255, 255, 255, 0.2);
                gap: 0;
            }

            .stat {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 0 2px;
                border-right: 1px solid rgba(255, 255, 255, 0.2);
            }

            .stat:last-child {
                border-right: none;
            }

            .hero-stats .stat-value {
                font-size: 0.9rem;
                font-weight: bold;
                color: #4ade80;
                margin-bottom: 2px;
                white-space: nowrap;
            }

            .hero-stats .stat-label {
                font-size: 0.6rem;
                color: #ffffff;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                opacity: 0.8;
                white-space: nowrap;
            }

            .hero-buttons .btn {
                width: 90%;
                padding: 15px;
                border-radius: 12px;
                font-weight: bold;
                justify-content: center;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
            }

            .feature-card {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .feature-card h3 {
                color: #3cdcc1 !important;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 0 1rem;
            }

            .benefit-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .benefits-visual {
                order: -1;
                width: 100%;
                max-width: 100%;
                margin: 0 auto 3rem;
                padding: 0 10px;
            }

            .digital-card {
                width: 100%;
                height: auto;
                aspect-ratio: 1.58 / 1;
                transform: none;
                animation: none;
                border-radius: 12px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            /* Cleaned up old footer overrides as new footer is simple and centered by default */

            .pricing-section {
                padding: 4rem 1.5rem;
                position: relative;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .pricing-grid {
                display: flex;
                overflow-x: hidden;
                scroll-snap-type: x mandatory;
                gap: 0;
                padding: 2rem 0;
                scroll-behavior: smooth;
                width: 100vw;
                margin-left: -1.5rem;
                /* Offset section padding */
            }

            .pricing-card {
                flex: 0 0 100%;
                scroll-snap-align: center;
                max-width: none;
                transform: scale(0.85);
                transition: transform 0.3s ease;
                opacity: 0.6;
                padding: 2.5rem 1.5rem;
            }

            .pricing-card.active-slide {
                transform: scale(1);
                opacity: 1;
            }

            .partners-marquee-container {
                padding: 3rem 0;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                overflow: hidden;
            }

            .partners-title {
                position: relative;
                top: 0;
                left: 0;
                transform: none;
                margin-bottom: 2.5rem;
                font-size: 1.25rem;
                padding: 0 20px;
                width: 100%;
            }

            .partners-track {
                width: 100%;
            }

            .faq-section {
                padding: 4rem 20px;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .faq-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                width: 100%;
                max-width: 100%;
            }

            .faq-question {
                font-size: 1rem;
                padding: 1.25rem;
                text-align: left;
                width: 100%;
            }

            .cta {
                width: 80% !important;
                /* Adjusted to 80% as requested */
                max-width: 80% !important;
                padding: 2rem 1rem !important;
                /* Reduced vertical padding */
                margin: 1.5rem auto !important;
                /* Reduced margin */
                border-radius: 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .cta h2 {
                font-size: 1.35rem !important;
                /* Smaller title */
                line-height: 1.2;
                margin-bottom: 0.75rem !important;
            }

            .cta p {
                font-size: 0.95rem !important;
                /* Smaller subtitle */
                margin-bottom: 1.5rem !important;
                line-height: 1.4;
            }

            .cta .btn-accent {
                width: auto !important;
                /* Don't force full width if content is small */
                min-width: 200px !important;
                padding: 0.85rem 1.5rem !important;
                font-size: 1rem !important;
                justify-content: center;
            }

            /* Pricing Carousel Navigation */
            .pricing-nav {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                margin-top: 2rem;
            }

            .pricing-nav-btn {
                background: rgba(255, 255, 255, 0.1);
                border: 1px solid rgba(255, 255, 255, 0.2);
                color: white;
                width: 44px;
                height: 44px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .pricing-nav-btn:hover {
                background: var(--accent);
                color: var(--primary);
                border-color: var(--accent);
            }

            .pricing-dots {
                display: flex;
                gap: 8px;
            }

            .pricing-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }

            .pricing-dot.active {
                background: var(--accent);
                transform: scale(1.2);
            }
        }

        /* Desktop should hide carousel nav */
        .pricing-nav {
            display: none;
        }

        /* CTA Section Styles */
        .cta {
            background: #1d7882;
            padding: 2.5rem 1.5rem;
            /* Drastic reduction */
            text-align: center;
            color: white;
            border-radius: 30px;
            /* Make it a floating pill/card */
            max-width: 60%;
            /* Reduce horizontal width by 40% */
            margin: 2rem auto;
            /* Center it with spacing */
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: 1.8rem;
            /* Smaller font */
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .cta p {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 1.2rem;
        }

        .cta .btn-accent {
            background: #3cdcc1;
            color: #0b2e31;
            font-weight: 800;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(60, 220, 193, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cta .btn-accent:hover {
            background: white;
            color: #1d7882;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 30px rgba(60, 220, 193, 0.4);
        }

        /* Digital Card Styles */
        .digital-card-container {
            position: relative;
            width: 100%;
            max-width: 380px;
            height: 240px;
            perspective: 1000px;
            margin: 0 auto;
        }

        .digital-card {
            width: 100%;
            height: 100%;
            aspect-ratio: 1.58 / 1;
            background: #111 url('Gemini_Generated_Image_pegpkqpegpkqpegp.png') center/cover no-repeat;
            border-radius: 20px;
            padding: 1.2rem;
            position: relative;
            color: white;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            transition: transform 0.6s ease-out;
            transform-style: preserve-3d;
            animation: cardSwing 8s ease-in-out infinite;
        }

        .digital-card * {
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        @keyframes cardSwing {

            0%,
            100% {
                transform: rotateY(-30deg) rotateX(10deg);
            }

            50% {
                transform: rotateY(30deg) rotateX(-5deg);
            }
        }

        .digital-card:hover {
            animation-play-state: paused;
            transform: scale(1.05) translateZ(50px);
        }

        .digital-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
            z-index: 1;
            pointer-events: none;
        }


        /* =========================================
   GLOBAL CARD STYLES (STATIC IMAGE - V10)
   ========================================= */
        .card-static-image {
            width: 90% !important;
            max-width: 420px !important;
            height: auto !important;
            display: block !important;
            margin: 20px auto !important;
            border-radius: 15px !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
            object-fit: contain !important;

            /* 3D Interactive Animation */
            transform-style: preserve-3d !important;
            animation: rotacao-3d 12s ease-in-out infinite !important;
            will-change: transform !important;
        }

        @keyframes rotacao-3d {
            0% {
                transform: perspective(1000px) rotateY(-30deg) rotateX(10deg) translateY(0);
            }

            50% {
                transform: perspective(1000px) rotateY(30deg) rotateX(-10deg) translateY(-20px);
            }

            100% {
                transform: perspective(1000px) rotateY(-30deg) rotateX(10deg) translateY(0);
            }
        }

        @keyframes lightFloat {
            0% {
                transform: translateY(0) scale(1);
            }

            50% {
                transform: translateY(-15px) scale(1.02);
            }

            100% {
                transform: translateY(0) scale(1);
            }
        }


        /* =========================================
   STRICT MOBILE OVERRIDES (STATIC IMAGE - V10)
   ========================================= */
        @media (max-width: 768px) {

            /* 1. Reset Global */
            html,
            body {
                width: 100% !important;
                overflow-x: hidden !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                margin: 0 !important;
                padding: 0 !important;
            }

            /* 2. Page Typography */
            .hero-container {
                display: grid !important;
                grid-template-columns: 1fr !important;
                grid-template-areas:
                    "content"
                    "visual"
                    "stats"
                    "buttons" !important;
                gap: 1.5rem !important;
                text-align: center !important;
                width: 100% !important;
                padding-top: 2rem !important;
            }

            .hero-content {
                grid-area: content !important;
                width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
            }

            .hero-visual {
                grid-area: visual !important;
                grid-row: auto !important;
                width: 100% !important;
                display: flex !important;
                justify-content: center !important;
                margin: 0 !important;
            }

            .hero-stats {
                grid-area: stats !important;
                width: 100% !important;
                display: flex !important;
            }

            .hero-buttons {
                grid-area: buttons !important;
                width: 100% !important;
                display: flex !important;
                justify-content: center !important;
            }

            .hero h1 {
                font-size: 2.2rem !important;
                line-height: 1.1 !important;
                margin: 1.5rem auto 1rem !important;
                width: 95% !important;
                color: #ffffff !important;
                /* White Title */
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
                font-weight: 900 !important;
            }

            .hero h1 span,
            .hero h1 .highlight {
                color: #ffffff !important;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
            }

            .hero p {
                font-size: 1.1rem !important;
                margin: 0 auto 1.5rem !important;
                width: 90% !important;
                padding: 0 10px !important;
                color: #3cdcc1 !important;
                /* Teal Text */
                font-weight: 500 !important;
                text-shadow: none !important;
            }

            .hero p .highlight-text {
                color: #ffffff !important;
                /* White Highlights */
                font-weight: 700 !important;
            }

            /* 3. The CARD (Static Image) - Inherits Global Styles */


            .hero-visual .floating-element {
                display: none !important;
            }

            /* .card-static-image is now global */

            /* 4. Buttons */
            .hero-buttons {
                width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                margin-top: 20px !important;
            }

            .hero-buttons .btn {
                width: 85% !important;
                max-width: 300px !important;
                padding: 12px !important;
                font-size: 1rem !important;
                margin: 8px 0 !important;
            }

            /* 5. Metrics */
            /* 5. Metrics */
            .hero-stats {
                display: flex !important;
                flex-direction: row !important;
                justify-content: space-evenly !important;
                width: 95% !important;
                margin: 1.5rem auto !important;
            }

            .stat::after {
                display: none !important;
            }

            /* 6. Features Section Overrides */
            .features {
                padding-top: 1rem !important;
                /* "Junte um pouco mais o topo" */
            }

            .section-header {
                margin-bottom: 1.5rem !important;
            }

            .section-title {
                font-size: 1.8rem !important;
                /* Increased size */
                white-space: normal !important;
                width: 100% !important;
                margin: 0 auto 0.5rem !important;
                line-height: 1.2 !important;
                padding: 0 10px !important;
            }

            .section-subtitle {
                font-size: 1rem !important;
                width: 90% !important;
                margin: 0 auto 1.5rem !important;
                white-space: normal !important;
                line-height: 1.4 !important;
            }

            /* 7. Pricing Section Overrides (Compact & Clean) */
            .pricing-section {
                padding-top: 0.5rem !important;
                padding-bottom: 3rem !important;
                position: relative !important;
            }

            .badge-recommended {
                background-color: #0b2e31 !important;
                /* Dark contrast */
                color: #3cdcc1 !important;
                /* Teal text */
                font-weight: 800 !important;
                border: 1px solid #3cdcc1 !important;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
            }

            .pricing-carousel-wrapper {
                position: relative !important;
                width: 100% !important;
                display: flex !important;
                justify-content: center !important;
                align-items: center !important;
            }

            .pricing-grid {
                display: flex !important;
                flex-wrap: nowrap !important;
                gap: 15px !important;
                padding: 10px 5% 20px !important;
                overflow-x: auto !important;
                scroll-snap-type: x mandatory !important;
                justify-content: flex-start !important;
                scrollbar-width: none !important;
                width: 100% !important;
                mask-image: none !important;
                -webkit-mask-image: none !important;
            }

            .pricing-grid::-webkit-scrollbar {
                display: none !important;
            }

            .pricing-card {
                flex: 0 0 280px !important;
                width: 280px !important;
                max-width: 280px !important;
                min-width: 280px !important;
                margin: 0 !important;
                scroll-snap-align: center !important;
                padding: 1.5rem 15px !important;
                min-height: auto !important;
                height: auto !important;
                transform: none !important;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
                border: 1px solid rgba(0, 0, 0, 0.05) !important;
            }

            .plan-name {
                font-size: 1.2rem !important;
                margin-bottom: 0.5rem !important;
                color: #3cdcc1 !important;
            }

            .plan-price {
                font-size: 1.6rem !important;
                color: #3cdcc1 !important;
            }

            .plan-description {
                font-size: 0.85rem !important;
                margin-bottom: 1rem !important;
                line-height: 1.3 !important;
                color: #ffffff !important;
            }

            .plan-features {
                margin: 1rem 0 !important;
            }

            .plan-features li {
                font-size: 0.85rem !important;
                padding: 0 !important;
                margin-bottom: 8px !important;
            }

            .pricing-card .btn {
                padding: 10px !important;
                font-size: 0.9rem !important;
                width: 100% !important;
            }

            /* Carousel Buttons */
            .carousel-btn {
                position: absolute !important;
                top: 50% !important;
                transform: translateY(-50%) !important;
                background: rgba(255, 255, 255, 0.9) !important;
                /* High contrast */
                color: #000000 !important;
                /* Black arrows */
                border: 1px solid rgba(0, 0, 0, 0.1) !important;
                width: 44px !important;
                height: 44px !important;
                border-radius: 50% !important;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                cursor: pointer !important;
                z-index: 999 !important;
                font-size: 1.5rem !important;
                backdrop-filter: blur(4px) !important;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
                outline: none !important;
                tap-highlight-color: transparent !important;
            }

            .carousel-btn.prev {
                left: 10px !important;
                /* Fixed spacing from edge */
            }

            .carousel-btn.next {
                right: 10px !important;
                /* Fixed spacing from edge */
            }

            /* Alignment Spacers */
            .pricing-card:first-child {
                margin-left: calc(50% - 140px) !important;
            }

            .pricing-card:last-child {
                margin-right: calc(50% - 140px) !important;
            }
        }

        /* --- FINAL MOBILE OVERRIDES (DEFINITIVE V64) --- */
        @media (max-width: 768px) {

            /* 1. Title Size & Overflow Fix */
            .section-title {
                font-size: 1.6rem !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding: 0 15px !important;
                line-height: 1.3 !important;
                width: 100% !important;
                margin: 0 auto 0.5rem !important;
                text-align: center !important;
            }

            .section-subtitle {
                padding: 0 15px !important;
                width: 90% !important;
                max-width: 350px !important;
                /* Constraint max width */
                margin: 0 auto 2rem !important;
                font-size: 0.95rem !important;
                line-height: 1.5 !important;
                white-space: normal !important;
                text-align: center !important;
            }

            /* 2. Badge REMOVAL */
            .pricing-card .badge-recommended,
            .badge-recommended {
                display: none !important;
            }

            /* Description White Color */
            .plan-description {
                color: #ffffff !important;
                opacity: 0.95 !important;
                font-weight: 500 !important;
            }

            /* 3. Black Arrows Fix (High Visibility) */
            .carousel-btn {
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                background: #ffffff !important;
                /* Pure White */
                border: 2px solid rgba(0, 0, 0, 0.1) !important;
                color: #000000 !important;
                z-index: 9999 !important;
                width: 50px !important;
                height: 50px !important;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
            }

            .carousel-btn svg,
            .carousel-btn path {
                fill: #000000 !important;
                stroke: #000000 !important;
                color: #000000 !important;
            }

            .carousel-btn.prev {
                left: 5px !important;
            }

            .carousel-btn.next {
                right: 5px !important;
            }
        }

        /* --- CONSOLIDATED HERO & MOBILE FIXES (V70) --- */
        @media (max-width: 768px) {
            .hero-container {
                display: grid !important;
                grid-template-columns: 1fr !important;
                grid-template-areas:
                    "content"
                    "visual"
                    "stats"
                    "buttons" !important;
                gap: 1.5rem !important;
                text-align: center !important;
                width: 100% !important;
                padding-top: 2rem !important;
            }

            .hero-content {
                grid-area: content !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
                width: 100% !important;
                margin: 0 auto !important;
            }

            .hero-visual {
                grid-area: visual !important;
                grid-row: auto !important;
                display: flex !important;
                justify-content: center !important;
                width: 100% !important;
                margin: 0 !important;
            }

            .hero-stats {
                grid-area: stats !important;
                display: flex !important;
                flex-direction: row !important;
                justify-content: space-evenly !important;
                width: 95% !important;
                margin: 1rem auto !important;
            }

            .stat::after {
                display: none !important;
            }

            .hero-buttons {
                grid-area: buttons !important;
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                width: 100% !important;
            }

            .hero-buttons .btn {
                width: 85% !important;
                max-width: 300px !important;
                margin: 8px 0 !important;
            }

            /* Typography & Colors */
            .hero h1 {
                font-size: 2.2rem !important;
                line-height: 1.1 !important;
                margin: 0 auto 1.5rem !important;
                color: #ffffff !important;
                font-weight: 900 !important;
            }

            .hero p {
                font-size: 1.1rem !important;
                color: #3cdcc1 !important;
                width: 90% !important;
                margin: 0 auto 2rem !important;
            }

            .highlight-text {
                color: #ffffff !important;
                font-weight: 700 !important;
            }

            /* Floating animation for Benefits Card */
            .benefits-visual .card-static-image {
                animation: lightFloat 4s ease-in-out infinite !important;
            }

            /* Benefits Contrast & Title Colors (User Request) */
            .benefit-item {
                background: rgba(255, 255, 255, 0.05) !important;
                border: 1px solid rgba(255, 255, 255, 0.1) !important;
                padding: 1.5rem !important;
                border-radius: 16px !important;
                margin-bottom: 1rem !important;
                flex-direction: column !important;
                align-items: center !important;
                text-align: center !important;
            }

            .benefit-text h4 {
                color: #3cdcc1 !important;
                font-size: 1.2rem !important;
                margin-top: 0.5rem !important;
            }

            .benefit-icon {
                background: #3cdcc1 !important;
                color: #0d474d !important;
                transform: scale(1.1) !important;
            }
        }