/* ============================================================
   Zohi Partner Theme — Main Stylesheet
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand */
    --zp-blue:      #1a56e8;
    --zp-blue-dark: #1344c4;
    --zp-blue-light:#e8f0fe;
    --zp-blue-mid:  #3b7dfc;

    /* Neutrals */
    --zp-white:     #ffffff;
    --zp-bg:        #f5f7fc;
    --zp-surface:   #ffffff;
    --zp-border:    #e2e8f0;
    --zp-border-md: #cbd5e1;

    /* Text */
    --zp-text:      #0f172a;
    --zp-text-2:    #475569;
    --zp-text-3:    #94a3b8;

    /* Status */
    --zp-green:     #16a34a;
    --zp-green-bg:  #f0fdf4;
    --zp-green-bd:  #bbf7d0;
    --zp-amber:     #d97706;
    --zp-amber-bg:  #fffbeb;
    --zp-amber-bd:  #fde68a;
    --zp-red:       #dc2626;
    --zp-red-bg:    #fef2f2;
    --zp-red-bd:    #fecaca;

    /* Layout */
    --zp-radius-sm: 6px;
    --zp-radius:    10px;
    --zp-radius-lg: 14px;
    --zp-shadow:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
    --zp-shadow-md: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);

    /* Sidebar */
    --zp-sidebar-w: 260px;
    --zp-header-h:  64px;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    background: var(--zp-bg);
    color: var(--zp-text);
    line-height: 1.6;
    min-height: 100vh;
}

a { color: var(--zp-blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(22px, 4vw, 30px); font-weight: 700; line-height: 1.25; }
h2 { font-size: clamp(18px, 3vw, 24px); font-weight: 700; line-height: 1.3; }
h3 { font-size: 18px; font-weight: 600; line-height: 1.4; }
h4 { font-size: 15px; font-weight: 600; }
p  { margin-bottom: 1rem; color: var(--zp-text-2); }
p:last-child { margin-bottom: 0; }

/* ---------- LAYOUT ---------- */
.zpt-container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.zpt-section { padding: 64px 0; }
.zpt-section-sm { padding: 40px 0; }

/* ---------- HEADER ---------- */
.zpt-header {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--zp-header-h);
    background: var(--zp-white);
    border-bottom: 1px solid var(--zp-border);
    display: flex;
    align-items: center;
}
.zpt-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}
.zpt-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
    font-weight: 700;
    color: var(--zp-blue);
    text-decoration: none;
    flex-shrink: 0;
}
.zpt-logo-icon {
    width: 36px; height: 36px;
    background: var(--zp-blue);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
}
.zpt-logo-icon svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.zpt-nav { display: flex; align-items: center; gap: 4px; }
.zpt-nav a {
    padding: 7px 14px;
    border-radius: var(--zp-radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--zp-text-2);
    transition: background .15s, color .15s;
    white-space: nowrap;
}
.zpt-nav a:hover, .zpt-nav a.current { background: var(--zp-blue-light); color: var(--zp-blue); text-decoration: none; }
.zpt-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.zpt-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--zp-blue-light);
    color: var(--zp-blue);
    font-size: 13px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
}
.zpt-burger {
    display: none;
    width: 36px; height: 36px;
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius-sm);
    background: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.zpt-burger span { display: block; width: 18px; height: 2px; background: var(--zp-text-2); border-radius: 2px; transition: .2s; }

/* Mobile nav drawer */
.zpt-nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
}
.zpt-nav-drawer.open { display: block; }
.zpt-nav-drawer-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.zpt-nav-drawer-panel {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 280px;
    background: var(--zp-white);
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.zpt-nav-drawer-panel a { display: block; padding: 10px 14px; border-radius: var(--zp-radius-sm); font-size: 15px; font-weight: 500; color: var(--zp-text); }
.zpt-nav-drawer-panel a:hover { background: var(--zp-blue-light); color: var(--zp-blue); text-decoration: none; }
.zpt-drawer-close { align-self: flex-end; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--zp-text-2); margin-bottom: 8px; }

/* ---------- FOOTER ---------- */
.zpt-footer {
    background: #0f172a;
    color: #94a3b8;
    margin-top: auto;
}
.zpt-footer-top {
    padding: 52px 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.zpt-footer-brand .zpt-logo { color: #fff; margin-bottom: 14px; }
.zpt-footer-brand p { font-size: 14px; color: #64748b; line-height: 1.7; }
.zpt-footer-col h4 { font-size: 13px; font-weight: 600; color: #e2e8f0; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px; }
.zpt-footer-col a { display: block; font-size: 14px; color: #64748b; margin-bottom: 8px; transition: color .15s; }
.zpt-footer-col a:hover { color: #fff; text-decoration: none; }
.zpt-footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}
.zpt-footer-bottom a { color: #64748b; }
.zpt-footer-bottom a:hover { color: #fff; }

/* ---------- BUTTONS ---------- */
.zpt-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: var(--zp-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, transform .1s, box-shadow .15s;
    border: 1.5px solid transparent;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}
.zpt-btn:active { transform: scale(.98); }
.zpt-btn:hover { text-decoration: none; }
.zpt-btn-primary { background: var(--zp-blue); color: #fff; border-color: var(--zp-blue); }
.zpt-btn-primary:hover { background: var(--zp-blue-dark); border-color: var(--zp-blue-dark); color: #fff; }
.zpt-btn-outline { background: transparent; color: var(--zp-blue); border-color: var(--zp-blue); }
.zpt-btn-outline:hover { background: var(--zp-blue-light); color: var(--zp-blue); }
.zpt-btn-ghost { background: transparent; color: var(--zp-text-2); border-color: var(--zp-border); }
.zpt-btn-ghost:hover { background: var(--zp-bg); color: var(--zp-text); }
.zpt-btn-sm { padding: 6px 14px; font-size: 13px; }
.zpt-btn-lg { padding: 13px 28px; font-size: 16px; border-radius: var(--zp-radius-lg); }
.zpt-btn-danger { background: var(--zp-red-bg); color: var(--zp-red); border-color: var(--zp-red-bd); }
.zpt-btn-danger:hover { background: var(--zp-red); color: #fff; }
.zpt-btn-icon { width: 34px; height: 34px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--zp-radius-sm); background: transparent; border: 1px solid var(--zp-border); cursor: pointer; color: var(--zp-text-2); transition: .15s; font-size: 15px; }
.zpt-btn-icon:hover { background: var(--zp-bg); color: var(--zp-text); }

/* ---------- BADGES ---------- */
.zpt-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.zpt-badge-blue   { background: var(--zp-blue-light); color: var(--zp-blue); }
.zpt-badge-green  { background: var(--zp-green-bg); color: var(--zp-green); border: 1px solid var(--zp-green-bd); }
.zpt-badge-amber  { background: var(--zp-amber-bg); color: var(--zp-amber); border: 1px solid var(--zp-amber-bd); }
.zpt-badge-red    { background: var(--zp-red-bg); color: var(--zp-red); border: 1px solid var(--zp-red-bd); }
.zpt-badge-gray   { background: #f1f5f9; color: #475569; }
.zpt-badge-purple { background: #f5f3ff; color: #7c3aed; }

/* ---------- CARDS ---------- */
.zpt-card {
    background: var(--zp-white);
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius-lg);
    padding: 24px;
    box-shadow: var(--zp-shadow);
}
.zpt-card-sm { padding: 16px 18px; border-radius: var(--zp-radius); }

/* ---------- FORM ELEMENTS ---------- */
.zpt-form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.zpt-label { font-size: 13px; font-weight: 600; color: var(--zp-text-2); }
.zpt-label .req { color: var(--zp-red); }
.zpt-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--zp-border);
    border-radius: var(--zp-radius-sm);
    background: var(--zp-white);
    color: var(--zp-text);
    font-size: 14px;
    transition: border .15s, box-shadow .15s;
    line-height: 1.5;
}
.zpt-input::placeholder { color: var(--zp-text-3); }
.zpt-input:focus { outline: none; border-color: var(--zp-blue); box-shadow: 0 0 0 3px rgba(26,86,232,.12); }
textarea.zpt-input { resize: vertical; min-height: 80px; }
select.zpt-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.zpt-input-hint { font-size: 12px; color: var(--zp-text-3); }

/* Form grid */
.zpt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.zpt-form-grid .full { grid-column: 1 / -1; }

/* ---------- NOTICES ---------- */
.zpt-notice {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--zp-radius);
    border: 1px solid;
    margin-bottom: 20px;
    font-size: 14px;
}
.zpt-notice-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.zpt-notice-success { background: var(--zp-green-bg); border-color: var(--zp-green-bd); color: #14532d; }
.zpt-notice-warn    { background: var(--zp-amber-bg); border-color: var(--zp-amber-bd); color: #78350f; }
.zpt-notice-info    { background: var(--zp-blue-light); border-color: #bfdbfe; color: #1e3a8a; }
.zpt-notice-error   { background: var(--zp-red-bg); border-color: var(--zp-red-bd); color: #7f1d1d; }

/* ---------- TABLES ---------- */
.zpt-table-wrap { overflow-x: auto; border-radius: var(--zp-radius-lg); border: 1px solid var(--zp-border); }
.zpt-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.zpt-table th {
    background: #f8fafc;
    padding: 10px 14px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: var(--zp-text-2);
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid var(--zp-border);
    white-space: nowrap;
}
.zpt-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: var(--zp-text);
}
.zpt-table tbody tr:last-child td { border-bottom: none; }
.zpt-table tbody tr:hover td { background: #fafbff; }
.zpt-table .amount { font-weight: 700; color: var(--zp-green); }

/* ---------- STATS CARDS ---------- */
.zpt-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.zpt-stat-card {
    background: var(--zp-white);
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius-lg);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-shadow: var(--zp-shadow);
}
.zpt-stat-icon {
    width: 44px; height: 44px;
    border-radius: var(--zp-radius);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.zpt-stat-icon.blue   { background: var(--zp-blue-light); color: var(--zp-blue); }
.zpt-stat-icon.green  { background: var(--zp-green-bg); color: var(--zp-green); }
.zpt-stat-icon.amber  { background: var(--zp-amber-bg); color: var(--zp-amber); }
.zpt-stat-icon.purple { background: #f5f3ff; color: #7c3aed; }
.zpt-stat-label { font-size: 12px; font-weight: 600; color: var(--zp-text-3); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.zpt-stat-value { font-size: 24px; font-weight: 700; color: var(--zp-text); line-height: 1.1; }
.zpt-stat-value.green  { color: var(--zp-green); }
.zpt-stat-value.amber  { color: var(--zp-amber); }

/* ---------- TYPE TABS ---------- */
.zpt-type-tabs { display: flex; gap: 8px; margin-bottom: 24px; padding: 4px; background: var(--zp-bg); border-radius: var(--zp-radius); }
.zpt-type-tab {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: var(--zp-radius-sm);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--zp-text-2);
    transition: .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}
.zpt-type-tab.active { background: var(--zp-white); color: var(--zp-blue); box-shadow: var(--zp-shadow); }

/* ---------- IBAN ITEM ---------- */
.zpt-iban-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius);
    margin-bottom: 8px;
}
.zpt-iban-icon { width: 36px; height: 36px; background: var(--zp-blue-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.zpt-iban-info { flex: 1; }
.zpt-iban-info strong { font-size: 14px; font-weight: 600; display: block; }
.zpt-iban-info code { font-size: 12px; color: var(--zp-text-2); letter-spacing: .02em; }
.zpt-iban-info small { font-size: 12px; color: var(--zp-text-3); display: block; margin-top: 2px; }

/* ---------- SECTION HEADER ---------- */
.zpt-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    gap: 12px;
}
.zpt-section-head h3 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.zpt-section-head h3 .icon { font-size: 18px; }

/* ---------- PAGE HERO ---------- */
.zpt-page-hero {
    background: var(--zp-white);
    border-bottom: 1px solid var(--zp-border);
    padding: 32px 0;
}
.zpt-page-hero-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.zpt-page-hero h1 { font-size: 26px; margin-bottom: 6px; }
.zpt-page-hero p { font-size: 15px; color: var(--zp-text-2); margin: 0; }
.zpt-breadcrumb { font-size: 13px; color: var(--zp-text-3); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.zpt-breadcrumb a { color: var(--zp-text-3); }
.zpt-breadcrumb a:hover { color: var(--zp-blue); }

/* ---------- HOME PAGE ---------- */
.zpt-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #1a56e8 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.zpt-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.zpt-hero-section h1 { font-size: clamp(28px, 5vw, 48px); color: #fff; margin-bottom: 16px; position: relative; }
.zpt-hero-section p { font-size: 18px; color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 32px; position: relative; }
.zpt-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.zpt-hero-btn-white { background: #fff; color: var(--zp-blue); border: none; }
.zpt-hero-btn-white:hover { background: #f0f5ff; color: var(--zp-blue-dark); }
.zpt-hero-btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
.zpt-hero-btn-outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Features grid */
.zpt-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zpt-feature-card {
    background: var(--zp-white);
    border: 1px solid var(--zp-border);
    border-radius: var(--zp-radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--zp-shadow);
    transition: transform .2s, box-shadow .2s;
}
.zpt-feature-card:hover { transform: translateY(-3px); box-shadow: var(--zp-shadow-md); }
.zpt-feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}
.zpt-feature-card h3 { font-size: 17px; margin-bottom: 10px; }
.zpt-feature-card p { font-size: 14px; color: var(--zp-text-2); margin: 0; }

/* Steps */
.zpt-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.zpt-steps::before { content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px; background: var(--zp-border); z-index: 0; }
.zpt-step { text-align: center; position: relative; z-index: 1; }
.zpt-step-num {
    width: 48px; height: 48px;
    background: var(--zp-white);
    border: 2px solid var(--zp-blue);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; color: var(--zp-blue);
    margin: 0 auto 14px;
}
.zpt-step h4 { font-size: 15px; margin-bottom: 6px; }
.zpt-step p { font-size: 13px; color: var(--zp-text-2); margin: 0; }

/* CTA section */
.zpt-cta-section { background: var(--zp-blue); color: #fff; text-align: center; padding: 60px 0; }
.zpt-cta-section h2 { color: #fff; margin-bottom: 14px; }
.zpt-cta-section p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 28px; }

/* ---------- PARTNER PANEL LAYOUT ---------- */
.zpt-panel-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; padding: 28px 0; }
.zpt-panel-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.zpt-panel-sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: var(--zp-radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--zp-text-2);
    cursor: pointer;
    transition: .15s;
    text-decoration: none;
}
.zpt-panel-sidebar-item:hover { background: var(--zp-white); color: var(--zp-text); text-decoration: none; }
.zpt-panel-sidebar-item.active { background: var(--zp-blue-light); color: var(--zp-blue); font-weight: 600; }
.zpt-panel-sidebar-item .icon { font-size: 17px; width: 20px; text-align: center; }
.zpt-panel-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }

/* Upload area */
.zpt-upload-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border: 1px dashed var(--zp-border-md);
    border-radius: var(--zp-radius-sm);
    font-size: 12px;
    color: var(--zp-text-2);
    cursor: pointer;
    transition: .15s;
}
.zpt-upload-trigger:hover { border-color: var(--zp-blue); color: var(--zp-blue); background: var(--zp-blue-light); }

/* ---------- LOADING ---------- */
.zpt-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid var(--zp-border); border-top-color: var(--zp-blue); border-radius: 50%; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- DIVIDER ---------- */
.zpt-divider { height: 1px; background: var(--zp-border); margin: 24px 0; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet (≤ 900px) */
@media (max-width: 900px) {
    .zpt-stats-grid { grid-template-columns: 1fr 1fr; }
    .zpt-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .zpt-features { grid-template-columns: 1fr 1fr; }
    .zpt-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .zpt-steps::before { display: none; }
    .zpt-panel-layout { grid-template-columns: 1fr; }
    .zpt-panel-sidebar { flex-direction: row; flex-wrap: wrap; gap: 4px; background: var(--zp-white); padding: 10px; border-radius: var(--zp-radius-lg); border: 1px solid var(--zp-border); }
    .zpt-panel-sidebar-item { padding: 7px 12px; font-size: 13px; }
    .zpt-form-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile (≤ 640px) */
@media (max-width: 640px) {
    .zpt-container { padding: 0 16px; }
    .zpt-section { padding: 40px 0; }
    .zpt-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .zpt-stat-value { font-size: 20px; }
    .zpt-features { grid-template-columns: 1fr; }
    .zpt-steps { grid-template-columns: 1fr; }
    .zpt-footer-top { grid-template-columns: 1fr; gap: 24px; }
    .zpt-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .zpt-form-grid { grid-template-columns: 1fr; }
    .zpt-form-grid .full { grid-column: 1; }
    .zpt-type-tabs { gap: 6px; }
    .zpt-hero-section { padding: 50px 0; }
    .zpt-nav { display: none; }
    .zpt-burger { display: flex; }
    .zpt-table th:nth-child(n+5), .zpt-table td:nth-child(n+5) { display: none; }
    .zpt-page-hero { padding: 20px 0; }
    .zpt-card { padding: 16px; }
}

/* Very small (≤ 400px) */
@media (max-width: 400px) {
    .zpt-stats-grid { grid-template-columns: 1fr; }
    .zpt-type-tab span { display: none; }
}
