/* =============================================
   SMART PRINT APP - style.css
   ============================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

/* =============================================
   TOP BLUE STRIP
   ============================================= */
.top-strip {
    background: #1a56db;
    height: 25px !important;
    width: 100%;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: #f8f9fc;
    overflow: hidden;
    min-height: 140px;
    /* min-height: 280px; */
}

.hero-left {
    padding: 40px 40px 40px 60px;
}

.hero-content {
    max-width: 420px;
}

.hero-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #1a56db;
    margin-bottom: 4px;
}

.hero-connect {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.hero-desc {
    font-size: 12.5px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 360px;
}

.btn-hero {
    background: #1a56db;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-hero:hover {
    background: #1445b5;
    color: #fff;
}

.hero-right {
    position: relative;
    overflow: hidden;
    max-height: 290px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* =============================================
   COMMON ISSUES SECTION
   ============================================= */
.issues-section {
    padding: 60px 0 50px;
    background: #fff;
}

.issues-heading {
    font-size: 35px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 40px;
}

/* Custom column width for 5-per-row */
.col-md-2half {
    width: 20%;
    flex: 0 0 auto;
}

.issue-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 24px 16px 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.14);
}

.issue-icon {
    font-size: 34px;
    color: #1a56db;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.issue-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    margin: 0;
}

/* =============================================
   PROMOTIONAL BANNER
   ============================================= */
.promo-banner-section {
    padding: 30px 0 40px;
    background: #fff;
}

.promo-banner {
    background: linear-gradient(135deg, #1a3a6b 0%, #1a56db 60%, #4a80f0 100%);
    border-radius: 14px;
    overflow: hidden;
    min-height: 160px;
    position: relative;
}

.promo-overlay {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    gap: 20px;
}

.promo-text {
    flex: 1;
}

.promo-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.promo-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.btn-promo {
    background: #fff;
    color: #1a56db;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 6px;
    border: none;
    transition: background 0.2s;
}

.btn-promo:hover {
    background: #e8f0fe;
    color: #1a56db;
}

.promo-image {
    flex: 0 0 auto;
    max-width: 280px;
}

.promo-image img {
    max-width: 100%;
    border-radius: 8px;
}

/* =============================================
   DOWNLOAD APP SECTION
   ============================================= */
.download-section {
    padding: 60px 0;
    background: #fff;
}

.printer-icon-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    padding: 30px;
    display: inline-block;
}

.printer-icon-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    border-radius: 12px;
}

.download-content {
    max-width: 100%;
}

.download-new {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.new-badge {
    color: #333;
}

.orange-text {
    color: #e87400;
}

.download-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.download-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 18px;
}

.btn-download {
    background: #1a56db;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    letter-spacing: 0.5px;
    transition: background 0.2s;
    display: block;
    text-align: center;
}

.btn-download:hover {
    background: #1445b5;
    color: #fff;
}

.download-disclaimer {
    font-size: 10.5px;
    color: #888;
    line-height: 1.55;
    margin-top: 14px;
}

/* =============================================
   PRINT ANYWHERE SECTION
   ============================================= */
.print-anywhere-section {
    padding: 60px 0;
    background: #fff;
}

.print-anywhere-img {
    max-width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.anywhere-heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a56db;
    margin-bottom: 4px;
}

.anywhere-subheading {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 14px;
}

.anywhere-desc {
    font-size: 12.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

.btn-blue {
    background: #1a56db;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    letter-spacing: 0.4px;
    transition: background 0.2s;
}

.btn-blue:hover {
    background: #1445b5;
    color: #fff;
}

/* =============================================
   HOW IT WORKS SECTION
   ============================================= */
.how-it-works-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.hiw-heading {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 34px;
}

.timeline {
    display: flex;
    flex-direction: column;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.timeline-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a56db;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(26, 86, 219, 0.25);
}

.timeline-line {
    width: 3px;
    height: 28px;
    background: #d0dcf8;
    margin-left: 20px;
}

.timeline-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
    padding-top: 10px;
}

.timeline-text {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.hiw-app-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 24px;
    text-align: center;
}

.hiw-app-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    justify-content: center;
}

.hiw-app-icon {
    font-size: 36px;
    color: #1a56db;
    background: #e8f0fe;
    padding: 12px;
    border-radius: 14px;
}

.hiw-app-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    display: block;
}

.hiw-app-tagline {
    font-size: 11px;
    color: #888;
    margin: 0;
}

.hiw-illustration {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    padding: 70px 0 60px;
    background: #f0f3fb;
    position: relative;
    overflow: hidden;
}

.pricing-heading {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 44px;
    line-height: 1.3;
}

.pricing-coin {
    position: absolute;
    top: 60px;
    opacity: 0.8;
}

.pricing-coin img {
    width: 60px;
}

.pricing-coin-left {
    left: 60px;
    top: 120px;
}

.pricing-coin-right {
    right: 260px;
    top: 40px;
}

.pricing-hand {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
}

.pricing-hand img {
    width: 100%;
    object-fit: contain;
}

.pricing-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 22px 22px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    position: relative;
    transition: transform 0.2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

.pricing-card-featured {
    box-shadow: 0 8px 36px rgba(26, 86, 219, 0.18);
    transform: translateY(-12px);
    border: 2px solid #1a56db;
    z-index: 2;
}

.pricing-card-featured:hover {
    transform: translateY(-16px);
}

.pricing-duration {
    font-size: 12px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.pricing-app-name {
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    margin-bottom: 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.pricing-features li {
    font-size: 12px;
    color: #555;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-features li .fa-circle-check {
    color: #1a56db;
}

.pricing-features li .text-warning {
    color: #e87400 !important;
}

.pricing-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.pricing-label {
    font-size: 12px;
    font-weight: 600;
    color: #444;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}

.toggle-switch input:checked+.toggle-slider {
    background: #1a56db;
}

.toggle-switch input:checked+.toggle-slider:before {
    transform: translateX(20px);
}

/* =============================================
   FEATURE BOXES SECTION
   ============================================= */
.features-section {
    padding: 40px 0;
    background: #fff;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid #eef0f5;
    height: 100%;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-2px);
}

.feature-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1a56db;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-wrap i {
    font-size: 18px;
    color: #fff;
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 11.5px;
    color: #777;
    line-height: 1.5;
    margin: 0;
}

/* =============================================
   SUPPORT SECTION
   ============================================= */
.support-section {
    padding: 60px 0;
    background: #fff;
}

.support-img {
    max-width: 100%;
    max-height: 340px;
    object-fit: contain;
}

.support-available {
    font-size: 12px;
    font-weight: 600;
    color: #1a56db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.support-heading {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.support-subheading {
    font-size: 15px;
    font-weight: 600;
    color: #444;
    margin-bottom: 14px;
}

.support-desc {
    font-size: 12.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer1 {
    background: #0d0f14;
}

.footer-main {
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer-logo-icon {
    font-size: 24px;
    color: #1a56db;
}

.footer-logo-text {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-about {
    font-size: 11.5px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1a56db;
}

.footer-contact {
    font-style: normal;
}

.footer-contact p {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.footer-contact i {
    color: #1a56db;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-badges {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.footer-badge {
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

/* Fallback for missing badge images */
.footer-badges-placeholder {
    display: flex;
    gap: 8px;
}

.footer-badge-box {
    background: #1a2a40;
    border: 1px solid #2a3a55;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 10px;
    color: #aaa;
    font-weight: 700;
}

.footer-bottom {
    padding: 16px 0;
}

.footer-copy {
    font-size: 11px;
    color: #666;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    font-size: 10.5px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #1a56db;
}

.footer-payments {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-payments i {
    font-size: 28px;
    color: #888;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
    .pricing-hand {
        width: 150px;
    }
}

@media (max-width: 992px) {
    .hero-left {
        padding: 30px 24px 30px 30px;
    }

    .col-md-2half {
        width: 33.333%;
    }

    .pricing-hand {
        display: none;
    }

    .pricing-coin {
        display: none;
    }

    .pricing-card-featured {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 30px 20px;
    }

    .col-md-2half {
        width: 50%;
    }

    .promo-image {
        display: none;
    }

    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 8px;
    }

    .hiw-app-card {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .issues-heading {
        font-size: 18px;
    }

    .col-md-2half {
        width: 50%;
    }

    .pricing-card-featured {
        transform: none;
    }

    .footer-payments {
        flex-wrap: wrap;
    }
}

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fade-in-el {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-el.visible {
    opacity: 1;
    transform: translateY(0);
}