/* ============================================
   Poznet Business License Calculator
   Colors: Navy #060735, Blue #00ADEF, White #fff
   ============================================ */

:root {
    --biznes-navy: #060735;
    --biznes-blue: #00ADEF;
    --biznes-white: #ffffff;
    --biznes-gray-light: #f8f9fa;
    --biznes-gray: #6c757d;
    --biznes-gray-border: #dee2e6;
    --biznes-success: #28a745;
    --biznes-danger: #dc3545;
    --biznes-shadow: 0 2px 20px rgba(6, 7, 53, 0.08);
    --biznes-shadow-hover: 0 8px 30px rgba(6, 7, 53, 0.15);
    --biznes-radius: 12px;
    --biznes-radius-sm: 8px;
    --biznes-transition: all 0.3s ease;
}

/* Smooth scroll */
html { scroll-behavior: smooth; }

/* Page wrapper */
.biznes-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============ SECTION NAVIGATION ============ */
.biznes-page-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--biznes-gray-light);
    border-bottom: 1px solid var(--biznes-gray-border);
    margin-bottom: 0;
}

.biznes-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--biznes-navy);
    background: var(--biznes-white);
    border: 2px solid var(--biznes-gray-border);
    transition: var(--biznes-transition);
    white-space: nowrap;
}

.biznes-nav-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.biznes-nav-btn:hover {
    border-color: var(--biznes-blue);
    color: var(--biznes-blue);
    text-decoration: none;
}

.biznes-nav-btn.active {
    background: var(--biznes-navy);
    border-color: var(--biznes-navy);
    color: var(--biznes-white);
}

/* ============ SECTION: DESCRIPTION ============ */
.biznes-section {
    margin-bottom: 40px;
}

.biznes-hero {
    background: linear-gradient(135deg, var(--biznes-navy) 0%, #0d0f5e 50%, #141872 100%);
    color: #ffffff !important;
    padding: 50px 40px;
    text-align: center;
    border-radius: var(--biznes-radius) var(--biznes-radius) 0 0;
    margin-top: 30px;
}

.biznes-hero-logo {
    margin-bottom: 24px;
}

.biznes-eset-logo {
    max-height: 56px;
    width: auto;
}

.biznes-eset-logo-fallback {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff !important;
}

.biznes-eset-logo-fallback span {
    font-weight: 300;
    margin-left: 8px;
    color: #ffffff !important;
    opacity: 0.8;
}

.biznes-hero h1,
.biznes-hero h1 * {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 16px;
    color: #ffffff !important;
    line-height: 1.3;
}

.biznes-hero p,
.biznes-hero span,
.biznes-hero div {
    color: #ffffff !important;
}

.biznes-hero-lead {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 720px;
    margin: 0 auto;
    color: #ffffff !important;
}

.biznes-opis-content {
    background: var(--biznes-white);
    padding: 40px;
    border-radius: 0 0 var(--biznes-radius) var(--biznes-radius);
    box-shadow: var(--biznes-shadow);
}

.biznes-opis-text {
    max-width: 800px;
    margin: 0 auto 40px;
}

.biznes-opis-text h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--biznes-navy);
    margin: 0 0 20px;
}

.biznes-opis-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    margin: 0 0 16px;
}

.biznes-opis-text p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.biznes-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.biznes-feature {
    text-align: center;
    padding: 28px 20px;
    border-radius: var(--biznes-radius-sm);
    border: 1px solid var(--biznes-gray-border);
    transition: var(--biznes-transition);
}

.biznes-feature:hover {
    border-color: var(--biznes-blue);
    box-shadow: var(--biznes-shadow-hover);
    transform: translateY(-2px);
}

.biznes-feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    color: var(--biznes-blue);
}

.biznes-feature-icon svg {
    width: 100%;
    height: 100%;
}

.biznes-feature h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--biznes-navy);
    margin: 0 0 8px;
}

.biznes-feature p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--biznes-gray);
    margin: 0;
}

/* ============ SECTION: COMPARISON ============ */
.biznes-section-header {
    text-align: center;
    padding: 40px 20px 30px;
}

.biznes-section-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--biznes-navy);
    margin: 0 0 12px;
}

.biznes-section-header p {
    font-size: 15px;
    color: var(--biznes-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.biznes-comparison-wrapper {
    background: var(--biznes-white);
    border-radius: var(--biznes-radius);
    box-shadow: var(--biznes-shadow);
    overflow: hidden;
}

.biznes-comparison-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.biznes-comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 14px;
}

.biznes-comparison-table thead {
    background: var(--biznes-navy);
    color: var(--biznes-white);
}

.biznes-comparison-table th {
    padding: 20px 12px;
    text-align: center;
    vertical-align: bottom;
    font-weight: 600;
    border: none;
}

.biznes-th-feature {
    text-align: left !important;
    min-width: 220px;
    padding-left: 24px !important;
}

.biznes-th-tier {
    width: 130px;
    position: relative;
}

.biznes-tier-name {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 4px;
}

.biznes-tier-desc {
    font-size: 11px;
    opacity: 0.75;
    font-weight: 400;
}

.biznes-th-popular {
    background: var(--biznes-blue);
}

.biznes-tier-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffb700;
    color: var(--biznes-navy);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 0 0 6px 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.biznes-comparison-table tbody td {
    padding: 12px;
    border-bottom: 1px solid var(--biznes-gray-border);
}

.biznes-comparison-table tbody td:first-child {
    padding-left: 24px;
    color: #374151;
    font-weight: 500;
}

.biznes-td-check {
    text-align: center;
}

.biznes-td-popular {
    background: rgba(0, 173, 239, 0.04);
}

.biznes-check {
    color: var(--biznes-blue);
    font-weight: 800;
    font-size: 16px;
}

.biznes-cross {
    color: #d1d5db;
    font-size: 14px;
}

.biznes-tr-group td {
    background: var(--biznes-gray-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--biznes-navy);
    padding: 10px 24px !important;
}

/* Comparison CTA buttons */
.biznes-tier-cta {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    color: var(--biznes-navy);
    background: var(--biznes-gray-light);
    border: 1px solid var(--biznes-gray-border);
    transition: var(--biznes-transition);
}

.biznes-tier-cta:hover {
    background: var(--biznes-navy);
    color: var(--biznes-white);
    border-color: var(--biznes-navy);
    text-decoration: none;
}

.biznes-tier-cta-primary {
    background: var(--biznes-blue);
    color: var(--biznes-white);
    border-color: var(--biznes-blue);
}

.biznes-tier-cta-primary:hover {
    background: #0098d4;
    border-color: #0098d4;
}

.biznes-comparison-table tfoot td {
    padding: 16px 12px;
    border-top: 2px solid var(--biznes-gray-border);
}

.biznes-comparison-note {
    text-align: center;
    padding: 16px;
}

.biznes-comparison-note p {
    font-size: 13px;
    color: var(--biznes-gray);
    margin: 0;
}

/* Scroll offset for sticky nav */
.biznes-section {
    scroll-margin-top: 70px;
}

/* ============ SECTION: CALCULATOR (override wrapper) ============ */
#biznes-kalkulator .biznes-calculator {
    margin: 0 auto;
}

/* Container */
.biznes-calculator {
    max-width: 900px;
    margin: 30px auto;
    padding: 0;
    font-family: inherit;
}

/* Header */
.biznes-header {
    background: linear-gradient(135deg, var(--biznes-navy) 0%, #0d0f5e 100%);
    color: var(--biznes-white);
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--biznes-radius) var(--biznes-radius) 0 0;
}

.biznes-header h1,
.biznes-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--biznes-white);
}

.biznes-header p {
    font-size: 16px;
    opacity: 0.85;
    margin: 0;
    color: var(--biznes-white);
}

/* Progress Bar */
.biznes-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: var(--biznes-white);
    border-bottom: 1px solid var(--biznes-gray-border);
}

.biznes-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: default;
    position: relative;
}

.biznes-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    background: var(--biznes-gray-border);
    color: var(--biznes-gray);
    transition: var(--biznes-transition);
}

.biznes-step-label {
    font-size: 12px;
    color: var(--biznes-gray);
    font-weight: 500;
    transition: var(--biznes-transition);
    white-space: nowrap;
}

.biznes-progress-step.active .biznes-step-number {
    background: var(--biznes-blue);
    color: var(--biznes-white);
    box-shadow: 0 0 0 4px rgba(0, 173, 239, 0.2);
}

.biznes-progress-step.active .biznes-step-label {
    color: var(--biznes-blue);
    font-weight: 600;
}

.biznes-progress-step.completed .biznes-step-number {
    background: var(--biznes-navy);
    color: var(--biznes-white);
}

.biznes-progress-step.completed .biznes-step-number::after {
    display: none;
}

.biznes-progress-step.completed .biznes-step-label {
    color: var(--biznes-navy);
}

.biznes-progress-line {
    flex: 1;
    height: 2px;
    background: var(--biznes-gray-border);
    margin: 0 12px;
    margin-bottom: 22px;
    max-width: 80px;
}

/* Step Content */
.biznes-step-content {
    background: var(--biznes-white);
    padding: 30px;
    animation: biznesFadeIn 0.3s ease;
}

@keyframes biznesFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.biznes-step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--biznes-navy);
    margin: 0 0 24px;
    text-align: center;
}

/* Product Grid */
.biznes-category-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--biznes-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--biznes-gray-border);
}

.biznes-category-title:first-of-type {
    margin-top: 0;
}

.biznes-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.biznes-product-card {
    background: var(--biznes-white);
    border: 2px solid var(--biznes-gray-border);
    border-radius: var(--biznes-radius-sm);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--biznes-transition);
}

.biznes-product-card:hover {
    border-color: var(--biznes-blue);
    box-shadow: var(--biznes-shadow-hover);
    transform: translateY(-2px);
}

.biznes-product-card.selected {
    border-color: var(--biznes-blue);
    background: rgba(0, 173, 239, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.15);
}

.biznes-product-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--biznes-navy);
}

.biznes-product-icon svg {
    width: 100%;
    height: 100%;
}

.biznes-product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.biznes-product-card:hover .biznes-product-icon,
.biznes-product-card.selected .biznes-product-icon {
    color: var(--biznes-blue);
}

.biznes-product-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--biznes-navy);
    line-height: 1.3;
}

/* License Type Cards */
.biznes-type-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.biznes-type-card {
    background: var(--biznes-white);
    border: 2px solid var(--biznes-gray-border);
    border-radius: var(--biznes-radius-sm);
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--biznes-transition);
}

.biznes-type-card:hover {
    border-color: var(--biznes-blue);
    box-shadow: var(--biznes-shadow-hover);
    transform: translateY(-2px);
}

.biznes-type-card.selected {
    border-color: var(--biznes-blue);
    background: rgba(0, 173, 239, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.15);
}

.biznes-type-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    color: var(--biznes-navy);
}

.biznes-type-icon svg {
    width: 100%;
    height: 100%;
}

.biznes-type-card:hover .biznes-type-icon,
.biznes-type-card.selected .biznes-type-icon {
    color: var(--biznes-blue);
}

.biznes-type-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--biznes-navy);
    margin-bottom: 6px;
}

.biznes-type-desc {
    font-size: 13px;
    color: var(--biznes-gray);
}

/* Renewal Field */
.biznes-renewal-field {
    max-width: 500px;
    margin: 0 auto 20px;
    animation: biznesFadeIn 0.3s ease;
}

.biznes-renewal-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--biznes-navy);
    margin-bottom: 8px;
}

/* Forms */
.biznes-config-form {
    max-width: 500px;
    margin: 0 auto;
}

.biznes-form-group {
    margin-bottom: 24px;
}

.biznes-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--biznes-navy);
    margin-bottom: 8px;
}

.biznes-form-group label small {
    font-weight: 400;
    color: var(--biznes-gray);
}

.biznes-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--biznes-gray-border);
    border-radius: var(--biznes-radius-sm);
    font-size: 15px;
    color: var(--biznes-navy);
    background: var(--biznes-white);
    transition: var(--biznes-transition);
    box-sizing: border-box;
}

.biznes-input:focus {
    outline: none;
    border-color: var(--biznes-blue);
    box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.15);
}

.biznes-input::placeholder {
    color: #adb5bd;
}

.biznes-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.biznes-hint {
    display: block;
    font-size: 12px;
    color: var(--biznes-gray);
    margin-top: 6px;
}

.biznes-required {
    color: var(--biznes-danger);
}

/* Quantity Input */
.biznes-quantity-wrapper {
    display: flex;
    align-items: center;
    max-width: 220px;
}

.biznes-qty-btn {
    width: 44px;
    height: 44px;
    border: 2px solid var(--biznes-gray-border);
    background: var(--biznes-gray-light);
    color: var(--biznes-navy);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--biznes-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.biznes-qty-minus {
    border-radius: var(--biznes-radius-sm) 0 0 var(--biznes-radius-sm);
    border-right: none;
}

.biznes-qty-plus {
    border-radius: 0 var(--biznes-radius-sm) var(--biznes-radius-sm) 0;
    border-left: none;
}

.biznes-qty-btn:hover {
    background: var(--biznes-blue);
    border-color: var(--biznes-blue);
    color: var(--biznes-white);
}

.biznes-qty-input {
    border-radius: 0;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    max-width: 100px;
    -moz-appearance: textfield;
}

.biznes-qty-input::-webkit-outer-spin-button,
.biznes-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Period Buttons */
.biznes-period-buttons {
    display: flex;
    gap: 12px;
}

.biznes-period-btn {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid var(--biznes-gray-border);
    border-radius: var(--biznes-radius-sm);
    background: var(--biznes-white);
    color: var(--biznes-navy);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--biznes-transition);
    text-align: center;
}

.biznes-period-btn:hover {
    border-color: var(--biznes-blue);
    color: var(--biznes-blue);
}

.biznes-period-btn.active {
    background: var(--biznes-navy);
    border-color: var(--biznes-navy);
    color: var(--biznes-white);
}

/* Buttons */
.biznes-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: var(--biznes-radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--biznes-transition);
    text-decoration: none;
}

.biznes-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.biznes-btn-next,
.biznes-btn-calculate {
    background: var(--biznes-navy);
    color: var(--biznes-white);
}

.biznes-btn-next:hover:not(:disabled),
.biznes-btn-calculate:hover:not(:disabled) {
    background: var(--biznes-blue);
}

.biznes-btn-back {
    background: transparent;
    color: var(--biznes-gray);
    border: 2px solid var(--biznes-gray-border);
}

.biznes-btn-back:hover {
    border-color: var(--biznes-navy);
    color: var(--biznes-navy);
}

.biznes-btn-inquiry {
    background: var(--biznes-blue);
    color: var(--biznes-white);
    font-size: 18px;
    padding: 16px 48px;
}

.biznes-btn-inquiry:hover {
    background: #0098d4;
    box-shadow: var(--biznes-shadow-hover);
}

.biznes-btn-send {
    background: var(--biznes-navy);
    color: var(--biznes-white);
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.biznes-btn-send:hover:not(:disabled) {
    background: var(--biznes-blue);
}

.biznes-btn-new {
    background: var(--biznes-navy);
    color: var(--biznes-white);
    margin-top: 16px;
}

.biznes-btn-new:hover {
    background: var(--biznes-blue);
}

/* Navigation */
.biznes-step-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--biznes-gray-border);
}

.biznes-step-nav-result {
    justify-content: center;
    margin-top: 20px;
}

/* Price Display */
.biznes-result-summary {
    text-align: center;
    margin-bottom: 24px;
}

.biznes-result-product {
    font-size: 20px;
    font-weight: 700;
    color: var(--biznes-navy);
    margin-bottom: 6px;
}

.biznes-result-config {
    font-size: 14px;
    color: var(--biznes-gray);
}

.biznes-price-display {
    background: linear-gradient(135deg, var(--biznes-navy) 0%, #0d0f5e 100%);
    color: var(--biznes-white);
    border-radius: var(--biznes-radius);
    padding: 30px;
    text-align: center;
    margin-bottom: 24px;
}

.biznes-price-label {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.biznes-price-value {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.biznes-price-per-unit {
    font-size: 14px;
    opacity: 0.75;
}

/* CTA */
.biznes-cta {
    text-align: center;
    margin-bottom: 24px;
}

/* Inquiry Form */
.biznes-inquiry-form {
    background: var(--biznes-gray-light);
    border-radius: var(--biznes-radius);
    padding: 30px;
    margin-bottom: 24px;
    animation: biznesFadeIn 0.3s ease;
}

.biznes-inquiry-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--biznes-navy);
    margin: 0 0 8px;
}

.biznes-inquiry-desc {
    font-size: 14px;
    color: var(--biznes-gray);
    margin: 0 0 24px;
}

.biznes-form-actions {
    margin-top: 20px;
}

/* Success */
.biznes-success {
    text-align: center;
    padding: 40px 20px;
    animation: biznesFadeIn 0.3s ease;
}

.biznes-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--biznes-success);
}

.biznes-success-icon svg {
    width: 100%;
    height: 100%;
}

.biznes-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--biznes-navy);
    margin: 0 0 8px;
}

.biznes-success p {
    font-size: 15px;
    color: var(--biznes-gray);
    margin: 0;
}

/* Error */
.biznes-error,
.biznes-calc-error {
    text-align: center;
    padding: 30px;
    background: var(--biznes-white);
}

.biznes-error p,
.biznes-calc-error p {
    color: var(--biznes-danger);
    font-size: 15px;
    margin-bottom: 16px;
}

.biznes-no-products {
    text-align: center;
    color: var(--biznes-gray);
    font-size: 15px;
    padding: 40px 0;
}

/* Loading Spinner */
.biznes-loading {
    text-align: center;
    padding: 60px 20px;
}

.biznes-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--biznes-gray-border);
    border-top-color: var(--biznes-blue);
    border-radius: 50%;
    animation: biznesSpin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes biznesSpin {
    to { transform: rotate(360deg); }
}

.biznes-loading p {
    font-size: 15px;
    color: var(--biznes-gray);
}

/* Bottom border radius on last step content */
.biznes-step-content:last-of-type {
    border-radius: 0 0 var(--biznes-radius) var(--biznes-radius);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    /* Page nav */
    .biznes-page-nav {
        gap: 6px;
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .biznes-nav-btn {
        padding: 8px 14px;
        font-size: 12px;
        gap: 4px;
    }

    .biznes-nav-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Hero */
    .biznes-hero {
        padding: 32px 20px;
        margin-top: 16px;
    }

    .biznes-hero h1 {
        font-size: 22px;
    }

    .biznes-hero-lead {
        font-size: 14px;
    }

    .biznes-eset-logo {
        max-height: 42px;
    }

    .biznes-eset-logo-fallback {
        font-size: 24px;
    }

    /* Description */
    .biznes-opis-content {
        padding: 24px 20px;
    }

    .biznes-opis-text {
        margin-bottom: 28px;
    }

    .biznes-opis-text h2 {
        font-size: 20px;
    }

    .biznes-opis-text p {
        font-size: 14px;
    }

    /* Features grid */
    .biznes-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .biznes-feature {
        padding: 20px 14px;
    }

    .biznes-feature h3 {
        font-size: 13px;
    }

    .biznes-feature p {
        font-size: 12px;
    }

    /* Comparison */
    .biznes-section-header {
        padding: 28px 16px 20px;
    }

    .biznes-section-header h2 {
        font-size: 22px;
    }

    .biznes-comparison-table {
        font-size: 13px;
    }

    .biznes-comparison-table th {
        padding: 14px 8px;
    }

    .biznes-th-feature {
        min-width: 160px;
        padding-left: 14px !important;
    }

    .biznes-th-tier {
        width: 100px;
    }

    .biznes-tier-name {
        font-size: 14px;
    }

    .biznes-tier-desc {
        font-size: 10px;
    }

    .biznes-comparison-table tbody td {
        padding: 10px 8px;
    }

    .biznes-comparison-table tbody td:first-child {
        padding-left: 14px;
        font-size: 13px;
    }

    .biznes-tier-cta {
        padding: 6px 10px;
        font-size: 11px;
    }

    /* Calculator */
    .biznes-calculator {
        margin: 15px auto;
    }

    .biznes-header {
        padding: 30px 20px;
    }

    .biznes-header h1,
    .biznes-header h2 {
        font-size: 22px;
    }

    .biznes-header p {
        font-size: 14px;
    }

    .biznes-step-content {
        padding: 24px 20px;
    }

    .biznes-products-grid {
        grid-template-columns: 1fr;
    }

    .biznes-type-cards {
        grid-template-columns: 1fr;
    }

    .biznes-period-buttons {
        flex-direction: column;
    }

    .biznes-price-value {
        font-size: 32px;
    }

    .biznes-btn-inquiry {
        font-size: 16px;
        padding: 14px 32px;
        width: 100%;
    }

    .biznes-progress {
        padding: 20px 10px;
    }

    .biznes-step-label {
        font-size: 10px;
    }

    .biznes-step-number {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .biznes-progress-line {
        margin: 0 6px;
        margin-bottom: 18px;
    }

    .biznes-step-nav {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .biznes-step-nav .biznes-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Scroll offset for stacked nav */
    .biznes-section {
        scroll-margin-top: 160px;
    }

    /* Page nav - stack vertically */
    .biznes-page-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 10px 15px;
    }

    .biznes-nav-btn {
        justify-content: center;
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Hero */
    .biznes-hero {
        padding: 24px 16px;
        margin-top: 10px;
        border-radius: var(--biznes-radius-sm) var(--biznes-radius-sm) 0 0;
    }

    .biznes-hero h1 {
        font-size: 19px;
    }

    .biznes-hero-lead {
        font-size: 13px;
    }

    .biznes-eset-logo {
        max-height: 36px;
    }

    .biznes-eset-logo-fallback {
        font-size: 20px;
    }

    /* Description */
    .biznes-opis-content {
        padding: 20px 16px;
    }

    .biznes-opis-text h2 {
        font-size: 18px;
    }

    .biznes-opis-text p {
        font-size: 13px;
        line-height: 1.7;
    }

    /* Features - single column on small screens */
    .biznes-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .biznes-feature {
        padding: 18px 16px;
        text-align: left;
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

    .biznes-feature-icon {
        width: 36px;
        height: 36px;
        margin: 0;
        flex-shrink: 0;
    }

    .biznes-feature h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .biznes-feature p {
        font-size: 12px;
    }

    /* Comparison */
    .biznes-section-header {
        padding: 24px 12px 16px;
    }

    .biznes-section-header h2 {
        font-size: 19px;
    }

    .biznes-section-header p {
        font-size: 13px;
    }

    .biznes-comparison-table {
        font-size: 12px;
    }

    .biznes-th-feature {
        min-width: 130px;
        padding-left: 10px !important;
    }

    .biznes-th-tier {
        width: 80px;
    }

    .biznes-tier-name {
        font-size: 12px;
    }

    .biznes-tier-badge {
        font-size: 8px;
        padding: 2px 6px;
    }

    .biznes-tr-group td {
        font-size: 11px;
        padding: 8px 10px !important;
    }

    /* Calculator */
    .biznes-header h1,
    .biznes-header h2 {
        font-size: 20px;
    }

    .biznes-step-content {
        padding: 20px 16px;
    }

    .biznes-product-card {
        padding: 16px 12px;
    }

    .biznes-type-card {
        padding: 20px 16px;
    }
}
