        /* ============================================
           HERO SECTION - ENTERPRISE DESIGN
           ============================================ */
        .hero-section {
            min-height: auto;
            background: var(--primary);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-bottom: 10px;
        }

        /* Stripe-Style Gradient Mesh Background */
        .hero-gradient-mesh {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
            opacity: 0;
            animation: gradientFadeIn 1.8s ease-out 0.05s forwards;
        }

        @keyframes gradientFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero-gradient-mesh .gradient-layer {
            position: absolute;
            width: 200%;
            height: 150%;
            top: -25%;
            left: -50%;
            transform-origin: center center;
            transform: skewY(-12deg);
        }

        /* Primary gradient layer - teal/blue tones */
        .hero-gradient-mesh .gradient-primary {
            background:
                radial-gradient(circle 800px at 20% 30%, rgba(43, 88, 118, 0.95) 0%, transparent 60%),
                radial-gradient(circle 600px at 80% 20%, rgba(30, 61, 82, 0.9) 0%, transparent 55%),
                radial-gradient(circle 900px at 60% 80%, rgba(22, 45, 61, 0.85) 0%, transparent 65%);
        }

        /* Accent gradient layer - amber/gold highlights */
        .hero-gradient-mesh .gradient-accent {
            background:
                radial-gradient(circle 500px at 15% 70%, rgba(245, 158, 11, 0.35) 0%, transparent 50%),
                radial-gradient(circle 400px at 85% 25%, rgba(251, 191, 36, 0.25) 0%, transparent 45%),
                radial-gradient(circle 350px at 50% 10%, rgba(245, 158, 11, 0.2) 0%, transparent 40%);
        }

        /* Soft glow layer for depth */
        .hero-gradient-mesh .gradient-glow {
            background:
                radial-gradient(circle 700px at 30% 50%, rgba(43, 88, 118, 0.4) 0%, transparent 50%),
                radial-gradient(circle 500px at 70% 60%, rgba(30, 61, 82, 0.35) 0%, transparent 45%);
            filter: blur(40px);
        }

        /* Edge vignette for polish */
        .hero-gradient-mesh .gradient-vignette {
            background: radial-gradient(ellipse 100% 100% at 50% 50%, transparent 40%, rgba(22, 45, 61, 0.6) 100%);
            transform: none;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        /* Hero Grid - uses global .container for alignment, adds grid layout */
        .hero-section .container.hero-grid {
            width: 100%;
            max-width: 1200px;
            padding: 0 !important;
            margin: 0 auto !important;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 40% 60%;
            gap: 0px;
            align-items: start;
            box-sizing: border-box;
        }

        /* Hero Content - Left Side - Override public.css */
        .hero-section .hero-content {
            max-width: none !important;
            margin: 0 !important;
            padding: 0 !important;
            opacity: 0;
            animation: contentFadeIn 1s ease-out 0.3s forwards;
            text-align: left;
        }

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

        /* Badge with shimmer effect */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(245, 158, 11, 0.12);
            border: 1px solid rgba(245, 158, 11, 0.25);
            color: var(--accent);
            padding: 10px 18px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 28px;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeSlideUp 0.8s ease-out 0.4s forwards;
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            animation: badgeShimmer 3s ease-in-out infinite;
            animation-delay: 1s;
        }

        @keyframes badgeShimmer {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .hero-badge i {
            font-size: 12px;
        }

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

        /* Headline */
        .hero-headline {
            font-size: clamp(48px, 5.5vw, 76px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.05;
            letter-spacing: -0.03em;
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeSlideUp 0.8s ease-out 0.5s forwards;
        }

        .hero-headline .highlight {
            color: var(--accent);
            position: relative;
            animation: glowPulse 3s ease-in-out infinite;
        }

        @keyframes glowPulse {
            0%, 100% {
                text-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
            }
            50% {
                text-shadow: 0 0 40px rgba(245, 158, 11, 0.5), 0 0 60px rgba(245, 158, 11, 0.3);
            }
        }

        /* Subheadline */
        .hero-subheadline {
            font-size: clamp(18px, 1.4vw, 21px);
            font-weight: 400;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 40px;
            max-width: 520px;
            opacity: 0;
            animation: fadeSlideUp 0.8s ease-out 0.6s forwards;
        }

        /* CTA Buttons */
        .hero-actions {
            display: flex;
            gap: 16px;
            align-items: center;
            justify-content: flex-start;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeSlideUp 0.8s ease-out 0.7s forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: var(--white);
            padding: 18px 36px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(245, 158, 11, 0.35);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: btnShimmer 3s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        @keyframes btnShimmer {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(245, 158, 11, 0.45);
        }

        .btn-primary .btn-arrow {
            transition: transform 0.2s ease;
        }

        .btn-primary:hover .btn-arrow {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            padding: 18px 32px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.35);
        }

        .btn-secondary i {
            font-size: 14px;
        }

        /* Friction Reducer */
        .hero-friction-reducer {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 24px;
            opacity: 0;
            animation: fadeSlideUp 0.8s ease-out 0.8s forwards;
        }

        .friction-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 400;
        }

        .friction-item i {
            color: var(--accent);
            font-size: 12px;
        }

        /* Trust Indicators */
        .hero-trust {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 28px;
            flex-wrap: wrap;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 400;
        }

        .trust-item i {
            color: var(--accent);
            font-size: 14px;
        }

        /* ============================================
           HERO MOCKUP - RIGHT SIDE
           ============================================ */
        .hero-mockup {
            position: relative;
            margin: 0 !important;
            padding: 0 !important;
            opacity: 0;
            animation: mockupFadeIn 1.2s ease-out 0.6s forwards;
        }

        @keyframes mockupFadeIn {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Browser Frame - Light Skin */
        .browser-frame {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow:
                0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 0 1px rgba(0, 0, 0, 0.05);
            transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) scale(0.75);
            transform-origin: top right;
            width: calc(100% - 90px);
            margin-left: auto;
        }

        .browser-header {
            background: #f5f5f7;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #e5e5e7;
        }

        .browser-dots {
            display: flex;
            gap: 8px;
        }

        .browser-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d1d6;
        }

        .browser-dot.red { background: #ff5f57; }
        .browser-dot.yellow { background: #ffbd2e; }
        .browser-dot.green { background: #28c840; }

        .browser-url {
            flex: 1;
            background: #ffffff;
            border: 1px solid #e5e5e7;
            border-radius: 6px;
            padding: 8px 14px;
            font-size: 12px;
            color: #6b7280;
            font-family: 'SF Mono', Monaco, monospace;
            margin-left: 12px;
        }

        /* Dashboard Content - Light Skin */
        .dashboard-content {
            padding: 20px;
            background: #f9fafb;
            position: relative;
        }

        /* Dashboard Header */
        .dash-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .dash-title {
            display: flex;
            flex-direction: column;
            gap: 2px;
            align-items: flex-start;
            text-align: left;
        }

        .dash-greeting {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            text-align: left;
        }

        .dash-business {
            font-size: 16px;
            color: #6b7280;
            font-weight: 400;
            text-align: left;
        }

        .dash-period {
            display: flex;
            gap: 4px;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 4px;
        }

        .dash-period span {
            padding: 6px 12px;
            font-size: 12px;
            color: #6b7280;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .dash-period span.active {
            background: var(--primary);
            color: #ffffff;
        }

        /* Animated Mouse Cursor */
        .demo-cursor {
            position: absolute;
            width: 28px;
            height: 28px;
            pointer-events: none;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .demo-cursor.visible {
            opacity: 1;
        }

        .demo-cursor svg {
            width: 100%;
            height: 100%;
            filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.3));
        }

        .demo-cursor.clicking svg {
            transform: scale(0.85);
            transition: transform 0.1s ease;
        }

        /* Click ripple effect */
        .click-ripple {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(245, 158, 11, 0.4);
            pointer-events: none;
            z-index: 101;
            transform: translate(-50%, -50%) scale(0);
            animation: clickRipple 0.4s ease-out forwards;
        }

        @keyframes clickRipple {
            0% {
                transform: translate(-50%, -50%) scale(0);
                opacity: 1;
                background: rgba(251, 191, 36, 0.6);
            }
            100% {
                transform: translate(-50%, -50%) scale(2.5);
                opacity: 0;
                background: rgba(245, 158, 11, 0.2);
            }
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-bottom: 20px;
        }

        .stat-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 18px;
            text-align: center;
            opacity: 0;
            animation: statCardFadeIn 0.6s ease-out forwards;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            cursor: pointer;
        }

        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-light);
        }

        .stat-card:nth-child(1) { animation-delay: 1.0s; }
        .stat-card:nth-child(2) { animation-delay: 1.1s; }
        .stat-card:nth-child(3) { animation-delay: 1.2s; }

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

        .stat-label {
            font-size: 12px;
            color: #6b7280;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .stat-change {
            font-size: 12px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .stat-change.positive {
            color: #10b981;
        }

        .stat-change.negative {
            color: #ef4444;
        }

        /* Chart Area */
        .chart-area {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 10px 10px 45px 10px;
            margin-bottom: 20px;
        }

        .chart-bars {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            height: 110px;
            gap: 2px;
            position: relative;
        }

        .chart-bar-wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            position: relative;
        }

        .chart-bar-inner {
            flex: 1;
            width: 100%;
            display: flex;
            align-items: flex-end;
        }

        .chart-bar {
            width: 100%;
            background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
            border-radius: 2px 2px 0 0;
            min-height: 4px;
            transform-origin: bottom;
            animation: chartBarGrow 0.5s ease-out forwards;
            opacity: 0;
        }

        @keyframes chartBarGrow {
            0% {
                transform: scaleY(0);
                opacity: 0;
            }
            100% {
                transform: scaleY(1);
                opacity: 1;
            }
        }

        .chart-label {
            font-size: 10px;
            color: #9ca3af;
            font-weight: 500;
            margin-top: 8px;
            flex-shrink: 0;
            position: absolute;
            bottom: -35px;
            left: 50%;
            transform: translateX(-50%);
            white-space: nowrap;
            text-align: center;
            line-height: 1.3;
        }

        /* Recent Invoices */
        .recent-invoices {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            overflow: hidden;
        }

        .invoices-title {
            padding: 14px 18px;
            border-bottom: 1px solid #e5e7eb;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .invoice-table {
            display: table;
            width: 100%;
            border-collapse: collapse;
        }

        .invoice-table-header {
            display: table-row;
        }

        .invoice-table-header span {
            display: table-cell;
            padding: 10px 18px;
            font-size: 11px;
            font-weight: 600;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        .invoice-row {
            display: table-row;
            transition: background 0.2s ease;
            opacity: 0;
            animation: invoiceRowFadeIn 0.5s ease-out forwards;
        }

        .invoice-row:nth-child(2) { animation-delay: 1.9s; }
        .invoice-row:nth-child(3) { animation-delay: 2.0s; }
        .invoice-row:nth-child(4) { animation-delay: 2.1s; }

        @keyframes invoiceRowFadeIn {
            from {
                opacity: 0;
                transform: translateX(-10px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .invoice-row:hover {
            background: #f9fafb;
        }

        .invoice-row > div {
            display: table-cell;
            padding: 12px 18px;
            vertical-align: middle;
            border-bottom: 1px solid #f3f4f6;
        }

        .invoice-row:last-child > div {
            border-bottom: none;
        }

        .invoice-number {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-primary);
            text-align: left;
        }

        .invoice-client {
            font-size: 12px;
            font-weight: 400;
            color: #6b7280;
            text-align: left;
        }

        .invoice-amount {
            font-size: 13px;
            font-weight: 300;
            color: var(--text-primary);
            text-align: left;
        }

        .invoice-status-text {
            font-size: 10px;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 100px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: left;
        }

        .invoice-status-text.paid {
            color: #10b981;
        }

        .invoice-status-text.pending {
            color: #f59e0b;
        }

        .invoice-status-text.overdue {
            color: #ef4444;
        }

        .invoice-status-text.sent {
            color: #3b82f6;
        }

        /* ============================================
           MOBILE PAYMENT MOCKUP - Stripe Style
           ============================================ */
        .mobile-frame {
            position: absolute;
            left: 30px;
            top: 35%;
            transform: translateY(-50%);
            width: 250px;
            z-index: 10;
            opacity: 0;
            animation: mobileFadeIn 1s ease-out 0.9s forwards;
        }

        @keyframes mobileFadeIn {
            from {
                opacity: 0;
                transform: translateY(-40%) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(-50%) scale(1);
            }
        }

        .mobile-device {
            background: #ffffff;
            border-radius: 36px;
            padding: 8px;
            box-shadow:
                0 30px 60px -15px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 0, 0, 0.05);
        }

        .mobile-screen {
            background: #ffffff;
            border-radius: 26px;
            overflow: hidden;
            position: relative;
            border: 1px solid #e5e7eb;
            height: 490px;
        }

        /* Payment Screen Content - Stripe Style */
        .payment-screen {
            padding: 14px 12px;
        }

        /* Product/Invoice Header */
        .payment-product {
            text-align: center;
            padding-bottom: 10px;
            border-bottom: 1px solid #e5e7eb;
            margin-bottom: 10px;
        }

        .payment-product-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            box-shadow: 0 4px 12px rgba(30, 61, 82, 0.2);
        }

        .payment-product-icon i {
            color: #ffffff;
            font-size: 18px;
        }

        .payment-product-icon .icon-initial {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
        }

        .payment-product-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .payment-product-amount {
            font-size: 11px;
            color: #6b7280;
        }

        /* Apple Pay Button */
        .apple-pay-btn {
            width: 100%;
            background: #1e3d52;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            padding: 2px;
            font-size: 10px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            margin-bottom: 8px;
        }

        .apple-pay-btn i {
            font-size: 14px;
        }

        /* Divider */
        .payment-divider {
            text-align: center;
            font-size: 9px;
            color: #9ca3af;
            margin-bottom: 8px;
        }

        /* Form Fields */
        .payment-field {
            margin-bottom: 6px;
        }

        .payment-field-label {
            font-size: 8px;
            font-weight: 500;
            color: var(--text-primary);
            margin-bottom: 2px;
            display: block;
            text-align: left;
        }

        .payment-field-input {
            width: 100%;
            background: #ffffff;
            border: 1px solid #d1d5db;
            border-radius: 4px;
            padding: 4px 6px;
            font-size: 9px;
            color: var(--text-primary);
            box-sizing: border-box;
            text-align: left;
            min-height: 22px;
            display: flex;
            align-items: center;
        }

        .payment-field-input.placeholder {
            color: #9ca3af;
        }

        .payment-field-input.placeholder::before {
            content: 'you@example.com';
            color: #9ca3af;
        }

        /* Card Information */
        .card-info-box {
            border: 1px solid #d1d5db;
            border-radius: 5px;
            overflow: hidden;
            text-align: left;
            background: #ffffff;
        }

        .card-number-row {
            display: flex;
            align-items: center;
            padding: 4px 6px;
            border-bottom: 1px solid #e5e7eb;
            gap: 4px;
            min-height: 22px;
            box-sizing: border-box;
        }

        .card-number-text {
            font-size: 9px;
            color: #9ca3af;
            flex: 1;
        }

        .card-brands {
            display: flex;
            gap: 3px;
        }

        .card-brands i {
            font-size: 16px;
        }

        .card-brands .fa-cc-visa { color: #1a1f71; }
        .card-brands .fa-cc-mastercard { color: #eb001b; }
        .card-brands .fa-cc-amex { color: #006fcf; }
        .card-brands .fa-cc-discover { color: #ff6000; }

        .card-details-row {
            display: flex;
        }

        .card-expiry, .card-cvc {
            flex: 1;
            padding: 4px 6px;
            font-size: 9px;
            color: #9ca3af;
            min-height: 22px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
        }

        .card-expiry {
            border-right: 1px solid #e5e7eb;
        }

        /* Country/Region */
        .country-select {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 4px 6px;
            border-bottom: 1px solid #e5e7eb;
            min-height: 22px;
            box-sizing: border-box;
        }

        .country-select span {
            font-size: 9px;
            color: var(--text-primary);
        }

        .country-select i {
            font-size: 8px;
            color: #9ca3af;
        }

        .zip-input {
            padding: 4px 6px;
            font-size: 9px;
            color: #9ca3af;
            min-height: 22px;
            box-sizing: border-box;
            display: flex;
            align-items: center;
        }

        /* Pay Button */
        .pay-btn {
            width: 100%;
            background: var(--primary);
            color: #ffffff;
            border: none;
            border-radius: 5px;
            padding: 2px;
            font-size: 12px;
            font-weight: 600;
            margin-top: 8px;
            cursor: pointer;
            min-height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Mobile home indicator */
        .mobile-home-indicator {
            width: 80px;
            height: 3px;
            background: #d1d5db;
            border-radius: 2px;
            margin: 2px auto 6px;
        }

        /* Responsive adjustments for mobile mockup */
        @media (max-width: 1200px) {
            .mobile-frame {
                left: -40px;
                width: 180px;
            }
        }

        @media (max-width: 1024px) {
            .mobile-frame {
                display: none;
            }
        }

        /* ============================================
           LOGO TRUST BAR
           ============================================ */
        .logo-trust-bar {
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 40px 48px;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
        }

        .logo-trust-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        .logo-trust-label {
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 28px;
        }

        .logo-trust-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .trust-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.35);
            font-size: 14px;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .trust-logo:hover {
            color: rgba(255, 255, 255, 0.6);
        }

        .trust-logo i {
            font-size: 24px;
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */
        @media (max-width: 1200px) {
            .hero-section .container.hero-grid {
                gap: 50px;
                padding: 0 20px;
            }

            .hero-headline {
                font-size: clamp(40px, 5vw, 60px);
            }

            .browser-frame {
                transform: perspective(1200px) rotateY(-5deg) rotateX(1deg);
                width: calc(100% - 60px);
            }
        }

        @media (max-width: 1024px) {
            .hero-section {
                padding-bottom: 40px;
            }

            .hero-section .container.hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
                padding: 0 24px;
            }

            .hero-section .hero-content {
                order: 1;
                padding: 0;
            }

            .hero-section .hero-mockup {
                order: 2;
                max-width: 550px;
                margin: 0 auto;
            }

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

            .hero-subheadline {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-actions {
                justify-content: center;
            }

            .hero-friction-reducer {
                justify-content: center;
            }

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

            .browser-frame {
                transform: none;
                width: 100%;
                margin-left: 0;
            }

            .nav-links {
                display: none;
            }

            .logo-trust-bar {
                position: relative;
                padding: 30px 20px;
            }

            .logo-trust-grid {
                gap: 24px 40px;
                flex-wrap: wrap;
            }

            .trust-logo {
                font-size: 12px;
            }

            .trust-logo i {
                font-size: 20px;
            }
        }

        /* ============================================
           MOBILE RESPONSIVE - Matching features.php
           ============================================ */

        /* Mobile Large - 640px */
        @media (max-width: 640px) {
            .hero-section {
                flex-direction: column;
                align-items: stretch;
                padding: 100px 0 50px;
            }

            .hero-section .container.hero-grid {
                display: flex;
                flex-direction: column;
                padding: 0;
                gap: 32px;
                text-align: left;
            }

            /* Hide mockups on mobile */
            .hero-mockup {
                display: none !important;
            }

            .hero-section .hero-content {
                text-align: left;
                max-width: 100% !important;
                margin: 0 !important;
                padding: 0 16px !important;
                order: 1;
            }

            .hero-badge {
                font-size: 14px;
                padding: 10px 16px;
                margin-bottom: 20px;
                margin-left: 0;
                margin-right: 0;
                border-radius: 0;
            }

            .hero-headline {
                font-size: 38px;
                line-height: 1.15;
                margin-bottom: 16px;
            }

            .hero-subheadline {
                font-size: 18px;
                line-height: 1.6;
                margin-bottom: 28px;
                margin-left: 0;
                margin-right: 0;
                max-width: 100%;
            }

            .hero-actions {
                flex-direction: column;
                align-items: flex-start;
                width: auto;
                margin-left: 0;
                margin-right: 0;
                gap: 12px;
            }

            .btn-primary {
                padding: 16px 32px;
                font-size: 18px;
                width: auto;
                display: inline-flex;
            }

            .btn-secondary {
                padding: 16px 32px;
                font-size: 18px;
                width: auto;
                display: inline-flex;
            }

            /* Friction reducer - horizontal wrap */
            .hero-friction-reducer {
                display: flex;
                flex-wrap: wrap;
                gap: 12px 20px;
                max-width: 100%;
                margin-top: 20px;
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                justify-content: flex-start;
            }

            .friction-item {
                font-size: 13px;
                gap: 8px;
                color: rgba(255, 255, 255, 0.85);
            }

            .friction-item i {
                font-size: 14px;
                color: var(--accent);
            }

            /* Trust bar - positioned below content */
            .logo-trust-bar {
                position: relative;
                bottom: auto;
                left: auto;
                right: auto;
                padding: 24px 16px;
                margin-top: 32px;
            }

            .logo-trust-container {
                text-align: left;
                padding: 0;
            }

            .logo-trust-label {
                font-size: 11px;
                margin-bottom: 16px;
                text-align: left;
                color: rgba(255, 255, 255, 0.5);
            }

            .logo-trust-grid {
                display: flex;
                flex-wrap: wrap;
                gap: 10px 20px;
                align-items: flex-start;
                justify-content: flex-start;
            }

            .trust-logo {
                font-size: 13px;
                gap: 8px;
                color: rgba(255, 255, 255, 0.85);
            }

            .trust-logo i {
                font-size: 14px;
                color: var(--accent);
            }

            .trust-logo span {
                display: inline;
            }
        }

        /* Mobile - 480px */
        @media (max-width: 480px) {
            .hero-section {
                padding: 90px 0 40px;
            }

            .hero-section .container.hero-grid {
                padding: 0;
                gap: 28px;
            }

            .hero-section .hero-content {
                padding: 0 30px !important;
            }

            .hero-badge {
                font-size: 18px;
                padding: 8px 14px;
                margin-bottom: 20px;
            }

            .hero-headline {
                font-size: 42px;
                margin-bottom: 14px;
            }

            .hero-subheadline {
                font-size: 18px;
                margin-bottom: 24px;
                line-height: 1.55;
            }

            .btn-primary,
            .btn-secondary {
                padding: 14px 28px;
                font-size: 18px;
            }

            /* Friction reducer - 480px */
            .hero-friction-reducer {
                gap: 10px 16px;
            }

            .friction-item {
                font-size: 14px;
                gap: 6px;
            }

            .friction-item i {
                font-size: 14px;
            }

            /* Trust bar - 480px */
            .logo-trust-bar {
                padding: 20px 16px;
                margin: 30px;
            }

            .logo-trust-grid {
                gap: 10px 16px;
            }

            .trust-logo {
                font-size: 14px;
                gap: 6px;
            }

            .trust-logo i {
                font-size: 14px;
            }
        }

        /* Mobile Small - 400px */
        @media (max-width: 400px) {
            .hero-section {
                padding: 85px 0 35px;
            }

            .hero-section .container.hero-grid {
                padding: 0;
                gap: 24px;
            }

            .hero-section .hero-content {
                padding: 0 20px !important;
            }

            .hero-badge {
                font-size: 12px;
                padding: 7px 12px;
            }

            .hero-headline {
                font-size: 32px;
                margin-bottom: 12px;
            }

            .hero-subheadline {
                font-size: 16px;
                line-height: 1.5;
                margin-bottom: 20px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 12px 24px;
                font-size: 14px;
            }

            /* Friction reducer - 400px */
            .hero-friction-reducer {
                gap: 8px 12px;
            }

            .friction-item {
                font-size: 12px;
                gap: 5px;
            }

            .friction-item i {
                font-size: 12px;
            }

            /* Trust bar - 400px */
            .logo-trust-bar {
                padding: 16px;
                margin-top: 24px;
            }

            .logo-trust-label {
                font-size: 10px;
                margin-bottom: 12px;
            }

            .logo-trust-grid {
                gap: 8px 12px;
            }

            .trust-logo {
                font-size: 12px;
                gap: 5px;
            }

            .trust-logo i {
                font-size: 12px;
            }
        }

        /* Mobile Tiny - 320px */
        @media (max-width: 320px) {
            .hero-section {
                padding: 80px 0 30px;
            }

            .hero-section .container.hero-grid {
                padding: 0;
                gap: 20px;
            }

            .hero-section .hero-content {
                padding: 0 12px !important;
            }

            .logo-trust-bar {
                padding: 12px;
            }

            .hero-badge {
                font-size: 10px;
                padding: 6px 10px;
            }

            .hero-headline {
                font-size: 22px;
                margin-bottom: 10px;
            }

            .hero-subheadline {
                font-size: 13px;
                line-height: 1.45;
                margin-bottom: 18px;
            }

            .btn-primary,
            .btn-secondary {
                padding: 11px 20px;
                font-size: 12px;
            }

            /* Friction reducer - 320px - stacked vertically */
            .hero-friction-reducer {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }

            .friction-item {
                font-size: 11px;
                gap: 6px;
            }

            .friction-item i {
                font-size: 12px;
            }

            /* Trust bar - 320px - stacked vertically */
            .logo-trust-label {
                font-size: 9px;
                margin-bottom: 10px;
            }

            .logo-trust-grid {
                flex-direction: column;
                gap: 8px;
                align-items: flex-start;
            }

            .trust-logo {
                font-size: 11px;
                gap: 6px;
            }

            .trust-logo i {
                font-size: 12px;
            }
        }

        /* Gradient mesh responsive adjustments */
        @media (max-width: 640px) {
            .hero-gradient-mesh .gradient-layer {
                transform: skewY(-8deg);
            }

            .hero-gradient-mesh .gradient-accent {
                background:
                    radial-gradient(circle 350px at 15% 70%, rgba(245, 158, 11, 0.3) 0%, transparent 50%),
                    radial-gradient(circle 300px at 85% 25%, rgba(251, 191, 36, 0.2) 0%, transparent 45%),
                    radial-gradient(circle 250px at 50% 10%, rgba(245, 158, 11, 0.15) 0%, transparent 40%);
            }
        }

        @media (max-width: 400px) {
            .hero-gradient-mesh .gradient-layer {
                transform: skewY(-6deg);
            }
        }

        /* Reduced Motion */
        @media (prefers-reduced-motion: reduce) {
            .hero-gradient-mesh,
            .hero-content,
            .hero-mockup,
            .hero-badge,
            .hero-badge::before,
            .btn-primary::before,
            .hero-headline,
            .hero-headline .highlight,
            .hero-subheadline,
            .hero-actions,
            .hero-friction-reducer,
            .chart-bar,
            .stat-card,
            .invoice-row,
            .mobile-frame {
                animation: none !important;
                opacity: 1 !important;
            }
        }
