/* --- ZAKTUALIZOWANY SYSTEM DESIGNU BANZEO (Premium Visual Identity) --- */

:root {
    --primary-dark: #1A1A1A;       /* Kolor Grafitowy oficjalny z księgi znaku */
    --accent-orange: #FF6A00;      /* Kolor Pomarańczowy oficjalny z księgi znaku */
    --accent-orange-light: #fff7ed;/* Jasne tło akcentujące */
    --text-main: #475569;          /* Czytelny szary dla akapitów */
    --text-heading: #1A1A1A;       /* Głęboki grafit dla mocnych nagłówków */
    --bg-light: #f8fafc;           
    --border-color: #e2e8f0;       
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset i bazy */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Kontenery układu */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* KODOWANIE SYGNETU I LOGO Z KSIĘGI ZNAKU */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-sygnet {
    display: flex;
    align-items: stretch;
    height: 32px;
    gap: 4px;
}

.sygnet-bar {
    width: 6px;
    background-color: var(--primary-dark);
    border-radius: 3px;
}

.sygnet-m {
    width: 18px;
    border: 6px solid var(--accent-orange);
    border-left: none;
    border-radius: 0 8px 8px 0;
    position: relative;
}

.sygnet-m::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background-color: var(--accent-orange);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
}

.logo-subtext {
    font-size: 8px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1.8px;
    margin-top: 2px;
}

/* Top Navigation Bar */
.top-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 14px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-tagline {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sekcja Hero */
.hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #2e2e2e 100%);
    color: #ffffff;
    padding: 90px 0 110px 0;
    position: relative;
    overflow: hidden;
}

.hero-main-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 24px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.hero-lead {
    font-size: 19px;
    color: #cbd5e1;
    margin: 0 0 40px 0;
    line-height: 1.65;
}

.badge-premium {
    background-color: rgba(255, 106, 0, 0.15);
    color: #ffedd5;
    border: 1px solid rgba(255, 106, 0, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 54px;
    align-items: center;
}

/* Przyciski Akcji (CTA) */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(255, 106, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e05d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 106, 0, 0.4);
}

/* Karta Statystyk */
.hero-stats-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-stats-card .card-header h3 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #94a3b8;
    margin-top: 0;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-num::after {
    content: "";
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--accent-orange);
    margin-top: 6px;
}

.stat-label {
    font-size: 12px;
    color: #cbd5e1;
    line-height: 1.4;
    font-weight: 600;
}

.card-platforms h4 {
    font-size: 11px;
    color: #94a3b8;
    margin: 0 0 14px 0;
    letter-spacing: 0.5px;
}

.platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.platform-tags span {
    background-color: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
}

.platform-tags .channels-more {
    border-color: rgba(255, 106, 0, 0.4);
    color: #fb923c;
}

/* Struktura Sekcji */
.section {
    padding: 90px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.centered-title {
    max-width: 800px;
    margin: 0 auto 54px auto;
    text-align: center;
}

.centered-title .sub-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.centered-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.section-lead-text {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* Czysty tekst centrowany */
.text-p-center {
    font-size: 16px;
    line-height: 1.7;
    text-align: center;
    color: #475569;
    margin: 0 auto 32px auto;
}

.center-btn-wrap {
    text-align: center;
}

/* Kafelki czterech obszarów */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 36px 24px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.04);
}

.f-icon {
    margin-bottom: 20px;
    display: inline-block;
}

.f-icon .icon-svg {
    width: 32px;
    height: 32px;
    color: var(--accent-orange);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 12px 0;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* SIATKA NOWEJ SEKCJI: Sklepy Banzeo na Merlado */
.stores-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.store-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 28px 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.store-card:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 8px 16px rgba(0,0,0,0.03);
}

.store-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 10px 0;
}

.store-card p {
    font-size: 13px;
    line-height: 1.4;
    color: #64748b;
    margin: 0 0 20px 0;
}

.btn-store {
    display: block;
    padding: 10px 14px;
    background-color: var(--primary-dark);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.btn-store:hover {
    background-color: var(--accent-orange);
}

/* Układ Podwójny */
.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.grid-box {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.box-icon-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.icon-wrap-coral, .icon-wrap-dark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap-coral { background-color: var(--accent-orange-light); }
.icon-wrap-dark { background-color: #f1f5f9; }

.icon-wrap-coral .icon-svg { color: var(--accent-orange); }
.icon-wrap-dark .icon-svg { color: var(--primary-dark); }

.grid-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0;
}

.box-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Sekcja Technologiczna (Sorcer AI Banner) */
.tech-banner {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.tech-badge {
    font-size: 11px;
    font-weight: 800;
    color: #0284c7;
    background-color: #e0f2fe;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.tech-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 16px 0;
}

.tech-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
    margin: 0 0 16px 0;
}

.tech-subtext {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 24px 0;
}

.tech-visual {
    background-color: var(--primary-dark);
    height: 180px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.tech-core {
    color: #38bdf8;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 4px;
    border: 2px solid #38bdf8;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

/* Stopka */
.premium-footer {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 70px 0 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 40px;
    margin-bottom: 30px;
}

.footer-about .footer-logo {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.footer-contact-box h4 {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 12px;
}

.footer-contact-desc {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.c-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.c-link:hover {
    color: var(--accent-orange);
}

.contact-icon-svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.c-link:hover { color: var(--accent-orange); }
.c-link:hover .contact-icon-svg { color: var(--accent-orange); }

.footer-legal {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
}

.footer-legal strong { color: #cbd5e1; }
.footer-bottom { text-align: center; font-size: 12px; color: #64748b; }

/* RWD BREAKPOINTS */
@media (max-width: 1100px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stores-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .hero-grid, .tech-banner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .dual-grid, .footer-main-grid, .stores-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .hero-main-content h1 { font-size: 32px; }
    .section { padding: 60px 0; }
    .btn { display: block; width: 100%; }
}