:root {
    --pz-orange: #ff6a00;
    --pz-orange-2: #ff9f1c;
    --pz-black: #090b10;
    --pz-ink: #111827;
    --pz-muted: #64748b;
    --pz-line: #e5e7eb;
    --pz-card: #ffffff;
}
* { letter-spacing: 0; }
body {
    margin: 0;
    color: var(--pz-ink);
    background: #f8fafc;
    font-family: Inter, Arial, Helvetica, sans-serif;
}
.saas-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 16px 0;
    background: rgba(255,255,255,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15,23,42,.08);
}
.saas-nav a { color: var(--pz-ink); text-decoration: none; font-weight: 850; }
.saas-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.08rem; }
.saas-brand span {
    width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
    background: linear-gradient(135deg, var(--pz-orange), var(--pz-orange-2));
    color: #111; font-weight: 950;
}
.btn-saas-primary, .btn-saas-soft, .btn-saas-outline {
    border-radius: 12px;
    font-weight: 900;
    border: 0;
}
.btn-saas-primary {
    color: #111;
    background: linear-gradient(135deg, var(--pz-orange), var(--pz-orange-2));
    box-shadow: 0 16px 36px rgba(255,106,0,.28);
}
.btn-saas-primary:hover { filter: brightness(1.04); color: #111; }
.btn-saas-soft { background: #fff; border: 1px solid var(--pz-line); }
.btn-saas-outline { border: 1px solid rgba(255,255,255,.26); color: #fff; background: rgba(255,255,255,.08); }
.saas-hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 80% 10%, rgba(255,106,0,.32), transparent 28%),
        linear-gradient(140deg, #080a0f 0%, #111827 46%, #231105 100%);
    overflow: hidden;
    padding: 80px 0;
}
.saas-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: 48px;
    align-items: center;
}
.saas-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #fed7aa;
    font-weight: 900;
    margin-bottom: 22px;
}
.saas-hero h1 {
    max-width: 920px;
    font-size: clamp(2.7rem, 6vw, 5.9rem);
    line-height: .94;
    font-weight: 950;
}
.saas-hero p {
    max-width: 720px;
    color: rgba(255,255,255,.78);
    font-size: 1.18rem;
    margin: 24px 0 30px;
}
.saas-product-shot {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 40px 90px rgba(0,0,0,.34);
}
.shot-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; color: #fff; }
.shot-top span { width: 11px; height: 11px; border-radius: 50%; background: #fb923c; }
.shot-top strong { margin-left: auto; }
.shot-grid { display: grid; gap: 14px; }
.shot-grid article {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    color: var(--pz-ink);
}
.shot-grid small { color: var(--pz-muted); font-weight: 900; text-transform: uppercase; }
.shot-grid strong { display: block; font-size: 1.45rem; margin: 5px 0; }
.shot-grid span { color: #475569; }
.saas-section { padding: 86px 0; }
.saas-heading { margin-bottom: 34px; }
.saas-heading span {
    color: var(--pz-orange);
    text-transform: uppercase;
    font-weight: 950;
}
.saas-heading h2 {
    max-width: 900px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 950;
    line-height: .98;
}
.saas-feature {
    min-height: 100%;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--pz-line);
    box-shadow: 0 18px 42px rgba(15,23,42,.06);
}
.saas-feature i { color: var(--pz-orange); font-size: 1.9rem; margin-bottom: 18px; }
.saas-feature h3 { font-weight: 950; font-size: 1.24rem; }
.saas-feature p { color: var(--pz-muted); margin: 0; }
.saas-band { background: #fff; border-block: 1px solid var(--pz-line); }
.saas-flow {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
    align-items: center;
}
.flow-list { display: grid; gap: 12px; }
.flow-list div {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid var(--pz-line);
    font-weight: 900;
}
.flow-list strong {
    width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
    background: var(--pz-orange); color: #111;
}
.saas-cta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 24px;
    background: #0b0f17;
    color: #fff;
}
.saas-cta h2 { font-weight: 950; margin-bottom: 8px; }
.saas-cta p { color: rgba(255,255,255,.68); margin: 0; max-width: 720px; }
@media (max-width: 991px) {
    .saas-hero { min-height: auto; padding: 58px 0; }
    .saas-hero-grid, .saas-flow { grid-template-columns: 1fr; }
    .saas-product-shot { order: -1; }
    .saas-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 575px) {
    .saas-nav .container { align-items: flex-start !important; flex-direction: column; }
    .saas-hero h1 { font-size: 2.7rem; }
    .btn-lg, .saas-nav .btn { width: 100%; }
}
