* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --hp-blue: #0096d6;
            --hp-dark: #1a1a1a;
            --hp-light-gray: #f9f9f9;
            --hp-border: #e0e0e0;
            --hp-text: #333333;
            --hp-light-text: #666666;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            color: var(--hp-text);
            line-height: 1.6;
            background-color: #ffffff;
        }

        /* Header Navigation */
        header {
            background: #ffffff;
            border-bottom: 1px solid #e0e0e0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 48px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 18px;
            font-weight: 700;
            color: var(--hp-dark);
            letter-spacing: -0.5px;
        }

        .logo img {
            height: 60px;
            width: auto;
            margin-right: 10px;
        }

        nav {
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .support-btn {
            background: var(--hp-blue);
            color: white;
            padding: 9px 20px;
            border: none;
            border-radius: 2px;
            cursor: pointer;
            font-weight: 600;
            font-size: 13px;
            transition: background 0.2s;
        }

        .support-btn:hover {
            background: #0085c0;
        }

        /* Hero Section */
        .hero {
            max-width: 1400px;
            margin: 0 auto;
            padding: 64px 48px;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 48px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 44px;
            font-weight: 700;
            color: var(--hp-dark);
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -1.5px;
        }

        .hero-content p {
            font-size: 16px;
            color: var(--hp-light-text);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .hero-cta {
            display: inline-block;
            background: var(--hp-blue);
            color: white;
            padding: 12px 32px;
            border: none;
            border-radius: 2px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            text-decoration: none;
        }

        .hero-cta:hover {
            background: #0085c0;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
            border-radius: 2px;
            min-height: 420px;
            position: relative;
            overflow: hidden;
        }

        .printer-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
        }

        /* Features Section */
        .features {
            background: #ffffff;
            padding: 96px 48px;
            margin-top: 0;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 36px;
            font-weight: 700;
            color: var(--hp-dark);
            margin-bottom: 56px;
            text-align: center;
            letter-spacing: -1px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            padding: 32px;
            background: var(--hp-light-gray);
            border-radius: 2px;
            border: 1px solid #e8e8e8;
            transition: all 0.3s;
        }

        .feature-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--hp-blue), #00a3e0);
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--hp-dark);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--hp-light-text);
            line-height: 1.7;
        }

        /* Two Column Section */
        .two-column {
            max-width: 1400px;
            margin: 80px auto;
            padding: 0 48px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .two-column-image {
            background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
            border-radius: 2px;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .two-column-image svg {
            width: 90%;
            height: 90%;
            max-width: 380px;
            filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
        }

        .two-column-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--hp-dark);
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .two-column-content p {
            font-size: 16px;
            color: var(--hp-light-text);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .feature-list {
            list-style: none;
            margin-top: 24px;
        }

        .feature-list li {
            padding: 10px 0;
            padding-left: 28px;
            position: relative;
            font-size: 15px;
            color: var(--hp-light-text);
        }

        .feature-list li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 6px;
            height: 6px;
            background: var(--hp-blue);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        /* Gallery Section */
        .gallery {
            background: var(--hp-light-gray);
            padding: 96px 48px;
            margin-top: 80px;
        }

        .gallery-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .gallery-item {
            background: white;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: all 0.3s;
        }

        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

        .gallery-image {
            width: 100%;
            height: 260px;
            background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-content {
            padding: 28px;
        }

        .gallery-content h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--hp-dark);
            margin-bottom: 8px;
        }

        .gallery-content p {
            font-size: 14px;
            color: var(--hp-light-text);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--hp-blue) 0%, #0084bb 100%);
            color: white;
            padding: 80px 48px;
            text-align: center;
            margin: 80px 0 0 0;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.98;
            line-height: 1.8;
        }

        .cta-button {
            background: white;
            color: var(--hp-blue);
            padding: 12px 32px;
            border: none;
            border-radius: 2px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .cta-button:hover {
            background: #f5f5f5;
        }

         /* Gradient Footer Sections */
        .footer-cta-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }
        
        .footer-cta-item {
            padding: 60px 40px;
            text-align: center;
            color: #fff;
        }
        
        .footer-cta-item:nth-child(1) {
            background: linear-gradient(135deg, #0096D6 0%, #005B8E 100%);
        }
        
        .footer-cta-item:nth-child(2) {
            background: linear-gradient(135deg, #00B0D8 0%, #007AB8 100%);
        }
        
        .footer-cta-item:nth-child(3) {
            background: linear-gradient(135deg, #4169E1 0%, #0047AB 100%);
        }
        
        .footer-cta-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .footer-cta-item p {
            font-size: 13px;
            margin-bottom: 25px;
            opacity: 0.95;
        }
        
        .footer-cta-item .btn {
            background: rgba(255,255,255,0.2);
            color: #fff;
            border: 2px solid #fff;
            padding: 10px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            display: inline-block;
        }

        /* ─── FOOTER (matching second HTML) ─── */
        :root {
            --blue:       #0096d6;
            --blue-light: #00c4ff;
            --blue-dark:  #006fa3;
            --navy:       #0a1628;
            --slate:      #1e2a3b;
            --body:       #374151;
            --muted:      #6b7280;
            --border:     #e5e9ef;
            --surface:    #f7f9fc;
            --white:      #ffffff;
            --green:      #10b981;
            --grad: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
            --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
            --shadow-md:  0 8px 30px rgba(0,0,0,.10);
            --shadow-lg:  0 20px 60px rgba(0,0,0,.14);
            --shadow-blue: 0 8px 30px rgba(0,150,214,.25);
            --radius:     10px;
            --radius-lg:  16px;
        }

        footer {
            background: var(--slate);
            color: white;
            padding: 70px 50px 0;
            font-family: 'DM Sans', sans-serif;
        }
        .footer-container { max-width: 1300px; margin: 0 auto; }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255,255,255,.08);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo-icon {
            width: 40px; height: 40px;
            background: var(--grad);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }
        .logo-icon svg { width:22px; height:22px; stroke: white; fill:none; stroke-width:2; }
        .logo-name {
            font-family: 'Sora', sans-serif;
            font-weight: 700;
            font-size: 17px;
            color: white;
            line-height: 1.2;
        }
        .logo-tagline { font-size: 10px; color: rgba(255,255,255,.5); font-weight: 400; letter-spacing:.03em; }

        .footer-desc { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.8; margin: 16px 0 24px; max-width: 300px; }

        .footer-contact a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--blue-light);
            font-size: 18px;
            font-weight: 700;
            font-family: 'Sora', sans-serif;
            text-decoration: none;
            margin-bottom: 6px;
        }
        .footer-contact a svg { width:18px; height:18px; stroke:currentColor; fill:none; stroke-width:2; }
        .footer-contact-label { font-size: 11px; color: rgba(255,255,255,.4); letter-spacing:.05em; }

        .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; font-family: 'DM Sans', sans-serif; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 12px; }
        .footer-col a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 13.5px; transition: color .2s; }
        .footer-col a:hover { color: var(--blue-light); }

        .footer-bottom {
            padding: 24px 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom p { font-size: 12px; color: rgba(255,255,255,.35); }
        .footer-legal { display: flex; gap: 24px; }
        .footer-legal a { font-size: 12px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
        .footer-legal a:hover { color: var(--blue-light); }

        .footer-disclaimer {
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,.06);
            font-size: 11.5px;
            color: rgba(255,255,255,.3);
            line-height: 1.75;
            text-align: center;
        }

        /* ─── MODALS ─── */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(10,22,40,.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(4px);
        }
        .modal-overlay.active { display: flex; }
        .modal {
            background: white;
            border-radius: var(--radius-lg);
            max-width: 760px;
            width: 100%;
            max-height: 85vh;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            box-shadow: 0 40px 100px rgba(0,0,0,.3);
        }
        .modal-header {
            padding: 24px 32px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }
        .modal-header h2 { font-size: 22px; font-weight: 700; color: var(--navy); font-family: 'Sora', sans-serif; }
        .modal-close {
            background: var(--surface);
            border: none;
            width: 36px; height: 36px;
            border-radius: 50%;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            transition: background .2s;
        }
        .modal-close:hover { background: var(--border); }
        .modal-close svg { width:16px; height:16px; stroke:var(--body); fill:none; stroke-width:2.5; }
        .modal-body {
            padding: 28px 32px;
            overflow-y: auto;
            flex: 1;
            font-size: 14px;
            color: var(--body);
            line-height: 1.85;
            font-family: 'DM Sans', sans-serif;
        }
        .modal-body h3 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; color: var(--navy); font-family: 'Sora', sans-serif; }
        .modal-body h3:first-child { margin-top: 0; }
        .modal-body p { margin-bottom: 14px; }
        .modal-body ul { margin: 10px 0 14px 20px; }
        .modal-body li { margin-bottom: 6px; }
        .modal-footer {
            padding: 18px 32px;
            border-top: 1px solid var(--border);
            flex-shrink: 0;
            text-align: right;
        }
        .modal-footer .btn-modal {
            display: inline-flex;
            align-items: center;
            background: var(--grad);
            color: white;
            border: none;
            padding: 10px 24px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 13.5px;
            cursor: pointer;
            font-family: 'DM Sans', sans-serif;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-md-3 {
            padding: 0 15px;
            flex: 0 0 25%;
        }
        
        @media (max-width: 1100px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap:30px; }
        }
        @media (max-width: 992px) {
            .nav-menu { gap: 15px; }
            .nav-menu li a { font-size: 11px; }
            .nav-menu li a i { font-size: 20px; }
            .setup-nav ul { gap: 20px; padding: 0 20px; }
            .sub-header { font-size: 28px; }
            .resource-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-grid { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 768px) {
            .top-bar .call-info { font-size: 16px; }
            .main-nav { padding: 15px 0; }
            .nav-menu { display: none; }
            .setup-section { padding: 50px 0; }
            .setup-nav { margin-bottom: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
            .setup-nav ul { gap: 15px; justify-content: flex-start; padding: 0 20px; }
            .setup-nav li a { white-space: nowrap; font-size: 11px; padding: 15px 0; }
            #printerlist-container { flex-direction: column; gap: 30px; }
            .content-container { width: 100%; }
            .sub-header { font-size: 24px; }
            .search-suggestion-text { font-size: 13px; margin-bottom: 20px; }
            #printerlist-content { flex-direction: column; gap: 10px; }
            .column.one { width: 100%; }
            .column.two { width: 100%; }
            .btn-default { width: 100%; padding: 15px 35px; }
            .image-conatiner { width: 100%; max-width: 100%; }
            .support-resources { padding: 50px 0; }
            .section-title { font-size: 22px; margin-bottom: 40px; letter-spacing: 1px; }
            .resource-grid { grid-template-columns: 1fr; gap: 25px; }
            .resource-card { padding: 30px 20px; }
            .features-section { padding: 50px 0; }
            .features-grid { grid-template-columns: 1fr; gap: 25px; }
            .feature-image { height: 200px; }
            .feature-content { padding: 25px 20px; }
            .cta-section { padding: 50px 0; }
            .cta-grid { grid-template-columns: 1fr; gap: 25px; }
            .cta-card { padding: 40px 25px; }
            .footer-cta-section { grid-template-columns: 1fr; }
            .footer-cta-item { padding: 50px 30px; }
            footer { padding: 40px 20px 0; }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .row { margin: 0; }
            .col-md-3 { flex: 0 0 100%; padding: 0; margin-bottom: 30px; }
            .col-md-3:last-child { margin-bottom: 0; }
        }
        
        @media (max-width: 480px) {
            .top-bar .call-info { font-size: 14px; }
            .main-nav .container img { height: 30px; }
            .setup-nav li a { font-size: 10px; padding: 12px 0; }
            .setup-section { padding: 40px 0; }
            .sub-header { font-size: 20px; }
            .search-suggestion-text { font-size: 12px; }
            .typeahead__query input { padding: 12px 15px; font-size: 13px; }
            .btn-default { padding: 12px 30px; font-size: 13px; }
            .support-resources, .features-section, .cta-section { padding: 40px 0; }
            .section-title { font-size: 20px; margin-bottom: 30px; }
            .resource-card { padding: 25px 15px; }
            .resource-icon { font-size: 40px; }
            .resource-card h3 { font-size: 16px; }
            .resource-card p { font-size: 12px; }
            .feature-image { height: 180px; }
            .feature-content { padding: 20px 15px; }
            .feature-content h3 { font-size: 18px; }
            .feature-content p { font-size: 13px; }
            .cta-card { padding: 30px 20px; }
            .cta-card h3 { font-size: 18px; }
            .footer-cta-item { padding: 40px 20px; }
            .footer-cta-item h3 { font-size: 16px; }
            .footer-cta-item p { font-size: 12px; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero,
            .two-column {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .header-container,
            .features,
            .gallery,
            .cta-section {
                padding: 40px 32px;
            }
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 28px;
            }

            .section-title {
                font-size: 28px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .header-container,
            .hero,
            .two-column,
            .features,
            .gallery,
            .cta-section {
                padding: 32px 20px;
            }
        }