/* ================================================
   TWÓJ PRACOWNIK AI — Dark Mode Landing Page
   Inspiracja: Specify (specifyapp.com)
   ================================================ */

/* === VARIABLES === */
:root {
    /* Background */
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-card: #18181b;
    --bg-elevated: #1f1f23;
    
    /* Primary — Purple/Violet */
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --primary-glow: rgba(139, 92, 246, 0.15);
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    --gradient-hover: linear-gradient(135deg, #a78bfa 0%, #818cf8 100%);
    
    /* Text */
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Borders */
    --border-default: #27272a;
    --border-hover: #3f3f46;
    --border-accent: rgba(139, 92, 246, 0.5);
    
    /* Semantic */
    --success: #22c55e;
    --error: #ef4444;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
    
    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1200px;
    --container-narrow: 800px;
}

/* === TEST BANNER ===
   Żółty banner "TEST" w prawym górnym rogu.
   Wyświetlany na środowisku testowym.
   Na produkcji: banner jest automatycznie ukrywany przez js/env-banner.js
*/
.test-banner {
    position: fixed;
    top: 12px;
    right: -35px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 3rem;
    transform: rotate(45deg);
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.test-banner--hidden {
    display: none !important;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    background: var(--bg-primary);
    min-height: 100vh;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-light);
}

/* === LAYOUT === */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

section {
    padding: var(--section-padding) 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary-light);
}

.btn-block {
    width: 100%;
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-default);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.nav .btn {
    margin-left: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* === HERO === */
.hero {
    padding-top: calc(var(--section-padding) + 80px);
    padding-bottom: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-glow);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* === PAIN POINTS === */
.pain-points {
    background: var(--bg-secondary);
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    margin-bottom: 0.75rem;
    color: #f87171;
}

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

/* === SOLUTION / FEATURES === */
.solution {
    background: var(--bg-primary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary-glow);
    border: 1px solid var(--border-accent);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-light);
}

/* === HOW IT WORKS === */
.how-it-works {
    background: var(--bg-secondary);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

.step-content h3 {
    margin-bottom: 0.5rem;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--border-default);
    margin-top: 30px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .step-line {
        display: none;
    }
}

/* === PRICING === */
.pricing {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1.25rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid var(--border-default);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--success);
    font-weight: bold;
}

.pricing-features .check.highlight {
    color: var(--primary);
}

.pricing-features .x {
    color: var(--text-muted);
}

.pricing-features .disabled {
    color: var(--text-muted);
}

/* 3-column pricing grid */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .pricing-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-3 .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .pricing-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-3 .pricing-card:last-child {
        max-width: none;
    }
}

/* Pricing addon info */
.pricing-addon {
    font-size: 0.8125rem;
    color: var(--primary-light);
    background: var(--primary-glow);
    border: 1px solid var(--border-accent);
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* 4-column pricing grid (legacy) */
.pricing-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (max-width: 1200px) {
    .pricing-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Activation fee */
.pricing-activation {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.pricing-activation.free {
    color: var(--success);
    font-weight: 500;
}

/* Price prefix (od) */
.price-prefix {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-right: 0.25rem;
}

/* Pricing info box */
.pricing-info {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.pricing-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Addon Card */
.addon-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    flex-wrap: wrap;
}

.addon-icon {
    font-size: 2.5rem;
}

.addon-content {
    flex: 1;
    min-width: 200px;
}

.addon-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.addon-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.addon-price {
    text-align: right;
}

.addon-price .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-light);
}

.addon-price .period {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* === FAQ === */
.faq {
    background: var(--bg-secondary);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-item[open] {
    border-color: var(--border-accent);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
}

/* === CTA FINAL === */
.cta-final {
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* === FOOTER === */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-default);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-default);
}

.footer-brand p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--text-secondary);
}

/* === MOBILE NAV === */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    .nav a {
        font-size: 1.25rem;
    }
    
    .nav .btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .nav {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .addon-card {
        flex-direction: column;
        text-align: center;
    }
    
    .addon-price {
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   COOKIE CONSENT BANNER — Premium Design
   ================================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border-top: 1px solid var(--border-default);
    padding: 1rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 -4px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(139, 92, 246, 0.05);
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner--hidden {
    transform: translateY(100%);
}

.cookie-banner__content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__text {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex: 1;
}

.cookie-banner__icon {
    font-size: 1.375rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.3));
}

.cookie-banner__text p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-banner__link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.cookie-banner__link:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-banner__actions {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.625rem 1.125rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-btn--primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.cookie-btn--primary:hover {
    background: var(--gradient-hover);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.4);
    transform: translateY(-1px);
}

.cookie-btn--secondary {
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border: 1px solid var(--border-default);
}

.cookie-btn--secondary:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: var(--bg-primary);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner__text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-banner__icon {
        font-size: 1.5rem;
    }
    
    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner__actions {
        flex-direction: column-reverse;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}

/* ================================================
   SUCCESS PAGE
   ================================================ */

.success-page {
    padding-top: calc(var(--section-padding) + 80px);
    padding-bottom: var(--section-padding);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: successPop 0.5s ease-out;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-content h1 {
    margin-bottom: 1rem;
}

.success-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Timeline */
.timeline {
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: var(--border-default);
}

.timeline-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-default);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-number {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 1rem;
}

.timeline-check {
    display: none;
    color: white;
    font-weight: bold;
}

.timeline-item.active .timeline-marker {
    background: var(--gradient-primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.timeline-item.active .timeline-number {
    display: none;
}

.timeline-item.active .timeline-check {
    display: block;
}

.timeline-content {
    flex: 1;
    padding-top: 0.25rem;
}

.timeline-content h3 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* Next Steps */
.next-steps {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.next-step-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-elevated);
    border-radius: 0.75rem;
    border: 1px solid var(--border-default);
}

.next-step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.next-step-content h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.next-step-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.next-step-content p:last-child {
    margin-bottom: 0;
}

.next-step-content .btn {
    margin-top: 0.5rem;
}

.success-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* ================================================
   CANCEL PAGE
   ================================================ */

.cancel-page {
    padding-top: calc(var(--section-padding) + 80px);
    padding-bottom: var(--section-padding);
    min-height: 100vh;
}

.cancel-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cancel-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.cancel-content h1 {
    margin-bottom: 1rem;
}

.cancel-lead {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cancel-info {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.cancel-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.cancel-email {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: color 0.2s;
}

.cancel-email:hover {
    color: var(--primary);
}

.cancel-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cancel-faq {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    text-align: left;
}

.cancel-faq h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cancel-faq ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cancel-faq li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cancel-faq li strong {
    color: var(--text-primary);
}

.cancel-faq a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cancel-faq a:hover {
    color: var(--primary);
}

@media (max-width: 480px) {
    .cancel-actions {
        flex-direction: column;
    }
    
    .cancel-actions .btn {
        width: 100%;
    }
}

/* ===========================
   CHECKOUT PAGE — Form Styles
   (shared between zamow.html page styles and any future forms)
   =========================== */

/* Form styles - reusable */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-default);
    border-radius: 0.625rem;
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:hover,
.form-group select:hover {
    border-color: var(--border-hover);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2371717a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.required {
    color: var(--error);
    font-weight: 600;
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.75rem;
}

.form-checkbox {
    margin-bottom: 1.5rem;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 0.1rem;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.form-checkbox a:hover {
    color: var(--primary);
}
