        :root {
            --primary: #1e3a5f;
            --primary-dark: #152a45;
            --primary-light: #0d9488;
            --secondary: #0d9488;
            --accent: #84cc16;
            --accent-light: #a3e635;
            --earth: #78716c;
            --earth-light: #a8a29e;
            --text-dark: #1c1917;
            --text-light: #57534e;
            --bg-light: #fafaf9;
            --bg-white: #ffffff;
            --success: #22c55e;
            --border: #e7e5e4;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            scroll-behavior: smooth;
        }
        
        html {
            scroll-behavior: smooth;
        }

        /* Ancore din meniu: nu ascunde titlul sub navbar fix */
        #page-top,
        #features,
        #comparison,
        #benefits,
        #pentru-cine,
        #ce-stie-sistemul,
        #probleme,
        #suita-completa,
        #testimonials,
        #faq {
            scroll-margin-top: 5.5rem;
        }
        
        /* Hero Section - Complete Redesign - Mobile First */
        .hero {
            background: linear-gradient(135deg, #fafaf9 0%, #f5f5f4 50%, #e7e5e4 100%);
            display: flex;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
            padding: 0.75rem 0 2.5rem;
            border-bottom: 1px solid var(--border);
            z-index: 1;
        }
        
        @media (min-width: 768px) {
            .hero {
                padding: 1.25rem 0 3.5rem;
            }
        }

        /* Header compact pe landing */
        body > .site-header.navbar {
            padding: 0.5rem 0 !important;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 8s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 10s ease-in-out infinite reverse;
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--text-dark);
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(5, 150, 105, 0.1);
            padding: 0.5rem 1.25rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(5, 150, 105, 0.2);
            color: var(--primary);
            animation: slideInLeft 0.8s ease;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-title {
            font-size: 2.25rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.25rem;
            letter-spacing: -0.03em;
            animation: slideInUp 1s ease 0.2s both;
        }
        
        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
                margin-bottom: 1.5rem;
            }
        }
        
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-title-highlight {
            display: block;
            background: linear-gradient(135deg, #059669 0%, #0d9488 50%, #10b981 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-top: 0.5rem;
            position: relative;
            animation: gradientShift 4s ease infinite;
        }
        
        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% center;
            }
            50% {
                background-position: 100% center;
            }
        }
        
        .hero-title-highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            border-radius: 2px;
            opacity: 0.3;
            animation: underlinePulse 2s ease infinite;
        }
        
        @keyframes underlinePulse {
            0%, 100% {
                opacity: 0.3;
                transform: scaleX(1);
            }
            50% {
                opacity: 0.6;
                transform: scaleX(1.05);
            }
        }
        
        .hero-description {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            line-height: 1.7;
            max-width: 650px;
            font-weight: 400;
            animation: slideInUp 1s ease 0.4s both;
            opacity: 0.85;
        }
        
        @media (min-width: 768px) {
            .hero-description {
                font-size: 1.125rem;
                margin-bottom: 2.5rem;
                line-height: 1.75;
            }
        }
        
        .hero-features {
            display: none; /* Hidden on mobile to save space */
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            animation: slideInUp 1s ease 0.6s both;
        }
        
        @media (min-width: 768px) {
            .hero-features {
                display: flex;
                margin-bottom: 3rem;
            }
        }
        
        .hero-feature {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.625rem 1.25rem;
            border-radius: 8px;
            font-size: 0.875rem;
            font-weight: 600;
            border: 1px solid var(--border);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            color: var(--text-dark) !important;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .hero-feature * {
            color: var(--text-dark) !important;
        }
        
        .hero-feature::before,
        .hero-feature::after {
            display: none !important;
            content: none !important;
        }
        
        .hero-feature:hover {
            background: var(--bg-light);
            transform: translateY(-1px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }
        
        .hero-feature:hover * {
            color: var(--text-dark) !important;
        }
        
        .hero-feature i {
            color: var(--primary) !important;
        }
        
        .hero-cta {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            animation: slideInUp 1s ease 0.8s both;
            width: 100%;
            position: relative;
            z-index: 1;
        }
        
        .hero-cta * {
            position: relative;
            z-index: 1;
        }
        
        .hero-cta::before,
        .hero-cta::after {
            display: none !important;
            content: none !important;
        }
        
        @media (min-width: 768px) {
            .hero-cta {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 1.25rem;
            }
        }
        
        .btn-hero-primary {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            color: white;
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            text-decoration: none;
        }
        
        @media (min-width: 768px) {
            .btn-hero-primary {
                padding: 1rem 2.5rem;
                font-size: 1.0625rem;
                width: auto;
            }
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
            background: linear-gradient(135deg, #047857 0%, #059669 100%);
            color: white;
            text-decoration: none;
        }
        
        .btn-hero-primary:active {
            transform: translateY(0);
        }
        
        .btn-hero-secondary {
            background: white;
            color: var(--text-dark) !important;
            border: 1px solid var(--border);
            padding: 0.875rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            width: 100%;
            text-decoration: none;
            position: relative;
            z-index: 1;
        }
        
        .btn-hero-secondary * {
            color: var(--text-dark) !important;
        }
        
        .btn-hero-secondary::before,
        .btn-hero-secondary::after {
            display: none !important;
            content: none !important;
        }
        
        @media (min-width: 768px) {
            .btn-hero-secondary {
                padding: 1rem 2.5rem;
                font-size: 1.0625rem;
                width: auto;
            }
        }
        
        .btn-hero-secondary:hover {
            background: var(--bg-light);
            border-color: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
            color: var(--text-dark) !important;
            text-decoration: none;
        }
        
        .btn-hero-secondary:hover * {
            color: var(--text-dark) !important;
        }
        
        .btn-hero-secondary:active {
            transform: translateY(0);
        }

        .btn-hero-ghost {
            background: transparent;
            color: #059669 !important;
            border: 1px dashed rgba(5, 150, 105, 0.45);
            padding: 0.875rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            text-decoration: none;
        }
        @media (min-width: 768px) {
            .btn-hero-ghost { width: auto; padding: 1rem 1.75rem; }
        }
        .btn-hero-ghost:hover {
            background: rgba(5, 150, 105, 0.08);
            border-color: #059669;
            text-decoration: none;
        }
        
        /* Hero Visual - Modern Design */
        .hero-visual {
            position: relative;
            z-index: 2;
            animation: fadeInRight 1s ease 0.5s both;
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(40px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .hero-visual-card {
            background: white;
            border-radius: 16px;
            padding: 1.35rem;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .hero-visual-card * {
            position: relative;
            z-index: 2;
        }
        
        .hero-visual-card::before {
            z-index: 0;
        }
        
        @media (min-width: 768px) {
            .hero-visual-card {
                padding: 1.5rem;
                border-radius: 20px;
            }
        }
        
        .hero-visual-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .hero-visual-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
            position: relative;
            z-index: 1;
        }
        
        .hero-visual-icon {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
        }
        
        .hero-visual-title h5 {
            margin: 0;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            letter-spacing: -0.01em;
        }
        
        .hero-visual-title small {
            display: block;
            margin-top: 0.25rem;
            color: var(--text-dark);
            font-size: 0.875rem;
            font-weight: 500;
            opacity: 0.7;
        }
        
        .hero-visual-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: var(--bg-light);
            border-radius: 10px;
            margin-bottom: 0.75rem;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .hero-visual-item:hover {
            background: linear-gradient(90deg, rgba(5, 150, 105, 0.05) 0%, white 100%);
            transform: translateX(8px) scale(1.02);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
            border-color: var(--primary);
        }
        
        .hero-visual-item:hover .hero-visual-item-text i {
            transform: scale(1.2);
            color: var(--primary);
        }
        
        .hero-visual-item-text {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-dark);
            font-size: 0.9375rem;
            font-weight: 500;
        }
        
        .hero-visual-badge {
            background: white;
            color: var(--primary);
            padding: 0.375rem 0.875rem;
            border-radius: 6px;
            font-size: 0.8125rem;
            font-weight: 600;
            border: 1px solid var(--border);
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
            position: relative;
            z-index: 10;
        }
        
        .hero-stat {
            text-align: center;
            padding: 1.25rem;
            background: var(--bg-light);
            border-radius: 10px;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .hero-stat::before,
        .hero-stat::after {
            display: none !important;
            content: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }
        
        .hero-stat *::before,
        .hero-stat *::after {
            display: none !important;
            content: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }
        
        .hero-stat-number {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 0.5rem;
            display: block;
            position: relative;
            z-index: 10;
        }
        
        .hero-stat-label {
            font-size: 0.875rem;
            color: var(--text-dark);
            font-weight: 600;
            display: block;
            position: relative;
            z-index: 10;
            opacity: 1;
        }
        
        .hero-stat * {
            color: inherit;
            opacity: 1;
        }
        
        .hero-stat span {
            position: relative;
            z-index: 10;
        }
        
        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            color: white;
            padding: 3.5rem 0 5rem;
            overflow: visible !important;
            position: relative;
            z-index: 0;
        }
        
        .stats .container {
            overflow: visible !important;
        }
        
        .stats .row {
            overflow: visible !important;
        }
        
        .stats [class*="col-"] {
            overflow: visible !important;
        }
        
        .stat-item {
            text-align: center;
            padding: 2rem 1rem 3rem;
            overflow: visible !important;
            position: relative;
            min-height: auto;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            line-height: 1.1;
            margin-bottom: 0.75rem;
            display: block;
            position: relative;
        }
        
        .stat-label {
            font-size: 0.95rem;
            opacity: 1;
            font-weight: 600;
            color: white;
            line-height: 1.5;
            display: block;
            position: relative;
            padding-bottom: 0.5rem;
            margin-bottom: 0;
            white-space: normal;
            word-wrap: break-word;
        }
        
        /* Section Styles */
        .section {
            padding: 4rem 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
            line-height: 1.2;
            letter-spacing: -0.02em;
        }
        
        @media (min-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        .section-subtitle {
            font-size: 1.15rem;
            color: var(--text-dark);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
            font-weight: 500;
            opacity: 0.8;
        }
        
        /* Feature Cards - Mobile First - Modern Design */
        .feature-card {
            height: 100%;
            border: none;
            border-radius: 12px;
            padding: 2rem;
            background: white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #059669 0%, #0d9488 100%);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
            border-color: var(--primary);
        }
        
        .feature-card:hover .feature-icon {
            transform: rotate(5deg) scale(1.1);
        }
        
        .feature-icon {
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .feature-card:hover .feature-icon {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
            line-height: 1.3;
            letter-spacing: -0.02em;
        }
        
        .feature-text {
            color: var(--text-dark);
            line-height: 1.8;
            font-size: 1.05rem;
            margin: 0;
            opacity: 0.85;
        }
        
        /* Benefits Section - Modern Design */
        .benefit-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding: 1.75rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        
        .benefit-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #059669 0%, #0d9488 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }
        
        .benefit-item:hover::after {
            transform: scaleY(1);
        }
        
        .benefit-item:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-color: var(--primary);
        }
        
        .benefit-icon {
            flex-shrink: 0;
            width: 56px;
            height: 56px;
            border-radius: 12px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover .benefit-icon {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
        }
        
        .benefit-content h5 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }
        
        .benefit-content p {
            color: var(--text-dark);
            margin: 0;
            line-height: 1.8;
            font-size: 1.05rem;
            opacity: 0.85;
        }
        
        /* Testimonials - Modern Design */
        .testimonial-card {
            height: 100%;
            border: none;
            border-radius: 12px;
            padding: 2rem;
            background: white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
            border: 1px solid var(--border);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 4rem;
            color: rgba(5, 150, 105, 0.08);
            font-weight: 900;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
            border-color: var(--primary);
        }
        
        .testimonial-card:hover::before {
            opacity: 0.15;
            transform: scale(1.1);
        }
        
        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.25rem;
            margin-bottom: 1.75rem;
            margin-top: 0.5rem;
        }
        
        .testimonial-text {
            color: var(--text-dark);
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.9;
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            padding-left: 0.5rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.125rem;
            box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .testimonial-avatar {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
        }
        
        .testimonial-info h6 {
            margin: 0 0 0.25rem 0;
            font-weight: 800;
            color: var(--text-dark);
            font-size: 1.15rem;
        }
        
        .testimonial-info small {
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            opacity: 0.75;
        }
        
        /* Step Cards - How It Works */
        .step-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            position: relative;
            height: 100%;
        }
        
        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-color: var(--primary);
        }
        
        .step-number {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 1.25rem;
            box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
        }
        
        .step-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 1.5rem auto 1.5rem;
            box-shadow: 0 2px 8px rgba(5, 150, 105, 0.25);
            transition: all 0.3s ease;
        }
        
        .step-card:hover .step-icon {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
        }
        
        .step-title {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }
        
        .step-text {
            color: var(--text-dark);
            line-height: 1.8;
            font-size: 1.05rem;
            margin: 0;
            opacity: 0.85;
        }
        
        /* Trust & Security Cards */
        .trust-card {
            height: 100%;
            border: none;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 1.5rem;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }
        
        .trust-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #059669 0%, #0d9488 50%, #10b981 100%);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .trust-card:hover::before {
            transform: scaleX(1);
        }
        
        .trust-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 12px 40px rgba(5, 150, 105, 0.2);
            border-color: var(--primary);
        }
        
        .trust-icon {
            width: 72px;
            height: 72px;
            border-radius: 18px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        
        .trust-card:hover .trust-icon {
            transform: translateY(-4px) rotate(5deg) scale(1.1);
            box-shadow: 0 12px 32px rgba(5, 150, 105, 0.4);
        }
        
        .trust-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
            letter-spacing: -0.02em;
        }
        
        .trust-text {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.05rem;
            margin: 0;
            opacity: 0.9;
        }
        
        /* Newsletter Section */
        .newsletter-card {
            background: linear-gradient(135deg, #ffffff 0%, #fafaf9 100%);
            border-radius: 24px;
            padding: 3rem 2.5rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .newsletter-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .newsletter-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(5, 150, 105, 0.15);
        }
        
        .newsletter-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }
        
        .newsletter-card:hover .newsletter-icon {
            transform: translateY(-4px) scale(1.1) rotate(-5deg);
            box-shadow: 0 12px 32px rgba(5, 150, 105, 0.4);
        }
        
        .newsletter-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
            letter-spacing: -0.02em;
            position: relative;
            z-index: 1;
        }
        
        @media (min-width: 768px) {
            .newsletter-title {
                font-size: 2.25rem;
            }
        }
        
        .newsletter-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            opacity: 0.85;
            position: relative;
            z-index: 1;
        }
        
        .newsletter-form {
            position: relative;
            z-index: 1;
        }
        
        .newsletter-form .form-control {
            border: 2px solid var(--border);
            border-radius: 12px;
            padding: 0.875rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }
        
        .newsletter-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
            outline: none;
        }
        
        .btn-newsletter {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            border: none;
            color: white;
            padding: 1rem 2rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1.05rem;
            box-shadow: 0 4px 16px rgba(5, 150, 105, 0.3);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn-newsletter::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }
        
        .btn-newsletter:hover::before {
            left: 100%;
        }
        
        .btn-newsletter:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
            background: linear-gradient(135deg, #047857 0%, #059669 100%);
        }
        
        .btn-newsletter:active {
            transform: translateY(0);
        }
        
        .btn-newsletter:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }
        
        #newsletterMessage {
            min-height: 24px;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }
        
        #newsletterMessage.success {
            color: #059669;
        }
        
        #newsletterMessage.error {
            color: #ef4444;
        }
        
        /* Comparison Table */
        .comparison-table-wrapper {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border);
        }
        
        .comparison-table {
            margin: 0;
            border-collapse: separate;
            border-spacing: 0;
        }
        
        .comparison-table thead th {
            background: var(--bg-light);
            border: none;
            padding: 1.5rem 1rem;
            font-weight: 700;
            text-align: center;
            vertical-align: middle;
        }
        
        .comparison-table thead th.feature-col {
            text-align: left;
            background: white;
        }
        
        .comparison-table tbody tr {
            transition: background 0.2s ease;
        }
        
        .comparison-table tbody tr:hover {
            background: var(--bg-light);
        }
        
        .comparison-table tbody td {
            padding: 1.25rem 1rem;
            border-top: 1px solid var(--border);
            vertical-align: middle;
        }
        
        .comparison-table tbody td.feature-name {
            font-weight: 600;
            color: var(--text-dark);
        }
        
        .comparison-table tbody td.feature-check,
        .comparison-table tbody td.feature-cross {
            text-align: center;
            font-size: 1.25rem;
        }
        
        .product-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.95rem;
        }
        
        .product-badge.our-product {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            color: white;
        }
        
        .product-badge.our-product i {
            font-size: 1.1rem;
        }
        
        /* Roadmap Timeline */
        .roadmap-timeline {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .roadmap-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .roadmap-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 24px;
            top: 72px;
            width: 2px;
            height: calc(100% + 1rem);
            background: var(--border);
        }
        
        .roadmap-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
            position: relative;
            z-index: 1;
        }
        
        .roadmap-content {
            flex: 1;
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border);
        }
        
        .roadmap-badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.75rem;
        }
        
        .roadmap-badge:contains("În dezvoltare") {
            background: #dbeafe;
            color: #1e40af;
        }
        
        .roadmap-item:nth-child(1) .roadmap-badge {
            background: #dbeafe;
            color: #1e40af;
        }
        
        .roadmap-item:nth-child(2) .roadmap-badge,
        .roadmap-item:nth-child(3) .roadmap-badge,
        .roadmap-item:nth-child(4) .roadmap-badge {
            background: #f3f4f6;
            color: #6b7280;
        }
        
        .roadmap-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }
        
        .roadmap-description {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        
        .roadmap-progress {
            height: 8px;
            background: var(--bg-light);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 0.5rem;
        }
        
        .roadmap-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #059669 0%, #0d9488 100%);
            border-radius: 4px;
            transition: width 0.3s ease;
        }
        
        .roadmap-eta {
            color: var(--text-light);
            font-size: 0.875rem;
        }
        
        @media (max-width: 768px) {
            .roadmap-item {
                flex-direction: column;
                gap: 1rem;
            }
            
            .roadmap-item:not(:last-child)::after {
                display: none;
            }
            
            .comparison-table-wrapper {
                padding: 1rem;
            }
            
            .comparison-table {
                font-size: 0.875rem;
            }
            
            .comparison-table thead th,
            .comparison-table tbody td {
                padding: 0.75rem 0.5rem;
            }
        }
        
        /* Mini Feature Cards */
        .mini-feature-card {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .mini-feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }
        
        .mini-feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.75rem;
            margin: 0 auto 1.25rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }
        
        .mini-feature-card:hover .mini-feature-icon {
            transform: scale(1.1) rotate(-5deg);
        }
        
        .mini-feature-title {
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }
        
        .mini-feature-text {
            color: var(--text-dark);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
            opacity: 0.85;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        
        @media (min-width: 768px) {
            .cta {
                padding: 5rem 0;
            }
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .cta-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            letter-spacing: -0.02em;
        }
        
        @media (min-width: 768px) {
            .cta-title {
                font-size: 2.5rem;
            }
        }
        
        .cta-subtitle {
            font-size: 1rem;
            opacity: 0.95;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }
        
        @media (min-width: 768px) {
            .cta-subtitle {
                font-size: 1.125rem;
                margin-bottom: 2.5rem;
            }
        }
        
        .cta-features {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 3rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .cta-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9375rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.15);
            padding: 0.625rem 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            transition: all 0.3s ease;
        }
        
        .cta-feature:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
        }
        
        .btn-cta {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            color: white;
            padding: 1.125rem 3rem;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1.125rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4), 0 0 0 0 rgba(5, 150, 105, 0.5);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            width: 100%;
            max-width: 380px;
            justify-content: center;
            position: relative;
            z-index: 1;
            overflow: hidden;
            text-decoration: none;
            letter-spacing: 0.02em;
        }
        
        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }
        
        .btn-cta::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: -1;
        }
        
        .btn-cta:hover::before {
            left: 100%;
        }
        
        .btn-cta:hover::after {
            width: 300px;
            height: 300px;
        }
        
        @media (min-width: 768px) {
            .btn-cta {
                padding: 1.25rem 3.5rem;
                font-size: 1.1875rem;
            }
        }
        
        .btn-cta:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: 0 12px 32px rgba(5, 150, 105, 0.5), 0 0 0 4px rgba(5, 150, 105, 0.2);
            background: linear-gradient(135deg, #047857 0%, #059669 100%);
            color: white;
            border-color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
        }
        
        .btn-cta:active {
            transform: translateY(-2px) scale(1.01);
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
        }
        
        .btn-cta i {
            font-size: 1.25rem;
            transition: transform 0.3s ease;
        }
        
        .btn-cta:hover i {
            transform: translateX(4px);
        }
        
        .btn-cta span {
            position: relative;
            z-index: 2;
        }
        
        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 3rem 0 2rem;
        }
        
        .footer-brand,
        .app-brand-logo.footer-brand,
        .app-brand-logo--footer {
            font-size: inherit;
            font-weight: inherit;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.625rem;
            justify-content: center;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 0.5rem 0;
            text-align: center;
        }
        
        .footer-link:hover {
            color: white;
        }

        .footer-link--inline {
            display: inline-block;
            padding: 0.35rem 0.65rem;
        }

        .footer-legal-row {
            text-align: center;
            margin-bottom: 0.5rem;
        }
        
        .footer-copyright {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            font-weight: 600;
            color: var(--text-dark);
            background: white;
            border: none;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--bg-light);
            color: var(--primary);
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(5, 150, 105, 0.15);
            border-color: var(--primary);
        }
        
        .accordion-item {
            border: 1px solid var(--border) !important;
            border-radius: 10px !important;
            overflow: hidden;
            background: white;
        }
        
        .accordion-body {
            color: var(--text-dark);
            opacity: 0.85;
            line-height: 1.7;
        }
        
        /* Desktop Styles */
        @media (min-width: 768px) {
            .hero {
                padding: 1.25rem 0 3.5rem;
            }
            
            .hero-title {
                font-size: 3.5rem;
            }
            
            .hero-description {
                font-size: 1.125rem;
            }
            
            .hero-features {
                justify-content: flex-start;
            }
            
            .hero-cta {
                flex-wrap: nowrap;
            }
            
            .hero-visual-card {
                padding: 1.5rem;
            }
        }
            
            .section {
                padding: 5rem 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .section-subtitle {
                font-size: 1.15rem;
            }
            
            .cta {
                padding: 5rem 0;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-subtitle {
                font-size: 1.2rem;
            }
            
            .cta-features {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .btn-cta {
                width: auto;
                max-width: none;
            }
            
            .footer-link {
                display: inline-block;
                margin: 0 1rem;
            }
        }
        
        @media (min-width: 992px) {
            .hero {
                min-height: auto;
                padding: 1.5rem 0 4rem;
            }
            
            .hero-content {
                text-align: left;
            }
            
            .hero-title {
                font-size: 3.75rem;
            }
            
            .hero-visual-card {
                max-width: 500px;
                margin-left: auto;
            }
        }
        
        @media (max-width: 767px) {
            .hero {
                padding: 0.75rem 0 2.5rem;
                min-height: auto;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-description {
                font-size: 1.15rem;
            }
            
            .hero-features {
                flex-direction: column;
            }
            
            .hero-feature {
                width: 100%;
                justify-content: center;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
            }
            
            .hero-visual-card {
                margin-top: 1.25rem;
            }
        }

        /* ===============================================
           Hero v2: eyebrow, bullets, trust strip, live demo
           =============================================== */
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.375rem 0.875rem;
            border-radius: 999px;
            background: rgba(16, 185, 129, 0.12);
            color: #047857;
            font-weight: 600;
            font-size: 0.8125rem;
            letter-spacing: 0.02em;
            margin-bottom: 1rem;
            border: 1px solid rgba(16, 185, 129, 0.25);
        }
        .hero-eyebrow-dot {
            width: 8px; height: 8px; border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
            animation: heroPulseDot 2s infinite;
        }
        @keyframes heroPulseDot {
            0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
            50%      { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
        }
        .hero-bullets {
            list-style: none;
            padding: 0;
            margin: 1.25rem 0 1.5rem;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.5rem 1.25rem;
        }
        .hero-bullets li {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: #334155;
            font-weight: 500;
            font-size: 0.95rem;
        }
        .hero-bullets li i {
            color: #059669;
            width: 1.25rem;
            text-align: center;
            flex-shrink: 0;
        }
        @media (max-width: 640px) {
            .hero-bullets { grid-template-columns: 1fr; }
        }
        .hero-trust {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.25rem;
            padding: 0.875rem 1rem;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(2, 6, 23, 0.04);
            backdrop-filter: blur(8px);
            flex-wrap: wrap;
        }
        .hero-trust-avatars { display: flex; }
        .hero-trust-avatar {
            width: 34px; height: 34px; border-radius: 50%;
            margin-left: -10px;
            border: 2px solid #fff;
            color: #fff;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 0.75rem; font-weight: 700;
            box-shadow: 0 2px 6px rgba(0,0,0,0.12);
        }
        .hero-trust-avatar:first-child { margin-left: 0; }
        .hero-trust-text { display: flex; flex-direction: column; gap: 0.15rem; font-size: 0.875rem; color: #475569; }
        .hero-trust-text strong { color: #0f172a; font-weight: 700; }
        .hero-trust-stars { color: #f59e0b; display: flex; align-items: center; gap: 0.35rem; font-size: 0.9rem; }
        .hero-trust-stars strong { color: #0f172a; margin-left: 0.25rem; }

        .hero-visual-card { position: relative; }
        .hero-visual-live {
            position: absolute;
            top: 14px; right: 14px;
            font-size: 0.65rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            color: #fff;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            padding: 0.25rem 0.55rem;
            border-radius: 6px;
            box-shadow: 0 2px 6px rgba(239, 68, 68, 0.35);
            animation: heroLivePulse 1.6s infinite;
        }
        @keyframes heroLivePulse {
            0%,100% { opacity: 1; transform: scale(1); }
            50%     { opacity: 0.82; transform: scale(0.97); }
        }
        .hero-visual-progress {
            height: 6px;
            background: rgba(5, 150, 105, 0.1);
            border-radius: 999px;
            overflow: hidden;
            margin: 0.5rem 0 1rem;
        }
        .hero-visual-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #10b981, #0d9488);
            border-radius: 999px;
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .hero-visual-item { transition: background 0.3s ease, transform 0.3s ease; }
        .hero-visual-item.just-added {
            animation: heroItemAdd 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .hero-visual-item.just-checked {
            animation: heroItemCheck 0.5s ease;
        }
        @keyframes heroItemAdd {
            0%   { opacity: 0; transform: translateY(-12px) scale(0.96); background: rgba(16,185,129,0.2); }
            60%  { background: rgba(16,185,129,0.15); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes heroItemCheck {
            0%,100% { transform: scale(1); }
            50%     { transform: scale(1.04); background: rgba(16,185,129,0.12); }
        }
        .hero-visual-typing {
            display: none;
            align-items: center;
            gap: 0.35rem;
            padding: 0.5rem 0.75rem;
            font-size: 0.8rem;
            color: #64748b;
            background: rgba(16, 185, 129, 0.06);
            border-radius: 10px;
            margin-bottom: 0.5rem;
        }
        .hero-visual-typing.active { display: inline-flex; animation: heroFadeIn 0.3s ease; }
        .hero-visual-typing-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: #10b981;
            animation: heroTypingBounce 1.4s infinite;
        }
        .hero-visual-typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .hero-visual-typing-dot:nth-child(3) { animation-delay: 0.4s; }
        @keyframes heroTypingBounce {
            0%,60%,100% { transform: translateY(0); opacity: 0.45; }
            30%         { transform: translateY(-4px); opacity: 1; }
        }
        @keyframes heroFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

        /* ===============================================
           Interactive "What iShopSync offers" section
           =============================================== */
        .offer-section { background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%); }
        .offer-kicker {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            color: #059669;
            background: rgba(16, 185, 129, 0.12);
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            margin-bottom: 0.75rem;
        }
        .offer-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin: 1.5rem auto 2.5rem;
            padding: 0.5rem;
            max-width: 980px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 999px;
            box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
        }
        @media (max-width: 768px) {
            .offer-tabs { border-radius: 20px; }
        }
        .offer-tab {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.65rem 1.1rem;
            border-radius: 999px;
            background: transparent;
            border: none;
            color: #475569;
            font-weight: 600;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .offer-tab i { font-size: 0.95rem; }
        .offer-tab:hover { background: #f1f5f9; color: #0f172a; }
        .offer-tab.active {
            background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
            color: #fff;
            box-shadow: 0 6px 16px rgba(5, 150, 105, 0.28);
        }
        .offer-tab:focus-visible { outline: 3px solid #34d399; outline-offset: 2px; }

        .offer-panels { position: relative; }
        .offer-panel {
            display: none;
            animation: offerFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .offer-panel.active { display: block; }
        @keyframes offerFadeIn {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .offer-panel-grid {
            display: grid;
            grid-template-columns: 1.05fr 1fr;
            gap: 2.5rem;
            align-items: center;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 24px;
            padding: 2.25rem;
            box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
        }
        @media (max-width: 900px) {
            .offer-panel-grid { grid-template-columns: 1fr; padding: 1.5rem; gap: 1.5rem; }
        }
        .offer-panel-copy h3 {
            font-size: 1.75rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 0.75rem;
        }
        .offer-panel-copy p { color: #475569; font-size: 1.05rem; margin-bottom: 1rem; }
        .offer-bullets { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
        .offer-bullets li {
            display: flex;
            align-items: flex-start;
            gap: 0.6rem;
            color: #334155;
            font-weight: 500;
        }
        .offer-bullets li i {
            color: #10b981;
            background: rgba(16, 185, 129, 0.12);
            width: 22px; height: 22px; border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            font-size: 0.7rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

        /* Offer previews */
        .offer-panel-preview {
            display: flex; align-items: center; justify-content: center;
        }
        .offer-preview-phone {
            width: 100%;
            max-width: 320px;
            background: linear-gradient(180deg, #ecfdf5 0%, #ffffff 100%);
            border: 1px solid #d1fae5;
            border-radius: 22px;
            padding: 1rem;
            box-shadow: 0 24px 50px rgba(5, 150, 105, 0.15);
        }
        .offer-preview-header { display: flex; gap: 0.35rem; margin-bottom: 0.75rem; }
        .offer-dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; }
        .offer-dot:nth-child(1) { background: #fca5a5; }
        .offer-dot:nth-child(2) { background: #fcd34d; }
        .offer-dot:nth-child(3) { background: #86efac; }
        .offer-preview-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 0.75rem 0.85rem;
            background: #fff;
            border-radius: 12px;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #0f172a;
            border: 1px solid #e5e7eb;
            gap: 0.5rem;
        }
        .offer-preview-row i { color: #94a3b8; font-size: 1.1rem; }
        .offer-preview-row.checked { background: rgba(16, 185, 129, 0.08); border-color: rgba(16,185,129,0.25); text-decoration: line-through; color: #64748b; }
        .offer-preview-row.checked i { color: #10b981; }
        .offer-preview-row.new { border-color: rgba(139, 92, 246, 0.35); background: rgba(139, 92, 246, 0.06); animation: offerSlideIn 0.6s ease; }
        .offer-preview-row.new span { color: #7c3aed; font-weight: 600; font-size: 0.85rem; }
        @keyframes offerSlideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }

        .offer-preview-budget { width: 100%; max-width: 380px; }
        .offer-budget-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0.35rem;
            margin-bottom: 0.85rem;
            padding: 0.75rem 0.9rem;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
        }
        .offer-budget-row > span:first-child { font-weight: 600; color: #0f172a; font-size: 0.9rem; }
        .offer-budget-row strong { font-size: 0.85rem; color: #475569; justify-self: end; }
        .offer-budget-bar {
            height: 8px;
            background: #f1f5f9;
            border-radius: 999px;
            overflow: hidden;
        }
        .offer-budget-bar > div {
            height: 100%;
            border-radius: 999px;
            transition: width 0.8s ease;
        }
        .offer-budget-alert {
            display: flex; align-items: center; gap: 0.5rem;
            padding: 0.6rem 0.85rem;
            background: #fef3c7;
            color: #92400e;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .offer-preview-scan {
            width: 100%; max-width: 320px;
            display: flex; flex-direction: column; gap: 1rem;
        }
        .offer-scan-frame {
            position: relative;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            border-radius: 16px;
            height: 180px;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }
        .offer-scan-barcode { font-size: 6rem; color: rgba(255,255,255,0.9); }
        .offer-scan-laser {
            position: absolute;
            left: 8%; right: 8%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ef4444, transparent);
            box-shadow: 0 0 14px #ef4444;
            animation: offerLaser 2.4s ease-in-out infinite;
        }
        @keyframes offerLaser { 0%,100% { top: 20%; } 50% { top: 80%; } }
        .offer-scan-result {
            display: flex; align-items: center; gap: 0.75rem;
            background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
            padding: 0.75rem 0.9rem;
        }
        .offer-scan-result i { color: #10b981; font-size: 1.5rem; }
        .offer-scan-result strong { display: block; color: #0f172a; }
        .offer-scan-result small { color: #64748b; font-size: 0.75rem; }

        .offer-preview-chat {
            width: 100%; max-width: 340px;
            display: flex; flex-direction: column; gap: 0.55rem;
            padding: 1rem;
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
        }
        .offer-chat-msg {
            padding: 0.55rem 0.8rem;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            font-size: 0.875rem;
            color: #334155;
            align-self: flex-start;
            max-width: 85%;
        }
        .offer-chat-msg strong { display: block; font-size: 0.7rem; color: #64748b; margin-bottom: 0.1rem; }
        .offer-chat-msg.me {
            align-self: flex-end;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #fff;
            border: none;
        }
        .offer-chat-msg.me strong { color: rgba(255,255,255,0.85); }
        .offer-chat-msg.typing { background: rgba(16, 185, 129, 0.08); color: #047857; font-style: italic; }

        .offer-preview-chart {
            width: 100%; max-width: 380px;
            padding: 1.25rem;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
        }
        .offer-chart-bars {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.4rem;
            height: 120px;
            align-items: end;
            margin-bottom: 0.5rem;
        }
        .offer-chart-bars span {
            background: linear-gradient(180deg, #10b981, #047857);
            border-radius: 6px 6px 0 0;
            animation: offerBarGrow 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: bottom;
        }
        @keyframes offerBarGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
        .offer-chart-footer {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.4rem;
            text-align: center;
            font-size: 0.75rem;
            color: #64748b;
            font-weight: 600;
            padding-bottom: 0.75rem;
            border-bottom: 1px dashed #e5e7eb;
            margin-bottom: 0.75rem;
        }
        .offer-chart-total { font-size: 0.875rem; color: #0f172a; }
        .offer-chart-total strong { color: #059669; font-size: 1.05rem; }

        .offer-preview-game {
            display: grid;
            gap: 0.75rem;
            width: 100%;
            max-width: 340px;
        }
        .offer-badge {
            display: flex; align-items: center; gap: 0.75rem;
            padding: 0.85rem 1rem;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: 1px solid #fcd34d;
            border-radius: 14px;
        }
        .offer-badge i {
            width: 44px; height: 44px; border-radius: 50%;
            display: inline-flex; align-items: center; justify-content: center;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }
        .offer-badge span { display: block; font-weight: 700; color: #0f172a; }
        .offer-badge small { display: block; color: #64748b; font-size: 0.75rem; }
        .offer-badge.silver { background: linear-gradient(135deg, #e2e8f0, #cbd5e1); border-color: #94a3b8; }
        .offer-badge.silver i { background: linear-gradient(135deg, #94a3b8, #64748b); }
        .offer-badge.bronze { background: linear-gradient(135deg, #fed7aa, #fdba74); border-color: #fb923c; }
        .offer-badge.bronze i { background: linear-gradient(135deg, #ea580c, #c2410c); }

        /* ===============================================
           Features toolbar (filter + search)
           =============================================== */
        .features-toolbar {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
            justify-content: space-between;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            padding: 1rem 1.25rem;
            margin-bottom: 2rem;
            box-shadow: 0 6px 18px rgba(2, 6, 23, 0.04);
        }
        .features-search {
            position: relative;
            display: flex; align-items: center;
            flex: 1 1 280px;
            min-width: 240px;
            max-width: 420px;
            background: #f8fafc;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 0.25rem 0.6rem;
            transition: all 0.2s ease;
        }
        .features-search:focus-within {
            background: #fff;
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
        }
        .features-search > i {
            color: #94a3b8;
            margin: 0 0.4rem;
        }
        .features-search input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.55rem 0.25rem;
            font-size: 0.95rem;
            outline: none;
            color: #0f172a;
        }
        .features-search-clear {
            border: none;
            background: transparent;
            color: #94a3b8;
            cursor: pointer;
            padding: 0.35rem 0.5rem;
            border-radius: 8px;
        }
        .features-search-clear:hover { background: #f1f5f9; color: #334155; }

        .features-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
            justify-content: center;
        }
        .features-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.9rem;
            border-radius: 999px;
            border: 1px solid #e5e7eb;
            background: #fff;
            color: #475569;
            font-weight: 600;
            font-size: 0.8125rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .features-chip:hover { border-color: #10b981; color: #059669; }
        .features-chip.active {
            background: linear-gradient(135deg, #059669, #0d9488);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 10px rgba(5, 150, 105, 0.25);
        }
        .features-meta {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 500;
            white-space: nowrap;
        }
        .features-meta #featuresCount { color: #059669; font-weight: 800; }

        .feature-card.is-hidden,
        [data-feature-filter].is-hidden {
            display: none !important;
        }
        .feature-card.is-highlight .feature-title mark {
            background: linear-gradient(180deg, transparent 60%, rgba(16,185,129,0.35) 60%);
            color: inherit;
            padding: 0 2px;
            border-radius: 2px;
        }
        .features-empty {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem 1rem;
            color: #64748b;
        }
        .features-empty i { font-size: 2.25rem; color: #cbd5e1; margin-bottom: 0.75rem; }

        /* Hero eyebrow & value chips */
        .hero-eyebrow {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #059669;
            background: rgba(5, 150, 105, 0.1);
            border: 1px solid rgba(5, 150, 105, 0.2);
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            margin-bottom: 0.75rem;
        }
        .hero-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-bottom: 1.5rem;
        }
        .hero-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.78rem;
            font-weight: 600;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            background: #fff;
            border: 1px solid var(--border);
            color: var(--text-dark);
        }
        .hero-chip i { color: #059669; font-size: 0.7rem; }
        .hero-chip--accent {
            background: linear-gradient(135deg, #059669, #0d9488);
            color: #fff;
            border-color: transparent;
        }
        .hero-chip--accent i { color: #fff; }

        /* Problem → solution strip */
        .problems-kicker, .suite-kicker {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: #059669;
            margin-bottom: 0.5rem;
        }
        .problem-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 1.35rem 1.5rem;
            height: 100%;
            transition: box-shadow 0.2s ease, transform 0.2s ease;
        }
        .problem-card:hover {
            box-shadow: 0 12px 40px -20px rgba(5, 150, 105, 0.25);
            transform: translateY(-2px);
        }
        .problem-card__title {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.65rem;
        }
        .problem-card__num {
            width: 1.75rem;
            height: 1.75rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #059669, #0d9488);
            color: #fff;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .problem-card__row {
            display: flex;
            gap: 0.65rem;
            align-items: flex-start;
            font-size: 0.9rem;
            line-height: 1.55;
            margin-bottom: 0.65rem;
        }
        .problem-card__row i { flex-shrink: 0; margin-top: 0.15rem; }
        .problem-card__row--before { color: #78716c; }
        .problem-card__row--before i { color: #ef4444; }
        .problem-card__row--after { color: #1c1917; font-weight: 500; }
        .problem-card__row--after i { color: #22c55e; }

        /* Full feature suite accordion */
        .feature-suite { background: linear-gradient(180deg, #fafaf9 0%, #fff 100%); }
        .suite-catalog-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 1rem;
            font-weight: 600;
            color: #059669;
            text-decoration: none;
        }
        .suite-catalog-link:hover { color: #047857; }
        .suite-accordion {
            max-width: 900px;
            margin: 0 auto;
        }
        .suite-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 1rem;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .suite-item--featured { border-color: rgba(5, 150, 105, 0.35); }
        .suite-item__trigger {
            width: 100%;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.15rem 1.25rem;
            background: transparent;
            border: none;
            text-align: left;
            cursor: pointer;
        }
        .suite-item__trigger:hover { background: rgba(5, 150, 105, 0.04); }
        .suite-item__icon {
            width: 2.75rem;
            height: 2.75rem;
            border-radius: 12px;
            background: linear-gradient(135deg, #059669, #0d9488);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .suite-item__head { flex: 1; min-width: 0; }
        .suite-item__title {
            display: block;
            font-size: 1.05rem;
            color: var(--text-dark);
            margin-bottom: 0.25rem;
        }
        .suite-item__lede {
            display: block;
            font-size: 0.88rem;
            color: #64748b;
            line-height: 1.5;
        }
        .suite-item__chevron {
            color: #94a3b8;
            transition: transform 0.2s ease;
        }
        .suite-item__trigger[aria-expanded="true"] .suite-item__chevron {
            transform: rotate(180deg);
        }
        .suite-item__list {
            list-style: none;
            padding: 0 1.25rem 1.15rem 4.5rem;
            margin: 0;
        }
        .suite-item__list li {
            display: flex;
            gap: 0.55rem;
            font-size: 0.88rem;
            color: #475569;
            padding: 0.35rem 0;
            line-height: 1.55;
        }
        .suite-item__list i {
            color: #059669;
            font-size: 0.7rem;
            margin-top: 0.35rem;
        }

        /* Feature icon gradient variants */
        .feature-icon.g-teal { background: linear-gradient(135deg, #0d9488, #059669); }
        .feature-icon.g-green { background: linear-gradient(135deg, #10b981, #059669); }
        .feature-icon.g-emerald { background: linear-gradient(135deg, #059669, #047857); }
        .feature-icon.g-violet { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
        .feature-icon.g-pink { background: linear-gradient(135deg, #ec4899, #db2777); }
        .feature-icon.g-amber { background: linear-gradient(135deg, #f59e0b, #d97706); }
        .feature-icon.g-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
        .feature-icon.g-teal2 { background: linear-gradient(135deg, #14b8a6, #0d9488); }
        .feature-icon.g-purple { background: linear-gradient(135deg, #a855f7, #9333ea); }
        .feature-icon.g-sky { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
        .feature-icon.g-lime { background: linear-gradient(135deg, #22c55e, #16a34a); }
        .feature-icon.g-indigo { background: linear-gradient(135deg, #6366f1, #4f46e5); }
        .mini-feature-icon.g-emerald { background: linear-gradient(135deg, #059669, #047857); }
        .mini-feature-icon.g-teal { background: linear-gradient(135deg, #0d9488, #059669); }
        .mini-feature-icon.g-green { background: linear-gradient(135deg, #10b981, #059669); }

        /* Sticky mobile CTA */
        .sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.95);
            border-top: 1px solid var(--border);
            backdrop-filter: blur(10px);
            transform: translateY(100%);
            transition: transform 0.3s ease;
            display: none;
        }
        @media (max-width: 767px) {
            .sticky-cta { display: block; }
        }
        .sticky-cta.is-visible { transform: translateY(0); }
        .sticky-cta__btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 0.85rem 1rem;
            border-radius: 12px;
            background: linear-gradient(135deg, #059669, #0d9488);
            color: #fff;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
        }

        /* Accessibility: reduce motion preference */
        @media (prefers-reduced-motion: reduce) {
            .hero-eyebrow-dot,
            .hero-visual-live,
            .offer-scan-laser,
            .offer-chart-bars span,
            .hero-visual-item.just-added,
            .hero-visual-item.just-checked {
                animation: none !important;
            }
            .offer-panel { animation: none !important; }
        }

        /* Visually hidden utility (if not already present) */
        .visually-hidden {
            position: absolute !important;
            width: 1px; height: 1px;
            padding: 0; margin: -1px;
            overflow: hidden; clip: rect(0, 0, 0, 0);
            white-space: nowrap; border: 0;
        }
