/* ==========================================
   RASPUTIN RZESZÓW - REKRUTACJA & KARIERA
   Dedicated Modern Landing Page Stylesheet
   ========================================== */

:root {
    --bg-dark: #09090c;
    --bg-dark-2: #111116;
    --bg-card: #15151c;
    --bg-card-hover: #1b1b24;
    --border-color: rgba(212, 175, 55, 0.18);
    --border-light: rgba(255, 255, 255, 0.08);
    
    --gold-primary: #e6c875;
    --gold-accent: #d4af37;
    --gold-dark: #aa8214;
    --gold-glow: rgba(212, 175, 55, 0.35);
    
    --text-main: #f5f5f8;
    --text-muted: #a0a0b0;
    --text-gold: #e6c875;
    
    --accent-green: #25D366;
    --accent-red: #8B0000;
    
    --font-heading: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    
    --container-max: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.gold-text {
    color: var(--gold-primary);
}

.text-center {
    text-align: center;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 14px auto 20px;
}

/* Top Announcement Bar */
.top-bar {
    background: linear-gradient(90deg, #18150a, #2c2208, #18150a);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--gold-primary);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.35);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.top-bar-link:hover {
    background: var(--accent-green);
    color: #000;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 9, 12, 0.92);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(9, 9, 12, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-symbol {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 15px var(--gold-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-nav-apply {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    height: 38px;
    padding: 0 18px;
    border-radius: 25px;
    font-size: 0.86rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--gold-glow);
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-nav-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-wa-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    height: 38px;
    padding: 0 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-wa-header:hover {
    background: var(--accent-green);
    color: #000;
}

.btn-tg-header {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid #0088cc;
    color: #29b6f6;
    height: 38px;
    padding: 0 14px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-tg-header:hover {
    background: #0088cc;
    color: #fff;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    font-size: 1.25rem;
    height: 38px;
    width: 42px;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-dark-2);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
}

.drawer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1px;
}

.drawer-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 8px 0;
}

.btn-drawer-apply {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000 !important;
    text-align: center;
    border-radius: 8px;
    padding: 12px !important;
    font-weight: 700;
    margin-top: 10px;
}

.btn-drawer-wa {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid var(--accent-green);
    color: var(--accent-green) !important;
    text-align: center;
    border-radius: 8px;
    padding: 12px !important;
    font-weight: 700;
}

/* Section Shared */
.section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.4px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 90px 0 70px;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 10% 80%, rgba(139, 0, 0, 0.12) 0%, transparent 50%);
    border-bottom: 1px solid var(--border-light);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: 25px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.1rem;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 30px;
}

.hero-perks-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-badge i {
    color: var(--gold-primary);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    padding: 15px 30px;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px var(--gold-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.btn-hero-wa {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 15px 28px;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-wa:hover {
    background: var(--accent-green);
    color: #000;
    transform: translateY(-3px);
}

/* Glass Card Preview */
.preview-glass-card {
    background: rgba(21, 21, 28, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.preview-badge {
    background: var(--gold-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.preview-city {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.preview-glass-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 25px;
}

.preview-list li {
    font-size: 0.92rem;
    color: #d1d1db;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.preview-list li i {
    color: var(--gold-primary);
    margin-top: 3px;
}

.preview-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.gold-amount {
    font-size: 1.3rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
}

/* Stats Section */
.stats-bar-section {
    background: var(--bg-dark-2);
    border-bottom: 1px solid var(--border-light);
    padding: 30px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Positions Section */
.positions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.position-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.position-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.featured-position {
    background: linear-gradient(180deg, #1e1b12 0%, var(--bg-card) 100%);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 10px 35px var(--gold-glow);
}

.card-closed {
    opacity: 0.55;
    filter: grayscale(0.4);
    border-color: rgba(255, 255, 255, 0.06);
}

.card-closed:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.card-badge-closed {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 60, 60, 0.18);
    border: 1px solid rgba(255, 60, 60, 0.5);
    color: #ff8585;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 12px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.card-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.featured-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 15px;
    white-space: nowrap;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.position-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin: 10px auto 20px;
}

.position-icon-box.gold-glow {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
}

.position-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    text-align: center;
    margin-bottom: 12px;
    color: #fff;
}

.salary-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    margin-bottom: 18px;
}

.featured-salary {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--border-color);
}

.rate-range {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.rate-period {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.position-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-details {
    flex-grow: 1;
    margin-bottom: 25px;
}

.position-details h5 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 14px 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.position-details ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.position-details li {
    font-size: 0.85rem;
    color: #d1d1db;
    position: relative;
    padding-left: 16px;
}

.position-details li::before {
    content: "•";
    color: var(--gold-primary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    line-height: 1;
}

.btn-card-apply {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-card-apply:hover {
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
}

.btn-card-apply.btn-closed {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #888899 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-gold-solid {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    border: none;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-gold-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Safety Section */
.safety-section {
    background: var(--bg-dark-2);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.safety-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 30px 20px;
    transition: var(--transition);
}

.safety-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.safety-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.safety-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #fff;
}

.safety-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Why Section */
.why-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.why-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: #fff;
    margin: 10px 0 15px;
}

.why-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 18px;
}

.why-item-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.why-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.why-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.why-image-card {
    background: linear-gradient(135deg, rgba(21, 21, 28, 0.95), rgba(10, 10, 14, 0.95));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.quote-stars {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.quote-text {
    font-family: var(--font-accent);
    font-size: 1.18rem;
    font-style: italic;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Steps Section */
.steps-section {
    background: var(--bg-dark-2);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 35px 25px;
    position: relative;
    text-align: center;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.15);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--border-color);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--border-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
    gap: 15px;
}

.faq-question i {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 20px;
}

/* Apply Section & Form */
.apply-section {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.apply-box {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.apply-header {
    margin-bottom: 35px;
}

.apply-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #fff;
    margin: 10px 0 10px;
}

.apply-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 13px 16px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* Photo Upload Button Row */
.photo-upload-wrapper {
    width: 100%;
}

.photo-upload-btn-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 18px;
    transition: var(--transition);
}

.photo-upload-btn-row:hover {
    border-color: var(--border-color);
}

.btn-upload-file {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    border: none;
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 12px var(--gold-glow);
}

.btn-upload-file:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.5);
}

.photo-upload-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.file-preview-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 18px;
    margin-top: 10px;
}

#file-preview-img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid var(--gold-primary);
}

.file-preview-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#file-preview-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-remove-photo {
    background: rgba(255, 60, 60, 0.15);
    border: 1px solid rgba(255, 60, 60, 0.4);
    color: #ff6b6b;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.btn-remove-photo:hover {
    background: #ff4d4d;
    color: #fff;
}

.apply-form-footer {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.btn-submit-apply {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 35px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 25px var(--gold-glow);
    transition: var(--transition);
}

.btn-submit-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.direct-contact-divider {
    text-align: center;
    position: relative;
    margin: 5px 0;
}

.direct-contact-divider span {
    background: var(--bg-card);
    padding: 0 15px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.direct-contact-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.btn-wa-action {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
    padding: 13px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.btn-wa-action:hover {
    background: var(--accent-green);
    color: #000;
}

.btn-tg-action {
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid #0088cc;
    color: #29b6f6;
    padding: 13px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.btn-tg-action:hover {
    background: #0088cc;
    color: #fff;
}

.btn-tel-action {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: #fff;
    padding: 13px;
    border-radius: 25px;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.btn-tel-action:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Footer */
.footer {
    background: #050507;
    border-top: 1px solid var(--border-light);
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 450px;
}

.footer-info h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.9);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.modal-icon.gold-icon {
    color: var(--gold-primary);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.modal-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.modal-payload-preview {
    background: var(--bg-dark);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
    white-space: pre-wrap;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.modal-actions button,
.modal-actions a {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.modal-actions .btn-whatsapp {
    background: var(--accent-green);
    color: #000;
}

/* ==========================================================================
   Financial Breakdown & Salary Tiles (Kafelki Finansowe)
   ========================================================================== */
.financial-section {
    background: #0d0d12;
    padding: 90px 0;
    position: relative;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 35px;
}

.luxury-fin-card {
    background: #14141c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.luxury-fin-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.luxury-fin-card.featured-fin {
    background: linear-gradient(180deg, #1f1b12 0%, #14141c 100%);
    border: 2px solid var(--gold-primary);
    box-shadow: 0 12px 35px var(--gold-glow);
}

.fin-tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.fin-tile-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.fin-pill-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.fin-pill-badge.gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-primary);
    border: 1px solid var(--border-color);
}

.fin-pill-badge.green {
    background: rgba(37, 211, 102, 0.18);
    color: var(--accent-green);
    border: 1px solid rgba(37, 211, 102, 0.4);
}

.fin-tile-value {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 6px;
}

.fin-tile-value span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-primary);
}

.fin-tile-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.fin-tile-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 18px;
    flex-grow: 1;
}

.fin-tile-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fin-tile-perks li {
    font-size: 0.82rem;
    color: #d1d1db;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fin-tile-perks li i {
    color: var(--accent-green);
    font-size: 0.85rem;
}

.fin-highlight-pill {
    background: rgba(212, 175, 55, 0.08);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e5c97a;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.fin-summary-bento {
    background: linear-gradient(135deg, rgba(25, 23, 17, 0.9), rgba(16, 16, 22, 0.95));
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px 35px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.summary-bento-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
}

.summary-bento-text h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 6px;
}

.summary-bento-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.summary-bento-stat {
    text-align: right;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-primary);
    padding: 14px 22px;
    border-radius: 16px;
}

.summary-bento-stat .stat-small {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.summary-bento-stat .stat-big {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold-primary);
}

/* ==========================================================================
   Accommodation Bento Grid (Kafelki Mieszkaniowe)
   ========================================================================== */
.accommodation-section {
    background: #0a0a0e;
    padding: 90px 0;
    border-bottom: 1px solid var(--border-light);
}

.acco-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.acco-tile {
    background: #14141c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.acco-tile:hover {
    transform: translateY(-5px);
    border-color: var(--border-color);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.acco-tile-icon-box {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.acco-tile h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.acco-tile p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.acco-price-banner {
    background: linear-gradient(135deg, rgba(30, 27, 18, 0.95), rgba(18, 18, 24, 0.95));
    border: 2px solid var(--gold-primary);
    border-radius: 20px;
    padding: 30px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 35px var(--gold-glow);
}

.acco-banner-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.acco-banner-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
}

.acco-banner-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 4px;
}

.acco-banner-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.acco-banner-price {
    text-align: right;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    padding: 14px 24px;
    border-radius: 16px;
}

.acco-price-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
}

.acco-price-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ==========================================================================
   Foreign Workers Bento Section (Kafelki Cudzoziemki)
   ========================================================================== */
.foreign-section-wrapper {
    margin-top: 50px;
    background: #121218;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
}

.foreign-header-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.foreign-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.foreign-header-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 6px;
}

.foreign-header-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

.foreign-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.foreign-sub-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 20px;
    transition: var(--transition);
}

.foreign-sub-tile:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.04);
}

.foreign-sub-tile h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.foreign-sub-tile h4 i {
    color: var(--gold-primary);
}

.foreign-sub-tile p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
    .nav-menu {
        gap: 14px;
    }
    .nav-link {
        font-size: 0.82rem;
    }
}

@media (max-width: 980px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: inline-flex;
    }
    
    .hero-container,
    .why-container,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .positions-grid,
    .safety-grid,
    .steps-grid,
    .financial-grid,
    .foreign-tiles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .acco-bento-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .btn-wa-header span,
    .btn-tg-header span {
        display: none;
    }
    
    .btn-wa-header,
    .btn-tg-header {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .positions-grid,
    .safety-grid,
    .steps-grid,
    .financial-grid,
    .foreign-tiles-grid,
    .acco-bento-grid {
        grid-template-columns: 1fr;
    }

    .fin-summary-bento {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .summary-bento-stat {
        text-align: center;
    }

    .acco-price-banner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .acco-banner-left {
        flex-direction: column;
        text-align: center;
    }

    .acco-banner-price {
        text-align: center;
        width: 100%;
    }

    .foreign-section-wrapper {
        padding: 25px 20px;
    }

    .foreign-header-box {
        flex-direction: column;
        text-align: center;
    }

    .foreign-header-icon {
        margin: 0 auto;
    }

    .trust-banner-intimate {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row,
    .direct-contact-buttons {
        grid-template-columns: 1fr;
    }
    
    .apply-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .btn-nav-apply span {
        display: none;
    }
    .btn-nav-apply {
        padding: 0 12px;
    }
    .top-bar-links-group {
        flex-direction: column;
        gap: 4px;
    }
}
