/* ============================================================
   DTS – Dzień Techniki Sadowniczej
   style.css — mobile-first, breakpoints: 768px, 1200px
   ============================================================ */

/* ---------- 1. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --green-primary: #2D6A2D;
    --green-dark: #1E4A1E;
    --green-darker: #143014;
    --green-light: #E8F0E4;
    --green-hover: #3B8A3B;
    --gold: #F0A500;
    --gold-dark: #C88700;
    --gold-light: #FFD770;
    --white: #FFFFFF;
    --cream: #FDFCF8;
    --text: #1A1A1A;
    --text-muted: #555;
    --text-light: #888;
    --border: #E5E5E5;
    --shadow-sm: 0 2px 8px rgba(30, 74, 30, 0.08);
    --shadow-md: 0 8px 24px rgba(30, 74, 30, 0.12);
    --shadow-lg: 0 16px 48px rgba(30, 74, 30, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --header-height: 72px;
    --container-max: 1200px;
    --transition: 0.3s cubic-bezier(.4, 0, .2, 1);

    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--gold-dark); }

ul, ol { list-style: none; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw + 1rem, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw + 1rem, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1vw + 1rem, 1.5rem); }

p { color: var(--text-muted); }

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

/* ---------- 2. BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--text);
    box-shadow: 0 4px 16px rgba(240, 165, 0, 0.35);
}
.btn-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(240, 165, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--green-dark);
    transform: translateY(-2px);
}

.section .btn-secondary {
    color: var(--green-primary);
    border-color: var(--green-primary);
}
.section .btn-secondary:hover {
    background: var(--green-primary);
    color: var(--white);
}

/* ---------- 3. HEADER / NAV ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0);
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}
.logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: var(--white);
    border-radius: 8px;
    padding: 2px;
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}
.scrolled .logo-text { color: var(--green-dark); }

.main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
}
.main-nav.open { max-height: 500px; }
.main-nav ul {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
}
.main-nav a {
    display: block;
    padding: 0.85rem 0;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}
.main-nav li:last-child a { border-bottom: 0; }
.main-nav a:hover { color: var(--gold-dark); }

.btn-nav-cta {
    display: inline-block !important;
    margin-top: 0.5rem;
    padding: 0.7rem 1.25rem !important;
    background: var(--gold);
    color: var(--text) !important;
    border-radius: 50px !important;
    border: 0 !important;
    text-align: center;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}
.nav-toggle span {
    display: block;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
    transform-origin: center;
}
.scrolled .nav-toggle span { background: var(--green-dark); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ---------- 4. HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(20, 48, 20, 0.88) 0%, rgba(45, 106, 45, 0.75) 100%),
        radial-gradient(circle at 20% 30%, #3B8A3B 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #1E4A1E 0%, transparent 50%),
        linear-gradient(180deg, var(--green-primary), var(--green-darker));
    /* PLACEHOLDER: dodaj zdjęcie sadu/maszyn jako warstwę:
       background:
           linear-gradient(135deg, rgba(20, 48, 20, 0.75), rgba(45, 106, 45, 0.65)),
           url('./assets/hero-orchard.jpg') center/cover no-repeat; */
    overflow: hidden;
    padding: 7rem 0 4rem;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 220px;
    height: 220px;
    border-radius: 24px;
    background: var(--white);
    padding: 4px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    object-fit: contain;
}
@media (min-width: 768px) {
    .hero-logo {
        width: 260px;
        height: 260px;
    }
}
@media (min-width: 1200px) {
    .hero-logo {
        width: 300px;
        height: 300px;
    }
}

.hero-year {
    display: block;
    font-size: 0.55em;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin-top: 0.4rem;
    opacity: 0.92;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--text);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero-title {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.35rem);
    font-style: italic;
    margin-bottom: 1.75rem;
    max-width: 600px;
}

.hero-date {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(0.95rem, 1.5vw + 0.4rem, 1.3rem);
    letter-spacing: 0.04em;
    margin-bottom: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
}
.hero-date .dot { color: var(--gold); font-weight: 400; }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero-scroll span {
    width: 3px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- 5. SECTION BASE ---------- */
.section {
    padding: 4.5rem 0;
}
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}
.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.9rem;
    background: var(--green-light);
    border-radius: 20px;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header .lead {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ---------- 6. O WYDARZENIU ---------- */
.about { background: var(--cream); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3.5rem;
}
/* Wariant 3-kolumnowy (po usunięciu boxu "Zwiedzających") */
.stats-grid-3 {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.stats-grid-3 .stat-num {
    font-size: clamp(1.6rem, 2.5vw + 0.6rem, 2.25rem);
}
.stat-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    color: var(--green-primary);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}
.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-primary);
}
.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--green-primary);
    margin-bottom: 1rem;
    padding: 10px;
    background: var(--green-light);
    border-radius: 12px;
}
.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--green-dark);
}

/* ---------- 7. PROGRAM ---------- */
.program { background: var(--white); }

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, var(--green-primary), var(--gold));
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 23px;
    height: 23px;
    background: var(--gold);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--green-primary);
    z-index: 1;
}
.timeline-time {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}
.timeline-card {
    background: var(--cream);
    border-left: 4px solid var(--green-primary);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}
.timeline-icon {
    width: 36px;
    height: 36px;
    color: var(--green-primary);
    background: var(--white);
    border-radius: 10px;
    padding: 6px;
    flex-shrink: 0;
}
.timeline-card h3 {
    color: var(--green-dark);
    font-size: 1.15rem;
}

/* ---------- 8. WYSTAWCY ---------- */
.exhibitors { background: var(--green-light); }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
.partner-logo {
    aspect-ratio: 3 / 2;
    background: var(--white);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-primary);
    border-style: solid;
}
.partner-logo-wide {
    aspect-ratio: 5 / 2;
    max-width: 400px;
    margin: 0 auto;
}

.media-patron {
    text-align: center;
    margin-bottom: 3rem;
}
.media-patron .eyebrow { margin-bottom: 1rem; }

.exhibitors-cta {
    text-align: center;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.exhibitors-cta p {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 1.25rem;
}

/* ---------- 9. PRELEGENCI ---------- */
.speakers { background: var(--white); }

.speakers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.speaker-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.speaker-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.speaker-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.25rem;
    background: var(--green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}
.speaker-photo svg { width: 70%; height: 70%; }
.speaker-card h3 {
    color: var(--green-dark);
    margin-bottom: 0.3rem;
}
.speaker-role {
    font-size: 0.9rem;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.85rem;
}
.speaker-topic {
    font-style: italic;
    color: var(--text);
    font-size: 1rem;
}

/* ---------- 10. LOKALIZACJA ---------- */
.location { background: var(--green-light); }

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-block {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.info-block h3 {
    color: var(--green-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}
.info-block p, .info-block li {
    color: var(--text-muted);
    line-height: 1.7;
}
.info-block ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}
.info-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-dark);
    font-weight: 800;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.location-map iframe { display: block; min-height: 360px; }

/* ---------- 11. REJESTRACJA ---------- */
.register {
    background:
        linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    color: var(--white);
}
.register .section-header h2 { color: var(--white); }
.register .eyebrow { background: rgba(255, 255, 255, 0.15); color: var(--gold-light); }
.register .section-header .lead { color: rgba(255, 255, 255, 0.85); }

.register-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.register-card {
    background: var(--white);
    color: var(--text);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}
.register-badge {
    position: absolute;
    top: -14px;
    left: 1.75rem;
    background: var(--green-primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
}
.register-badge-gold { background: var(--gold); color: var(--text); }

.register-card h3 {
    color: var(--green-dark);
    margin: 0.75rem 0 0.75rem;
    font-size: 1.5rem;
}
.register-lead {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.register-list {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.register-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
}
.register-list svg {
    width: 22px;
    height: 22px;
    color: var(--green-primary);
    flex-shrink: 0;
}

.pricing-list {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}
.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--border);
}
.pricing-list li:last-child { border-bottom: 0; }
.pricing-label { color: var(--text-muted); }
.pricing-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--green-primary);
    font-size: 1.1rem;
}
.pricing-bonus {
    background: var(--gold-light);
    color: var(--text);
    font-weight: 600;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    text-align: center;
    display: block;
    margin-top: 0.5rem;
}
.pricing-bonus::before { content: '🎯 '; }

.register-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
}
.register-actions .btn { flex: 1; min-width: 180px; }

/* ---------- 12. FAQ ---------- */
.faq { background: var(--cream); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.faq-item[open] {
    border-color: var(--green-primary);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--green-dark);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 3rem;
    transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--green-light); }

.faq-item summary::after {
    content: '';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    width: 14px;
    height: 14px;
    border-right: 3px solid var(--green-primary);
    border-bottom: 3px solid var(--green-primary);
    transform: translateY(-75%) rotate(45deg);
    transition: transform var(--transition);
}
.faq-item[open] summary::after {
    transform: translateY(-25%) rotate(-135deg);
}
.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.faq-item p a {
    font-weight: 600;
    border-bottom: 1px dashed;
}

/* ---------- 13. FOOTER ---------- */
.site-footer {
    background: var(--green-darker);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 3.5rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
}
.footer-brand { text-align: left; }
.footer-logo {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 0.75rem;
    object-fit: contain;
}
.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}
.footer-col a:hover { color: var(--gold); }

.social-list {
    flex-direction: row !important;
    gap: 0.75rem !important;
}
.social-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background var(--transition), transform var(--transition);
}
.social-list a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}
.social-list svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    font-size: 0.85rem;
}
.footer-bottom .container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}
.footer-legal { display: flex; justify-content: center; gap: 0.75rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.6); }
.footer-legal a:hover { color: var(--gold); }

/* ---------- 13b. COMING SOON (wystawcy / prelegenci – „Wkrótce") ---------- */
.coming-soon-section { background: var(--cream); }
.coming-soon-section + .coming-soon-section { padding-top: 0; }

.coming-soon-card {
    max-width: 640px;
    margin: 0 auto;
    padding: 3rem 1.75rem;
    background: var(--white);
    border: 1px dashed var(--green-primary);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.coming-soon-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    padding: 16px;
    background: var(--green-light);
    color: var(--green-primary);
    border-radius: 50%;
}
.coming-soon-card h3 {
    font-size: clamp(1.4rem, 1.5vw + 0.8rem, 2rem);
    color: var(--green-dark);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}
.coming-soon-card h3::after {
    content: '…';
    color: var(--gold);
}
.coming-soon-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* ---------- 11b. REJESTRACJA – pojedyncza karta + CTA wystawcy ---------- */
.register-single {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
.register-single .register-card {
    max-width: 560px;
    width: 100%;
}

.exhibitor-cta {
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 2rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.exhibitor-cta .eyebrow {
    background: rgba(240, 165, 0, 0.2);
    color: var(--gold-light);
    margin-bottom: 0.75rem;
}
.exhibitor-cta h3 {
    color: var(--white);
    font-size: clamp(1.15rem, 1.2vw + 0.8rem, 1.5rem);
    margin-bottom: 0.5rem;
}
.exhibitor-cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto;
}
.exhibitor-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}
.register .exhibitor-cta .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}
.register .exhibitor-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--green-dark);
}

/* ---------- 13. WYSTAWCY – siatka logo ---------- */
.exhibitors-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}
.exhibitor-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(20, 48, 20, 0.07);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.exhibitor-logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(20, 48, 20, 0.13);
}
.exhibitor-logo {
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
}

/* ---------- 13a. PRELEGENCI – siatka logo ---------- */
.speakers-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
}
.speaker-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(20, 48, 20, 0.08);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.speaker-logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(20, 48, 20, 0.15);
}
.speaker-logo {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* ---------- 13c. PATRONAT MEDIALNY ---------- */
.patrons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
    justify-items: center;
}
.patron-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 170px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(20, 48, 20, 0.08);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.patron-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(20, 48, 20, 0.15);
}
.patron-logo {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* ---------- 13b. SPONSORZY ---------- */
.sponsors {
    background: var(--cream);
}
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto;
    justify-items: center;
}
.sponsor-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 170px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(20, 48, 20, 0.08);
    transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
}
.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(20, 48, 20, 0.15);
}
.sponsor-logo {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

/* ---------- 13d. LEGAL PAGES (regulamin, polityka prywatności) ---------- */
.legal-page {
    padding-top: 80px;          /* miejsce na sticky header */
    background: var(--cream);
    min-height: 80vh;
}
.legal-container {
    max-width: 860px;
}
.legal-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(20, 48, 20, 0.12);
}
.legal-header h1 {
    color: var(--green-dark);
    margin: 0.5rem 0 0.75rem;
}
.legal-meta {
    color: rgba(20, 48, 20, 0.7);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}
.legal-download {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.legal-download .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}
.legal-toc {
    background: var(--white);
    border-radius: 14px;
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 18px rgba(20, 48, 20, 0.06);
}
.legal-toc h2 {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
    color: var(--green-dark);
}
.legal-toc ol {
    margin: 0;
    padding-left: 1.5rem;
    columns: 1;
    column-gap: 2rem;
}
@media (min-width: 768px) {
    .legal-toc ol { columns: 2; }
}
.legal-toc li {
    margin-bottom: 0.35rem;
    break-inside: avoid;
}
.legal-toc a {
    color: var(--green-dark);
    text-decoration: none;
}
.legal-toc a:hover {
    text-decoration: underline;
}
.legal-body {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem 2rem 2.5rem;
    box-shadow: 0 4px 18px rgba(20, 48, 20, 0.06);
    line-height: 1.7;
}
.legal-body h2 {
    color: var(--green-dark);
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    scroll-margin-top: 100px;     /* offset dla anchor links pod sticky header */
}
.legal-body h2:first-child {
    margin-top: 0;
}
.legal-body p {
    margin: 0 0 0.85rem;
    text-align: justify;
}
.legal-body ol,
.legal-body ul {
    margin: 0 0 1rem;
    padding-left: 1.75rem;
}
.legal-body ol > li,
.legal-body ul > li {
    margin-bottom: 0.5rem;
    text-align: justify;
}
.legal-body ul ul,
.legal-body ol ul {
    margin-top: 0.5rem;
    list-style-type: circle;
}
.legal-body a {
    color: var(--green-dark);
    text-decoration: underline;
}
.legal-signature {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(20, 48, 20, 0.12);
    text-align: right;
    font-size: 0.95rem;
    color: rgba(20, 48, 20, 0.75);
}
.legal-back {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---------- 14. ANIMACJE ---------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .animate-on-scroll { opacity: 1; transform: none; }
}

/* ============================================================
   BREAKPOINT: ≥ 768px
   ============================================================ */
@media (min-width: 768px) {

    .section { padding: 6rem 0; }

    /* NAV */
    .nav-toggle { display: none; }
    .main-nav {
        position: static;
        background: transparent;
        box-shadow: none;
        max-height: none;
        overflow: visible;
    }
    .main-nav ul {
        flex-direction: row;
        align-items: center;
        gap: 1.75rem;
        padding: 0;
    }
    .main-nav a {
        padding: 0.5rem 0;
        border: 0;
        color: var(--white);
        font-size: 0.9rem;
        position: relative;
    }
    .main-nav a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width var(--transition);
    }
    .main-nav a:hover { color: var(--gold-light); }
    .main-nav a:hover::after { width: 100%; }
    .scrolled .main-nav a { color: var(--text); }
    .scrolled .main-nav a:hover { color: var(--gold-dark); }

    .btn-nav-cta {
        background: var(--gold);
        color: var(--text) !important;
        padding: 0.6rem 1.25rem !important;
        margin-top: 0 !important;
    }
    .btn-nav-cta::after { display: none !important; }
    .btn-nav-cta:hover {
        background: var(--gold-dark);
        transform: translateY(-1px);
    }

    /* O WYDARZENIU */
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .stats-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* EXHIBITOR CTA */
    .exhibitor-cta {
        flex-direction: row;
        text-align: left;
        padding: 2.25rem 2.5rem;
        gap: 2rem;
    }
    .exhibitor-cta-text { flex: 1; }
    .exhibitor-cta-actions { flex-shrink: 0; justify-content: flex-end; }

    /* WYSTAWCY */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    /* PRELEGENCI */
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    /* LOKALIZACJA */
    .location-grid {
        grid-template-columns: 1fr 1.4fr;
        gap: 2.5rem;
        align-items: start;
    }

    /* REJESTRACJA */
    .register-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    /* FOOTER */
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-bottom .container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ============================================================
   BREAKPOINT: ≥ 1200px
   ============================================================ */
@media (min-width: 1200px) {

    .section { padding: 7rem 0; }

    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .partners-grid { grid-template-columns: repeat(6, 1fr); }
    .main-nav ul { gap: 2.25rem; }
}
