
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg: #FAFAF8;
            --surface: #f9fafb;
            --card: #ffffff;
            --border: #E5E0D5;
            --accent: #e67e22;
            --accent-hover: #d35400;
            --accent-light: #fdf2e9;
            --glow: #e67e22;
            --secondary: #1d1d1d;
            --text: #1F2937;
            --text-secondary: #64748b;
            --muted: #64748b;
            --nav-scrolled-bg: rgba(255, 255, 255, 0.95);
            --nav-mobile-bg: rgba(255, 255, 255, 0.98);
            --modal-overlay: rgba(0, 0, 0, 0.5);
            --gradient-start: #e67e22;
            --gradient-end: #f39c12;
        }

        html.light-mode {
            --bg: #111827;
            --surface: #1f2937;
            --card: #1f2937;
            --border: #374151;
            --text: #f9fafb;
            --text-secondary: #9ca3af;
            --muted: #9ca3af;
            --nav-scrolled-bg: rgba(17, 24, 39, 0.95);
            --nav-mobile-bg: rgba(17, 24, 39, 0.98);
            --accent-light: rgba(230, 126, 34, 0.1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 16px;
            font-weight: 400;
        }

        main {
            position: relative;
            z-index: 2;
        }

        /* Navbar */
        nav {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg);
            padding: 1.5rem 4%;
            transition: all 0.3s ease;
            border-bottom: 1px solid var(--border);
        }

        nav.scrolled {
            background: var(--nav-scrolled-bg);
            border-bottom: 1px solid var(--border);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: #e67e22;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        nav .links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }

        nav .links a {
            color: var(--text);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
            cursor: pointer;
        }

        nav .links a:hover {
            color: var(--accent);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--card);
            min-width: 280px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            top: 100%;
            left: 0;
            padding: 0.5rem 0;
        }

        .dropdown-content a {
            color: var(--text) !important;
            padding: 12px 20px !important;
            text-decoration: none;
            display: block;
            font-size: 0.9rem !important;
            transition: all 0.3s;
            border-bottom: 1px solid var(--border);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: var(--accent-light, #fdf2e9);
            color: var(--accent) !important;
            padding-left: 25px !important;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        #theme-toggle {
            background: var(--card);
            border: 1px solid var(--border);
            color: var(--text);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-right: -1rem;
        }

        #theme-toggle:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .nav-cta {
            background: #e67e22;
            color: white;
            padding: 0.65rem 1.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
            border: none;
            cursor: pointer;
        }

        .nav-cta:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        }

        /* Phone CTA in navbar */
        .nav-phone {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: var(--text);
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            padding: 0.55rem 1rem;
            border: 1.5px solid var(--border);
            border-radius: 0.5rem;
            transition: border-color .25s, color .25s, background .25s;
            white-space: nowrap;
        }

        .nav-phone i {
            color: var(--accent);
            font-size: 0.85rem;
            animation: ring 3s ease-in-out infinite;
        }

        .nav-phone:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-light, #fdf2e9);
        }

        /* Full number on large screens, icon-only on medium, hidden on mobile */
        .nav-phone .phone-text {
            display: inline;
        }

        @media (max-width: 1199px) {
            .nav-phone .phone-text {
                display: none;
            }

            .nav-phone {
                padding: 0.55rem 0.75rem;
            }
        }

        @keyframes ring {

            0%,
            100% {
                transform: rotate(0deg);
            }

            10% {
                transform: rotate(-15deg);
            }

            20% {
                transform: rotate(15deg);
            }

            30% {
                transform: rotate(-10deg);
            }

            40% {
                transform: rotate(0deg);
            }
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 0.35rem;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
        }

        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text);
            transition: all 0.3s;
        }

        /* Page System */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Hero Section */
        .hero {
            min-height: auto;
            display: flex;
            align-items: center;
            padding: 2rem 4% 3rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-left {
            animation: fadeUpHero 0.8s ease forwards;
            opacity: 0;
        }

        .hero-left h2 {
            font-size: 0.95rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
            animation: fadeUpHero 0.8s ease 0.15s forwards;
            opacity: 0;
        }

        .hero-left h1 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: fadeUpHero 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        .hero-left p {
            font-size: 1.1rem;
            color: var(--muted);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: fadeUpHero 0.8s ease 0.45s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            animation: fadeUpHero 0.8s ease 0.6s forwards;
            opacity: 0;
        }

        .btn {
            padding: 0.85rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #e67e22;
            color: white;
        }

        .btn-primary:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        }

        .btn-secondary {
            background: var(--card);
            color: var(--text);
            border: 1.5px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .trust-line {
            font-size: 0.9rem;
            color: var(--muted);
            animation: fadeUpHero 0.8s ease 0.75s forwards;
            opacity: 0;
        }

        /* Hero Right - Dashboard mockup */
        .hero-right {
            position: relative;
            animation: fadeUpHero 0.8s ease 0.3s forwards;
            opacity: 0;
        }

        .dashboard-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .dashboard-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, transparent 100%);
            pointer-events: none;
        }

        .dashboard-content {
            position: relative;
            z-index: 1;
        }

        .stat-row {
            display: flex;
            justify-content: space-between;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .stat-item {
            flex: 1;
            padding: 1rem;
            background: var(--surface);
            border-radius: 0.5rem;
            border: 1px solid var(--border);
        }

        .stat-label {
            font-size: 0.8rem;
            color: var(--muted);
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
        }

        .chart-placeholder {
            width: 100%;
            height: 120px;
            background: linear-gradient(90deg, rgba(230, 126, 34, 0.1) 0%, rgba(243, 156, 18, 0.1) 50%, rgba(230, 126, 34, 0.1) 100%);
            border-radius: 0.5rem;
            display: flex;
            align-items: flex-end;
            justify-content: space-around;
            padding: 1rem;
            gap: 0.5rem;
        }

        .chart-bar {
            width: 8px;
            background: linear-gradient(180deg, #e67e22, #f39c12);
            border-radius: 0.25rem;
            opacity: 0.7;
        }

        .badge-float {
            position: absolute;
            background: rgba(230, 126, 34, 0.15);
            border: 1px solid var(--accent);
            color: var(--accent);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            animation: float 3s ease-in-out infinite;
        }

        .badge-float:nth-child(1) {
            top: -10px;
            right: 20px;
            animation-delay: 0s;
        }

        .badge-float:nth-child(2) {
            bottom: 30px;
            left: -15px;
            animation-delay: 1s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @keyframes fadeUpHero {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Trust Bar */
        .trust-bar {
            padding: 3rem 4%;
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .trust-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .trust-label {
            text-align: center;
            color: var(--muted);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-block {
            text-align: center;
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
        }

        .stat-number {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .stat-text {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
        }

        .logo-placeholder {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.95rem;
            font-weight: 700;
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .logo-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
            transition: all 0.6s ease;
        }

        .logo-placeholder:hover {
            border-color: var(--accent);
            color: var(--text);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(230, 126, 34, 0.12);
        }

        .logo-placeholder:hover::before {
            left: 100%;
        }

        .logo-placeholder:nth-child(1) {
            animation-delay: 0.1s;
        }

        .logo-placeholder:nth-child(2) {
            animation-delay: 0.2s;
        }

        .logo-placeholder:nth-child(3) {
            animation-delay: 0.3s;
        }

        .logo-placeholder:nth-child(4) {
            animation-delay: 0.4s;
        }

        .logo-placeholder:nth-child(5) {
            animation-delay: 0.5s;
        }

        .logo-placeholder:nth-child(6) {
            animation-delay: 0.6s;
        }

        /* Solutions Section */
        .solutions {
            padding: 5rem 4%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .solution-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            transition: all 0.3s;
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 0% 0%, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .solution-card:hover {
            border-color: #e67e22;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .solution-card:hover::before {
            opacity: 1;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--modal-overlay);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            animation: fadeInModal 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

        @keyframes fadeInModal {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 1.5rem;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideInModal 0.3s ease;
        }

        @keyframes slideInModal {
            from {
                transform: translateY(30px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .modal-header h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text);
        }

        .modal-close {
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: var(--accent);
        }

        .modal-body h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 1.5rem 0 1rem 0;
            color: var(--accent);
        }

        .modal-body ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .modal-body li {
            padding-left: 1.5rem;
            position: relative;
            font-size: 0.95rem;
            color: var(--muted);
        }

        .modal-body li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .modal-cta {
            background: #e67e22;
            color: white;
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1rem;
            margin-top: 1rem;
            transition: all 0.3s;
        }

        .modal-cta:hover {
            background: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(243, 156, 18, 0.15));
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--accent);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .solution-icon svg {
            width: 32px;
            height: 32px;
            stroke-width: 1.5;
            transition: transform 0.3s ease;
        }

        .solution-card:hover .solution-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(243, 156, 18, 0.2));
        }

        .solution-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            position: relative;
            z-index: 1;
        }

        .solution-desc {
            color: var(--muted);
            font-size: 0.95rem;
            position: relative;
            z-index: 1;
        }

        .solution-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .solution-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .solution-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .solution-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .solution-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .solution-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        /* How It Works */
        .how-it-works {
            padding: 5rem 4%;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .steps-container {
            max-width: 1000px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            position: relative;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            z-index: 0;
        }

        .step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 1;
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--bg);
            border: 2px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            position: relative;
        }

        .step-number::before {
            content: '';
            position: absolute;
            inset: -8px;
            border: 1px solid rgba(230, 126, 34, 0.15);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0;
            }

            50% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        .step-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .step-desc {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .step:nth-child(1) {
            animation-delay: 0.1s;
        }

        .step:nth-child(2) {
            animation-delay: 0.3s;
        }

        .step:nth-child(3) {
            animation-delay: 0.5s;
        }

        /* Services Section */
        .services {
            padding: 5rem 4%;
        }

        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 5rem;
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
        }

        .service-item:nth-child(odd) .service-image {
            order: 2;
        }

        .service-item:nth-child(odd) .service-text {
            order: 1;
        }

        .service-image {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1.5rem;
            padding: 3rem;
            backdrop-filter: blur(10px);
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
            opacity: 0.5;
            transition: opacity 0.5s ease;
        }

        .service-item:hover .service-image {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(243, 156, 18, 0.4);
            box-shadow: 0 20px 40px rgba(230, 126, 34, 0.15);
        }

        .service-item:hover .service-image::before {
            opacity: 1;
        }

        .service-image-content {
            position: relative;
            z-index: 1;
            width: 100%;
            transition: transform 0.5s ease;
        }

        .service-item:hover .service-image-content {
            transform: translateY(-5px);
        }

        .service-title {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--muted);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
        }

        .service-features li {
            color: var(--text);
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .service-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .service-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .service-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Why Pixnom */
        .why-lonarx {
            padding: 5rem 4%;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefit-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
            position: relative;
        }

        .benefit-card:hover {
            border-color: var(--glow);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(243, 156, 18, 0.15));
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--accent);
            transition: transform 0.4s ease, background 0.4s ease;
        }

        .benefit-icon svg {
            width: 36px;
            height: 36px;
            stroke-width: 1.5;
            transition: transform 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: translateY(-8px);
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.2), rgba(243, 156, 18, 0.2));
            box-shadow: 0 15px 30px rgba(243, 156, 18, 0.12);
        }

        .benefit-card:hover .benefit-icon svg {
            transform: scale(1.15) rotate(3deg);
        }

        .benefit-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .benefit-desc {
            color: var(--muted);
            font-size: 0.95rem;
        }

        .benefit-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .benefit-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .benefit-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .benefit-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        /* Industries */
        .industries {
            padding: 5rem 4%;
        }

        .industries-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .industry-pill {
            background: var(--card);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0;
            animation: fadeUpScroll 0.6s ease forwards;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .industry-pill::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 0% 0%, rgba(230, 126, 34, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }

        .industry-pill:hover {
            border-color: var(--glow);
            box-shadow: 0 0 20px rgba(243, 156, 18, 0.15);
            transform: translateY(-4px);
        }

        .industry-pill:hover::before {
            opacity: 1;
        }

        .industry-icon {
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
            color: var(--accent);
            display: flex;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(230, 126, 34, 0.1);
            transition: all 0.4s ease;
        }

        .industry-icon svg {
            width: 28px;
            height: 28px;
            stroke-width: 1.5;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .industry-pill:hover .industry-icon {
            background: linear-gradient(135deg, var(--accent), var(--glow));
            color: white;
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
        }

        .industry-pill:hover .industry-icon svg {
            transform: scale(1.2) rotate(10deg);
        }

        .industry-name {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .industry-info {
            font-size: 0.85rem;
            color: var(--muted);
            position: relative;
            z-index: 1;
        }

        .industry-pill:nth-child(1) {
            animation-delay: 0.05s;
        }

        .industry-pill:nth-child(2) {
            animation-delay: 0.1s;
        }

        .industry-pill:nth-child(3) {
            animation-delay: 0.15s;
        }

        .industry-pill:nth-child(4) {
            animation-delay: 0.2s;
        }

        .industry-pill:nth-child(5) {
            animation-delay: 0.25s;
        }

        .industry-pill:nth-child(6) {
            animation-delay: 0.3s;
        }

        .industry-pill:nth-child(7) {
            animation-delay: 0.35s;
        }

        .industry-pill:nth-child(8) {
            animation-delay: 0.4s;
        }

        .industry-pill:nth-child(9) {
            animation-delay: 0.45s;
        }

        .industry-pill:nth-child(10) {
            animation-delay: 0.5s;
        }

        .industry-pill:nth-child(11) {
            animation-delay: 0.55s;
        }

        .industry-pill:nth-child(12) {
            animation-delay: 0.6s;
        }

        .industry-pill:nth-child(13) {
            animation-delay: 0.65s;
        }

        .industry-pill:nth-child(14) {
            animation-delay: 0.7s;
        }

        .industry-pill:nth-child(15) {
            animation-delay: 0.75s;
        }

        .industry-pill:nth-child(16) {
            animation-delay: 0.8s;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 4%;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
            transition: transform 0.4s ease;
            transform-style: preserve-3d;
        }

        .testimonial-rating {
            color: #fbbf24;
            margin-bottom: 1rem;
            font-size: 1rem;
            letter-spacing: 0.1em;
        }

        .testimonial-quote {
            color: var(--text);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent), var(--glow));
            flex-shrink: 0;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 0.95rem;
        }

        .author-company {
            color: var(--muted);
            font-size: 0.85rem;
        }

        .testimonial-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .testimonial-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .testimonial-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Pricing */
        .pricing {
            padding: 5rem 4%;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:nth-child(2) {
            border-color: var(--glow);
            box-shadow: 0 0 30px rgba(243, 156, 18, 0.15);
        }

        .pricing-card:nth-child(2) .pricing-label {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--glow);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .pricing-tier {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pricing-tagline {
            color: var(--muted);
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.25rem;
        }

        .pricing-period {
            color: var(--muted);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            color: var(--text);
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .pricing-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .pricing-cta {
            width: 100%;
            padding: 0.85rem;
        }

        .pricing-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .pricing-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .pricing-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Page Specific Styles */
        
.page-hero {
    min-height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 4% 3rem 4%; /* Extra top padding to account for navbar */
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.page-hero h2 {
    font-size: 3.5rem;
    font-family: 'Syne', sans-serif;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--muted);
    max-width: 800px;
    line-height: 1.6;
    margin: 0 auto;
}


        .page-hero h1 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            animation: fadeUpHero 0.8s ease forwards;
        }

        .page-hero p {
            font-size: 1.1rem;
            color: var(--muted);
            max-width: 700px;
            margin-bottom: 0;
            animation: fadeUpHero 0.8s ease 0.15s forwards;
            opacity: 0;
        }

        .page-content {
            padding: 5rem 4%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .form-input,
        .form-textarea {
            width: 100%;
            max-width: 500px;
            padding: 0.85rem;
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            background: var(--card);
            color: var(--text);
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .form-textarea {
            resize: vertical;
            min-height: 150px;
        }

        .form-submit {
            background: linear-gradient(135deg, #e67e22, #f39c12);
            color: white;
            padding: 0.85rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(230, 126, 34, 0.3);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s;
            cursor: pointer;
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
        }

        .blog-card:hover {
            border-color: var(--glow);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(243, 156, 18, 0.15);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(243, 156, 18, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 3rem;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-date {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .blog-excerpt {
            color: var(--muted);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .blog-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .blog-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .blog-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .blog-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .blog-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .blog-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .case-study {
            max-width: 1000px;
            margin: 0 auto;
        }

        .case-study-header {
            margin-bottom: 3rem;
        }

        .case-study-client {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .case-study-title {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .case-study-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .case-study-stat {
            display: flex;
            flex-direction: column;
        }

        .case-study-stat-value {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.25rem;
        }

        .case-study-stat-label {
            color: var(--muted);
            font-size: 0.9rem;
        }

        .case-study-content {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            margin-top: 2rem;
            color: var(--text);
            line-height: 1.8;
        }

        .case-study-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 2rem 0 1rem 0;
            color: var(--accent);
        }

        .case-study-content h3:first-child {
            margin-top: 0;
        }

        .case-study-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.3s;
            opacity: 0;
            animation: fadeUpScroll 0.8s ease forwards;
        }

        .case-study-card:hover {
            border-color: var(--glow);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(243, 156, 18, 0.15);
        }

        .case-study-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .case-study-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .case-study-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .case-study-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .case-study-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .case-study-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .case-study-card-header {
            margin-bottom: 1.5rem;
        }

        .case-study-card-industry {
            color: var(--accent);
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .case-study-card-header h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
            color: var(--text);
        }

        .case-study-card-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .case-study-card-stat {
            text-align: center;
        }

        .case-study-card-stat .stat-value {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.25rem;
        }

        .case-study-card-stat .stat-label {
            font-size: 0.8rem;
            color: var(--muted);
        }

        .case-study-card-excerpt {
            color: var(--muted);
            font-size: 0.95rem;
            margin: 0 0 1rem 0;
            line-height: 1.6;
        }

        .case-study-card-cta {
            color: var(--accent);
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .case-study-card:hover .case-study-card-cta {
            color: var(--glow);
            transform: translateX(4px);
        }

        /* CTA Section */
        .cta-section {
            padding: 4rem;
            text-align: center;
            position: relative;
            margin: 3rem 4%;
            border-radius: 1.5rem;
            background: radial-gradient(circle at 50% 0%, rgba(230, 126, 34, 0.15) 0%, transparent 70%),
                rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
            animation: gradientShift 10s ease-in-out infinite;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            color: var(--muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .btn-shimmer {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            color: white;
            padding: 1rem 3rem;
            border-radius: 0.5rem;
            border: none;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-shimmer::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .btn-shimmer:hover::after {
            left: 100%;
        }

        .btn-shimmer:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(230, 126, 34, 0.3);
        }

        /* Footer */
        footer {
            background: var(--surface);
            border-top: 1px solid var(--border);
            padding: 3rem 4%;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column h3 {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--muted);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            cursor: pointer;
        }

        .footer-column a:hover {
            color: var(--text);
        }

        .footer-tagline {
            color: var(--muted);
            font-size: 0.85rem;
            margin-top: 1rem;
        }

        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid #d0d3e0;
            margin: 8px;
            color: #6c7aa0;
            font-size: 20px;
            text-decoration: none;
        }

        .footer-socials a:hover {
            color: white;
            background: #e67e22;
            border-color: #e67e22;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .social-icon:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid var(--border);
            padding-top: 2rem;
            text-align: center;
            color: var(--muted);
            font-size: 0.85rem;
        }

        /* Scroll animation utility */
        @keyframes fadeUpScroll {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            nav .links {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-right {
                display: none;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .steps-container {
                flex-direction: column;
            }

            .steps-container::before {
                display: none;
            }

            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .service-item {
                grid-template-columns: 1fr;
            }

            .service-item:nth-child(odd) .service-image,
            .service-item:nth-child(odd) .service-text {
                order: initial;
            }

            .service-image {
                min-height: 250px;
            }

            .cta-section {
                padding: 2rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .hero-left h1 {
                font-size: 2rem;
            }

            nav {
                padding: 1rem 4%;
            }

            .logo {
                font-size: 1.25rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .case-study-meta {
                flex-direction: column;
                gap: 1rem;
            }

            .page-hero {
                min-height: auto;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 1rem 2%;
            }

            .hero {
                padding: 2rem 2%;
                min-height: auto;
            }

            .logo {
                font-size: 1.1rem;
            }

            .nav-cta {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
            }

            /* Hide phone number on small screens — hamburger takes over */
            .nav-phone {
                display: none;
            }

            .hero-buttons {
                gap: 0.75rem;
            }

            .btn {
                padding: 0.7rem 1.2rem;
                font-size: 0.9rem;
            }

            section {
                padding: 2rem 2% !important;
            }

            .solutions-grid,
            .benefits-grid,
            .testimonials-grid,
            .pricing-cards,
            .blog-grid {
                gap: 1rem;
            }

            .solution-card,
            .benefit-card,
            .testimonial-card,
            .pricing-card {
                padding: 1.5rem;
            }

            #theme-toggle {
                margin-right: 0;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .stat-row {
                flex-direction: column;
            }

            .industries-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }

            .industry-pill {
                padding: 1.5rem;
                font-size: 0.8rem;
                min-height: auto;
            }

            .industry-icon {
                font-size: 2rem;
            }

            .form-input,
            .form-textarea {
                max-width: 100%;
            }

            .page-content {
                padding: 2rem 2%;
            }
        }

        /* ===== ANNOUNCEMENT BAR ===== */
        .announcement-bar {
            width: 100%;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            color: #fff;
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
            padding: 0.6rem 3rem;
            position: relative;
            z-index: 200;
            cursor: pointer;
        }

        .announcement-bar a {
            color: #fff;
            font-weight: 700;
        }

        .ann-close {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            cursor: pointer;
            line-height: 1;
            padding: 0 0.25rem;
        }

        .ann-close:hover {
            color: #fff;
        }

        /* ===== RESOURCES DROPDOWN ===== */
        .nav-resources {
            position: relative;
        }

        .nav-resources>a {
            cursor: pointer;
        }

        .res-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 0.75rem;
            min-width: 220px;
            z-index: 500;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .nav-resources:hover .res-dropdown {
            display: block;
        }

        .res-dropdown a {
            display: block;
            padding: 0.6rem 1rem;
            color: var(--text) !important;
            font-size: 0.9rem;
            border-radius: 0.4rem;
            transition: background 0.2s;
        }

        .res-dropdown a:hover {
            background: rgba(230, 126, 34, 0.12);
            color: var(--accent) !important;
        }

        /* ===== MARQUEE ===== */
        .marquee-wrap {
            padding: 1.5rem 0;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .marquee-label-txt {
            text-align: center;
            color: var(--muted);
            font-size: 0.8rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .marquee-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: marqueeScroll 35s linear infinite;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

        .marquee-pill {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 2rem;
            padding: 0.4rem 1.1rem;
            font-size: 0.85rem;
            color: var(--muted);
            white-space: nowrap;
            flex-shrink: 0;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== PAIN POINTS ===== */
        .pain-section-new {
            padding: 5rem 4%;
            background: rgba(239, 68, 68, 0.02);
            border-top: 1px solid rgba(239, 68, 68, 0.08);
        }

        .pain-grid-new {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pain-card-new {
            background: var(--card);
            border: 1px solid rgba(239, 68, 68, 0.15);
            border-radius: 1rem;
            padding: 1.5rem;
            transition: transform 0.3s, border-color 0.3s;
        }

        .pain-card-new:hover {
            transform: translateY(-4px);
            border-color: rgba(230, 126, 34, 0.3);
        }

        .pain-before-new {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: #000000;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .pain-icon {
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .pain-divider {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin: 0.75rem 0;
            color: var(--muted);
            font-size: 0.75rem;
        }

        .pain-divider::before,
        .pain-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .pain-after-new {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: #e67e22;
            font-size: 0.9rem;
            font-weight: 600;
        }

        /* ===== HOW IT WORKS (enhanced) ===== */
        .process-section {
            padding: 5rem 4%;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
        }

        .process-step {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-6px);
            border-color: var(--accent);
        }

        .process-num {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Inter', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin: 0 auto 1.5rem;
        }

        .process-step h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            color: var(--text);
            margin-bottom: 0.75rem;
        }

        .process-step p {
            color: var(--muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== SERVICE PILLARS / TABS ===== */
        .pillar-section {
            padding: 5rem 4%;
            background: rgba(255, 255, 255, 0.01);
        }

        .pillar-tabs-bar {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .pillar-tab-btn {
            padding: 0.7rem 1.6rem;
            border-radius: 2rem;
            border: 1.5px solid var(--border);
            background: transparent;
            color: var(--muted);
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Inter', sans-serif;
        }

        .pillar-tab-btn:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .pillar-tab-btn.active {
            background: linear-gradient(135deg, #e67e22, #f39c12);
            border-color: transparent;
            color: #fff;
        }

        .pillar-panel {
            display: none;
        }

        .pillar-panel.active {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 1.5rem;
        }

        .pillar-card {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 1.75rem;
            transition: transform 0.3s, border-color 0.3s;
        }

        .pillar-card:hover {
            transform: translateY(-5px);
            border-color: rgba(230, 126, 34, 0.3);
        }

        .pillar-card .svc-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .pillar-card h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .pillar-card p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 0.75rem;
        }

        .pillar-card .svc-metric {
            font-size: 0.8rem;
            color: var(--accent);
            font-weight: 600;
        }

        .pillar-card .learn-more {
            display: inline-block;
            margin-top: 0.75rem;
            font-size: 0.85rem;
            color: var(--accent);
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
        }

        .pillar-card .learn-more:hover {
            text-decoration: underline;
        }

        /* ===== COMPARISON TABLE ===== */
        .compare-section {
            padding: 5rem 4%;
        }

        .compare-wrap {
            max-width: 1000px;
            margin: 0 auto;
            overflow-x: auto;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.95rem;
        }

        .compare-table th {
            background: var(--surface);
            padding: 1rem 1.25rem;
            text-align: left;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            border-bottom: 2px solid var(--accent);
        }

        .compare-table th:first-child {
            border-radius: 0.5rem 0 0 0;
        }

        .compare-table th:last-child {
            border-radius: 0 0.5rem 0 0;
        }

        .compare-table th.hl {
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(243, 156, 18, 0.2));
            color: var(--accent);
        }

        .compare-table td {
            padding: 0.9rem 1.25rem;
            border-bottom: 1px solid var(--border);
            color: var(--muted);
        }

        .compare-table td.hl {
            background: rgba(230, 126, 34, 0.05);
            color: var(--text);
            font-weight: 500;
        }

        .compare-table tr:hover td {
            background: rgba(255, 255, 255, 0.02);
        }

        .compare-table .yes {
            color: #e67e22;
            font-weight: 700;
        }

        .compare-table .no {
            color: #000000;
        }

        .compare-note {
            text-align: center;
            color: var(--muted);
            font-size: 0.85rem;
            margin-top: 1.5rem;
        }

        /* ===== FAQ ACCORDION ===== */
        .faq-section {
            padding: 5rem 4%;
            background: rgba(255, 255, 255, 0.01);
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item-new {
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            margin-bottom: 0.75rem;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .faq-item-new.open {
            border-color: rgba(230, 126, 34, 0.3);
        }

        .faq-q {
            width: 100%;
            background: var(--card);
            border: none;
            padding: 1.25rem 1.5rem;
            text-align: left;
            color: var(--text);
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-family: 'Inter', sans-serif;
            transition: background 0.3s;
        }

        .faq-q:hover {
            background: rgba(230, 126, 34, 0.08);
        }

        .faq-q .faq-chevron {
            transition: transform 0.3s;
            color: var(--accent);
            font-size: 1.1rem;
        }

        .faq-item-new.open .faq-chevron {
            transform: rotate(45deg);
        }

        .faq-a-new {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
            background: var(--card);
        }

        .faq-item-new.open .faq-a-new {
            max-height: 350px;
            padding: 0 1.5rem 1.25rem;
        }

        .faq-a-new p {
            color: var(--muted);
            line-height: 1.8;
            margin: 0;
            font-size: 0.95rem;
        }

        /* ===== FINAL CTA ===== */
        .final-cta {
            padding: 5rem 4%;
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(243, 156, 18, 0.08));
            border-top: 1px solid rgba(230, 126, 34, 0.12);
            text-align: center;
        }

        .final-cta h2 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            color: var(--text);
            margin-bottom: 1rem;
        }

        .final-cta p {
            color: var(--muted);
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-cta-btns {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .final-cta-trust {
            color: var(--muted);
            font-size: 0.85rem;
            margin-top: 1.5rem;
        }

        /* ===== MOBILE STICKY BAR ===== */
        /* ── India Trust Strip ── */
        .india-trust-strip {
            background: rgba(255, 255, 255, 0.025);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 1.2rem 4%;
        }

        .india-trust-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem 1.5rem;
        }

        .india-trust-badge {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            flex-shrink: 0;
        }

        .itb-icon {
            font-size: 1.4rem;
            line-height: 1;
        }

        .itb-label {
            display: block;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--text);
            white-space: nowrap;
        }

        .itb-sub {
            display: block;
            font-size: 0.72rem;
            color: var(--muted);
            white-space: nowrap;
        }

        .india-trust-divider {
            width: 1px;
            height: 32px;
            background: var(--border);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .india-trust-inner {
                gap: 0.75rem 1rem;
            }

            .india-trust-divider {
                display: none;
            }
        }

        /* ── Floating WhatsApp Button ── */
        .wa-float {
            position: fixed;
            bottom: 90px;
            right: 24px;
            z-index: 9998;
            display: flex;
            align-items: center;
            gap: 10px;
            background: #25D366;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            padding: 12px 18px 12px 14px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
            font-weight: 700;
            font-size: 0.88rem;
            transition: transform .2s, box-shadow .2s;
            white-space: nowrap;
        }

        .wa-float:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
        }

        .wa-float-label {
            display: inline;
        }

        @media (max-width: 600px) {
            .wa-float {
                bottom: 72px;
                right: 16px;
                padding: 12px;
                border-radius: 50%;
            }

            .wa-float-label {
                display: none;
            }
        }

        .mobile-cta-bar {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-cta-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #e67e22, #f39c12);
                color: #fff;
                font-weight: 700;
                font-size: 1rem;
                text-align: center;
                padding: 1rem;
                z-index: 9999;
                cursor: pointer;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }

            body {
                padding-bottom: 56px;
            }
        }

        /* ===== TYPEWRITER HERO ===== */
        .hero-eyebrow {
            display: inline-block;
            background: rgba(230, 126, 34, 0.1);
            border: 1px solid rgba(230, 126, 34, 0.2);
            border-radius: 2rem;
            padding: 0.35rem 1rem;
            font-size: 0.85rem;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 1.25rem;
            letter-spacing: 0.04em;
        }

        .typewriter-span {
            background: linear-gradient(135deg, #e67e22, #f39c12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cursor-blink {
            display: inline-block;
            width: 3px;
            height: 1em;
            background: var(--accent);
            vertical-align: middle;
            margin-left: 3px;
            animation: blink 1s step-end infinite;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        /* ===== ENHANCED TRUST LINE ===== */
        .trust-chips {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 1.25rem;
        }

        .trust-chip {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .trust-chip::before {
            content: '✓';
            color: #22c55e;
            font-weight: 700;
        }

        /* ===== ENHANCED FLOATING BADGES ===== */
        .badge-float-new {
            position: absolute;
            background: var(--surface);
            border: 1px solid var(--accent);
            color: var(--text);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 600;
            animation: floatUpDown 3s ease-in-out infinite;
            z-index: 2;
        }

        .badge-float-new:nth-child(2) {
            top: -15px;
            right: 20px;
            animation-delay: 0s;
        }

        .badge-float-new:nth-child(3) {
            bottom: 20px;
            left: -10px;
            animation-delay: 1.2s;
        }

        @keyframes floatUpDown {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }


        /* ══════════════ EXPANDED SERVICE PAGES ══════════════ */
        .svc-section {
            margin-bottom: 4rem;
        }

        .svc-section h2 {
            font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .svc-lead {
            color: var(--muted);
            font-size: 1.1rem;
            line-height: 1.85;
            margin-bottom: 1.25rem;
        }

        /* 6-card benefits grid */
        .benefits-grid-6 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.25rem;
        }

        .benefit-card-v2 {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            transition: border-color .25s, transform .25s;
        }

        .benefit-card-v2:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .benefit-card-v2 .bc-icon {
            font-size: 1.75rem;
            margin-bottom: .75rem;
            display: block;
        }

        .benefit-card-v2 h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text);
            margin-bottom: .5rem;
        }

        .benefit-card-v2 p {
            font-size: .9rem;
            color: var(--muted);
            line-height: 1.65;
            margin: 0;
        }

        /* Included features list */
        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: .85rem;
        }

        .included-item {
            display: flex;
            align-items: flex-start;
            gap: .75rem;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1rem 1.25rem;
            font-size: .95rem;
            color: var(--text);
        }

        .included-item i {
            color: var(--accent);
            margin-top: 3px;
            flex-shrink: 0;
        }

        /* Process steps */
        .process-steps-svc {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.25rem;
            counter-reset: step;
        }

        .step-svc {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem;
            position: relative;
            counter-increment: step;
        }

        .step-svc::before {
            content: counter(step);
            position: absolute;
            top: -14px;
            left: 1.25rem;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-size: .8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-svc h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text);
            margin-bottom: .5rem;
        }

        .step-svc p {
            font-size: .9rem;
            color: var(--muted);
            margin: 0;
            line-height: 1.6;
        }

        /* Result stat row */
        .results-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
        }

        .result-stat {
            background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(243, 156, 18, 0.06));
            border: 1px solid rgba(230, 126, 34, 0.2);
            border-radius: 16px;
            padding: 1.5rem 1rem;
            text-align: center;
        }

        .result-stat .rs-num {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            display: block;
        }

        .result-stat .rs-label {
            font-size: .8rem;
            color: var(--muted);
            margin-top: .25rem;
            display: block;
            line-height: 1.4;
        }

        /* Audience pills */
        .audience-pills {
            display: flex;
            flex-wrap: wrap;
            gap: .6rem;
            margin-top: 1rem;
        }

        .audience-pill {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: .45rem 1.1rem;
            font-size: .875rem;
            color: var(--muted);
        }

        .audience-pill i {
            color: var(--accent);
            margin-right: .4rem;
        }
    

/* LonarX Custom Additions */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
}

.logo, .hero-left h1 {
    font-family: 'Syne', sans-serif !important;
}

.logo {
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Button Refinements */
.btn {
    border: 2px solid transparent;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.btn-primary:hover {
    transform: scale(1.02);
}
.btn-secondary {
    background: transparent;
    border: 2px solid var(--border);
}
.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.02);
}

/* Modal and Cards Shadows */
.solution-card, .dashboard-card {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


/* Dashboard Mockup HTML Code */
.mockup-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    font-family: 'Inter', sans-serif;
    animation: fadeUpHero 0.8s ease 0.3s forwards;
    opacity: 0;
}

.mockup-autopilot {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mockup-header h3 {
    font-family: 'Syne', sans-serif !important;
    font-size: 1.25rem;
    color: var(--text);
    margin: 0;
}

.mockup-live {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.mockup-live i {
    font-size: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.mockup-stat {
    padding: 1.2rem 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid transparent;
}

.mockup-stat.orange {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}
.mockup-stat.orange .mockup-num { color: #d97706; }

.mockup-stat.green {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}
.mockup-stat.green .mockup-num { color: #059669; }

.mockup-stat.blue {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}
.mockup-stat.blue .mockup-num { color: #2563eb; }

.mockup-num {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}
.mockup-num i { font-size: 1.2rem; margin-left: 0.2rem; }

.mockup-label {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.mockup-chart-header span:first-child { color: var(--muted); }
.mockup-green-text { color: #059669; }

.mockup-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100px;
    gap: 0.5rem;
    background: var(--surface);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.mockup-bar {
    flex: 1;
    background: var(--accent);
    opacity: 0.4;
    border-radius: 4px 4px 0 0;
    transition: all 0.3s ease;
}
.mockup-bar:last-child {
    opacity: 1;
}
.mockup-bar:hover {
    opacity: 0.8;
}

.mockup-activities {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mockup-activity {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    transition: transform 0.2s;
}
.mockup-activity:hover {
    transform: translateX(5px);
    border-color: var(--accent);
}
.mockup-activity i { font-size: 0.6rem; }

@media (max-width: 768px) {
    .mockup-stats {
        grid-template-columns: 1fr;
    }
    .mockup-autopilot {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        top: -10px;
        right: 10px;
    }
}


/* UI Fixes */
.logo img {
    mix-blend-mode: multiply;
}

html.light-mode .logo img {
    mix-blend-mode: normal;
    border-radius: 50%;
    background: white;
}

.seo-h1-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* Navbar layout fixes */
nav .links a {
    white-space: nowrap;
}
.nav-cta {
    white-space: nowrap;
}
nav .links {
    gap: 1.5rem; /* slightly reduce gap to give more room */
}



/* ==========================================================================
   GLOBAL MOBILE RESPONSIVENESS FIXES (Appended via Script)
   ========================================================================== */

@media (max-width: 992px) {
    /* Navbar */
    .hamburger {
        display: flex !important;
    }
    nav .links {
        display: none; /* JS will toggle this to flex */
        width: 100%;
        background-color: var(--card);
    }
    .nav-cta {
        display: none !important; /* Hide to save space on mobile header */
    }
    nav .container {
        flex-wrap: wrap;
    }

    /* Hero */
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
        text-align: center;
    }
    .hero-left h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        line-height: 1.2 !important;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .trust-chips {
        justify-content: center;
    }
    .hero-right {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Grids to 1 column */
    .stats-grid,
    .solutions-grid,
    .process-steps,
    .pain-grid-new,
    .logos-grid,
    .pillar-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Trust Strip */
    .india-trust-inner {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 1.5rem;
    }
    .india-trust-divider {
        display: none !important;
    }

    /* Footer */
    .footer-content {
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center;
    }
    .footer-links {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
}

@media (max-width: 768px) {
    /* General padding reductions */
    section {
        padding-left: 5% !important;
        padding-right: 5% !important;
    }
    .hero {
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }
    
    /* Mockup sizing */
    .mockup-card, .dashboard-card {
        transform: scale(0.9);
        transform-origin: top center;
        width: 100%;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95% !important;
        padding: 1.5rem !important;
        max-height: 90vh !important;
    }

    /* Type and fonts */
    .section-header h2 {
        font-size: 1.75rem !important;
    }
    
    /* Case study grid */
    .case-study-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Tools grid */
    .tools-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* About us / Split grids */
    .about-split, .contact-split {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    .pillar-tabs-bar {
        flex-direction: column;
        gap: 0.5rem;
    }
    .pillar-tab-btn {
        width: 100%;
    }
}
