/* Reset i zmienne */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #1a237e; /* granat */
    --primary-light: #3949ab;
    --accent: #fbc02d; /* żółty */
    --bg-light: #f8f9fc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow: 0 20px 60px rgba(0,0,0,0.08);
    --radius: 24px;
    --transition: 0.25s ease;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon { font-size: 32px; color: var(--primary); }
.logo-text { font-weight: 700; font-size: 1.4rem; }
.logo-text .highlight { color: var(--accent); }

/* PRZYCISKI */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-large { padding: 14px 32px; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn-success { background: #2e7d32; color: white; }
.btn-success:hover { background: #1b5e20; }

/* HERO */
.hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #0d1445 0%, #1a237e 100%);
    color: var(--white);
    border-radius: 0 0 40px 40px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content .badge {
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 16px;
}
.hero-content h1 { font-size: 2.6rem; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
.hero-desc { font-size: 1.1rem; opacity: 0.85; margin-bottom: 24px; max-width: 480px; }
.hero-image .hero-placeholder {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    border: 2px dashed rgba(255,255,255,0.2);
}
.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    font-size: 0.9rem;
}
.trust-badges span { display: flex; align-items: center; gap: 6px; }

/* STEPS */
.steps { padding: 60px 0; text-align: center; }
.steps h2 { font-size: 2rem; margin-bottom: 40px; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.step-card {
    background: var(--white);
    padding: 24px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); }
.step-number {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-weight: 700;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    margin-bottom: 12px;
}
.step-icon { font-size: 36px; color: var(--primary); }

/* TICKET SELECTION */
.ticket-selection { padding: 40px 0 60px; }
.ticket-selection h2 { text-align: center; margin-bottom: 32px; }
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.ticket-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}
.ticket-card:hover { border-color: var(--accent); transform: scale(1.02); }
.ticket-icon { font-size: 48px; color: var(--primary); }
.price { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }

/* SCANNER PANEL */
.scanner-section { padding: 40px 0; }
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}
.scenario-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.scenario-card h3 { margin: 8px 0; }

/* FOOTER */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #1e293b;
    margin-top: 40px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .trust-badges { justify-content: center; flex-wrap: wrap; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
}