/* ==========================================================================
   Puzzle ERP 랜딩 페이지 전용 스타일
   - 모든 클래스는 pz- 접두사로 레거시 템플릿 CSS(.btn/.section 등)와 격리
   - 색상 토큰은 신규 아키텍처 앱(assets/css/app.css)과 동일 계열 사용
   ========================================================================== */

.pz-landing {
    --pz-brand: #2563eb;
    --pz-brand-dark: #1d4ed8;
    --pz-ink: #111827;
    --pz-ink-deep: #0b1120;
    --pz-bg: #f6f7fb;
    --pz-panel: #ffffff;
    --pz-text: #1f2937;
    --pz-muted: #6b7280;
    --pz-line: #dfe3eb;
    --pz-chip-bg: #eef2ff;
    --pz-chip-text: #3730a3;
    --pz-soft-blue: #eff6ff;
    --pz-success: #047857;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--pz-text);
    background: var(--pz-panel);
    word-break: keep-all;
}

.pz-landing *,
.pz-landing *::before,
.pz-landing *::after {
    box-sizing: border-box;
}

.pz-landing h1,
.pz-landing h2,
.pz-landing h3,
.pz-landing h4,
.pz-landing p,
.pz-landing ul {
    margin: 0;
    padding: 0;
}

.pz-landing ul {
    list-style: none;
}

.pz-landing a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.pz-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.pz-section {
    padding: 88px 0;
    scroll-margin-top: 90px;
}

.pz-section--bg {
    background: var(--pz-bg);
}

/* --- 섹션 공통 헤더 --------------------------------------------------- */

.pz-section-head {
    max-width: 720px;
    margin: 0 auto 52px;
    text-align: center;
}

.pz-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--pz-chip-bg);
    color: var(--pz-chip-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pz-section-head h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--pz-ink);
}

.pz-section-head p {
    margin-top: 14px;
    font-size: 17px;
    color: var(--pz-muted);
}

/* --- 버튼 ------------------------------------------------------------- */

.pz-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
}

.pz-btn--primary {
    background: var(--pz-brand);
    color: #ffffff;
}

.pz-btn--primary:hover {
    background: var(--pz-brand-dark);
    color: #ffffff;
}

.pz-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.pz-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

.pz-btn--light {
    background: #ffffff;
    color: var(--pz-brand-dark);
}

.pz-btn--light:hover {
    background: var(--pz-soft-blue);
    color: var(--pz-brand-dark);
}

.pz-btn--outline {
    background: var(--pz-panel);
    border-color: var(--pz-line);
    color: var(--pz-text);
}

.pz-btn--outline:hover {
    border-color: var(--pz-brand);
    color: var(--pz-brand);
}

/* --- 히어로 ----------------------------------------------------------- */

.pz-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 80px;
    background: linear-gradient(135deg, var(--pz-ink-deep) 0%, var(--pz-ink) 45%, #1e3a8a 100%);
    color: #e5e7eb;
}

.pz-hero::after {
    content: "";
    position: absolute;
    right: -160px;
    top: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, rgba(37, 99, 235, 0) 70%);
    pointer-events: none;
}

.pz-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 56px;
    align-items: center;
}

.pz-hero-badge {
    display: inline-block;
    padding: 7px 16px;
    margin-bottom: 20px;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.4);
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
}

.pz-hero h1 {
    font-size: clamp(30px, 4.6vw, 50px);
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}

.pz-hero h1 strong {
    color: #93c5fd;
}

.pz-hero-lead {
    margin-top: 20px;
    max-width: 540px;
    font-size: 18px;
    color: #cbd5e1;
}

.pz-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.pz-hero-login {
    margin-top: 18px;
    font-size: 14px;
    color: #94a3b8;
}

.pz-hero-login a {
    color: #93c5fd;
    font-weight: 700;
}

.pz-hero-login a:hover {
    color: #bfdbfe;
    text-decoration: underline;
}

.pz-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.pz-hero-stats li strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
}

.pz-hero-stats li span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: #94a3b8;
}

/* --- 히어로: 앱 화면 목업(순수 CSS) ----------------------------------- */

.pz-appmock {
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.pz-appmock-bar {
    display: flex;
    gap: 6px;
    padding: 11px 14px;
    background: #e2e8f0;
}

.pz-appmock-bar i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.pz-appmock-bar i:first-child {
    background: #f87171;
}

.pz-appmock-bar i:nth-child(2) {
    background: #fbbf24;
}

.pz-appmock-bar i:nth-child(3) {
    background: #34d399;
}

.pz-appmock-body {
    display: grid;
    grid-template-columns: 132px 1fr;
    min-height: 300px;
}

.pz-appmock-side {
    background: var(--pz-ink);
    padding: 14px 10px;
}

.pz-appmock-side li {
    padding: 7px 10px;
    margin-bottom: 2px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: #9ca3af;
    white-space: nowrap;
}

.pz-appmock-side li.is-active {
    background: var(--pz-brand);
    color: #ffffff;
}

.pz-appmock-main {
    padding: 16px;
}

.pz-appmock-title {
    height: 12px;
    width: 38%;
    border-radius: 4px;
    background: #cbd5e1;
    margin-bottom: 14px;
}

.pz-appmock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.pz-appmock-card {
    background: #ffffff;
    border: 1px solid var(--pz-line);
    border-radius: 8px;
    padding: 10px;
}

.pz-appmock-card b {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--pz-ink);
}

.pz-appmock-card span {
    display: block;
    margin-top: 2px;
    font-size: 10px;
    color: var(--pz-muted);
    word-break: normal;
    overflow-wrap: anywhere;
}

.pz-appmock-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 110px;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--pz-line);
    border-radius: 8px;
}

.pz-appmock-chart i {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, #60a5fa 0%, var(--pz-brand) 100%);
}

/* --- 퍼즐 ERP란? ------------------------------------------------------- */

.pz-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pz-value-card {
    padding: 30px 26px;
    border: 1px solid var(--pz-line);
    border-radius: 14px;
    background: var(--pz-panel);
}

.pz-value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--pz-soft-blue);
    color: var(--pz-brand);
}

.pz-value-icon svg {
    width: 26px;
    height: 26px;
}

.pz-value-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--pz-ink);
    margin-bottom: 10px;
}

.pz-value-card p {
    font-size: 15px;
    color: var(--pz-muted);
}

/* --- 창업 여정 --------------------------------------------------------- */

.pz-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pz-journey-step {
    position: relative;
    padding: 26px 24px;
    border: 1px solid var(--pz-line);
    border-radius: 14px;
    background: var(--pz-panel);
}

.pz-journey-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--pz-brand);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.pz-journey-step h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--pz-ink);
    margin-bottom: 8px;
}

.pz-journey-step p {
    font-size: 14px;
    color: var(--pz-muted);
    margin-bottom: 14px;
}

.pz-journey-mods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pz-journey-mods li {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--pz-soft-blue);
    color: var(--pz-brand-dark);
    font-size: 12.5px;
    font-weight: 700;
}

/* --- 기능 카탈로그(모듈 카드) ------------------------------------------ */

.pz-group {
    margin-bottom: 56px;
}

.pz-group:last-child {
    margin-bottom: 0;
}

.pz-group-head {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--pz-ink);
}

.pz-group-step {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--pz-brand);
    text-transform: uppercase;
}

.pz-group-head h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--pz-ink);
}

.pz-group-head span {
    margin-left: auto;
    font-size: 14px;
    color: var(--pz-muted);
}

.pz-module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.pz-module-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid var(--pz-line);
    border-radius: 14px;
    background: var(--pz-panel);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pz-module-card:hover {
    border-color: var(--pz-brand);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

.pz-module-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.pz-module-top h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--pz-ink);
}

.pz-module-count {
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--pz-chip-bg);
    color: var(--pz-chip-text);
    font-size: 12px;
    font-weight: 700;
}

.pz-module-card > p {
    font-size: 14px;
    color: var(--pz-muted);
    margin-bottom: 16px;
}

.pz-module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.pz-module-tags li {
    padding: 4px 10px;
    border-radius: 6px;
    background: var(--pz-bg);
    border: 1px solid var(--pz-line);
    color: var(--pz-text);
    font-size: 12.5px;
    font-weight: 600;
}

.pz-module-tags li.pz-tag-more {
    background: transparent;
    border-style: dashed;
    color: var(--pz-muted);
}

/* --- 대표 기능 깊이 소개 ------------------------------------------------ */

.pz-feature-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    padding: 44px 0;
    border-bottom: 1px solid var(--pz-line);
}

.pz-feature-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pz-section-head + .pz-feature-row {
    padding-top: 0;
}

.pz-feature-row--flip .pz-feature-text {
    order: 2;
}

.pz-feature-row--flip .pz-feature-visual {
    order: 1;
}

.pz-feature-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--pz-ink);
    margin-bottom: 12px;
}

.pz-feature-text > p {
    font-size: 16px;
    color: var(--pz-muted);
    margin-bottom: 18px;
}

.pz-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--pz-text);
}

.pz-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--pz-soft-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* 깊이 소개: 미니 비주얼(순수 CSS) */

.pz-mini {
    padding: 22px;
    border: 1px solid var(--pz-line);
    border-radius: 14px;
    background: var(--pz-panel);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.pz-mini-head {
    font-size: 13px;
    font-weight: 800;
    color: var(--pz-muted);
    margin-bottom: 14px;
}

.pz-mini-canvas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pz-mini-canvas li {
    min-height: 64px;
    padding: 8px;
    border: 1px solid var(--pz-line);
    border-radius: 8px;
    background: var(--pz-bg);
    font-size: 11.5px;
    font-weight: 700;
    color: var(--pz-muted);
}

.pz-mini-canvas li.is-hot {
    background: var(--pz-soft-blue);
    border-color: #bfdbfe;
    color: var(--pz-brand-dark);
}

.pz-mini-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 130px;
    margin-bottom: 12px;
}

.pz-mini-bars i {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: #dbeafe;
}

.pz-mini-bars i.is-hot {
    background: linear-gradient(180deg, #60a5fa 0%, var(--pz-brand) 100%);
}

.pz-mini-runway {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    background: #ecfdf5;
    font-size: 13px;
    font-weight: 700;
    color: var(--pz-success);
}

.pz-mini-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.pz-mini-kanban > li {
    padding: 10px;
    border-radius: 8px;
    background: var(--pz-bg);
    border: 1px solid var(--pz-line);
}

.pz-mini-kanban b {
    display: block;
    font-size: 11.5px;
    font-weight: 800;
    color: var(--pz-muted);
    margin-bottom: 8px;
}

.pz-mini-kanban span {
    display: block;
    padding: 8px;
    margin-bottom: 6px;
    border-radius: 6px;
    background: var(--pz-panel);
    border: 1px solid var(--pz-line);
    font-size: 11px;
    font-weight: 600;
    color: var(--pz-text);
}

.pz-mini-kanban span.is-hot {
    border-left: 3px solid var(--pz-brand);
}

/* --- 협업/보안 ---------------------------------------------------------- */

.pz-team {
    background: var(--pz-ink);
    color: #d1d5db;
}

.pz-team .pz-section-head h2 {
    color: #ffffff;
}

.pz-team .pz-section-head p {
    color: #9ca3af;
}

.pz-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pz-team-card {
    padding: 26px 22px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.pz-team-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.pz-team-card p {
    font-size: 14px;
    color: #9ca3af;
}

.pz-role-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.pz-role-chips li {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(147, 197, 253, 0.4);
    background: rgba(37, 99, 235, 0.18);
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
}

/* --- 요금제 ------------------------------------------------------------- */

.pz-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pz-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 34px 28px;
    border: 1px solid var(--pz-line);
    border-radius: 16px;
    background: var(--pz-panel);
}

.pz-price-card--featured {
    border: 2px solid var(--pz-brand);
    box-shadow: 0 18px 50px rgba(37, 99, 235, 0.12);
}

.pz-price-flag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    border-radius: 999px;
    background: var(--pz-brand);
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 800;
    white-space: nowrap;
}

.pz-price-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--pz-ink);
}

.pz-price-desc {
    margin-top: 4px;
    font-size: 14px;
    color: var(--pz-muted);
}

.pz-price-amount {
    margin: 22px 0;
    font-size: 34px;
    font-weight: 800;
    color: var(--pz-ink);
}

.pz-price-amount span {
    font-size: 15px;
    font-weight: 600;
    color: var(--pz-muted);
}

.pz-price-list {
    margin-bottom: 28px;
}

.pz-price-list li {
    position: relative;
    padding: 7px 0 7px 28px;
    font-size: 14.5px;
    color: var(--pz-text);
    border-bottom: 1px dashed var(--pz-line);
}

.pz-price-list li:last-child {
    border-bottom: none;
}

.pz-price-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--pz-soft-blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 10px no-repeat;
}

.pz-price-card .pz-btn {
    margin-top: auto;
}

.pz-price-note {
    margin-top: 26px;
    text-align: center;
    font-size: 13.5px;
    color: var(--pz-muted);
}

/* --- 최종 CTA ----------------------------------------------------------- */

.pz-cta {
    background: linear-gradient(135deg, var(--pz-brand-dark) 0%, var(--pz-brand) 60%, #3b82f6 100%);
    color: #dbeafe;
    text-align: center;
}

.pz-cta h2 {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #ffffff;
}

.pz-cta > .pz-container > p {
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 17px;
    color: #dbeafe;
}

.pz-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.pz-cta-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14.5px;
}

.pz-cta-contact a {
    color: #ffffff;
    font-weight: 700;
}

.pz-cta-contact a:hover {
    text-decoration: underline;
    color: #ffffff;
}

.pz-cta-contact span {
    color: #bfdbfe;
}

/* --- 서브페이지(탭 소개) 공통 -------------------------------------------- */

.pz-subhero {
    padding: 76px 0 60px;
    background: linear-gradient(165deg, var(--pz-soft-blue) 0%, #ffffff 75%);
    border-bottom: 1px solid var(--pz-line);
    text-align: center;
}

.pz-subhero .pz-container {
    max-width: 880px;
}

.pz-subhero h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--pz-ink);
}

.pz-subhero h1 strong {
    color: var(--pz-brand);
}

.pz-subhero-lead {
    margin: 18px auto 0;
    max-width: 680px;
    font-size: 17px;
    color: var(--pz-muted);
}

.pz-subhero .pz-hero-actions {
    justify-content: center;
}

.pz-pricing-grid--compact {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pz-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.pz-step-time {
    display: inline-block;
    margin-top: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--pz-soft-blue);
    color: var(--pz-brand-dark);
    font-size: 12.5px;
    font-weight: 700;
}

.pz-erp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pz-erp-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

/* --- 반응형 -------------------------------------------------------------- */

@media (max-width: 1023px) {
    .pz-hero-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .pz-appmock {
        max-width: 560px;
        margin: 0 auto;
    }

    .pz-value-grid,
    .pz-journey-grid,
    .pz-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .pz-feature-row {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pz-feature-row--flip .pz-feature-text {
        order: 1;
    }

    .pz-feature-row--flip .pz-feature-visual {
        order: 2;
    }
}

@media (max-width: 767px) {
    .pz-section {
        padding: 60px 0;
    }

    .pz-hero {
        padding: 64px 0 56px;
    }

    .pz-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .pz-hero-actions .pz-btn {
        flex: 1 1 100%;
    }

    .pz-value-grid,
    .pz-journey-grid,
    .pz-pricing-grid,
    .pz-team-grid,
    .pz-erp-grid,
    .pz-process-grid {
        grid-template-columns: 1fr;
    }

    .pz-subhero {
        padding: 52px 0 44px;
    }

    .pz-subhero .pz-hero-actions .pz-btn {
        flex: 1 1 100%;
    }

    .pz-module-grid {
        grid-template-columns: 1fr;
    }

    .pz-group-head {
        flex-wrap: wrap;
        gap: 6px 12px;
    }

    .pz-group-head span {
        flex-basis: 100%;
        margin-left: 0;
    }

    .pz-appmock-body {
        grid-template-columns: 108px 1fr;
    }

    .pz-price-card--featured {
        order: -1;
    }
}
