:root {
    /* Dark Executive Palette - Refined */
    --bg-color: #050505;
    --bg-secondary: #0d0d0d;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --accent-gold: #D4AF37;
    --accent-gold-soft: rgba(212, 175, 55, 0.15);
    --accent-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F1D484 50%, #B8860B 100%);
    --border-color: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(13, 13, 13, 0.6);
    --glass-border: rgba(255, 255, 255, 0.12);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Effects */
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism utility - Enhanced */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Typography styles */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
}

.subtitle {
    display: block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 2px;
}

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent-gold-gradient);
    color: #0d0d0d;
    border: none;
    box-shadow: var(--glow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    color: #000;
}

.btn-glow {
    position: relative;
    overflow: hidden;
    animation: buttonPulse 3s infinite;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.btn-glow:hover::after {
    opacity: 1;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 5rem; /* account for navbar */
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Utilities for JS animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.fade-up-scroll {
    opacity: 0;
    transform: translateY(40px);
}

/* Layout & Sections */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    margin: 0 auto;
}

.mt-2 {
    margin-top: 2rem;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    padding: 2rem 0 0 2rem;
}

.profile-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: 2;
    position: relative;
    border-radius: 2px;
    filter: grayscale(80%) contrast(1.1);
    transition: filter 0.5s ease;
}

.profile-img:hover {
    filter: grayscale(0%) contrast(1.1);
}

.gold-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%;
    border: 2px solid var(--accent-gold);
    z-index: 1;
}

/* Services Section */
.services {
    background-color: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 3rem 2.5rem;
    border-radius: 8px;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(212, 175, 55, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

/* Lead Magnet Section */
.lead-magnet {
    padding: 8rem 0;
    position: relative;
    z-index: 5;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
}

.lm-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%);
    padding: 4rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.lm-grid::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold-soft) 0%, transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}

.lm-content h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.lm-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.lm-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 600px;
}

.lm-input-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.lm-form input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #fff;
    font-family: var(--font-body);
}

.lm-form .btn {
    white-space: nowrap;
    padding: 1.1rem 2rem;
}

@media (max-width: 600px) {
    .lm-input-group {
        flex-direction: column;
    }
}

.lm-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.lm-image-placeholder img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        padding: 1rem 0 0 1rem;
        max-width: 500px;
        margin: 0 auto 3rem auto;
    }
    .contact-container {
        grid-template-columns: 1fr;
    }
    .media-grid {
        grid-template-columns: 1fr;
    }
}

/* Store Section */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.product-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center;
    filter: none;
    transition: transform 0.5s ease;
}

.product-info {
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content-top {
    min-height: 140px; /* Standardize height for title + description */
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin-bottom: 0;
    line-height: 1.6;
}

.product-actions {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.btn-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.btn-link:hover {
    color: #fff;
    transform: translateX(3px);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.btn-link:hover i {
    transform: translateX(4px);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    margin-top: auto;
    margin-bottom: 0;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Media Section */
.media {
    background-color: var(--bg-secondary);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.media-item iframe {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-color); /* naprzemienny kolor z media */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, filter 0.4s ease, border-color 0.4s ease;
    filter: grayscale(80%) sepia(10%) contrast(1.1);
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--accent-gold);
    z-index: 10;
    filter: grayscale(0%) sepia(0%) contrast(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Featured Event Section */
.featured-event {
    padding: 3rem 0;
    background-color: var(--bg-color);
}

.event-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--accent-gold);
}

.event-date {
    display: inline-block;
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.event-card h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-color);
}

.event-card p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: var(--text-dim);
}

.event-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.event-footer .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.event-footer .btn {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
    letter-spacing: 0.2rem;
}

@media (max-width: 768px) {
    .event-card h2 { font-size: 2.5rem; }
    .event-footer .price { font-size: 2.5rem; }
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
}

.contact-form {
    padding: 3rem;
    border-radius: 4px;
}

.contact-form h3 {
    margin-bottom: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

/* Footer */
footer {
    background-color: #050505;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-copy {
    color: #666;
    font-size: 0.8rem;
}

/* Wide Service Card (Recruitment) */
.mt-3 {
    margin-top: 3rem;
}

.service-card-wide {
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(13, 13, 13, 0.7);
    text-align: left;
    position: relative;
    border-left: 4px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card-wide h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.service-card-wide p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Modal System - Premium Experience */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: block;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(135deg, #121212 0%, #080808 100%);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--accent-gold-soft);
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-gold);
}

.modal-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.modal-header h2 {
    color: var(--accent-gold);
    font-size: 2.2rem;
}

.modal-header .subtitle {
    margin-bottom: 0.5rem;
}

.modal-body {
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-body h4 {
    color: #fff;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Agenda List Styling */
.agenda-list {
    list-style: none;
    margin-bottom: 2rem;
}

.agenda-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agenda-time {
    color: var(--accent-gold);
    font-weight: 600;
    font-family: var(--font-body);
}

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

.modal-footer {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

/* Service Card Adjustments */
.service-card .btn-link {
    margin-top: 1.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.service-card .btn-link:hover {
    gap: 12px;
}

.service-card .btn-link i {
    font-size: 1.1rem;
}

/* VOD & E-Book Modal Specifics */
.vod-modules {
    margin-top: 1.5rem;
}

.vod-modules p {
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.bonus-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.mt-2 { margin-top: 2rem; }

/* Bio Modal Specific Styles */
.bio-modal {
    max-width: 900px;
    width: 95%;
}

.bio-modal-scroll {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
}

.bio-modal-scroll::-webkit-scrollbar {
    width: 4px;
}

.bio-modal-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.bio-modal-scroll::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

/* Bio Modal - Editorial Transformation */
.bio-editorial {
    max-width: 720px;
    margin: 0 auto;
    font-family: var(--font-body);
}

.bio-editorial p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
}

.bio-lead {
    font-size: 1.4rem !important;
    color: var(--text-primary) !important;
    line-height: 1.6 !important;
    font-weight: 500;
    margin-bottom: 3rem !important;
    text-align: left !important;
    position: relative;
    padding-left: 25px;
    border-left: 2px solid var(--accent-gold);
}

.bio-highlight-text {
    color: var(--accent-gold);
    font-weight: 600;
}

.exclusive-divider {
    height: 1px;
    width: 100px;
    background: var(--accent-gold-gradient);
    margin: 3rem 0;
    opacity: 0.6;
}

.bio-quote-block {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(212, 175, 55, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    position: relative;
}

.bio-quote-block p {
    margin-bottom: 0;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    text-align: left;
}

.bio-quote-block::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .bio-editorial p {
        text-align: left;
        font-size: 1.05rem;
    }
    
    .bio-lead {
        font-size: 1.2rem !important;
    }
}

