:root {
    --primary: #2962FF;
    --primary-light: rgba(41, 98, 255, 0.08);
    --primary-dark: #0039CB;
    --secondary: #00C853;
    --accent: #FF6D00;
    --dark: #0A1929;
    --light-gray: #F7F9FB;
    --mid-gray: #78909C;
    --error: #FF3D00;
    --warning-bg: rgba(255, 235, 156, 0.4);
    --warning-border: #FFC107;
    --warning-text: #FF8F00;
    --shadow: rgba(10, 25, 41, 0.05);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    --card-radius: 24px;
    --button-radius: 16px;
    --gold: #FFB300;
    --gold-light: rgba(255, 179, 0, 0.1);
    --purple: #9C27B0;
    --purple-light: rgba(156, 39, 176, 0.1);
    --teal: #00BCD4;
    --teal-light: rgba(0, 188, 212, 0.1);
    --red: #E91E63;
    --red-light: rgba(233, 30, 99, 0.1);
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--light-gray);
    color: var(--dark);
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* RODO Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 3px solid var(--primary);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-header h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--mid-gray);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.cookie-close:hover {
    background: var(--light-gray);
    color: var(--dark);
}

.cookie-body p {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cookie-categories {
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.category-header label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    flex: 1;
}

.category-description {
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-weight: 400;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--button-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.cookie-btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cookie-btn-primary:hover {
    background: var(--primary-dark);
}

.cookie-btn-secondary {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.cookie-btn-secondary:hover {
    background: #00A844;
}

.cookie-btn-tertiary {
    background: white;
    color: var(--dark);
    border-color: var(--mid-gray);
}

.cookie-btn-tertiary:hover {
    background: var(--light-gray);
}

.cookie-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.cookie-link {
    color: var(--primary);
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-separator {
    color: var(--mid-gray);
}

.cookie-contact {
    color: var(--mid-gray);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

.loading-overlay.show {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--primary-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay p {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.05), rgba(255, 109, 0, 0.05));
    border-radius: var(--card-radius);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.hero-circle-1 {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(41, 98, 255, 0.1), rgba(255, 109, 0, 0.1));
}

.hero-circle-2 {
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(41, 98, 255, 0.1));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--mid-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Assistants Grid */
.assistants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem auto;
    max-width: 1000px;
}

.assistant-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.assistant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.assistant-card:active {
    transform: translateY(-2px);
}

.assistant-card.loading {
    pointer-events: none;
    opacity: 0.7;
}

.assistant-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.assistant-icon {
    font-size: 2rem;
    margin-right: 0.75rem;
}

.assistant-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.assistant-tagline {
    color: var(--mid-gray);
    margin: 0;
    font-size: 0.85rem;
}

.assistant-description {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

.assistant-button {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    color: white;
    align-self: flex-start;
}

.assistant-button:hover {
    transform: translateY(-1px);
}

/* Assistant-specific colors */
.smaug-card { border-left: 4px solid var(--primary); }
.smaug-card .assistant-info h3 { color: var(--primary); }
.smaug-card .assistant-button { background: var(--primary); }
.smaug-card .assistant-button:hover { background: var(--primary-dark); }

.merkury-card { border-left: 4px solid var(--gold); }
.merkury-card .assistant-info h3 { color: var(--gold); }
.merkury-card .assistant-button { background: var(--gold); }
.merkury-card .assistant-button:hover { background: #E65100; }

.sokrates-card { border-left: 4px solid var(--purple); }
.sokrates-card .assistant-info h3 { color: var(--purple); }
.sokrates-card .assistant-button { background: var(--purple); }
.sokrates-card .assistant-button:hover { background: #7B1FA2; }

.tezeusz-card { border-left: 4px solid var(--teal); }
.tezeusz-card .assistant-info h3 { color: var(--teal); }
.tezeusz-card .assistant-button { background: var(--teal); }
.tezeusz-card .assistant-button:hover { background: #0097A7; }

.feniks-card { border-left: 4px solid var(--red); }
.feniks-card .assistant-info h3 { color: var(--red); }
.feniks-card .assistant-button { background: var(--red); }
.feniks-card .assistant-button:hover { background: #C2185B; }

/* Hero Features */
.hero-features {
    text-align: center;
    margin-top: 3rem;
}

.feature-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--mid-gray);
}

.hero-summary {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 500;
}

/* New Improved Comparison Section */
.comparison-section-new {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--card-radius);
    margin: 3rem auto;
    max-width: 1200px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.comparison-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.comparison-header-new {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header-new h3 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.comparison-subtitle {
    color: var(--mid-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.comparison-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-bad {
    border-color: rgba(255, 61, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 245, 245, 0.9), rgba(255, 250, 250, 0.9));
}

.comparison-bad::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF3D00, #FF6D00);
}

.comparison-good {
    border-color: rgba(0, 200, 83, 0.2);
    background: linear-gradient(135deg, rgba(245, 255, 245, 0.9), rgba(250, 255, 250, 0.9));
}

.comparison-good::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00C853, #00E676);
}

.card-header {
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.card-header h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.rating-label {
    font-size: 0.85rem;
    color: var(--mid-gray);
    font-weight: 600;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: bold;
}

.card-problems,
.card-benefits {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.problem-item, .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.problem-item {
    background: rgba(255, 61, 0, 0.05);
}

.problem-item:hover {
    background: rgba(255, 61, 0, 0.1);
}

.benefit-item {
    background: rgba(0, 200, 83, 0.05);
}

.benefit-item:hover {
    background: rgba(0, 200, 83, 0.1);
}

.problem-icon, .benefit-icon {
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.problem-item span:last-child,
.benefit-item span:last-child {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--dark);
}

.card-result {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 600;
}

.comparison-bad .card-result {
    background: rgba(255, 61, 0, 0.1);
    color: #D32F2F;
}

.comparison-good .card-result {
    background: rgba(0, 200, 83, 0.1);
    color: #2E7D32;
}

.comparison-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.vs-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 25px rgba(41, 98, 255, 0.3);
}

.vs-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: bold;
}

/* New Info Sections */
.info-section {
    background: white;
    border-radius: var(--card-radius);
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 800px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border-left: 6px solid var(--secondary);
}

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

.info-title {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.info-description {
    color: var(--mid-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Privacy Tip */
.privacy-tip {
    background: rgba(41, 98, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    max-width: 800px;
    margin: 2rem auto 0;
}

.privacy-tip h4 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-tip p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--mid-gray);
}

/* Assistant Guide Section */
.assistant-guide {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.assistant-guide.show {
    display: block;
}

.guide-header {
    margin-bottom: 2rem;
}

.back-button {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--button-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.back-button:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(41, 98, 255, 0.1));
    padding: 2rem;
    border-radius: var(--card-radius);
    margin: 2rem auto;
    max-width: 700px;
    border-left: 4px solid var(--secondary);
}

.how-it-works h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.how-it-works-description {
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1rem;
}

.how-it-works-steps {
    margin-bottom: 1.5rem;
}

.how-it-works-steps ol {
    margin-left: 1.5rem;
    color: var(--dark);
    line-height: 1.7;
}

.how-it-works-steps li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.how-it-works-tip {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    border-radius: 8px;
    color: var(--dark);
    font-size: 0.9rem;
    text-align: center;
    border: 2px solid rgba(0, 200, 83, 0.3);
}

/* Guide Content Styles */
.guide-content {
    background: white;
    border-radius: var(--card-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
}

.guide-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.guide-subtitle {
    font-size: 1.2rem;
    color: var(--mid-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.value-proposition {
    background: linear-gradient(135deg, rgba(255, 109, 0, 0.1), rgba(41, 98, 255, 0.1));
    padding: 2rem;
    border-radius: var(--card-radius);
    margin: 2rem auto;
    max-width: 700px;
    border-left: 4px solid var(--accent);
}

.step-card {
    background: var(--light-gray);
    border-radius: var(--card-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 6px solid var(--primary);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.step-description {
    color: var(--mid-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.action-instructions {
    background: rgba(0, 200, 83, 0.1);
    border: 2px solid var(--secondary);
    border-radius: var(--button-radius);
    padding: 1.5rem;
    margin: 1rem 0;
}

.action-instructions h4 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.action-instructions ol {
    margin-left: 1.5rem;
    color: var(--dark);
}

.action-instructions li {
    margin-bottom: 0.5rem;
}

.prompt-box {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--button-radius);
    padding: 1.5rem;
    margin: 1rem 0;
    position: relative;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
}

.prompt-box::before {
    content: "📋";
    position: absolute;
    top: -10px;
    right: 10px;
    background: white;
    padding: 0 8px;
    font-size: 1.2rem;
}

.copy-button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--button-radius);
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-button:hover {
    background: #e65100;
    transform: translateY(-2px);
}

/* SOS Button */
.sos-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--error);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(255, 61, 0, 0.3);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 61, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(255, 61, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(255, 61, 0, 0.3);
    }
}

.sos-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(255, 61, 0, 0.4);
    animation: none;
}

/* SOS Panel */
.sos-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: white;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
}

.sos-header {
    background-color: var(--error);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.sos-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.sos-content {
    padding: 2rem;
}

.sos-technique {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary);
}

.sos-technique h4 {
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.sos-technique ul, .sos-technique ol {
    margin-left: 1.5rem;
}

.emergency-contact {
    background-color: rgba(255, 61, 0, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 1.5rem;
}

.emergency-button {
    display: block;
    width: 100%;
    background-color: var(--error);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin-top: 1rem;
    transition: all 0.2s ease;
}

.emergency-button:hover {
    background-color: #d33200;
    transform: translateY(-2px);
}

.sos-info-small {
    font-size: 0.8rem;
    color: var(--mid-gray);
    margin-top: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 4rem;
    color: var(--mid-gray);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-credits {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.footer-owner {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }

    .assistants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem auto;
    }

    .assistant-card {
        padding: 1.5rem;
    }

    .feature-list {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .step-number {
        align-self: flex-start;
    }

    .guide-content {
        padding: 1.5rem;
    }

    .guide-title {
        font-size: 2rem;
    }

    .sos-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .sos-panel {
        width: 95%;
        margin: auto;
        top: 2.5vh;
        transform: translate(-50%, 0);
        left: 50%;
    }

    .privacy-tip {
        margin-left: 0;
        margin-right: 0;
    }
    
    .info-section {
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1.5rem;
    }
    
    /* New comparison section mobile */
    .comparison-section-new {
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1.5rem;
    }
    
    .comparison-header-new h3 {
        font-size: 1.5rem;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-vs {
        order: 2;
        flex-direction: row;
    }
    
    .vs-arrow {
        transform: rotate(90deg);
    }
    
    .comparison-card {
        padding: 1.5rem;
        min-height: 450px;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .card-header h4 {
        font-size: 1.2rem;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        padding: 1.5rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .how-it-works {
        margin-left: 0;
        margin-right: 0;
        padding: 1.5rem;
    }
    
    .how-it-works-steps ol {
        margin-left: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .assistant-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .assistant-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }

    .prompt-box {
        font-size: 0.85rem;
        padding: 1rem;
    }
    
    .comparison-section-new {
        padding: 1.5rem 1rem;
    }
    
    .comparison-header-new h3 {
        font-size: 1.3rem;
    }
    
    .comparison-card {
        padding: 1rem;
        min-height: 400px;
    }
    
    .card-header h4 {
        font-size: 1.1rem;
    }
    
    .problem-item, .benefit-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .vs-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Print styles */
@media print {
    body {
        background-color: white;
    }
    .sos-button,
    .loading-overlay,
    .cookie-banner,
    .back-button,
    .hero-section,
    .info-section,
    .privacy-tip,
    footer,
    .copy-button {
        display: none !important;
    }

    .container, .guide-content {
        padding: 0 !important;
        box-shadow: none !important;
    }

    .step-card {
        page-break-inside: avoid;
    }
}

/* Style dla dynamicznie generowanej zawartości */

/* Boxy z ostrzeżeniami i wskazówkami */
.disclaimer-box, .important-tip {
    border-radius: var(--button-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    border-left-width: 6px;
    border-left-style: solid;
}

.disclaimer-box {
    background-color: var(--warning-bg);
    border-color: var(--warning-border);
}

.important-tip {
    background-color: var(--primary-light);
    border-color: var(--primary);
}

.disclaimer-title, .tip-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.disclaimer-title {
    color: var(--warning-text);
}

.tip-title {
    color: var(--primary);
}

.disclaimer-box p, .important-tip p {
    color: var(--dark);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Box z gratulacjami na końcu */
.congrats-box {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(41, 98, 255, 0.1));
    border-radius: var(--card-radius);
    padding: 2.5rem;
    margin-top: 3rem;
    text-align: center;
    border: 2px solid var(--secondary);
}

.congrats-box h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.congrats-box p {
    color: var(--mid-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 0.5rem;
}

