:root { --color-dark: #111e1e; --color-cream: #f4f6f4; --color-accent: #6b8a70; --color-text: #4a5555; --color-border: #eaeaeb; --font-heading: 'Lora', serif; --font-body: 'Manrope', sans-serif; }
html { overflow-y: scroll; height: 100%; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--color-text); background-color: var(--color-cream); line-height: 1.6; overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1 0 auto; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.bg-cream { background-color: var(--color-cream); }
.text-center { text-align: center; }
.btn-solid, .btn-outline { display: inline-block; padding: 14px 32px; border-radius: 40px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: 1px solid transparent; }
.btn-solid { background-color: var(--color-dark); color: white; border-color: var(--color-dark); }
.btn-solid:hover { background-color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline { background-color: transparent; color: var(--color-dark); border-color: #d0d5d0; }
.btn-outline:hover { border-color: var(--color-dark); }

/* FIX HLAVIČKY (Pevná výška proti uskakování) */
.psyon-header { background-color: transparent; padding: 25px 0; position: absolute; width: 100%; top: 0; left: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); }
.header-inner { display: flex; justify-content: space-between; align-items: center; position: relative; height: 50px; }
.logo-img { height: 45px; width: auto; display: block; }
.main-nav { display: flex; gap: 40px; }
.main-nav a { text-decoration: none; color: var(--color-dark); font-weight: 500; font-size: 1.05rem; transition: color 0.2s; }
.main-nav a:hover, .main-nav a.active { color: var(--color-accent); }
.header-action { display: flex; gap: 15px; }

.menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 30px; height: 21px; background: none; border: none; cursor: pointer; z-index: 1001; }
.menu-toggle span { display: block; width: 100%; height: 3px; background-color: var(--color-dark); transition: all 0.3s ease; border-radius: 3px; }

.psyon-hero { padding: 200px 0 120px 0; min-height: 90vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.badge { display: inline-block; padding: 6px 16px; background-color: #e5ebe6; color: var(--color-accent); border-radius: 30px; font-size: 0.85rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 30px; }
.huge-title { font-family: var(--font-heading); font-size: 5.5rem; line-height: 1.05; color: var(--color-dark); margin-bottom: 40px; letter-spacing: -1px; }
.hero-subtitle { font-size: 1.25rem; color: var(--color-text); max-width: 480px; line-height: 1.7; }
.hero-image-content { position: relative; display: flex; justify-content: flex-end; }
.image-wrapper { position: relative; z-index: 2; width: 80%; }
.image-wrapper img { width: 100%; height: auto; display: block; position: relative; z-index: 2; }
.shape-blob { position: absolute; width: 100%; height: 100%; background-color: #e5ebe6; border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; top: 5%; left: -10%; z-index: 1; opacity: 0.8; }

.psyon-services { padding: 140px 0; background-color: #ffffff; }
.services-header { max-width: 600px; margin-bottom: 80px; }
.services-header h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 25px; line-height: 1.15; color: var(--color-dark); }
.services-header p { font-size: 1.15rem; color: var(--color-text); }
.services-grid-numbered { display: grid; grid-template-columns: repeat(3, 1fr); gap: 70px; }
.numbered-card { position: relative; }
.card-number { font-family: var(--font-heading); font-size: 6.5rem; line-height: 1; color: var(--color-accent); opacity: 0.15; margin-bottom: -45px; font-weight: 400; }
.card-content { position: relative; z-index: 2; }
.card-content h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 20px; color: var(--color-dark); }
.card-content p { margin-bottom: 30px; font-size: 1.05rem; }
.link-arrow { display: inline-flex; align-items: center; text-decoration: none; color: var(--color-dark); font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }
.link-arrow:hover { color: var(--color-accent); }
.link-arrow .arrow { margin-left: 8px; transition: transform 0.3s; font-size: 1.2rem; }
.link-arrow:hover .arrow { transform: translateX(6px); }

.psyon-faq { padding: 140px 0; }
.faq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; align-items: flex-start; }
.faq-intro h2 { font-family: var(--font-heading); font-size: 3rem; line-height: 1.15; margin-bottom: 30px; color: var(--color-dark); }
.faq-list { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); transition: all 0.3s ease; }
.faq-item summary { list-style: none; font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-dark); padding: 35px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary:hover { color: var(--color-accent); }
.faq-item summary::after { content: '+'; font-size: 2rem; color: var(--color-accent); transition: transform 0.3s ease; }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding-bottom: 40px; font-size: 1.15rem; line-height: 1.8; padding-right: 50px; color: var(--color-text); }

.psyon-contact-offices { padding: 140px 0; background-color: #ffffff; }
.contact-office-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: flex-start; }
.office-list { display: flex; flex-direction: column; gap: 50px; }
.office-item h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 10px; color: var(--color-dark); }
.office-item p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 10px; color: var(--color-text); }
.map-link { color: var(--color-accent); text-decoration: none; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: opacity 0.2s; }
.map-link:hover { opacity: 0.7; }
.form-header h2 { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 20px; color: var(--color-dark); }
.form-header p { font-size: 1.15rem; margin-bottom: 40px; color: var(--color-text); }
.minimal-form input, .minimal-form textarea { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(0,0,0,0.15); padding: 15px 0; font-family: var(--font-body); font-size: 1.1rem; margin-bottom: 25px; transition: border-color 0.3s; color: var(--color-dark); }
.minimal-form input:focus, .minimal-form textarea:focus { outline: none; border-bottom-color: var(--color-dark); }

.psyon-footer { flex-shrink: 0; background-color: var(--color-dark); color: #ffffff; padding: 100px 0 30px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-text { font-family: var(--font-heading); font-size: 2.2rem; margin-bottom: 20px; color: white; }
.footer-logo-text span { color: var(--color-accent); font-style: italic; }
.footer-brand p { font-size: 1.05rem; opacity: 0.8; line-height: 1.8; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col h4 { color: white; font-family: var(--font-body); font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; opacity: 0.5; }
.footer-col a { display: block; color: white; text-decoration: none; margin-bottom: 15px; font-size: 1.05rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--color-accent); }
.footer-link-highlight { color: var(--color-accent) !important; font-weight: 600; }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; opacity: 0.5; flex-wrap: wrap; gap: 20px; }
.legal-links { display: flex; flex-wrap: wrap; gap: 20px; }
.legal-links a { color: white; opacity: 0.6; text-decoration: none; font-size: 0.85rem; transition: all 0.3s ease; }
.legal-links a:hover { opacity: 1; color: var(--color-accent); }

@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .main-nav { display: none; position: absolute; top: 100%; left: -40px; width: calc(100% + 80px); background: white; flex-direction: column; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 1000; text-align: center; gap: 20px; }
    .main-nav.active { display: flex; }
    .header-action { display: none; }
    .container { padding: 0 25px; }
    .hero-grid, .services-grid-numbered, .faq-grid, .contact-office-grid, .footer-inner { grid-template-columns: 1fr !important; gap: 60px !important; }
    .huge-title { font-size: 3rem !important; }
    .psyon-hero { padding: 140px 0 60px 0; text-align: center; }
    .hero-image-content { justify-content: center; margin-top: 40px; }
    .image-wrapper { width: 70%; }
    .footer-nav { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { text-align: center; flex-direction: column; }
    .legal-links { justify-content: center; }
}

@media (max-width: 480px) { .huge-title { font-size: 2.5rem !important; } }

#scroll-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background-color: var(--color-dark); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 24px; line-height: 0; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
#scroll-to-top.show { opacity: 1; visibility: visible; }
#scroll-to-top:hover { background-color: var(--color-accent); transform: translateY(-5px); }