/* ── about.css  (light dashboard-style pages) ───────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
    --zh-bg: #f8fafc;
    --zh-surface: #ffffff;
    --zh-accent: #0ea5e9;
    --zh-accent-h: #0284c7;
    --zh-accent-2: #8b5cf6;
    --zh-border: rgba(15, 23, 42, 0.08);
    --zh-text: #0f172a;
    --zh-muted: #64748b;
    --zh-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.zh-minimal-page {
    background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%);
    color: var(--zh-text);
    font-family: 'DM Sans', sans-serif;
    min-height: calc(100vh - 140px);
    padding: 80px 24px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Page Badge */
.zh-page-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.14), rgba(139, 92, 246, 0.14));
    color: var(--zh-accent);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.zh-page-badge-contact {
    background: rgba(14, 165, 233, 0.12);
    color: var(--zh-accent);
    border: 1px solid rgba(14, 165, 233, 0.18);
}

/* Base typography */
.zh-minimal-page h1,
.zh-minimal-page h3 {
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ──────────────── ABOUT HERO ──────────────── */
.zh-hero {
    text-align: center;
    max-width: 860px;
    margin-bottom: 48px;
    background: var(--zh-surface);
    border: 1px solid var(--zh-border);
    border-radius: 24px;
    padding: 48px 42px;
    box-shadow: var(--zh-shadow);
}

.zh-hero h1 {
    font-size: clamp(2.6rem, 4.8vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 18px;
    color: #111827;
}

.zh-hero p {
    font-size: 1.05rem;
    color: var(--zh-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 680px;
    margin-inline: auto;
}

/* ──────────────── BUTTONS ──────────────── */
.zh-btn,
.zh-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--zh-accent), var(--zh-accent-2));
    color: #ffffff;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.22);
}

.zh-btn:hover,
.zh-link-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.28);
}

.zh-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ──────────────── ABOUT FEATURES ──────────────── */
.zh-about-page .zh-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1120px;
    width: 100%;
}

.zh-feature {
    background: var(--zh-surface);
    border: 1px solid var(--zh-border);
    border-radius: 20px;
    padding: 30px 28px;
    text-align: left;
    box-shadow: var(--zh-shadow);
}

.zh-icon {
    width: 46px;
    height: 46px;
    color: var(--zh-accent);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(139, 92, 246, 0.12));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-svg {
    width: 22px;
    height: 22px;
}

.zh-feature h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #111827;
}

.zh-feature p {
    font-size: 0.95rem;
    color: var(--zh-muted);
    line-height: 1.6;
    margin: 0;
}

/* ──────────────── CONTACT PAGE ──────────────── */
.zh-contact-page {
    padding-top: 80px;
    padding-bottom: 100px;
    justify-content: center;
}

.zh-contact-wrap {
    width: 100%;
    max-width: 760px;
    text-align: left;
    background: var(--zh-surface);
    border: 1px solid var(--zh-border);
    border-radius: 24px;
    padding: 42px;
    box-shadow: var(--zh-shadow);
}

.zh-contact-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #111827;
}

.zh-contact-subtitle {
    font-size: 1rem;
    color: var(--zh-muted);
    margin-bottom: 32px;
}

.zh-success-msg {
    margin-bottom: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 18px 20px;
    border-radius: 14px;
}

.zh-success-msg h3 {
    color: #059669;
    margin-bottom: 6px;
    font-size: 1.125rem;
}

.zh-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.zh-form-section {
    background: #f8fafc;
    border: 1px solid var(--zh-border);
    border-radius: 16px;
    padding: 20px;
}

.zh-form-section-title {
    font-size: 1rem;
    color: var(--zh-accent);
    margin: 0 0 16px 0;
    font-weight: 700;
}

.zh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Inputs */
.zh-form input,
.zh-form select,
.zh-form textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--zh-border);
    border-radius: 10px;
    color: var(--zh-text);
    font-size: 0.95rem;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: all 0.2s;
}

.zh-form select {
    color: var(--zh-muted);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.zh-form select:focus,
.zh-form select:valid {
    color: var(--zh-text);
}

.zh-form select option {
    background: #ffffff;
    color: var(--zh-text);
}

.zh-form input::placeholder,
.zh-form textarea::placeholder {
    color: #94a3b8;
}

.zh-form input:focus,
.zh-form select:focus,
.zh-form textarea:focus {
    border-color: var(--zh-accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.zh-form textarea {
    resize: vertical;
    min-height: 120px;
}

.zh-form-note {
    font-size: 0.875rem;
    color: var(--zh-muted);
    margin: -4px 0 0 0;
    text-align: center;
}

/* Submit Button Specific */
.zh-btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--zh-accent), var(--zh-accent-2));
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.22);
    transition: all 0.3s ease;
}

.zh-btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(14, 165, 233, 0.28);
}

/* Utilities */
.zh-hidden {
    display: none !important;
}

.zh-error {
    color: #ef4444;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.zh-spinner {
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ──────────────── RESPONSIVE ──────────────── */
@media (max-width: 820px) {
    .zh-about-page .zh-features {
        grid-template-columns: 1fr;
    }
    
    .zh-contact-wrap {
        padding: 32px 24px;
    }
}

@media (max-width: 600px) {
    .zh-form-row {
        grid-template-columns: 1fr;
    }

    .zh-hero h1 {
        font-size: 2.5rem;
    }

    .zh-contact-title {
        font-size: 2.5rem;
    }
}