/**
 * psychologist_platform modul — modern frontend CSS.
 *
 * Brand-paletta: Soft Sage Green + Beige + Terracotta accent (Irány A).
 *  Primary:    #7BA89F  → Primary-dark: #4F7A72  → Primary-darker: #2C5651
 *  Secondary:  #E8DDC9  warm beige
 *  Accent:     #D67D58  terracotta
 *  Text:       #1F2926  deep forest
 *  Background: #FAFAF7  off-white
 *
 * Tipográfia: Inter (variable) + Crimson Pro (serif quote).
 * Modern: glassmorphism nav, mesh-gradient hero, scale + lift hover,
 * fluid clamp() méretezés, rounded pill-gombok, subtle shadow-rétegek.
 * Mobile-first, WCAG 2.1 AA, NEM stock-fotó-érzet, NEM klinikai-orvosi.
 *
 * v5.31.1+
 */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
    --psy-primary:        #7BA89F;
    --psy-primary-dark:   #4F7A72;
    --psy-primary-darker: #2C5651;
    --psy-secondary:      #E8DDC9;
    --psy-secondary-soft: #F2EAD9;
    --psy-accent:         #D67D58;
    --psy-accent-dark:    #B5563B;
    --psy-text:           #1F2926;
    --psy-text-muted:     #5C6863;
    --psy-text-soft:      #8A938F;
    --psy-bg:             #FAFAF7;
    --psy-bg-deep:        #F0EDE3;
    --psy-card-bg:        #FFFFFF;
    --psy-border:         #E5E0D5;
    --psy-border-soft:    #F0EBE0;
    --psy-disclaimer:     #A8907D;
    --psy-crisis:         #C44E4E;
    --psy-success:        #6c9b7a;

    --psy-radius-sm:  8px;
    --psy-radius:     14px;
    --psy-radius-lg:  20px;
    --psy-radius-xl:  28px;

    --psy-shadow-xs: 0 1px 2px rgba(31, 41, 38, 0.04);
    --psy-shadow-sm: 0 2px 8px rgba(31, 41, 38, 0.05);
    --psy-shadow:    0 4px 16px rgba(31, 41, 38, 0.06);
    --psy-shadow-lg: 0 12px 36px rgba(31, 41, 38, 0.10);
    --psy-shadow-xl: 0 24px 64px rgba(31, 41, 38, 0.14);

    --psy-font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --psy-font-serif: 'Crimson Pro', 'Crimson Text', Georgia, serif;

    --psy-ease:     cubic-bezier(0.16, 1, 0.3, 1);
    --psy-ease-out: cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.psy-page {
    font-family: var(--psy-font-sans);
    color: var(--psy-text);
    background: var(--psy-bg);
    margin: 0;
    line-height: 1.6;
    font-size: 17px;
    font-feature-settings: "kern", "liga", "calt", "ss01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--psy-primary); color: white; }
img { display: block; max-width: 100%; height: auto; }

.psy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 80px;
}

/* ============================== TIPOGRÁFIA ============================== */

.psy-h1 {
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin: 0 0 20px;
    color: var(--psy-text);
}
.psy-h2 {
    font-size: clamp(24px, 3.6vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin: 0 0 16px;
    color: var(--psy-text);
}
.psy-h3 {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
}
.psy-lead {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--psy-text-muted);
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 640px;
}
/* Listázó / kalkulátor / eredmény / EAP fejlécek mind center-align: a
   .psy-lead margin-auto-ja középre helyezi a max-width: 640px-es bloblot,
   és az aria-leírást stabilan centrálja a h1 alatt. */
.psy-page-header,
.psy-calc-header,
.psy-result-header,
.psy-eap-hero,
.psy-empty-state {
    text-align: center;
}

/* ============================== NAV (glassmorphism) ============================== */

.psy-nav-bar {
    background: rgba(250, 250, 247, 0.8);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--psy-border-soft);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.psy-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.psy-nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: var(--psy-text);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.psy-nav-links {
    display: flex;
    gap: 32px;
}
.psy-nav-links a {
    color: var(--psy-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s var(--psy-ease);
}
.psy-nav-links a:hover { color: var(--psy-text); }

@media (max-width: 768px) {
    .psy-nav-cta, .psy-nav-links { display: none; }
}

/* ============================== GOMBOK (modern pill) ============================== */

.psy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 100px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--psy-ease), box-shadow 0.25s var(--psy-ease), background 0.25s var(--psy-ease), color 0.2s;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: -0.01em;
}
.psy-btn-primary {
    background: var(--psy-primary-dark);
    color: white;
    box-shadow: 0 1px 2px rgba(31, 41, 38, 0.12), 0 4px 14px rgba(79, 122, 114, 0.28);
}
.psy-btn-primary:hover {
    background: var(--psy-primary-darker);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(31, 41, 38, 0.18), 0 12px 32px rgba(79, 122, 114, 0.35);
}
.psy-btn-secondary {
    background: white;
    color: var(--psy-text);
    border: 1px solid var(--psy-border);
    box-shadow: var(--psy-shadow-xs);
}
.psy-btn-secondary:hover {
    background: var(--psy-bg);
    border-color: var(--psy-primary);
    transform: translateY(-1px);
}
.psy-btn-ghost {
    background: transparent;
    color: var(--psy-text-muted);
    padding: 14px 16px;
}
.psy-btn-ghost:hover { color: var(--psy-text); }
.psy-btn-large {
    padding: 18px 36px;
    font-size: 17px;
}
.psy-btn-card { width: 100%; }

/* ============================== HERO (mesh-gradient bg) ============================== */

.psy-landing-hero {
    position: relative;
    padding: clamp(80px, 14vw, 160px) 24px clamp(60px, 10vw, 120px);
    overflow: hidden;
    background: var(--psy-bg);
    isolation: isolate;
}
.psy-landing-hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 65%;
    height: 90%;
    background: radial-gradient(circle, rgba(123, 168, 159, 0.22) 0%, rgba(232, 221, 201, 0.10) 50%, transparent 75%);
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: -1;
}
.psy-landing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 55%;
    height: 80%;
    background: radial-gradient(circle, rgba(214, 125, 88, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: -1;
}
.psy-hero-content {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}
.psy-hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--psy-primary-darker);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid rgba(123, 168, 159, 0.22);
    margin: 0 0 28px;
}
.psy-hero-title {
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--psy-text);
    margin: 0 0 24px;
}
.psy-hero-sub {
    font-size: clamp(18px, 2.4vw, 22px);
    color: var(--psy-text-muted);
    line-height: 1.5;
    margin: 0 auto 40px;
    max-width: 640px;
}
.psy-hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================== PILLÉREK ============================== */

.psy-landing-pillars {
    padding: clamp(60px, 10vw, 120px) 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.psy-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 48px;
}
.psy-pillar-card {
    position: relative;
    background: white;
    border: 1px solid var(--psy-border-soft);
    border-radius: var(--psy-radius-lg);
    padding: 32px 24px 28px;
    text-decoration: none;
    color: var(--psy-text);
    text-align: left;
    transition: all 0.3s var(--psy-ease);
    overflow: hidden;
    box-shadow: var(--psy-shadow-xs);
}
.psy-pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--psy-primary), var(--psy-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--psy-ease);
}
.psy-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--psy-shadow-lg);
    border-color: rgba(123, 168, 159, 0.35);
}
.psy-pillar-card:hover::before { transform: scaleX(1); }
.psy-pillar-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.psy-pillar-card p {
    margin: 0;
    color: var(--psy-text-muted);
    font-size: 14px;
    line-height: 1.5;
}
.psy-pillar-arrow {
    position: absolute;
    top: 32px;
    right: 24px;
    color: var(--psy-primary);
    font-size: 18px;
    transition: transform 0.3s var(--psy-ease);
}
.psy-pillar-card:hover .psy-pillar-arrow { transform: translateX(4px); }

/* ============================== HOGYAN MŰKÖDIK ============================== */

.psy-landing-how {
    background: var(--psy-bg-deep);
    padding: clamp(60px, 10vw, 120px) 24px;
    text-align: center;
}
.psy-how-steps {
    list-style: none;
    padding: 0;
    margin: 48px auto 0;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
}
.psy-how-steps li {
    background: white;
    border-radius: var(--psy-radius-lg);
    padding: 36px 28px;
    box-shadow: var(--psy-shadow-sm);
    position: relative;
    transition: all 0.3s var(--psy-ease);
}
.psy-how-steps li:hover {
    transform: translateY(-4px);
    box-shadow: var(--psy-shadow-lg);
}
.psy-how-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--psy-primary), var(--psy-primary-dark));
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(79, 122, 114, 0.3);
}
.psy-how-steps h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.psy-how-steps p {
    margin: 0;
    color: var(--psy-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ============================== FEATURED + CARD GRID ============================== */

.psy-landing-featured {
    padding: clamp(60px, 10vw, 120px) 24px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.psy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 48px 0;
    text-align: left;
}
.psy-card {
    background: var(--psy-card-bg);
    border-radius: var(--psy-radius-lg);
    overflow: hidden;
    transition: all 0.35s var(--psy-ease);
    box-shadow: var(--psy-shadow-sm);
    border: 1px solid var(--psy-border-soft);
    display: flex;
    flex-direction: column;
}
.psy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--psy-shadow-lg);
    border-color: rgba(123, 168, 159, 0.3);
}
.psy-card-photo {
    position: relative;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--psy-secondary), var(--psy-bg-deep));
    overflow: hidden;
}
.psy-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--psy-ease);
}
.psy-card:hover .psy-card-photo img { transform: scale(1.05); }
.psy-verified-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--psy-success);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(31, 41, 38, 0.10);
}
.psy-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.psy-card-name {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.psy-card-title { margin: 0; color: var(--psy-text-muted); font-size: 14px; }
.psy-card-spec {
    margin: 4px 0;
    font-size: 13px;
    color: var(--psy-primary-dark);
    line-height: 1.4;
}
.psy-card-meta {
    margin: 12px 0 16px;
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--psy-text-muted);
}
.psy-card-rate { font-weight: 600; color: var(--psy-text); }

.psy-landing-all-link a {
    color: var(--psy-primary-dark);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: color 0.2s;
}
.psy-landing-all-link a:hover { color: var(--psy-primary-darker); }

/* ============================== TRUST ============================== */

.psy-landing-trust {
    background: white;
    padding: clamp(60px, 10vw, 120px) 24px;
}
.psy-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 48px auto 0;
    max-width: 1100px;
}
.psy-trust-item {
    padding: 28px;
    border-left: 3px solid var(--psy-primary);
    background: linear-gradient(90deg, rgba(123, 168, 159, 0.05), transparent);
    border-radius: 0 var(--psy-radius) var(--psy-radius) 0;
}
.psy-trust-item h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.psy-trust-item p {
    margin: 0;
    color: var(--psy-text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* ============================== FINAL CTA ============================== */

.psy-landing-final-cta {
    background: linear-gradient(135deg, var(--psy-primary-dark) 0%, var(--psy-primary-darker) 100%);
    color: white;
    text-align: center;
    padding: clamp(80px, 12vw, 140px) 24px;
    position: relative;
    overflow: hidden;
}
.psy-landing-final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.10) 0%, transparent 60%);
    pointer-events: none;
}
.psy-landing-final-cta h2 {
    color: white;
    font-size: clamp(28px, 4.5vw, 44px);
    margin: 0 0 16px;
    position: relative;
}
.psy-landing-final-cta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(17px, 2vw, 19px);
    margin: 0 0 32px;
    position: relative;
}
.psy-landing-final-cta .psy-btn-primary {
    background: white;
    color: var(--psy-primary-darker);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
}
.psy-landing-final-cta .psy-btn-primary:hover {
    background: var(--psy-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

/* ============================== FOOTER ============================== */

.psy-footer {
    background: var(--psy-text);
    color: rgba(255,255,255,0.85);
    padding: 80px 24px 28px;
}
.psy-footer-inner { max-width: 1200px; margin: 0 auto; }
.psy-footer-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.psy-footer-col h3 {
    color: white;
    font-size: 13px;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.psy-footer-col ul { list-style: none; padding: 0; margin: 0; }
.psy-footer-col li { margin-bottom: 10px; }
.psy-footer-col a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.psy-footer-col a:hover { color: white; }
.psy-footer-crisis li { font-size: 14px; }
.psy-footer-crisis strong { color: white; display: block; margin-bottom: 2px; }
.psy-footer-bottom {
    padding-top: 28px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.psy-footer-bottom a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.psy-footer-bottom a:hover { color: white; }
.psy-footer-bottom p { margin: 4px 0; }

/* ============================== LISTÁZÓ + FILTERS ============================== */

.psy-page-header { text-align: center; margin: 32px 0 48px; }

.psy-filter-bar {
    background: white;
    border: 1px solid var(--psy-border-soft);
    border-radius: var(--psy-radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    align-items: end;
    margin-bottom: 32px;
    box-shadow: var(--psy-shadow-sm);
}
.psy-filter-group { display: flex; flex-direction: column; gap: 6px; }
.psy-filter-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--psy-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.psy-filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}
.psy-result-count {
    color: var(--psy-text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}
.psy-empty-state {
    background: white;
    border: 1px dashed var(--psy-border);
    border-radius: var(--psy-radius-lg);
    padding: 64px 24px;
    text-align: center;
}
.psy-empty-state h2 { font-size: 20px; }
.psy-empty-state p { margin-bottom: 24px; color: var(--psy-text-muted); }

/* ============================== FORM (általános) ============================== */

.psy-input,
.psy-select,
.psy-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--psy-border);
    border-radius: var(--psy-radius);
    background: white;
    font-family: inherit;
    font-size: 15px;
    color: var(--psy-text);
    box-sizing: border-box;
    transition: border-color 0.2s var(--psy-ease), box-shadow 0.2s var(--psy-ease);
}
.psy-input:focus,
.psy-select:focus,
.psy-textarea:focus {
    outline: none;
    border-color: var(--psy-primary);
    box-shadow: 0 0 0 4px rgba(123, 168, 159, 0.15);
}
.psy-textarea { min-height: 120px; resize: vertical; line-height: 1.5; }

.psy-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.psy-form-row label {
    font-weight: 500;
    font-size: 14px;
    color: var(--psy-text);
}
.psy-form-hint {
    font-size: 13px;
    color: var(--psy-text-muted);
    margin-top: 4px;
    line-height: 1.4;
}

.psy-checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    cursor: pointer;
}
.psy-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--psy-primary);
}
.psy-consent {
    background: var(--psy-secondary-soft);
    padding: 14px 16px;
    border-radius: var(--psy-radius);
    margin: 18px 0;
    font-size: 14px;
}
.psy-consent a { color: var(--psy-primary-dark); }

.psy-radio-group { display: flex; flex-direction: column; gap: 10px; }
.psy-radio {
    display: flex;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--psy-border);
    border-radius: var(--psy-radius);
    cursor: pointer;
    transition: all 0.2s var(--psy-ease);
}
.psy-radio:hover {
    border-color: var(--psy-primary);
    background: rgba(123, 168, 159, 0.04);
}
.psy-radio input[type="radio"] {
    margin-top: 3px;
    accent-color: var(--psy-primary);
}

.psy-form-result {
    margin-top: 18px;
    padding: 16px;
    border-radius: var(--psy-radius);
    font-size: 14px;
}
.psy-form-result.success {
    background: rgba(108, 155, 122, 0.10);
    color: var(--psy-success);
    border: 1px solid rgba(108, 155, 122, 0.3);
}
.psy-form-result.error {
    background: rgba(196, 78, 78, 0.10);
    color: var(--psy-crisis);
    border: 1px solid rgba(196, 78, 78, 0.3);
}

/* ============================== SZAKEMBER PROFIL ============================== */

.psy-profile-container { max-width: 920px; }
.psy-profile-header {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 720px) {
    .psy-profile-header { grid-template-columns: 1fr; text-align: center; gap: 24px; }
}
.psy-profile-photo {
    aspect-ratio: 1;
    border-radius: var(--psy-radius-xl);
    overflow: hidden;
    background: var(--psy-secondary);
    box-shadow: var(--psy-shadow);
}
.psy-profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.psy-profile-title { font-size: 18px; color: var(--psy-text-muted); margin: 0 0 12px; }
.psy-profile-verified { margin: 8px 0; }
.psy-verified-large {
    position: static;
    display: inline-block;
    font-size: 13px;
    padding: 6px 14px;
    margin-right: 8px;
    background: var(--psy-success);
    color: white;
    box-shadow: none;
}
.psy-verified-by { font-size: 13px; color: var(--psy-text-muted); }

.psy-profile-badges {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.psy-badge {
    background: var(--psy-secondary);
    color: var(--psy-text);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
}

.psy-profile-rate { font-size: 18px; margin: 16px 0 8px; }
.psy-profile-rate strong {
    color: var(--psy-primary-darker);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.psy-profile-modes {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--psy-text-muted);
    font-size: 14px;
    margin: 0;
}
.psy-profile-modes span:not(:last-child)::after {
    content: '·';
    margin-left: 12px;
    color: var(--psy-border);
}

.psy-profile-section {
    background: white;
    border-radius: var(--psy-radius-lg);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--psy-shadow-sm);
    border: 1px solid var(--psy-border-soft);
}
.psy-profile-section h2 { margin-top: 0; }
.psy-profile-bio { font-size: 16px; line-height: 1.7; color: var(--psy-text); margin: 0; }

.psy-spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.psy-spec-item {
    padding: 6px 14px;
    background: var(--psy-bg);
    border: 1px solid var(--psy-border);
    border-radius: 100px;
    font-size: 14px;
    color: var(--psy-text);
}
.psy-spec-primary {
    background: var(--psy-primary);
    color: white;
    border-color: var(--psy-primary);
    font-weight: 500;
}

.psy-booking-intro { color: var(--psy-text-muted); font-size: 15px; margin-bottom: 16px; }
.psy-slots-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}
.psy-slot-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    background: var(--psy-bg);
    border: 1px solid var(--psy-border);
    border-radius: var(--psy-radius);
    text-decoration: none;
    color: var(--psy-text);
    transition: all 0.2s var(--psy-ease);
}
.psy-slot-btn:hover {
    background: var(--psy-primary);
    color: white;
    border-color: var(--psy-primary);
    transform: translateY(-2px);
    box-shadow: var(--psy-shadow);
}
.psy-slot-date { font-weight: 600; font-size: 15px; }
.psy-slot-mode { font-size: 13px; color: var(--psy-text-muted); }
.psy-slot-btn:hover .psy-slot-mode { color: rgba(255,255,255,0.85); }

.psy-no-slots {
    padding: 28px;
    background: var(--psy-bg);
    border: 1px dashed var(--psy-border);
    border-radius: var(--psy-radius);
    color: var(--psy-text-muted);
    text-align: center;
}

.psy-disclaimer {
    background: var(--psy-bg-deep);
    border-left: 4px solid var(--psy-disclaimer);
    padding: 16px 20px;
    border-radius: 0 var(--psy-radius) var(--psy-radius) 0;
    margin-top: 24px;
    font-size: 14px;
    color: var(--psy-text-muted);
    line-height: 1.5;
}

.psy-trust-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
}
.psy-trust-list li {
    padding: 12px 16px;
    background: var(--psy-bg);
    border-radius: var(--psy-radius);
    font-size: 14px;
    color: var(--psy-text);
}

/* ============================== KALKULÁTOR ============================== */

.psy-calc-container { max-width: 720px; }
.psy-calc-header { text-align: center; margin: 32px 0 40px; }
.psy-calc-eyebrow {
    color: var(--psy-primary-darker);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin: 0 0 12px;
}
.psy-calc-disclaimer {
    background: var(--psy-secondary-soft);
    border-radius: var(--psy-radius);
    padding: 18px 22px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.5;
}
.psy-calc-disclaimer p { margin: 0 0 8px; }
.psy-calc-disclaimer p:last-child { margin: 0; }

.psy-calc-form {
    background: white;
    border-radius: var(--psy-radius-xl);
    padding: 40px;
    box-shadow: var(--psy-shadow);
    border: 1px solid var(--psy-border-soft);
}
@media (max-width: 600px) { .psy-calc-form { padding: 24px; } }

.psy-calc-progress {
    background: var(--psy-bg-deep);
    height: 6px;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 36px;
}
.psy-calc-progress-bar {
    background: linear-gradient(90deg, var(--psy-primary), var(--psy-primary-dark));
    height: 100%;
    width: 0;
    border-radius: 100px;
    transition: width 0.4s var(--psy-ease);
}

.psy-calc-question { border: none; padding: 0; margin: 0 0 24px; }
.psy-calc-q-text {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 24px;
    display: block;
    color: var(--psy-text);
    letter-spacing: -0.01em;
}
.psy-calc-options { display: flex; flex-direction: column; gap: 12px; }
.psy-calc-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--psy-bg);
    border: 2px solid transparent;
    border-radius: var(--psy-radius);
    cursor: pointer;
    transition: all 0.2s var(--psy-ease);
    font-size: 16px;
}
.psy-calc-option:hover {
    border-color: rgba(123, 168, 159, 0.4);
    background: rgba(123, 168, 159, 0.04);
}
.psy-calc-option input[type="radio"] {
    margin: 0;
    width: 20px;
    height: 20px;
    accent-color: var(--psy-primary);
}
.psy-calc-option:has(input[type="radio"]:checked) {
    background: rgba(123, 168, 159, 0.10);
    border-color: var(--psy-primary);
}

.psy-calc-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    gap: 12px;
}
.psy-calc-result {
    background: white;
    border-radius: var(--psy-radius-lg);
    padding: 32px;
    margin-top: 24px;
    box-shadow: var(--psy-shadow);
}

/* ============================== EREDMÉNY ============================== */

.psy-result-header { text-align: center; margin: 32px 0 48px; }
.psy-result-eyebrow {
    color: var(--psy-primary-darker);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin: 0 0 12px;
}
.psy-result-tips {
    background: white;
    border-radius: var(--psy-radius-lg);
    padding: 36px;
    margin-bottom: 32px;
    box-shadow: var(--psy-shadow-sm);
    border: 1px solid var(--psy-border-soft);
}
.psy-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.psy-tip-card {
    background: var(--psy-bg);
    padding: 24px;
    border-radius: var(--psy-radius);
    border-left: 3px solid var(--psy-accent);
}
.psy-tip-card h3 { margin: 0 0 10px; font-size: 17px; font-weight: 600; }
.psy-tip-card p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--psy-text-muted); }
.psy-tip-disclaimer {
    margin-top: 20px;
    color: var(--psy-disclaimer);
    font-size: 14px;
    text-align: center;
    font-style: italic;
}
.psy-result-recommendations,
.psy-result-followup { margin-bottom: 32px; }
.psy-result-followup {
    background: white;
    border-radius: var(--psy-radius-lg);
    padding: 36px;
    text-align: center;
    box-shadow: var(--psy-shadow-sm);
}

/* ============================== CRISIS BANNER ============================== */

.psy-crisis-banner {
    background: linear-gradient(135deg, var(--psy-crisis), #A03A3A);
    color: white;
    padding: 28px 32px;
    border-radius: var(--psy-radius-lg);
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(196, 78, 78, 0.25);
}
.psy-crisis-banner h2 { color: white; margin: 0 0 14px; font-size: 24px; }
.psy-crisis-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 14px 0;
    font-size: 16px;
}
.psy-crisis-numbers strong { display: block; font-size: 18px; }

/* ============================== FOGLALÁS ============================== */

.psy-booking-page { max-width: 720px; }
.psy-booking-summary {
    background: white;
    border-radius: var(--psy-radius-lg);
    padding: 28px;
    margin: 32px 0 24px;
    box-shadow: var(--psy-shadow-sm);
    border: 1px solid var(--psy-border-soft);
}
.psy-booking-psy {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.psy-booking-psy img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.psy-booking-psy h2 { margin: 0; font-size: 20px; }
.psy-booking-psy p { margin: 4px 0 0; color: var(--psy-text-muted); font-size: 14px; }
.psy-booking-details {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
    border-top: 1px solid var(--psy-border-soft);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 20px;
    font-size: 14px;
}
.psy-booking-controls {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 24px;
}
.psy-booking-note {
    margin-top: 14px;
    color: var(--psy-text-muted);
    font-size: 13px;
    line-height: 1.5;
}
.psy-booking-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px;
}
.psy-booking-form legend.psy-h2 { margin-bottom: 16px; font-size: 20px; }

/* ============================== B2B EAP ============================== */

.psy-eap-hero { text-align: center; padding: 80px 0 60px; }
.psy-eap-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 32px 0 80px;
    list-style: none;
    padding: 0;
}
.psy-eap-benefits-grid li {
    background: white;
    padding: 28px;
    border-radius: var(--psy-radius-lg);
    box-shadow: var(--psy-shadow-sm);
    border: 1px solid var(--psy-border-soft);
    transition: all 0.3s var(--psy-ease);
}
.psy-eap-benefits-grid li:hover {
    transform: translateY(-4px);
    box-shadow: var(--psy-shadow-lg);
}
.psy-eap-benefits-grid h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}
.psy-eap-benefits-grid p { margin: 0; color: var(--psy-text-muted); font-size: 14px; line-height: 1.5; }

.psy-eap-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 32px 0 80px;
}
.psy-eap-tier {
    background: white;
    border: 1px solid var(--psy-border-soft);
    border-radius: var(--psy-radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s var(--psy-ease);
}
.psy-eap-tier:hover {
    transform: translateY(-4px);
    box-shadow: var(--psy-shadow-lg);
}
.psy-eap-tier-popular {
    border: 2px solid var(--psy-primary);
    box-shadow: 0 12px 36px rgba(123, 168, 159, 0.20);
    position: relative;
}
.psy-eap-tier-popular::before {
    content: 'Legnépszerűbb';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--psy-primary-dark);
    color: white;
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}
.psy-eap-tier h3 { margin: 0 0 14px; font-size: 22px; }
.psy-eap-tier-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--psy-primary-darker);
    margin: 0 0 6px;
    letter-spacing: -0.02em;
}
.psy-eap-tier-detail { margin: 0 0 14px; color: var(--psy-text); }
.psy-eap-tier-target { margin: 0; color: var(--psy-text-muted); font-size: 14px; }

.psy-eap-form-section {
    background: white;
    padding: 48px 40px;
    border-radius: var(--psy-radius-xl);
    margin-top: 48px;
    box-shadow: var(--psy-shadow);
    border: 1px solid var(--psy-border-soft);
}
@media (max-width: 600px) { .psy-eap-form-section { padding: 28px 24px; } }

/* ============================== OPT-OUT ============================== */

.psy-optout-page { max-width: 720px; }
.psy-optout-target {
    background: var(--psy-secondary-soft);
    padding: 18px 22px;
    border-radius: var(--psy-radius);
    margin: 24px 0 28px;
}
.psy-optout-target strong { display: block; margin: 6px 0 2px; font-size: 17px; }
.psy-optout-flow {
    background: white;
    padding: 28px;
    border-radius: var(--psy-radius-lg);
    margin-bottom: 28px;
    box-shadow: var(--psy-shadow-sm);
}
.psy-optout-flow ol { margin: 0; padding-left: 24px; line-height: 1.8; color: var(--psy-text-muted); }

/* ============================== ACCESSIBILITY ============================== */

.psy-btn:focus-visible,
.psy-input:focus-visible,
.psy-select:focus-visible,
.psy-textarea:focus-visible {
    outline: 3px solid rgba(123, 168, 159, 0.5);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01s !important;
        transition-duration: 0.01s !important;
    }
    html { scroll-behavior: auto; }
}
