/* Check Printing Software Download Page Styles */

/* ===== BASE COMPONENTS ===== */

/* Card Base */
.card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.card-title {
    margin: 0;
    color: #333;
}

.card-description {
    color: #666;
    line-height: 1.6;
}

/* Icon Base */
.icon {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.icon.small {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

/* Button Base */
.btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn.extra-large {
    padding: 15px 40px;
    font-size: 1.2rem;
}

/* Section Base */
.section {
    padding: 60px 0;
}

.section-content {
    justify-content: center;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2rem;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-blue: #3b82f6;
    --primary-green: #10b981;
    --primary-orange: #f59e0b;
    --primary-purple: #8b5cf6;
    --text-dark: #333;
    --text-medium: #666;
    --text-light: #999;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
}

/* ===== COLOR UTILITIES ===== */
.bg-blue { background: var(--primary-blue); }
.bg-green { background: var(--primary-green); }
.bg-orange { background: var(--primary-orange); }
.bg-purple { background: var(--primary-purple); }

.text-blue { color: var(--primary-blue); }
.text-green { color: var(--primary-green); }
.text-orange { color: var(--primary-orange); }
.text-purple { color: var(--primary-purple); }

.border-blue { border-left: 4px solid var(--primary-blue); }
.border-green { border-left: 4px solid var(--primary-green); }
.border-orange { border-left: 4px solid var(--primary-orange); }
.border-purple { border-left: 4px solid var(--primary-purple); }

/* ===== MAIN SECTIONS ===== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
    padding: 60px 0;
}

.hero-content {
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: white;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-download-btn {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.hero-buy-btn {
    background: transparent;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #ffffff;
}

.hero-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-link {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
}

.hero-separator {
    color: #ffffff;
    opacity: 0.6;
}

.hero-version {
    color: #ffffff;
    opacity: 0.9;
}

/* White Section */
.white-section {
    background: var(--bg-white);
}

.white-section-content {
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

/* Mac Alert */
.mac-alert {
    display: none;
    border: 1px solid #ff6b6b;
    padding: 15px;
    margin: 20px;
    background: #fff5f5;
    border-radius: 8px;
}

.mac-alert-text {
    color: #d63031;
}

.mac-alert-link {
    color: var(--primary-blue);
}

/* Trial Info Section */
.trial-info {
    max-width: 800px;
    margin: 0 auto;
}

.trial-title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.trial-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.trial-info-btn {
    background: var(--primary-blue);
    color: #ffffff;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 4px rgba(59,130,246,0.3);
    transition: all 0.3s;
}

/* Download Options Section */
.download-options-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.download-options-content {
    justify-content: center;
}

.download-options-container {
    max-width: 1200px;
    margin: 0 auto;
}

.download-options-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.download-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Download Card */
.download-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--border-light);
}

.download-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.download-card-icon {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.download-card-icon.blue {
    background: var(--primary-blue);
}

.download-card-icon.green {
    background: var(--primary-green);
}

.download-card-title {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.4rem;
}

.download-card-subtitle {
    margin: 5px 0 0 0;
    color: var(--text-medium);
}

.download-card-info {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.download-card-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    font-size: 0.9rem;
}

.download-card-info-divider {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.download-card-btn {
    background: var(--primary-blue);
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 4px rgba(59,130,246,0.3);
}

.download-card-btn.green {
    background: var(--primary-green);
    box-shadow: 0 2px 4px rgba(16,185,129,0.3);
}

.download-card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.download-card-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Additional Downloads */
.additional-downloads {
    margin-top: 40px;
    text-align: center;
}

.additional-downloads-title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.additional-downloads-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.additional-download-link {
    color: var(--primary-blue);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid var(--primary-blue);
    border-radius: 6px;
    transition: all 0.3s;
}

/* Help Section */
.help-section {
    margin-top: 40px;
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.help-text {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.help-link {
    color: var(--primary-blue);
}

.help-subtext {
    color: var(--text-medium);
    font-size: 0.9rem;
}

/* Installation Steps Section */
.installation-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.installation-content {
    justify-content: center;
}

.installation-container {
    max-width: 1000px;
    margin: 0 auto;
}

.installation-header {
    text-align: center;
    margin-bottom: 50px;
}

.installation-title {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.installation-subtitle {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.installation-video-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.3s;
}

.installation-steps {
    display: grid;
    gap: 30px;
}

/* Installation Step */
.installation-step {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.installation-step.blue {
    border-left: 4px solid var(--primary-blue);
}

.installation-step.green {
    border-left: 4px solid var(--primary-green);
}

.installation-step.orange {
    border-left: 4px solid var(--primary-orange);
}

.installation-step.purple {
    border-left: 4px solid var(--primary-purple);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.step-number.blue {
    background: var(--primary-blue);
}

.step-number.green {
    background: var(--primary-green);
}

.step-number.orange {
    background: var(--primary-orange);
}

.step-number.purple {
    background: var(--primary-purple);
}

.step-title {
    margin: 0;
    color: var(--text-dark);
}

.step-description {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.6;
}

.step-substeps {
    color: var(--text-medium);
    line-height: 1.6;
}

.step-substeps-title {
    margin-bottom: 15px;
}

.step-substeps-list {
    margin: 0;
    padding-left: 20px;
}

.step-substeps-list li {
    margin-bottom: 8px;
}

.step-images {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.step-image {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.step-image-caption {
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* License Key Section */
.license-key-section {
    background: #e0f2fe;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #0ea5e9;
}

.license-key-title {
    margin: 0 0 10px 0;
    color: #0369a1;
}

.license-key-description {
    margin: 0;
    color: var(--text-medium);
    line-height: 1.6;
}

.license-key-image {
    text-align: center;
    margin-top: 15px;
}

.license-key-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Quick Start & Support Section */
.quickstart-support-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.quickstart-support-content {
    justify-content: center;
}

.quickstart-support-container {
    max-width: 1000px;
    margin: 0 auto;
}

.quickstart-support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Quick Start Card */
.quickstart-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.quickstart-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quickstart-card-icon {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.quickstart-card-icon.blue {
    background: var(--primary-blue);
}

.quickstart-card-icon.orange {
    background: var(--primary-orange);
}

.quickstart-card-title {
    margin: 0;
    color: var(--text-dark);
}

.quickstart-card-description {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.quickstart-card-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    transition: all 0.3s;
}

.quickstart-card-link img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

/* Troubleshooting Links */
.troubleshooting-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.troubleshooting-link {
    color: var(--primary-blue);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

/* Purchase Section */
.purchase-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
    padding: 60px 0;
}

.purchase-content {
    justify-content: center;
    text-align: center;
}

.purchase-container {
    max-width: 800px;
    margin: 0 auto;
}

.purchase-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
}

.purchase-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.purchase-btn {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.purchase-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.purchase-info-text {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    color: white;
}

/* Related Links Section */
.related-links-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.related-links-content {
    justify-content: center;
}

.related-links-container {
    max-width: 1000px;
    margin: 0 auto;
}

.related-links-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-size: 2rem;
}

.related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Resource Card */
.resource-card {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
}

.resource-card.blue {
    border-left: 4px solid var(--primary-blue);
}

.resource-card.green {
    border-left: 4px solid var(--primary-green);
}

.resource-card.purple {
    border-left: 4px solid var(--primary-purple);
}

.resource-card-title {
    margin: 0 0 15px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.resource-card-icon {
    margin-right: 10px;
}

.resource-card-icon.blue {
    color: var(--primary-blue);
}

.resource-card-icon.green {
    color: var(--primary-green);
}

.resource-card-icon.purple {
    color: var(--primary-purple);
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.resource-link {
    color: var(--primary-blue);
    text-decoration: none;
    padding: 5px 0;
}

.resource-link-icon {
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1d4ed8 100%);
    border-radius: 12px;
}

.final-cta-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: white;
}

.final-cta-description {
    margin-bottom: 30px;
    opacity: 0.9;
    color: white;
}

.final-cta-btn {
    background: #ffffff;
    color: var(--primary-blue);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-white { color: white; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-options-grid {
        grid-template-columns: 1fr;
    }
    
    .quickstart-support-grid {
        grid-template-columns: 1fr;
    }
    
    .step-images {
        grid-template-columns: 1fr;
    }
    
    .related-links-grid {
        grid-template-columns: 1fr;
    }
    
    .additional-downloads-links {
        flex-direction: column;
        align-items: center;
    }
}