/* Struktura wizualna Premium SaaS wzorowana na supermerchant.base.com */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --brand-orange: #FF6A00;
    --brand-dark: #0A0F1D;
    --bg-light: #F8FAFC;
    --border-light: #E2E8F0;
    --text-main: #1E293B;
    --text-muted: #64748B;
}

body {
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

header {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--brand-dark);
}

.logo span {
    color: var(--brand-orange);
    font-weight: 900;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--brand-orange);
}

.nav-links .nav-btn {
    background: var(--brand-dark);
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-links .nav-btn:hover {
    background: var(--brand-orange);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-800 { max-width: 800px; }

/* HERO SECTION */
.hero {
    padding: 130px 0;
    text-align: center;
    background: radial-gradient(50% 50% at top center, rgba(255, 106, 0, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    border-bottom: 1px solid var(--border-light);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--brand-orange);
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

h1 {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--brand-dark);
    line-height: 1.1;
    margin: 0 0 24px 0;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto 40px auto;
}

.hero-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-main {
    display: inline-block;
    background: var(--brand-orange);
    color: #FFFFFF;
    padding: 16px 36px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(255, 106, 0, 0.15);
}

.btn-main:hover {
    background: #E05D00;
    transform: translateY(-1px);
}

.btn-subtext {
    font-size: 13px;
    color: var(--text-muted);
    margin: 12px 0 0 0;
}

/* SECTION STRUCTURES */
.section { padding: 90px 0; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--brand-dark); }
.text-white { color: #FFFFFF; }

.section-header {
    margin-bottom: 55px;
    text-align: center;
}

.section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-orange);
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.section-desc {
    font-size: 15.5px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* KAFELKI DLA KOGO */
.merchant-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.merchant-card {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    padding: 32px 24px;
    border-radius: 6px;
    transition: all 0.2s;
}

.merchant-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 8px 24px rgba(10,15,29,0.03);
}

.card-icon-wrapper {
    color: var(--brand-orange);
    margin-bottom: 20px;
    display: inline-block;
}

.merchant-card h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: var(--brand-dark);
}

.merchant-card p {
    margin: 0;
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SEKCOJA CO ROBIMY */
.super-services-container {
    max-width: 900px;
    margin: 0 auto;
}

.super-service-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-light);
}

.super-service-row:first-child { border-top: 1px solid var(--border-light); }

.service-left {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 40%;
}

.service-icon-box {
    width: 38px;
    height: 38px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
}

.service-left h3 {
    margin: 0;
    font-size: 18px;
    color: var(--brand-dark);
}

.service-right {
    width: 55%;
}

.service-right p {
    margin: 0;
    font-size: 14.5px;
    color: var(--text-muted);
}

/* KANAŁY BOX */
.super-channels-box {
    margin-top: 40px;
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    padding: 36px;
    border-radius: 6px;
    text-align: left;
}

.box-badge-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: 16px;
}

.badges-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.super-tag {
    padding: 8px 16px;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 4px;
}

.tag-active {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--brand-dark);
}

.tag-brand {
    background: var(--brand-dark);
    color: #FFFFFF;
}

/* OŚ CZASU (Współpraca) */
.super-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
}

.timeline-block {
    position: relative;
    border-top: 2px solid var(--brand-dark);
    padding-top: 24px;
}

.timeline-dot {
    position: absolute;
    top: -14px;
    left: 0;
    background: var(--brand-orange);
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.timeline-block p {
    margin: 0;
    font-size: 14.5px;
    font-weight: 500;
}

/* CHECKLISTA WYMOGAŃ */
.super-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.check-item {
    border-bottom: 1px solid #1E293B;
    padding: 12px 0;
    font-size: 14.5px;
    display: flex;
    align-items: center;
}

.check-item::before {
    content: "✓";
    color: var(--brand-orange);
    margin-right: 12px;
    font-weight: 700;
}

.full-width-check {
    grid-column: span 2;
}

/* MERLADO BRAND SECTION */
.brand-gradient { background: #070B14; }
.brand-paragraph {
    font-size: 17.5px;
    color: #94A3B8;
    line-height: 1.7;
    margin: 0;
}

/* KORZYŚCI (Dlaczego Banzeo) */
.super-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    border: 1px solid var(--border-light);
    padding: 32px 24px;
    border-radius: 6px;
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    margin-bottom: 20px;
}

.benefit-card h4 {
    margin: 0 0 10px 0;
    font-size: 17px;
    color: var(--brand-dark);
}

.benefit-card p {
    margin: 0;
    font-size: 13.5px;
    color: var(--text-muted);
}

/* FORMULARZ ZGŁOSZENIOWY B2B */
.super-merchant-form {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    padding: 44px;
    border-radius: 8px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-item { margin-bottom: 20px; }

.form-item label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 6px;
}

.form-item input, .form-item textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.form-item input:focus, .form-item textarea:focus { border-color: var(--brand-orange); }

.super-form-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.card-inner-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--brand-dark);
}

.form-radio-block { margin-bottom: 16px; }
.form-radio-block:last-child { margin-bottom: 0; }

.form-radio-block p {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.form-radio-block label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    margin-bottom: 6px;
    cursor: pointer;
}

.super-form-btn {
    width: 100%;
    background: var(--brand-dark);
    color: #FFFFFF;
    border: none;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.super-form-btn:hover { background: var(--brand-orange); }

/* CTA SEKCJA */
.super-cta-section h3 { font-size: 26px; margin: 0 0 12px 0; }
.super-cta-section p { color: var(--text-muted); font-size: 15px; margin: 0 0 30px 0; }

/* UTILITY I NOWE SEKCJE */
.bg-white {
    background-color: #FFFFFF !important;
}

.finance-section-lead {
    font-size: 17.5px;
    color: var(--text-main);
    text-align: center;
    max-width: 850px;
    margin: -25px auto 45px auto;
    line-height: 1.7;
    font-weight: 500;
}

/* PREMIUM FOOTER STYLING */
.footer-premium {
    background: #090E1A !important;
    color: #94A3B8 !important;
    font-size: 14px;
    padding: 70px 0 40px 0;
    border-top: 3px solid var(--brand-orange);
}

.footer-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-block {
    line-height: 1.7;
}

.footer-heading {
    color: #F8FAFC !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #1E293B;
    padding-bottom: 8px;
}

.company-highlight {
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.company-desc {
    font-size: 13.5px;
    color: #64748B;
}

.footer-white-text {
    color: #F8FAFC !important;
    font-weight: 600;
}

.footer-email-highlight {
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    border-bottom: 1px dashed #FFFFFF;
    transition: all 0.2s ease;
}

.footer-email-highlight:hover {
    color: var(--brand-orange) !important;
    border-bottom: 1px solid var(--brand-orange);
    transform: translateY(-1px);
}

.footer-meta-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748B;
    font-size: 13px;
}

.super-cta-section .font-large {
    font-size: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
}

.super-cta-section .cta-subtitle {
    color: #94A3B8 !important;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 35px auto;
}

/* RESPONSIVE STRUCTURES (Mobile-ready) */
@media (max-width: 1024px) {
    .merchant-grid-4, .super-timeline, .super-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .super-service-row { flex-direction: column; align-items: flex-start; gap: 10px; }
    .service-left, .service-right { width: 100%; }
}

@media (max-width: 768px) {
    .header-container { padding: 15px 20px; }
    .nav-links { display: none; }
    h1 { font-size: 34px; }
    .section { padding: 60px 0; }
    .merchant-grid-4, .super-timeline, .super-benefits-grid, .super-checklist-grid, .form-grid-2, .footer-layout-grid { grid-template-columns: 1fr !important; }
    .full-width-check { grid-column: auto; }
    .super-merchant-form { padding: 20px; }
    .footer-layout-grid { text-align: center; gap: 30px; }
    .footer-heading { padding-bottom: 4px; }
    .footer-meta-bottom { flex-direction: column; gap: 15px; text-align: center; }
}