/* PrintPress Landing Page */

.landing-page {
    background: #f8fafc;
    color: #0f172a;
}

.landing-skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.landing-skip:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 300;
    width: auto;
    height: auto;
    padding: 0.65rem 1rem;
    background: #1a56db;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.landing-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Nav */
.landing-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.landing-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 1rem;
}

.landing-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.05rem;
}

.landing-brand-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1a56db;
    flex-shrink: 0;
}

.landing-brand-icon svg {
    width: 20px;
    height: 20px;
}

.landing-nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.landing-nav-links a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-size: 0.92rem;
    font-weight: 500;
    min-height: 44px;
}

.landing-nav-links a:hover {
    color: #1a56db;
}

.landing-nav-cta {
    background: #1a56db;
    color: #fff !important;
    padding: 0.45rem 1rem;
    border-radius: 8px;
}

.landing-nav-cta:hover {
    background: #1e429f;
    color: #fff !important;
}

/* Hero */
.landing-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 4.5rem 0 5.5rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #1a56db 100%);
}

.landing-hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--landing-hero-img);
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    mix-blend-mode: luminosity;
}

.landing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 138, 0.78) 50%, rgba(26, 86, 219, 0.72) 100%);
    pointer-events: none;
}

.landing-hero .landing-container {
    position: relative;
    z-index: 1;
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr minmax(320px, 400px);
    gap: 2.5rem;
    align-items: center;
}

.landing-hero-visual-mobile {
    display: none;
    margin-bottom: 1.25rem;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.landing-hero-visual-mobile img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.landing-hero-aside {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.landing-login-panel {
    width: 100%;
    max-width: 400px;
}

.landing-eyebrow-dark {
    color: #1a56db;
}

.landing-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #93c5fd;
    margin-bottom: 0.75rem;
}

.landing-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.landing-hero h1 span {
    color: #bfdbfe;
}

.landing-hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #dbeafe;
    max-width: 36rem;
    margin-bottom: 1.5rem;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.landing-hero-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
}

.landing-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.landing-hero-points {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #bfdbfe;
}

.landing-hero-points li::before {
    content: '✓ ';
    color: #86efac;
    font-weight: 700;
}

.landing-login-card {
    position: relative;
    background: #fff;
    color: #0f172a;
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.85);
    overflow: hidden;
}

.landing-login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a56db, #3b82f6);
}

.landing-login-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.35rem;
}

.landing-login-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1a56db;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-login-card-icon svg {
    width: 22px;
    height: 22px;
}

.landing-login-card-heading h2 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.landing-login-card-heading p {
    color: #64748b;
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.45;
}

.landing-login-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a56db;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.45rem;
}

.landing-login-form .form-group {
    margin-bottom: 1rem;
}

.landing-login-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.35rem;
}

.landing-login-form input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.landing-login-form input:focus {
    outline: none;
    border-color: #1a56db;
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.landing-login-submit {
    margin-top: 0.25rem;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

.landing-login-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.landing-login-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.landing-login-meta span {
    font-weight: 600;
    color: #475569;
}

.landing-login-demo {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0 0 0.35rem;
}

.landing-login-demo code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.8rem;
    padding: 0.05rem 0.3rem;
    border-radius: 4px;
    background: #f3f4f6;
    color: #374151;
}

.landing-login-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
}

.landing-login-note a {
    color: #1a56db;
    font-weight: 600;
    text-decoration: none;
}

.landing-login-note a:hover {
    text-decoration: underline;
}

.btn-lg {
    padding: 0.7rem 1.35rem;
    font-size: 1rem;
}

/* Stats strip */
.landing-stats {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.landing-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1.25rem 0;
}

.landing-stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.landing-stat strong {
    display: block;
    font-size: 1.35rem;
    color: #1a56db;
}

.landing-stat span {
    font-size: 0.8rem;
    color: #64748b;
}

/* Showcase gallery */
.landing-showcase {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, #fff 0%, #f1f5f9 100%);
}

.landing-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-showcase-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landing-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.landing-showcase-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

.landing-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.landing-showcase-card:hover .landing-showcase-img img {
    transform: scale(1.05);
}

.landing-showcase-body {
    padding: 1.35rem 1.5rem 1.5rem;
}

.landing-showcase-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.45rem;
    color: #0f172a;
}

.landing-showcase-body p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Sections */
.landing-section {
    padding: 4rem 0;
}

.landing-section-alt {
    background: #fff;
}

.landing-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.landing-section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.landing-section-head p {
    color: #64748b;
    line-height: 1.7;
}

.landing-section-head-left {
    text-align: left;
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

.landing-section-head-left p + p {
    margin-top: 0.85rem;
}

.landing-section-cta {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.landing-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.landing-benefit {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-benefit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.landing-benefit-with-img h3,
.landing-benefit-with-img p {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.landing-benefit-with-img h3 {
    padding-top: 1.25rem;
}

.landing-benefit-with-img p {
    padding-bottom: 1.5rem;
}

.landing-benefit-img {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e2e8f0;
}

.landing-benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-section-alt .landing-benefit {
    background: #f8fafc;
}

.landing-benefit h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #1a56db;
}

.landing-benefit p {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.6;
}

/* Feature grid */
.landing-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.landing-feature-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.35rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.landing-feature-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.landing-feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #dbeafe;
    color: #1a56db;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
}

.landing-feature-icon svg {
    width: 22px;
    height: 22px;
}

.landing-feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.landing-feature-card p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.55;
}

/* Steps */
.landing-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    counter-reset: step;
}

.landing-steps li {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.5rem;
}

.landing-steps strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a56db;
}

.landing-steps p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Industries */
.landing-keywords-section {
    background: #0f172a;
    color: #fff;
}

.landing-keywords-section .landing-section-head p {
    color: #94a3b8;
}

.landing-industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.landing-industry-pill {
    font-size: 0.82rem;
    padding: 0.42rem 0.82rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
}

/* CTA */
.landing-cta {
    background: linear-gradient(135deg, #1a56db, #1e429f);
    color: #fff;
    padding: 3rem 0;
}

.landing-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.landing-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.landing-cta p {
    color: #dbeafe;
}

.landing-contact-block {
    align-items: flex-start;
}

.landing-contact-list {
    margin-top: 1.25rem;
    font-style: normal;
}

.landing-contact-list p {
    font-size: 0.92rem;
    color: #dbeafe;
    line-height: 1.5;
    margin-bottom: 0.65rem;
}

.landing-contact-list strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #93c5fd;
    margin-bottom: 0.15rem;
}

.landing-contact-list a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.landing-contact-list a:hover {
    color: #bfdbfe;
}

.landing-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-shrink: 0;
}

.landing-btn-wa {
    background: #16a34a;
    border-color: #16a34a;
}

.landing-btn-wa:hover {
    background: #15803d;
    border-color: #15803d;
}

.landing-btn-email {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.landing-btn-email:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.landing-footer-muted {
    color: #64748b;
    font-size: 0.8rem;
}

/* Footer */
.landing-footer {
    background: #0b1220;
    color: #cbd5e1;
    padding-top: 3rem;
}

.landing-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.landing-footer h3,
.landing-footer h4 {
    color: #fff;
    margin-bottom: 0.65rem;
    font-size: 1rem;
}

.landing-footer p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.landing-footer-version {
    font-size: 0.78rem !important;
}

.landing-footer a {
    color: #93c5fd;
    text-decoration: none;
}

.landing-footer a:hover {
    text-decoration: underline;
}

.landing-footer ul {
    list-style: none;
}

.landing-footer ul li {
    margin-bottom: 0.35rem;
}

.landing-footer-contact {
    margin-top: 0.75rem;
}

.landing-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

/* Floating contact button */
.contact-fab {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.contact-fab-panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 220px;
    padding: 0.65rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid #e2e8f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    pointer-events: none;
}

.contact-fab.is-open .contact-fab-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-fab-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: #0f172a;
    transition: background 0.15s ease;
}

.contact-fab-link:hover {
    background: #f1f5f9;
}

.contact-fab-link-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-fab-link-icon svg {
    width: 22px;
    height: 22px;
}

.contact-fab-link-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.contact-fab-link-text strong {
    font-size: 0.88rem;
    font-weight: 600;
}

.contact-fab-link-text small {
    font-size: 0.72rem;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
}

.contact-fab-wa .contact-fab-link-icon {
    background: #dcfce7;
    color: #16a34a;
}

.contact-fab-phone .contact-fab-link-icon {
    background: #dbeafe;
    color: #1a56db;
}

.contact-fab-email .contact-fab-link-icon {
    background: #fef3c7;
    color: #d97706;
}

.contact-fab-more .contact-fab-link-icon {
    background: #f1f5f9;
    color: #475569;
}

.contact-fab-btn {
    position: relative;
    width: 58px;
    height: 58px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a56db, #1e429f);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(26, 86, 219, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-fab-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(26, 86, 219, 0.5);
}

.contact-fab-btn svg {
    width: 26px;
    height: 26px;
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-fab-icon-close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

.contact-fab.is-open .contact-fab-icon-open {
    opacity: 0;
    transform: rotate(90deg) scale(0.8);
}

.contact-fab.is-open .contact-fab-icon-close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.contact-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(26, 86, 219, 0.5);
    animation: contactFabPulse 2s ease-out infinite;
    pointer-events: none;
}

.contact-fab.is-open .contact-fab-pulse {
    display: none;
}

@keyframes contactFabPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.landing-page {
    padding-bottom: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .landing-hero-grid,
    .landing-features-grid,
    .landing-steps,
    .landing-footer-grid,
    .landing-showcase-grid {
        grid-template-columns: 1fr;
    }

    .landing-section-head-left {
        text-align: center;
        margin-left: auto;
    }

    .landing-hero-aside {
        justify-content: center;
    }

    .landing-login-panel {
        max-width: 100%;
    }

    .landing-hero-visual-mobile {
        display: block;
    }

    .landing-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-nav-links a:not(.landing-nav-cta) {
        display: none;
    }

    .landing-nav-links .landing-nav-cta {
        display: inline-block;
    }

    .landing-cta-inner {
        flex-direction: column;
    }

    .landing-contact-actions {
        width: 100%;
    }

    .landing-contact-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .landing-stats-grid {
        grid-template-columns: 1fr;
    }

    .landing-hero {
        padding: 2.5rem 0 3rem;
    }

    .landing-login-card {
        padding: 1.5rem;
    }

    .contact-fab {
        right: 1rem;
        bottom: 1rem;
    }

    .contact-fab-btn {
        width: 54px;
        height: 54px;
    }

    .contact-fab-panel {
        min-width: 200px;
    }
}
