:root {
    --primary: #073d3d;
    --primary-dark: #042626;
    --accent: #ccff00;
    --accent-hover: #b8e600;
    --bg-body: #f8faf9;
    --bg-white: #ffffff;
    --text-main: #073d3d;
    --text-muted: #5a7575;
    --border: rgba(7, 61, 61, 0.08);
    --radius-lg: 32px;
    --radius-md: 20px;
    --shadow-lg: 0 40px 80px -20px rgba(7, 61, 61, 0.15);
    --shadow-sm: 0 10px 30px rgba(7, 61, 61, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; line-height: 1.1; letter-spacing: -0.03em; }
a { text-decoration: none; transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }
ul { list-style: none; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 18px 36px; border-radius: 100px; font-weight: 600; font-size: 1.1rem;
    gap: 12px; cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(7, 61, 61, 0.2); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(204, 255, 0, 0.3); }

/* --- CSS Filters --- */
.svg-dark { filter: brightness(0) saturate(100%) invert(16%) sepia(35%) saturate(3025%) hue-rotate(163deg) brightness(94%) contrast(97%); }
.svg-accent { filter: brightness(0) saturate(100%) invert(84%) sepia(28%) saturate(913%) hue-rotate(34deg) brightness(107%) contrast(104%); }
.svg-white { filter: brightness(0) invert(1); }
.svg-original-tuned { filter: hue-rotate(-10deg) saturate(1.2); }

/* --- Site Header / Navigation --- */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(248, 250, 249, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 6px 24px rgba(7, 61, 61, 0.06);
}

.nav-wrap {
    height: 88px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { width: 48px; height: 48px; }
.nav-logo span { font-family: 'Space Grotesk', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--primary); letter-spacing: -0.05em; line-height: 1; }

.nav-links {
    display: flex; gap: 8px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 8px 12px; border-radius: 100px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.6);
}
.nav-links a {
    color: var(--text-muted); font-weight: 600; font-size: 0.95rem;
    padding: 8px 18px; border-radius: 100px;
    transition: color 0.25s ease, background 0.25s ease;
}
.nav-links a:hover { color: var(--primary); background: rgba(7, 61, 61, 0.06); }

.nav-cta {
    padding: 12px 24px; font-size: 0.95rem; gap: 10px; flex-shrink: 0;
}
.nav-cta-icon {
    background: white; border-radius: 50%; padding: 5px;
    display: inline-flex; align-items: center; justify-content: center;
}
.nav-cta-icon img { width: 16px; height: 16px; display: block; }

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    background: white; border: 1px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    padding: 0;
    align-items: center; justify-content: center;
    flex-direction: column; gap: 5px;
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.nav-toggle span {
    display: block; width: 20px; height: 2px;
    background: var(--primary); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero Section --- */
.hero {
    padding: 180px 0 120px;
    background-color: var(--bg-body);
    text-align: center; position: relative;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: -100px; right: -5%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.12) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; top: 20%; left: -10%;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(7, 61, 61, 0.06) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}

.hero .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: white; border: 1px solid var(--border);
    border-radius: 100px; font-weight: 600; font-size: 0.9rem; margin-bottom: 32px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent);}

.hero h1 { font-size: clamp(3.5rem, 6vw, 6rem); margin-bottom: 24px; }
.hero h1 span { color: transparent; -webkit-text-stroke: 2px var(--primary); opacity: 0.5; }
.hero p { max-width: 650px; margin: 0 auto 48px; font-size: 1.25rem; color: var(--text-muted); font-weight: 400;}

.search-wrap {
    max-width: 900px; margin: 0 auto; background: white; padding: 12px; border-radius: 100px;
    display: grid; grid-template-columns: 1.2fr 1fr 0.6fr; gap: 12px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.search-field { padding: 0 24px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border-right: 1px solid var(--border); }
.search-field label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; letter-spacing: 0.05em;}
.search-field input, .search-field select { border: none; outline: none; font-family: inherit; font-size: 1.1rem; font-weight: 500; color: var(--primary); width: 100%; background: transparent; cursor: pointer;}

/* =========================================
   PARTNERS LOGO MARQUEE (NOVA SEKCE)
   ========================================= */
.partners-section {
    padding: 50px 0; background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    overflow: hidden; position: relative;
}
.marquee-container { display: flex; width: 200%; animation: scroll 35s linear infinite; }
.marquee-container:hover { animation-play-state: paused; }
.partner-logo {
    flex: 0 0 250px; display: flex; align-items: center; justify-content: center;
    padding: 0 40px; filter: grayscale(1) opacity(0.4); transition: 0.4s; cursor: pointer;
}
.partner-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.05); }
.partner-logo svg { width: 100%; max-height: 40px; }
.partner-logo img { max-width: 100%; max-height: 48px; object-fit: contain; }
.partner-logo .partner-more {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    color: var(--primary);
    padding: 10px 24px;
    border: 2px dashed var(--border);
    border-radius: 100px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Features Bento s Fotkami a SEO textem --- */
.section-padding { padding: 120px 0; }

/* Adjacent section collapse — no double vertical gaps */
.section-padding + .section-padding { padding-top: 0; }
.page-hero + .section-padding,
.job-header-hero + .section-padding { padding-top: 40px; }

.section-header { margin-bottom: 64px; }
.section-header h2 { font-size: 3.5rem; margin-bottom: 16px; }

.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 24px; }
.bento-item {
    background: white; border-radius: var(--radius-lg); padding: 40px;
    border: 1px solid var(--border); position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between; transition: 0.4s;
}
.bento-item:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bento-item h3 { font-size: 1.5rem; margin-top: 16px; position: relative; z-index: 2; }
.bento-item p { position: relative; z-index: 2; }
.bento-item .icon { width: 56px; height: 56px; background: var(--bg-body); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--primary); position: relative; z-index: 2;}

.item-1 {
    grid-column: span 8; grid-row: span 2;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=1200') center/cover;
    color: white; border: none;
}
.item-1::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(7,61,61,0.9) 40%, rgba(7,61,61,0.1) 100%); z-index: 1;
}
.item-1 .icon { background: rgba(255,255,255,0.1); color: var(--accent); backdrop-filter: blur(5px);}
.item-1 h3 { font-size: 3rem; margin-top: auto; margin-bottom: 16px;}
.item-1 p { font-size: 1.1rem; max-width: 80%; opacity: 0.9;}

.item-2 { grid-column: span 4; grid-row: span 1; }
.item-3 { grid-column: span 4; grid-row: span 1; background: var(--accent); border: none; }

.item-seo {
    grid-column: span 4; grid-row: span 2;
    background: var(--bg-body); border: 1px dashed var(--border);
    justify-content: flex-start;
}
.item-seo h3 { font-size: 1.8rem; margin-top: 0; margin-bottom: 16px; color: var(--primary); line-height: 1.1; }
.item-seo p { font-size: 1rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.item-seo p:last-child { margin-bottom: 0; }

.item-5 {
    grid-column: span 4; grid-row: span 1;
    background: url('../img/dopr.jpg') center/cover;
    color: white; border: none;
}
.item-5::before {
    content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, var(--primary) 0%, rgba(7,61,61,0.3) 100%); z-index: 1;
}
.item-5 .icon { background: rgba(255,255,255,0.15); color: var(--accent); backdrop-filter: blur(5px);}
.item-5 h3 { text-shadow: 0 2px 10px rgba(0,0,0,0.3); }

.item-6 { grid-column: span 4; grid-row: span 1; }

/* --- Split Section --- */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 120px; }
.split-card { height: 600px; border-radius: var(--radius-lg); overflow: hidden; position: relative; display: flex; align-items: flex-end; padding: 60px; }
.split-card img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: 1s; }
.split-card:hover img { transform: scale(1.05); }
.split-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(7,61,61,0) 40%, rgba(7,61,61,0.95) 100%); z-index: 1; }
.split-content { position: relative; z-index: 2; color: white; width: 100%; }
.split-content h2 { font-size: 3rem; margin-bottom: 16px; }
.split-content .btn { margin-top: 24px; }

/* --- Jobs Grid --- */
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.job-card { background: white; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); transition: 0.3s;}
.job-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-4px);}
.job-img { height: 240px; overflow: hidden; position: relative; }
.job-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.job-card:hover .job-img img { transform: scale(1.05); }
.job-tag { position: absolute; top: 20px; left: 20px; background: var(--accent); color: var(--primary); padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.job-info { padding: 32px; }
.job-info h3 { font-size: 1.5rem; margin-bottom: 12px; }
.job-info p { color: var(--text-muted); margin-bottom: 24px; font-size: 1rem; }
.job-link { font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 8px; }

/* --- FAQ Accordion & Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-bottom: 80px; }

.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-question { font-size: 1.2rem; font-family: 'Space Grotesk', sans-serif; cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin: 0; color: var(--primary); transition: color 0.3s; }
.faq-question:hover { color: var(--accent-hover); }
.faq-icon { font-size: 1.5rem; color: var(--accent); transition: transform 0.3s; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.faq-answer p { padding-top: 16px; color: var(--text-muted); margin: 0; }

.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-item.active .faq-question { color: var(--primary-dark); }

.contact-form { background: var(--primary); padding: 60px; border-radius: var(--radius-lg); color: white; position: relative; overflow: hidden; height: max-content;}
.contact-form h2 { color: var(--accent); margin-bottom: 32px; position: relative; z-index: 2;}
.input-group { margin-bottom: 24px; position: relative; z-index: 2;}
.input-group input, .input-group textarea {
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 24px; border-radius: 12px; color: white; font-family: inherit; font-size: 1rem; transition: 0.3s;
}
.input-group textarea { resize: none; min-height: 120px; }
.input-group input:focus, .input-group textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1);}

/* --- MEGA FOOTER --- */
.footer-mega { background-color: var(--primary); color: var(--bg-white); padding: 120px 0 40px; position: relative; overflow: hidden; }
.footer-watermark { position: absolute; bottom: -150px; right: -100px; width: 800px; height: 800px; opacity: 0.03; pointer-events: none; z-index: 0; }
.footer-content { position: relative; z-index: 1; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; padding-bottom: 80px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand .logo-img-lg { width: 80px; height: 80px; margin-bottom: 16px; }
.footer-brand .txt-glwa { font-family: 'Space Grotesk'; font-size: 3rem; font-weight: 700; color: var(--bg-white); line-height: 1; }
.footer-brand .txt-line { width: 100%; height: 2px; background: var(--accent); margin: 8px 0; }
.footer-brand .txt-sub { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: rgba(255,255,255,0.6); font-weight: 700; }
.footer-top h2 { font-size: 3.5rem; color: var(--bg-white); text-align: right; margin: 0; }
.footer-top h2 span { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 80px; }
.footer-col h4 { font-family: 'Space Grotesk'; color: var(--accent); font-size: 1.25rem; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col p { color: rgba(255,255,255,0.7); max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.footer-links a:hover { color: var(--accent); padding-left: 8px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--bg-white); }

/* --- Active nav link --- */
.nav-links a.active {
    color: var(--primary);
    background: rgba(7, 61, 61, 0.08);
}

/* =========================================
   INNER PAGE — page hero & breadcrumbs
   ========================================= */
.page-hero {
    position: relative;
    padding: 180px 0 80px;
    background: var(--bg-body);
    /* overflow: hidden; */
}
.page-hero::before {
    content: ''; position: absolute; top: -100px; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.10) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-hero::after {
    content: ''; position: absolute; bottom: -200px; left: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(7, 61, 61, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; z-index: 0; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 24px; max-width: 900px; }
.page-hero h1 span { color: transparent; -webkit-text-stroke: 2px var(--primary); opacity: 0.5; }
.page-hero p.lead { max-width: 700px; font-size: 1.2rem; color: var(--text-muted); }

.breadcrumbs {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
    font-size: 0.9rem; color: var(--text-muted);
    margin-bottom: 32px; font-weight: 500;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--primary); font-weight: 600; }

/* =========================================
   GENERIC CONTENT BLOCKS
   ========================================= */
.prose { max-width: 760px; color: var(--text-muted); }
.prose p { font-size: 1.1rem; margin-bottom: 20px; line-height: 1.75; }
.prose h2 { font-size: 2.4rem; margin: 56px 0 24px; color: var(--primary); }
.prose h3 { font-size: 1.6rem; margin: 40px 0 16px; color: var(--primary); }
.prose ul { padding-left: 24px; margin-bottom: 24px; list-style: disc; color: var(--text-muted); }
.prose ul li { padding: 6px 0; font-size: 1.05rem; }
.prose strong { color: var(--primary); }

/* Two-column section (text + visual) */
.two-col {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }
.two-col h2 { font-size: 2.6rem; margin-bottom: 24px; color: var(--primary); }
.two-col p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.two-col .col-visual {
    border-radius: var(--radius-lg); overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-body);
    position: relative;
}
.two-col .col-visual img {
    width: 100%; height: 100%; object-fit: cover;
    transition: 0.6s ease;
}
.two-col .col-visual:hover img { transform: scale(1.04); }
.two-col-cta { margin-top: 16px; }

/* =========================================
   STATS GRID
   ========================================= */
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin: 64px 0;
}
.stat-card {
    background: white; border-radius: var(--radius-md);
    padding: 36px 28px; border: 1px solid var(--border);
    transition: 0.3s;
}
.stat-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat-card .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.2rem; font-weight: 700;
    color: var(--primary); line-height: 1; margin-bottom: 8px;
    letter-spacing: -0.04em;
}
.stat-card .num span { color: var(--accent); }
.stat-card .label {
    font-size: 0.95rem; color: var(--text-muted); font-weight: 500;
}

/* =========================================
   VALUES / FEATURE CARDS
   ========================================= */
.cards-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cards-grid-2 {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.value-card {
    background: white; border-radius: var(--radius-md);
    padding: 40px 32px; border: 1px solid var(--border);
    transition: 0.3s;
    display: flex; flex-direction: column; gap: 16px;
}
.value-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.value-card .icon-wrap {
    width: 60px; height: 60px; border-radius: 16px;
    background: var(--bg-body); display: flex;
    align-items: center; justify-content: center;
    color: var(--primary);
}
.value-card.is-accent .icon-wrap { background: var(--accent); }
.value-card h3 { font-size: 1.4rem; color: var(--primary); }
.value-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.65; }

/* =========================================
   PROCESS STEPS
   ========================================= */
.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; position: relative;
}
.process-step {
    background: white; border-radius: var(--radius-md);
    padding: 36px 28px; border: 1px solid var(--border);
    position: relative;
    transition: 0.3s;
}
.process-step:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.process-step .step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--accent);
    background: var(--primary);
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.process-step h3 { font-size: 1.25rem; margin-bottom: 10px; color: var(--primary); }
.process-step p { font-size: 0.98rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================
   JOBS LIST PAGE — filters + cards
   ========================================= */
.jobs-toolbar {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin-bottom: 40px;
    padding: 16px; background: white;
    border-radius: 100px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.jobs-toolbar .filter-btn {
    padding: 10px 22px; border-radius: 100px;
    background: transparent; border: none;
    cursor: pointer; font-family: inherit;
    font-weight: 600; font-size: 0.95rem;
    color: var(--text-muted);
    transition: all 0.25s ease;
}
.jobs-toolbar .filter-btn:hover { color: var(--primary); background: rgba(7,61,61,0.05); }
.jobs-toolbar .filter-btn.active {
    background: var(--primary); color: white;
}

.jobs-grid-lg {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.job-meta {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 14px;
}
.job-meta-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.85rem; color: var(--text-muted);
    background: var(--bg-body);
    padding: 4px 12px; border-radius: 100px;
    font-weight: 500;
}

/* =========================================
   JOB DETAIL PAGE
   ========================================= */
.job-detail-grid {
    display: grid; grid-template-columns: 1fr 380px;
    gap: 48px; align-items: start;
}
.job-detail-main h2 { font-size: 1.8rem; margin: 48px 0 18px; color: var(--primary); }
.job-detail-main h2:first-child { margin-top: 0; }
.job-detail-main p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.75; }
.job-detail-main ul {
    list-style: none; padding: 0; margin-bottom: 20px;
}
.job-detail-main ul li {
    position: relative; padding: 10px 0 10px 36px;
    color: var(--text-muted); font-size: 1.05rem; line-height: 1.5;
    border-bottom: 1px solid var(--border);
}
.job-detail-main ul li:last-child { border-bottom: none; }
.job-detail-main ul li::before {
    content: ''; position: absolute; left: 0; top: 14px;
    width: 22px; height: 22px;
    background: var(--accent); border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23073d3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 14px; background-repeat: no-repeat; background-position: center;
}

.job-sidebar { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 20px; }
.job-info-card {
    background: white; padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}
.job-info-card h3 {
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-muted);
    margin-bottom: 20px; font-weight: 700;
    font-family: 'Outfit', sans-serif;
}
.job-info-card .info-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px;
    padding: 12px 0; border-bottom: 1px solid var(--border);
    font-size: 0.98rem;
}
.job-info-card .info-row:last-child { border-bottom: none; }
.job-info-card .info-row .label {
    color: var(--text-muted);
}
.job-info-card .info-row .value {
    color: var(--primary); font-weight: 600;
    text-align: right;
}
.job-apply-card {
    background: var(--primary); padding: 32px;
    border-radius: var(--radius-md); color: white;
}
.job-apply-card h3 { color: var(--accent); margin-bottom: 12px; font-size: 1.3rem; }
.job-apply-card p { color: rgba(255,255,255,0.7); margin-bottom: 20px; font-size: 0.95rem; }
.job-apply-card .btn { width: 100%; }

.job-header-hero {
    padding: 160px 0 60px;
    background: var(--bg-body); position: relative; overflow: hidden;
}
.job-header-hero::before {
    content: ''; position: absolute; top: -100px; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.10) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; z-index: 0;
}
.job-header-hero .container { position: relative; z-index: 2; }
.job-header-hero h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); margin-bottom: 16px; }
.job-header-hero .job-meta { margin-bottom: 0; }
.job-header-hero .job-tag-inline {
    display: inline-block; background: var(--accent); color: var(--primary);
    padding: 6px 16px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    margin-bottom: 24px;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-bottom: 80px;
}
.contact-card {
    background: white; padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: 0.3s;
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-4px); }
.contact-card .icon-wrap {
    width: 56px; height: 56px; border-radius: 16px;
    background: var(--accent); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.contact-card h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 8px; }
.contact-card p, .contact-card a {
    color: var(--text-muted); font-size: 1.05rem; line-height: 1.6;
    display: block; word-break: break-word;
}
.contact-card a:hover { color: var(--primary); }

.map-block {
    width: 100%; height: 460px;
    border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
    background: var(--bg-body);
}
.map-block iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    color: white;
    position: relative; overflow: hidden;
    margin: 80px 0;
    text-align: center;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.12) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; pointer-events: none;
}
.cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 20px; position: relative; z-index: 2;
}
.cta-section h2 span { color: var(--accent); }
.cta-section p {
    max-width: 600px; margin: 0 auto 40px;
    color: rgba(255,255,255,0.8); font-size: 1.15rem;
    position: relative; z-index: 2;
}
.cta-section .cta-actions {
    display: inline-flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    position: relative; z-index: 2;
}

/* =========================================
   TESTIMONIAL
   ========================================= */
.testimonial {
    background: var(--primary);
    color: white;
    border-radius: var(--radius-lg);
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
}
.testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.10) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.testimonial-mark {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 9rem;
    line-height: 0.6;
    color: var(--accent);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.testimonial-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    color: white;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.author-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 1.1rem;
}
.author-name { color: white; font-weight: 700; font-size: 1.05rem; }
.author-meta { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* Spec cards hover */
.spec-card { transition: 0.3s; }
.spec-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.spec-card img { transition: 0.5s; }
.spec-card:hover img { transform: scale(1.05); }

/* =========================================
   INDUSTRY TAGS
   ========================================= */
.industry-tags {
    display: flex; flex-wrap: wrap; gap: 12px;
    margin: 24px 0;
}
.industry-tag {
    padding: 10px 22px; border-radius: 100px;
    background: white; border: 1px solid var(--border);
    color: var(--primary); font-weight: 600; font-size: 0.95rem;
    transition: 0.25s;
}
.industry-tag:hover {
    background: var(--primary); color: white;
    transform: translateY(-2px);
}

/* =========================================
   FORM (general) — used outside contact-form too
   ========================================= */
.form-light .input-group input,
.form-light .input-group textarea,
.form-light .input-group select {
    background: white; border: 1px solid var(--border);
    color: var(--primary);
}
.form-light .input-group input::placeholder,
.form-light .input-group textarea::placeholder { color: var(--text-muted); }
.form-light .input-group input:focus,
.form-light .input-group textarea:focus,
.form-light .input-group select:focus { border-color: var(--primary); background: white; }
.input-group label {
    display: block; font-size: 0.85rem; font-weight: 600;
    color: var(--primary); margin-bottom: 8px;
}
.input-group select {
    width: 100%; padding: 16px 24px; border-radius: 12px;
    font-family: inherit; font-size: 1rem;
    background: rgba(255,255,255,0.05); color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1180px) {
    .container { padding: 0 32px; }
    .nav-links { gap: 4px; padding: 6px 8px; }
    .nav-links a { padding: 8px 14px; font-size: 0.9rem; }
}

@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .nav-wrap { height: 80px; gap: 16px; }
    .nav-logo img { width: 42px; height: 42px; }
    .nav-logo span { font-size: 1.5rem; }

    /* Mobile nav */
    .nav-toggle { display: inline-flex; }
    .nav-cta { display: none; }
    .nav-links {
        position: fixed;
        top: 80px; left: 16px; right: 16px;
        flex-direction: column; gap: 4px;
        padding: 16px;
        background: white;
        border-radius: 24px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .nav-links.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        text-align: left;
        border-radius: 14px;
    }

    .hero { padding: 140px 0 80px; }
    .hero h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }
    .hero p { font-size: 1.1rem; margin-bottom: 36px; }

    .search-wrap { grid-template-columns: 1fr; border-radius: 28px; padding: 20px; gap: 4px; }
    .search-field { border-right: none; border-bottom: 1px solid var(--border); padding: 14px 12px; }
    .search-field:last-of-type { border-bottom: none; }
    .search-wrap .btn { width: 100%; }

    .section-padding { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }
    .section-header h2 { font-size: 2.5rem; }

    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 16px; }
    .item-1, .item-2, .item-3, .item-seo, .item-5, .item-6 { grid-column: span 1; grid-row: auto; }
    .bento-item { padding: 32px; min-height: 220px; }
    .item-1 { min-height: 360px; }
    .item-1 h3 { font-size: 2.2rem; }
    .item-1 p { max-width: 100%; }
    .item-seo h3 { font-size: 1.5rem; }

    .split-section { grid-template-columns: 1fr; gap: 16px; margin-bottom: 80px; }
    .split-card { height: 420px; padding: 40px; }
    .split-content h2 { font-size: 2.2rem; }

    .jobs-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-form { padding: 40px; }

    .footer-mega { padding: 80px 0 32px; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 40px; margin-bottom: 60px; padding-bottom: 60px; }
    .footer-top h2 { text-align: left; font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 60px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .footer-bottom-links { flex-wrap: wrap; justify-content: center; }

    /* Inner pages */
    .page-hero { padding: 140px 0 64px; }
    .page-hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); }
    .page-hero p.lead { font-size: 1.05rem; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .two-col.reverse > div:first-child { order: 0; }
    .two-col h2 { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 48px 0; }
    .stats-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .stat-card { padding: 28px 22px; }
    .stat-card .num { font-size: 2.4rem; }
    .cards-grid-3 { grid-template-columns: 1fr; }
    .cards-grid-2 { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .jobs-grid-lg { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .jobs-toolbar { border-radius: 24px; padding: 12px; }
    .job-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .job-sidebar { position: static; }
    .job-header-hero { padding: 130px 0 50px; }
    .contact-cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 60px; }
    .map-block { height: 360px; }
    .cta-section { padding: 60px 32px; margin: 60px 0; }
    .testimonial { padding: 48px 32px; }
    .testimonial-mark { font-size: 6rem; }
}

@media (max-width: 640px) {
    .container { padding: 0 20px; }
    .nav-wrap { height: 72px; }
    .nav-links { top: 72px; left: 12px; right: 12px; }

    .hero { padding: 120px 0 64px; }
    .hero-badge { font-size: 0.8rem; padding: 6px 16px; margin-bottom: 24px; }
    .hero h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); margin-bottom: 20px; }
    .hero p { font-size: 1rem; margin-bottom: 32px; }
    .hero h1 span { -webkit-text-stroke: 1.5px var(--primary); }

    .btn { padding: 14px 28px; font-size: 1rem; }

    .partners-section { padding: 36px 0; }
    .partner-logo { flex: 0 0 180px; padding: 0 24px; }

    .section-padding { padding: 64px 0; }
    .section-header h2 { font-size: 2rem; }

    .bento-item { padding: 28px; }
    .bento-item h3 { font-size: 1.25rem; }
    .item-1 { min-height: 320px; padding: 32px; }
    .item-1 h3 { font-size: 1.8rem; }

    .split-card { height: 380px; padding: 32px; }
    .split-content h2 { font-size: 1.8rem; }

    .jobs-grid { grid-template-columns: 1fr; }
    .job-info { padding: 24px; }

    .faq-question { font-size: 1.05rem; gap: 12px; }

    .contact-form { padding: 32px 24px; border-radius: 24px; }
    .contact-form h2 { font-size: 1.8rem; margin-bottom: 24px; }

    .footer-mega { padding: 64px 0 24px; }
    .footer-top h2 { font-size: 2rem; }
    .footer-brand .txt-glwa { font-size: 2.2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-col p { max-width: 100%; }

    /* Inner pages — mobile */
    .page-hero { padding: 120px 0 48px; }
    .stats-grid { grid-template-columns: 1fr; }
    .stats-grid--3 { grid-template-columns: 1fr; }
    .stat-card .num { font-size: 2rem; }
    .process-steps { grid-template-columns: 1fr; }
    .jobs-grid-lg { grid-template-columns: 1fr; }
    .jobs-toolbar { gap: 6px; }
    .jobs-toolbar .filter-btn { padding: 8px 16px; font-size: 0.88rem; }
    .job-header-hero { padding: 110px 0 40px; }
    .job-info-card, .job-apply-card { padding: 24px; }
    .cta-section { padding: 48px 24px; }
    .prose h2 { font-size: 1.8rem; margin: 40px 0 16px; }
    .prose p, .prose ul li { font-size: 1rem; }
    .testimonial { padding: 40px 24px; border-radius: 24px; }
    .testimonial-mark { font-size: 5rem; }
    .testimonial-author { gap: 12px; }
    .author-avatar { width: 44px; height: 44px; font-size: 0.95rem; }
}

@media (max-width: 380px) {
    .container { padding: 0 16px; }
    .hero h1 { font-size: 2rem; }
    .section-header h2 { font-size: 1.75rem; }
    .nav-logo span { font-size: 1.35rem; }
    .nav-logo img { width: 38px; height: 38px; }
}

/* =========================================
   MAIN WRAPPER
   ========================================= */
.main { overflow: hidden; }

/* =========================================
   UTILITY HELPERS
   ========================================= */
.text-center { text-align: center; }
.section-cta { text-align: center; margin-top: 48px; }
.btn-block { width: 100%; }

/* Logo accent dot */
.nav-logo span > span { color: var(--accent); }

/* Section / page-hero subtitle paragraph */
.section-subtitle {
    max-width: 640px;
    margin: 16px auto 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}
.section-subtitle--wide { max-width: 700px; }

/* Outlined heading span (text-stroke effect) */
.h-outlined {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    opacity: 0.5;
}

/* Hero / page-hero action button row */
.hero-actions {
    display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap;
}

/* Partners section pretitle line */
.partners-pretitle {
    margin-bottom: 24px;
    text-align: center;
}
.partners-pretitle p {
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
}

/* Stats grid 3-column modifier (index home stats) */
.stats-grid--3 { grid-template-columns: repeat(3, 1fr); margin: 0; }

/* Bento item color overrides (accent / dark background items) */
.bento-item.item-3 h3,
.bento-item.item-3 p { color: var(--primary); }
.bento-item.item-3 p { opacity: 0.8; }
.bento-item.item-5 p { color: rgba(255,255,255,0.8); }

/* Specialization cards (used on index home) */
.spec-card {
    background: white; border-radius: var(--radius-lg);
    overflow: hidden; border: 1px solid var(--border);
}
.spec-card-img { height: 220px; overflow: hidden; }
.spec-card-img img { width: 100%; height: 100%; object-fit: cover; }
.spec-card-body { padding: 32px; }
.spec-card-body h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.spec-card-body p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* FAQ heading (index home) */
.faq-title { font-size: 3rem; margin-bottom: 40px; }

/* Service section (sluzby / o-nas) — small badge, sub-heading, bullet list */
.service-badge {
    display: inline-block;
    background: var(--accent); color: var(--primary);
    padding: 6px 16px; border-radius: 100px;
    font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.service-badge.is-primary { background: var(--primary); color: white; }

.service-sub-heading {
    font-size: 1.3rem; margin: 24px 0 12px; color: var(--primary);
}
.service-list { list-style: none; padding: 0; }
.service-list--top { margin-top: 24px; }
.service-list li { padding: 6px 0; color: var(--text-muted); }
.service-list--lg li { padding: 8px 0; }

/* Industry tags — centered modifier */
.industry-tags.is-center { justify-content: center; }

/* CTA ghost-light button on dark backgrounds */
.btn-ghost-light { background: rgba(255,255,255,0.1); color: white; }

/* Legal/doc effective date line under page-hero lead */
.doc-effective { margin-top: 16px; font-size: 0.95rem; color: var(--text-muted); }

/* Generic inline link inside prose articles */
.prose a { color: var(--primary); text-decoration: underline; }
.prose a:hover { color: var(--primary-dark); }

/* Contact card supplementary line */
.contact-card-sub { margin-top: 12px; font-size: 0.9rem; }

/* Contact-grid headings + intro */
.contact-grid-heading { font-size: 2.5rem; margin-bottom: 24px; color: var(--primary); }
.contact-grid-intro { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 32px; }

/* Billing details card (kontakt page) */
.billing-card {
    background: white; padding: 32px; border-radius: 20px;
    border: 1px solid var(--border); margin-bottom: 20px;
}
.billing-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 16px; }
.billing-row {
    display: flex; justify-content: space-between;
    padding: 8px 0; border-bottom: 1px solid var(--border);
    color: var(--text-muted); font-size: 0.95rem;
}
.billing-row:last-child { border-bottom: none; }
.billing-row .value { color: var(--primary); font-weight: 600; }

/* Accent (yellow) callout card */
.accent-callout {
    background: var(--accent); padding: 28px; border-radius: 20px;
}
.accent-callout--sm { padding: 24px; }
.accent-callout h3 {
    font-size: 1.1rem; color: var(--primary); margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}
.accent-callout p { color: var(--primary); font-size: 0.95rem; margin-bottom: 12px; }
.accent-callout .btn { padding: 12px 24px; font-size: 0.95rem; }

/* Contact form GDPR notice (inside dark contact-form) */
.form-notice {
    font-size: 0.8rem; color: rgba(255,255,255,0.6);
    margin-bottom: 16px; line-height: 1.5;
}

/* Quick contact tile list (pro-firmy) */
.quick-contact-list { display: flex; flex-direction: column; gap: 16px; }
.quick-contact-tile {
    display: flex; gap: 16px; align-items: center; padding: 16px;
    background: white; border-radius: 16px; border: 1px solid var(--border);
}
.quick-contact-icon {
    width: 44px; height: 44px; background: var(--accent);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); flex-shrink: 0;
}
.quick-contact-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }
.quick-contact-link { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

/* Callback card (pro-uchazece) */
.callback-card {
    background: white; padding: 28px; border-radius: 20px;
    border: 1px solid var(--border); margin-bottom: 20px;
}
.callback-card h3 { font-size: 1.2rem; color: var(--primary); margin-bottom: 12px; }
.callback-card .phone {
    color: var(--primary); font-weight: 700; font-size: 1.5rem;
    display: inline-block; margin-bottom: 8px;
}
.callback-card .meta { color: var(--text-muted); font-size: 0.95rem; }

/* Volna-mista — "no matching job" prompt */
.no-match-prompt {
    margin-top: 64px; padding: 48px;
    background: var(--bg-body);
    border-radius: var(--radius-lg);
    border: 1px dashed var(--border);
    text-align: center;
}
.no-match-prompt h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 12px; }
.no-match-prompt p { color: var(--text-muted); max-width: 540px; margin: 0 auto 24px; }

/* Job info card dashed variant + callout phone (position pages) */
.job-info-card.is-dashed { background: var(--bg-body); border-style: dashed; }
.job-info-card .callout-phone {
    color: var(--primary); font-weight: 700; font-size: 1.3rem;
    display: block; margin-bottom: 8px;
}
.job-info-card .callout-meta { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Footer social row */
.footer-social { margin-top: 24px; display: flex; gap: 16px; }
.footer-social-circle {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); cursor: pointer;
}

/* Footer address + license lines */
.footer-address { margin-top: 16px; font-size: 1rem; }
.footer-license { margin-top: 8px; font-size: 0.85rem; opacity: 0.6; }

/* Footer accented email link */
.footer-link-accent { color: var(--accent); }

/* --- FORM VALIDATION STATES --- */
.glwa-form .hp-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important; height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.glwa-form .input-group input.is-invalid,
.glwa-form .input-group textarea.is-invalid,
.glwa-form .input-group select.is-invalid {
    border-color: #ff5b6b !important;
    background: rgba(255, 91, 107, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(255, 91, 107, 0.15);
}
.glwa-form .form-error {
    color: #ffb3bb;
    font-size: 0.85rem;
    margin-top: 6px;
    min-height: 0;
    line-height: 1.4;
}
.glwa-form .input-group input.is-invalid + .form-error,
.glwa-form .input-group textarea.is-invalid + .form-error,
.glwa-form .input-group select.is-invalid + .form-error {
    min-height: 1.2em;
}
.glwa-form .form-status {
    margin-top: 16px;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
}
.glwa-form .form-status.is-success {
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(120, 220, 160, 0.15);
    border: 1px solid rgba(120, 220, 160, 0.4);
    color: #c8f5d8;
}
.glwa-form .form-status.is-error {
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(255, 91, 107, 0.12);
    border: 1px solid rgba(255, 91, 107, 0.4);
    color: #ffd0d4;
}
.glwa-form button[disabled] { opacity: 0.7; cursor: not-allowed; }

/* --- FILE PICKER --- */
.glwa-form .file-group { margin-bottom: 24px; }
.glwa-form .file-drop {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.25);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s ease;
    color: white;
}
.glwa-form .file-drop:hover,
.glwa-form .file-drop:focus,
.glwa-form .file-drop.is-dragover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.1);
    outline: none;
}
.glwa-form .file-input {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}
.glwa-form .file-drop-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.glwa-form .file-drop-text { display: flex; flex-direction: column; line-height: 1.4; }
.glwa-form .file-drop-text strong { font-size: 1rem; color: white; }
.glwa-form .file-drop-hint {
    font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 2px;
}
.glwa-form .file-list {
    list-style: none; padding: 0; margin: 12px 0 0;
    display: flex; flex-direction: column; gap: 8px;
}
.glwa-form .file-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    font-size: 0.9rem;
    color: white;
}
.glwa-form .file-meta {
    display: flex; flex-direction: column; min-width: 0; gap: 2px;
}
.glwa-form .file-name {
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    max-width: 100%;
}
.glwa-form .file-size { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.glwa-form .file-remove {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: rgba(255,91,107,0.15);
    border: 1px solid rgba(255,91,107,0.4);
    border-radius: 50%;
    color: #ffd0d4;
    font-size: 1.1rem; line-height: 1;
    cursor: pointer; transition: 0.2s;
    display: flex; align-items: center; justify-content: center;
}
.glwa-form .file-remove:hover {
    background: rgba(255,91,107,0.3);
    color: white;
}

/* =========================================
   404 — stránka nenalezena
   ========================================= */
.error-404 {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
}
.error-404::before {
    content: ''; position: absolute; top: -20%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.12) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; pointer-events: none;
}
.error-404::after {
    content: ''; position: absolute; bottom: -30%; left: -15%;
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.06) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%; pointer-events: none;
}
.error-404 .container { position: relative; z-index: 2; }
.error-404 .error-code {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(7rem, 22vw, 16rem);
    font-weight: 700; line-height: 0.9;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    margin-bottom: 8px;
}
.error-404 .error-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px; font-weight: 600; font-size: 0.9rem;
    margin-bottom: 24px;
}
.error-404 .error-badge .dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 10px var(--accent); }
.error-404 h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
}
.error-404 h1 span { color: var(--accent); }
.error-404 p {
    max-width: 560px; margin: 0 auto 40px;
    font-size: 1.15rem; color: rgba(255,255,255,0.7);
}
.error-404 .error-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.error-404 .btn-primary { background: white; color: var(--primary); }
.error-404 .btn-primary:hover { background: rgba(255,255,255,0.88); }
.error-404 .error-links {
    margin-top: 48px; display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.error-404 .error-links a {
    color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 500;
    border-bottom: 1px solid transparent;
}
.error-404 .error-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* page-hero lead jako editor (div.lead > p) — zachová původní vzhled p.lead */
.page-hero .lead { max-width: 700px; }
.page-hero .lead p { font-size: 1.2rem; color: var(--text-muted); }

/* Světlá/bílá loga partnerů — ztmavit, aby nesplývala s bílým pozadím */
.partner-logo--light { filter: brightness(0) opacity(0.5); }
.partner-logo--light:hover { filter: brightness(0) opacity(0.9); transform: scale(1.05); }

/* WP menu (hlavička/patička) — bez odrážek seznamu + aktivní položka */
.nav-links li,
.footer-links li,
.footer-bottom-links li { list-style: none; margin: 0; padding: 0; }
.nav-links li.current-menu-item > a,
.nav-links li.current_page_item > a,
.nav-links li.current-menu-parent > a { color: var(--primary); background: rgba(7, 61, 61, 0.08); }
.footer-links li.current-menu-item > a,
.footer-bottom-links li.current-menu-item > a { color: var(--accent); }

/* Hledání pozic v toolbaru (Volná místa) */
.jobs-toolbar .jobs-search {
    flex: 1 1 220px; min-width: 160px;
    border: 1px solid var(--border); border-radius: 100px;
    padding: 10px 22px;
    font-family: inherit; font-size: 0.95rem; font-weight: 500;
    color: var(--primary); background: var(--bg-body); outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.jobs-toolbar .jobs-search::placeholder { color: var(--text-muted); font-weight: 400; }
.jobs-toolbar .jobs-search:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(7, 61, 61, 0.08); }
.jobs-no-results {
    text-align: center; color: var(--text-muted);
    font-size: 1.1rem; padding: 40px 0;
}
