/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hp-blue: #0076ce;
    --hp-blue-dark: #005a9e;
    --hp-nav-bg: #ffffff;
    --text-dark: #202124;
    --text-light: #5f6368;
    --background-white: #ffffff;
    --hp-hero-bg: linear-gradient(135deg, #005a9e 0%, #0076ce 100%);
    --shadow-light: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    --shadow-medium: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HP Navigation */
.hp-nav {
    background: var(--hp-nav-bg);
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.hp-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hp-logo {
    font-size: 28px;
    font-weight: 300;
    color: var(--hp-blue);
    letter-spacing: 2px;
    font-family: 'Arial', sans-serif;
}

.hp-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.hp-nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.hp-nav-menu a:hover {
    color: var(--hp-blue);
}

/* HP Hero Section */
.hp-hero {
    background: var(--hp-hero-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hp-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hp-hero-left h1 {
    font-size: 3.5em;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
}

.hp-instructions {
    margin-bottom: 40px;
}

.hp-instructions p {
    color: white;
    font-size: 1.1em;
    margin-bottom: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-bullet {
    font-size: 1.5em;
    line-height: 1;
}

.hp-download-btn {
    background: white;
    color: var(--hp-blue);
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: var(--shadow-medium);
}

.hp-download-btn:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px 0 rgba(60, 64, 67, 0.3), 0 6px 20px 4px rgba(60, 64, 67, 0.15);
}

.hp-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-printer-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.printer-img {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.printer-img img {
    width: 200px;
    height: auto;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

/* Quick Download Section */
.hp-quick-download {
    padding: 80px 0;
    background: var(--background-white);
}

.hp-quick-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.hp-quick-left h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.hp-quick-subtitle {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 30px;
}

.hp-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.05em;
}

.hp-form input[type="text"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1em;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.hp-form input[type="text"]:focus {
    outline: none;
    border-color: var(--hp-blue);
}

.hp-download-form-btn {
    background: var(--hp-blue);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: var(--shadow-light);
}

.hp-download-form-btn:hover {
    background: var(--hp-blue-dark);
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

.hp-quick-right h2 {
    font-size: 2em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.hp-quick-right p {
    color: var(--text-light);
    font-size: 1.05em;
    margin-bottom: 25px;
}

.hp-printer-model-image {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.hp-printer-model-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #f5f5f5;
    min-height: 250px;
    object-fit: contain;
}

.model-callout {
    position: absolute;
    bottom: 20%;
    right: 5%;
}

.callout-box {
    background: #0096d6;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1em;
    box-shadow: var(--shadow-medium);
}

.callout-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #0096d6;
    margin-left: 50%;
    transform: translateX(-50%);
}

/* HP Footer */
.hp-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333333;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--hp-blue);
}

.social-icon img {
    width: 24px;
    height: 24px;
    background: #f5f5f5;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.85em;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: #666666;
}

/* Download Steps Modal */
.download-steps-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.download-steps-modal[style*="flex"] {
    display: flex !important;
}

.download-steps-modal .modal-content {
    background: white;
    padding: 60px 50px;
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 36px;
    cursor: pointer;
    color: #999999;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333333;
}

.step {
    text-align: center;
    display: none;
}

.step.active {
    display: block;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--hp-blue), var(--hp-blue-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step p {
    color: var(--text-light);
    font-size: 1.1em;
    margin-bottom: 25px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-top: 25px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--hp-blue), var(--hp-blue-dark));
    transition: width 0.5s;
}

.install-complete-btn {
    background: var(--hp-blue);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    margin-top: 30px;
    transition: all 0.2s;
}

.install-complete-btn:hover {
    background: var(--hp-blue-dark);
    box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

/* Fixed Chat Icon */
.fixed-chat-icon {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--hp-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    transition: all 0.2s;
    z-index: 1000;
}

.fixed-chat-icon:hover {
    background: var(--hp-blue-dark);
    box-shadow: 0 2px 8px 0 rgba(60, 64, 67, 0.3), 0 6px 20px 4px rgba(60, 64, 67, 0.15);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hp-hero-content {
        grid-template-columns: 1fr;
    }

    .hp-hero-left h1 {
        font-size: 2.5em;
    }

    .hp-quick-content {
        grid-template-columns: 1fr;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hp-nav-menu {
        gap: 15px;
        font-size: 0.9em;
    }

    .hp-hero-left h1 {
        font-size: 2em;
    }

    .hp-quick-left h2 {
        font-size: 2em;
    }

    .hp-quick-right h2 {
        font-size: 1.6em;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }

    .printer-img img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hp-logo {
        font-size: 22px;
    }

    .hp-nav-menu {
        gap: 10px;
        font-size: 0.85em;
    }

    .hp-hero {
        padding: 50px 0;
    }

    .hp-hero-left h1 {
        font-size: 1.8em;
    }

    .hp-download-btn {
        font-size: 1em;
        padding: 14px 30px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .printer-img img {
        width: 120px;
    }
}

