/* PUBLIC PAGES - Extracted from pages.css */
/* BazaWiedzy PAGE */
    /* Reset & Variables */
    .kb-page {
        --kb-bg: var(--c-bg-primary);
        --kb-bg-secondary: var(--c-bg-secondary);
        --kb-text: var(--c-text-primary);
        --kb-text-secondary: var(--c-text-secondary);
        --kb-text-muted: var(--c-text-muted);
        --kb-border: var(--c-border);
        --kb-accent: var(--c-primary);
        --kb-accent-light: rgba(201, 162, 39, 0.1);
        
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: var(--kb-bg);
        color: var(--kb-text);
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }
    
    /* Header */
    .kb-header {
        background: var(--kb-text);
        color: white;
        padding: 0 24px;
        position: sticky;
        top: 0;
        z-index: 100;
    }
    
    .header-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
    }
    
    .kb-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: white;
        font-weight: 700;
        font-size: 18px;
    }
    
    .logo-icon {
        font-size: 24px;
    }
    
    .nav-title {
        color: var(--kb-accent);
        font-weight: 500;
    }
    
    .btn-home {
        color: white;
        text-decoration: none;
        font-size: 14px;
        opacity: 0.8;
        transition: opacity 0.2s;
    }
    
    .btn-home:hover {
        opacity: 1;
    }
    
    /* Container */
    .kb-container {
        flex: 1;
        display: grid;
        grid-template-columns: 280px 1fr;
        max-width: 1400px;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Sidebar */
    .kb-sidebar {
        background: var(--kb-bg);
        border-right: 1px solid var(--kb-border);
        position: sticky;
        top: 60px;
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .sidebar-toggle {
        display: none;
    }
    
    .sidebar-inner {
        padding: 20px;
    }
    
    .kb-search {
        position: relative;
        margin-bottom: 20px;
    }
    
    .kb-search input {
        width: 100%;
        padding: 10px 36px 10px 14px;
        border: 1px solid var(--kb-border);
        border-radius: 8px;
        font-size: 14px;
        background: var(--kb-bg-secondary);
        color: var(--kb-text);
    }
    
    .kb-search input:focus {
        outline: none;
        border-color: var(--kb-accent);
    }
    
    .clear-search {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: var(--kb-text-muted);
        cursor: pointer;
        font-size: 14px;
    }
    
    /* Navigation */
    .kb-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 8px;
        text-decoration: none;
        color: var(--kb-text);
        font-size: 14px;
        transition: all 0.15s;
    }
    
    .nav-link:hover {
        background: var(--kb-bg-secondary);
    }
    
    .nav-link.active {
        background: var(--kb-accent);
        color: white;
    }
    
    .nav-link.start {
        font-weight: 500;
    }
    
    .nav-icon {
        font-size: 16px;
    }
    
    .nav-category {
        margin-top: 4px;
    }
    
    .nav-category-header {
        display: flex;
        align-items: center;
    }
    
    .nav-category-header .nav-link {
        flex: 1;
    }
    
    .expand-btn {
        width: 28px;
        height: 28px;
        border: none;
        background: none;
        color: var(--kb-text-muted);
        cursor: pointer;
        font-size: 16px;
        border-radius: 4px;
    }
    
    .expand-btn:hover {
        background: var(--kb-bg-secondary);
    }
    
    .nav-children {
        padding-left: 20px;
        margin-top: 4px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .nav-link.child, .nav-link.article {
        font-size: 13px;
        padding: 8px 12px;
        color: var(--kb-text-secondary);
    }
    
    /* Main content */
    .kb-main {
        padding: 32px 40px;
        background: var(--kb-bg);
        min-height: calc(100vh - 140px);
    }
    
    /* Section */
    .kb-section {
        max-width: 900px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-header h1 {
        margin: 0 0 8px;
        font-size: 2rem;
        font-weight: 700;
        color: var(--kb-text);
    }
    
    .section-subtitle {
        margin: 0;
        font-size: 16px;
        color: var(--kb-text-secondary);
    }
    
    /* Articles list */
    .articles-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .article-card {
        display: block;
        padding: 20px 24px;
        background: var(--kb-bg);
        border: 1px solid var(--kb-border);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s;
    }
    
    .article-card:hover {
        border-color: var(--kb-accent);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transform: translateY(-2px);
    }
    
    .article-card h3 {
        margin: 0 0 8px;
        font-size: 17px;
        font-weight: 600;
        color: var(--kb-text);
    }
    
    .article-card p {
        margin: 0;
        font-size: 14px;
        color: var(--kb-text-secondary);
        line-height: 1.5;
    }
    
    .card-category {
        display: inline-block;
        margin-top: 12px;
        font-size: 12px;
        color: var(--kb-accent);
    }
    
    /* Article */
    .kb-article {
        max-width: 800px;
    }
    
    .breadcrumbs {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .breadcrumbs a {
        color: var(--kb-accent);
        text-decoration: none;
    }
    
    .breadcrumbs a:hover {
        text-decoration: underline;
    }
    
    .breadcrumbs .sep {
        color: var(--kb-text-muted);
    }
    
    .breadcrumbs .current {
        color: var(--kb-text-secondary);
    }
    
    .article-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--kb-border);
    }
    
    .article-header h1 {
        margin: 0 0 12px;
        font-size: 2.25rem;
        font-weight: 700;
        line-height: 1.3;
        color: var(--kb-text);
    }
    
    .article-excerpt {
        margin: 0 0 16px;
        font-size: 18px;
        color: var(--kb-text-secondary);
        line-height: 1.6;
    }
    
    .article-meta {
        font-size: 14px;
        color: var(--kb-text-muted);
    }
    
    /* Article content */
    .article-content {
        font-size: 16px;
        line-height: 1.8;
        color: var(--kb-text);
    }
    
    .article-content h2 {
        margin: 32px 0 16px;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--kb-text);
    }
    
    .article-content h3 {
        margin: 24px 0 12px;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--kb-text);
    }
    
    .article-content p {
        margin: 0 0 16px;
    }
    
    .article-content ul, .article-content ol {
        margin: 0 0 16px;
        padding-left: 24px;
    }
    
    .article-content li {
        margin-bottom: 8px;
    }
    
    .article-content code {
        background: var(--kb-bg-secondary);
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 14px;
        font-family: 'Monaco', 'Consolas', monospace;
    }
    
    .article-content pre {
        background: var(--kb-bg-secondary);
        padding: 16px 20px;
        border-radius: 8px;
        overflow-x: auto;
        margin: 16px 0;
    }
    
    .article-content blockquote {
        border-left: 4px solid var(--kb-accent);
        padding: 12px 20px;
        margin: 16px 0;
        background: var(--kb-accent-light);
        border-radius: 0 8px 8px 0;
    }
    
    .article-content img {
        max-width: 100%;
        border-radius: 8px;
        margin: 16px 0;
    }
    
    .article-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 16px 0;
    }
    
    .article-content th, .article-content td {
        padding: 12px 16px;
        border: 1px solid var(--kb-border);
        text-align: left;
    }
    
    .article-content th {
        background: var(--kb-bg-secondary);
        font-weight: 600;
    }
    
    .article-content a {
        color: var(--kb-accent);
    }
    
    /* Related articles */
    .related-articles {
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--kb-border);
    }
    
    .related-articles h3 {
        margin: 0 0 16px;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .related-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .related-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 14px;
        background: var(--kb-bg-secondary);
        border-radius: 8px;
        text-decoration: none;
        color: var(--kb-text);
        font-size: 14px;
        transition: all 0.15s;
    }
    
    .related-link:hover {
        background: var(--kb-accent-light);
        color: var(--kb-accent);
    }
    
    /* Home page */
    .kb-home {
        max-width: 1000px;
    }
    
    .home-hero {
        text-align: center;
        padding: 40px 0 48px;
    }
    
    .home-hero h1 {
        margin: 0 0 16px;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--kb-text);
    }
    
    .home-hero p {
        margin: 0;
        font-size: 18px;
        color: var(--kb-text-secondary);
    }
    
    /* Categories grid */
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 48px;
    }
    
    .category-card {
        display: block;
        padding: 24px;
        background: var(--kb-bg);
        border: 1px solid var(--kb-border);
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.2s;
    }
    
    .category-card:hover {
        border-color: var(--kb-accent);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }
    
    .card-icon {
        font-size: 32px;
        display: block;
        margin-bottom: 12px;
    }
    
    .category-card h3 {
        margin: 0 0 8px;
        font-size: 18px;
        font-weight: 600;
        color: var(--kb-text);
    }
    
    .category-card p {
        margin: 0 0 12px;
        font-size: 14px;
        color: var(--kb-text-secondary);
        line-height: 1.5;
    }
    
    .card-count {
        font-size: 12px;
        color: var(--kb-text-muted);
    }
    
    /* Popular section */
    .popular-section {
        padding-top: 32px;
        border-top: 1px solid var(--kb-border);
    }
    
    .popular-section h2 {
        margin: 0 0 24px;
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    /* Empty state */
    .empty-state {
        text-align: center;
        padding: 64px 24px;
    }
    
    .empty-icon {
        font-size: 48px;
        display: block;
        margin-bottom: 16px;
        opacity: 0.5;
    }
    
    .empty-state h3 {
        margin: 0 0 8px;
        font-size: 1.25rem;
        color: var(--kb-text);
    }
    
    .empty-state p {
        margin: 0;
        color: var(--kb-text-secondary);
    }
    
    /* Footer */
    .kb-footer {
        background: var(--kb-bg-secondary);
        border-top: 1px solid var(--kb-border);
        padding: 24px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: var(--kb-text-muted);
    }
    
    .kb-footer .footer-links {
        display: flex;
        gap: 24px;
    }

    .kb-footer .footer-links a {
        color: var(--kb-text-secondary);
        text-decoration: none;
    }

    .kb-footer .footer-links a:hover {
        color: var(--kb-accent);
    }
    
    /* Responsive */
    @media (max-width: 900px) {
        .kb-container {
            grid-template-columns: 1fr;
        }
        
        .kb-sidebar {
            position: fixed;
            left: 0;
            top: 60px;
            bottom: 0;
            width: 280px;
            z-index: 200;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }
        
        .kb-sidebar.open {
            transform: translateX(0);
            box-shadow: 4px 0 24px rgba(0,0,0,0.15);
        }
        
        .sidebar-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            left: 16px;
            bottom: 24px;
            width: 48px;
            height: 48px;
            background: var(--kb-accent);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 201;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        
        .kb-main {
            padding: 24px 20px;
        }
        
        .home-hero h1 {
            font-size: 1.75rem;
        }
        
        .article-header h1 {
            font-size: 1.5rem;
        }
        
        .categories-grid {
            grid-template-columns: 1fr;
        }
        
        .kb-footer {
            flex-direction: column;
            gap: 16px;
            text-align: center;
        }
    }

/* BlogArticle PAGE */
    .article-content h2 { font-family: var(--font-body); font-size: 26px; margin: 48px 0 16px; color: var(--gray-800); }
    .article-content h3 { font-family: var(--font-body); font-size: 20px; margin: 32px 0 12px; color: var(--gray-800); }
    .article-content p { margin-bottom: 20px; }
    .article-content ul, .article-content ol { margin: 20px 0 20px 24px; }
    .article-content li { margin-bottom: 8px; position: relative; padding-left: 20px; }
    .article-content li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }
    .article-content a { color: var(--navy); font-weight: 500; text-decoration: underline; }
    .article-content a:hover { color: var(--gold); }

/* DynamicPage PAGE */
    .hero-dynamic {
        min-height: 50vh;
        display: flex;
        align-items: center;
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-dynamic.bg-gradient {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
        color: var(--white);
    }
    
    .hero-dynamic.bg-primary {
        background: var(--navy);
        color: var(--white);
    }
    
    .hero-dynamic .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-dynamic h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: inherit;
    }
    
    .hero-dynamic h1 span {
        color: var(--gold);
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        opacity: 0.9;
        margin-bottom: 1.5rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        opacity: 0.85;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    @media (max-width: 768px) {
        .hero-dynamic h1 {
            font-size: 2rem;
        }
    }

/* Error PAGE */
    .error-page {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-dark) 100%);
        padding: 20px;
    }
    
    .error-container {
        background: white;
        border-radius: 16px;
        padding: 48px;
        max-width: 500px;
        width: 100%;
        text-align: center;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    
    .error-icon {
        font-size: 64px;
        margin-bottom: 24px;
    }
    
    .error-container h1 {
        font-size: 28px;
        color: var(--brand-navy);
        margin: 0 0 16px 0;
    }
    
    .error-message {
        color: var(--c-text-secondary);
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .error-id-box {
        background: var(--c-bg-secondary);
        border: 1px solid var(--c-border);
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    
    .error-id-label {
        font-size: 13px;
        color: var(--c-text-secondary);
        margin: 0 0 8px 0;
    }
    
    .error-id {
        display: block;
        font-family: monospace;
        font-size: 20px;
        font-weight: 700;
        color: var(--brand-navy);
        background: white;
        padding: 12px 20px;
        border-radius: 8px;
        border: 2px solid var(--c-border);
        letter-spacing: 2px;
        margin-bottom: 8px;
    }
    
    .error-id-hint {
        font-size: 12px;
        color: var(--c-text-muted);
        margin: 0;
    }
    
    .error-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .btn-primary, .btn-secondary, .btn-admin {
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .btn-primary {
        background: var(--brand-navy);
        color: white;
        border: none;
    }
    
    .btn-primary:hover {
        background: var(--brand-navy-dark);
    }
    
    .btn-secondary {
        background: white;
        color: var(--brand-navy);
        border: 1px solid var(--c-border);
    }
    
    .btn-secondary:hover {
        background: var(--c-bg-secondary);
    }
    
    .admin-section {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--c-border);
    }
    
    .admin-section h3 {
        font-size: 14px;
        color: var(--c-text-secondary);
        margin: 0 0 12px 0;
    }
    
    .btn-admin {
        display: inline-block;
        background: linear-gradient(135deg, var(--c-success) 0%, var(--c-success-dark) 100%);
        color: white;
        border: none;
    }
    
    .btn-admin:hover {
        background: linear-gradient(135deg, var(--c-success-dark) 0%, var(--c-success-dark) 100%);
    }
    
    .error-details {
        margin-top: 32px;
        text-align: left;
    }
    
    .error-details summary {
        cursor: pointer;
        color: var(--c-text-secondary);
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .error-details pre {
        background: var(--c-text-primary);
        color: var(--c-border);
        padding: 16px;
        border-radius: 8px;
        font-size: 12px;
        overflow-x: auto;
        max-height: 300px;
        white-space: pre-wrap;
        word-break: break-word;
    }

/* FAQ PAGE */
    .faq-categories {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 32px;
        justify-content: center;
    }
    
    .faq-cat-btn {
        padding: 10px 20px;
        border: 1px solid var(--gray-200);
        background: white;
        border-radius: 8px;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .faq-cat-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
    }
    
    .faq-cat-btn.active {
        background: var(--gold);
        border-color: var(--gold);
        color: white;
    }

/* Kalkulator PAGE */
    .calculator-hero {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .calculator-hero h1 {
        color: var(--white);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .calculator-hero h1 span {
        color: var(--gold);
    }
    
    .calculator-hero p {
        color: var(--gray-300);
        font-size: 1.1rem;
    }
    
    .calculator-section {
        padding: 60px 0;
        background: var(--gray-50);
    }
    
    .calculator-wrapper {
        max-width: 800px;
        margin: 0 auto;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        padding: 40px;
    }
    
    /* Progress */
    .calc-progress {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
        gap: 8px;
    }
    
    .progress-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gray-200);
        color: var(--gray-500);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .progress-step.active .step-number {
        background: var(--gold);
        color: var(--white);
    }
    
    .progress-step.completed .step-number {
        background: var(--c-success);
        color: var(--white);
    }
    
    .step-number svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 3;
        fill: none;
    }
    
    .step-label {
        font-size: 12px;
        color: var(--gray-500);
        white-space: nowrap;
    }
    
    .progress-step.active .step-label {
        color: var(--navy);
        font-weight: 500;
    }
    
    .progress-line {
        width: 60px;
        height: 3px;
        background: var(--gray-200);
        border-radius: 2px;
        margin-bottom: 28px;
    }
    
    .progress-line.active {
        background: var(--c-success);
    }
    
    /* Steps */
    .calc-step h2 {
        font-size: 1.5rem;
        color: var(--navy);
        margin-bottom: 8px;
    }
    
    .step-desc {
        color: var(--gray-600);
        margin-bottom: 24px;
    }
    
    /* Forms */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--gray-700);
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="number"],
    .form-group select {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--gray-300);
        border-radius: var(--radius-md);
        font-size: 1rem;
        transition: border-color 0.2s;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: var(--gold);
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .input-with-button {
        display: flex;
        gap: 8px;
    }
    
    .input-with-button input {
        flex: 1;
    }
    
    .required {
        color: var(--c-danger);
    }
    
    .optional {
        color: var(--gray-400);
        font-weight: 400;
        font-size: 0.9em;
    }
    
    .field-error {
        color: var(--c-danger);
        font-size: 0.85rem;
        margin-top: 4px;
        display: block;
    }
    
    /* Radio cards */
    .radio-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .radio-card {
        cursor: pointer;
    }
    
    .radio-card input {
        display: none;
    }
    
    .radio-card .card-content {
        padding: 16px;
        border: 2px solid var(--gray-200);
        border-radius: var(--radius-md);
        text-align: center;
        transition: all 0.2s;
    }
    
    .radio-card:hover .card-content {
        border-color: var(--gray-300);
    }
    
    .radio-card.selected .card-content {
        border-color: var(--gold);
        background: var(--gold-light);
        background: rgba(201, 162, 39, 0.1);
    }
    
    .card-title {
        font-weight: 500;
        color: var(--navy);
    }
    
    /* Service items */
    .service-category {
        margin-bottom: 24px;
    }
    
    .service-category h4 {
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .service-line {
        padding: 12px 16px;
        border: 1px solid var(--gray-200);
        border-radius: var(--radius-md);
        margin-bottom: 8px;
        transition: all 0.2s;
    }
    
    .service-line:hover {
        border-color: var(--gray-300);
    }
    
    .service-line.selected {
        border-color: var(--gold);
        background: rgba(201, 162, 39, 0.05);
    }
    
    .service-checkbox-row {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
    }
    
    .service-checkbox-row input[type="checkbox"] {
        margin-top: 4px;
        width: 18px;
        height: 18px;
        accent-color: var(--gold);
    }
    
    .service-info {
        flex: 1;
    }
    
    .service-name {
        display: block;
        font-weight: 500;
        color: var(--gray-800);
    }
    
    .service-desc {
        display: block;
        font-size: 0.85rem;
        color: var(--gray-500);
        margin-top: 2px;
    }
    
    .service-number-row {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .service-quantity {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .service-quantity input {
        width: 80px;
        padding: 8px 12px;
        border: 1px solid var(--gray-300);
        border-radius: var(--radius-md);
        text-align: center;
    }
    
    .unit-label {
        color: var(--gray-500);
        font-size: 0.9rem;
    }
    
    .skip-hint {
        margin-top: 20px;
        padding: 16px;
        background: var(--gray-100);
        border-radius: var(--radius-md);
        text-align: center;
    }
    
    .skip-hint p {
        color: var(--gray-600);
        margin: 0;
    }
    
    .empty-hint {
        color: var(--gray-500);
        text-align: center;
        padding: 20px;
    }
    
    /* Consent */
    .consent-group {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid var(--gray-200);
    }
    
    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
        cursor: pointer;
    }
    
    .checkbox-label input {
        margin-top: 4px;
        width: 18px;
        height: 18px;
        accent-color: var(--gold);
    }
    
    .checkbox-label span {
        font-size: 0.9rem;
        color: var(--gray-600);
        line-height: 1.5;
    }
    
    /* Selection summary */
    .selection-summary {
        margin-top: 24px;
        padding: 20px;
        background: var(--gray-50);
        border-radius: var(--radius-md);
    }
    
    .selection-summary h4 {
        font-size: 1rem;
        color: var(--navy);
        margin-bottom: 12px;
    }
    
    .selection-summary ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .selection-summary li {
        padding: 6px 0;
        border-bottom: 1px solid var(--gray-200);
        display: flex;
        justify-content: space-between;
    }
    
    .selection-summary li:last-child {
        border-bottom: none;
    }
    
    .selection-summary .qty {
        color: var(--gray-500);
        font-size: 0.9rem;
    }
    
    .no-selection {
        color: var(--gray-500);
        font-style: italic;
    }
    
    /* Navigation */
    .calc-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid var(--gray-200);
    }
    
    .submit-error {
        margin-top: 16px;
        padding: 12px 16px;
        background: var(--danger-light);
        color: var(--c-danger);
        border-radius: var(--radius-md);
        text-align: center;
    }
    
    /* Success */
    .calc-success {
        text-align: center;
        padding: 60px 40px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 24px;
        background: var(--success-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .success-icon svg {
        width: 40px;
        height: 40px;
        stroke: var(--c-success);
    }
    
    .calc-success h2 {
        font-size: 2rem;
        color: var(--navy);
        margin-bottom: 16px;
    }
    
    .calc-success p {
        color: var(--gray-600);
        margin-bottom: 8px;
    }
    
    .success-detail {
        font-size: 1.1rem;
        margin: 16px 0;
    }
    
    .success-hint {
        color: var(--gray-500);
        font-size: 0.95rem;
    }
    
    .success-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        margin-top: 32px;
    }
    
    /* Loading */
    .calc-loading {
        text-align: center;
        padding: 60px;
    }
    
    .spinner-sm {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255,255,255,0.3);
        border-top-color: white;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin-right: 8px;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    /* Responsive */
    @media (max-width: 640px) {
        .calculator-wrapper {
            padding: 24px 16px;
        }
        
        .calc-progress {
            flex-wrap: wrap;
        }
        
        .progress-line {
            width: 30px;
        }
        
        .step-label {
            display: none;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .radio-cards {
            grid-template-columns: 1fr 1fr;
        }
        
        .service-number-row {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .service-quantity {
            margin-top: 8px;
            width: 100%;
        }
        
        .service-quantity input {
            flex: 1;
        }
        
        .success-actions {
            flex-direction: column;
        }
    }

/* Kontakt PAGE */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 48px;
        align-items: start;
    }
    
    .contact-info-card {
        background: var(--gray-50);
        border-radius: 12px;
        padding: 24px;
        margin-bottom: 16px;
    }
    
    .contact-info-card h3 {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--gray-500);
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .contact-icon {
        width: 18px;
        height: 18px;
        stroke: var(--gold);
        stroke-width: 2;
        fill: none;
    }
    
    .contact-value {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        text-decoration: none;
    }
    
    .contact-value:hover {
        color: var(--gold);
    }
    
    .contact-note {
        font-size: 13px;
        color: var(--gray-500);
        margin-top: 4px;
    }
    
    .social-links {
        display: flex;
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 50%;
        color: var(--navy);
        transition: all 0.2s;
    }
    
    .social-link:hover {
        background: var(--gold);
        color: var(--navy);
    }
    
    .contact-form-card {
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 16px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
    }
    
    .form-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .form-subtitle {
        color: var(--gray-500);
        margin-bottom: 32px;
    }
    
    .form-error-banner {
        background: var(--c-danger-bg);
        border: 1px solid var(--c-danger-light);
        color: var(--c-danger-hover);
        padding: 12px 16px;
        border-radius: 8px;
        margin-bottom: 24px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
    }
    
    .error-icon {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
        flex-shrink: 0;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        color: var(--gray-700);
    }
    
    .required {
        color: var(--c-danger-hover);
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--gray-300);
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.2s;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-group.has-error input,
    .form-group.has-error select,
    .form-group.has-error textarea {
        border-color: var(--c-danger-hover);
    }
    
    .field-error {
        display: block;
        color: var(--c-danger-hover);
        font-size: 13px;
        margin-top: 6px;
    }
    
    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        cursor: pointer;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .checkbox-text {
        font-size: 13px;
        color: var(--gray-600);
        line-height: 1.5;
    }
    
    .checkbox-text a {
        color: var(--navy);
        text-decoration: underline;
    }
    
    .btn-icon {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }
    
    .spinner {
        width: 18px;
        height: 18px;
        border: 2px solid currentColor;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    .form-success {
        text-align: center;
        padding: 40px 20px;
    }
    
    .form-success-icon {
        width: 64px;
        height: 64px;
        margin: 0 auto 20px;
        background: var(--c-success-bg);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .form-success-icon svg {
        width: 32px;
        height: 32px;
        stroke: var(--c-success-hover);
        stroke-width: 2;
        fill: none;
    }
    
    .form-success h3 {
        font-family: var(--font-body);
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .form-success p {
        color: var(--gray-600);
        margin-bottom: 24px;
    }
    
    /* Map Section */
    .map-section {
        height: 450px;
        position: relative;
    }
    
    .map-section iframe {
        filter: grayscale(20%);
    }
    
    .map-overlay {
        position: absolute;
        bottom: 24px;
        left: 24px;
        background: white;
        padding: 20px 28px;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        max-width: 320px;
    }
    
    .map-overlay h3 {
        font-family: var(--font-body);
        font-size: 18px;
        margin-bottom: 10px;
        color: var(--gray-800);
    }
    
    .map-overlay p {
        font-size: 14px;
        color: var(--gray-600);
        line-height: 1.6;
        margin-bottom: 16px;
    }
    
    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
        }
        
        .form-row {
            grid-template-columns: 1fr;
        }
        
        .map-overlay {
            left: 16px;
            right: 16px;
            max-width: none;
        }
    }

/* ONas PAGE */
    .team-photo {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 16px;
    }
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
    }
    .about-image {
        background: linear-gradient(135deg, var(--navy), var(--navy-dark));
        border-radius: 20px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .about-image-placeholder {
        text-align: center;
        color: var(--white);
    }
    .about-image-placeholder .icon {
        font-size: 72px;
        margin-bottom: 16px;
    }
    .about-image-placeholder p {
        font-size: 18px;
        opacity: 0.8;
    }
    .about-text h2 {
        text-align: left;
        margin-bottom: 24px;
    }
    .about-text p {
        font-size: 17px;
        color: var(--gray-600);
        line-height: 1.8;
        margin-bottom: 20px;
    }
    @media (max-width: 768px) {
        .about-content {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .about-image {
            height: 250px;
            order: -1;
        }
    }

/* ServicePage PAGE */
    .service-layout {
        display: grid;
        grid-template-columns: 1fr 380px;
        gap: 48px;
        align-items: start;
    }
    
    .lead {
        font-size: 20px;
        color: var(--gray-600);
        line-height: 1.7;
        margin-bottom: 32px;
    }
    
    .service-text {
        line-height: 1.8;
        color: var(--gray-700);
    }
    
    .service-text h2 {
        font-size: 24px;
        margin: 32px 0 16px;
        color: var(--gray-800);
    }
    
    .service-text p {
        margin-bottom: 16px;
    }
    
    .service-benefits {
        margin-top: 40px;
        padding: 32px;
        background: var(--gray-50);
        border-radius: 16px;
    }
    
    .service-benefits h2 {
        font-size: 22px;
        margin-bottom: 24px;
        color: var(--gray-800);
    }
    
    .service-benefits ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .service-benefits li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .service-benefits li:last-child {
        border-bottom: none;
    }
    
    .benefit-icon {
        width: 24px;
        height: 24px;
        background: var(--gold);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .sidebar-card {
        background: white;
        border-radius: 16px;
        padding: 32px;
        box-shadow: var(--shadow-lg);
        margin-bottom: 24px;
    }
    
    .sidebar-icon {
        font-size: 48px;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .sidebar-card h3 {
        font-size: 22px;
        text-align: center;
        margin-bottom: 20px;
        color: var(--gray-800);
    }
    
    .sidebar-card h4 {
        font-size: 16px;
        margin-bottom: 12px;
        color: var(--gray-800);
    }
    
    .sidebar-price {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .price-label {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .price-value {
        font-size: 36px;
        font-weight: 700;
        color: var(--gold);
        display: block;
    }
    
    .price-period {
        font-size: 14px;
        color: var(--gray-500);
    }
    
    .phone-link {
        font-size: 20px;
        font-weight: 600;
        color: var(--navy);
        text-decoration: none;
    }
    
    .phone-link:hover {
        color: var(--gold);
    }
    
    .cta-section {
        background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
        padding: 80px 0;
        margin-top: 64px;
    }
    
    .cta-content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .cta-content h2 {
        font-size: 32px;
        color: white;
        margin-bottom: 16px;
    }
    
    .cta-content p {
        font-size: 18px;
        color: rgba(255,255,255,0.7);
        margin-bottom: 32px;
    }
    
    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
    }
    
    @media (max-width: 1024px) {
        .service-layout {
            grid-template-columns: 1fr;
        }
        
        .service-sidebar {
            order: -1;
        }
    }

/* Uslugi PAGE */
    /* Services Section */
    .services-section {
        padding: 60px 0 80px;
    }
    
    /* Carousel */
    .carousel-wrapper {
        display: flex;
        align-items: center;
        gap: 20px;
        position: relative;
    }
    
    .carousel-wrapper.no-arrows {
        gap: 0;
    }
    
    .carousel-container {
        flex: 1;
        overflow: hidden;
        border-radius: 16px;
        margin: 0 -12px;
        padding: 0 12px;
    }
    
    .carousel-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
        padding-right: 12px;
    }
    
    .carousel-slide {
        flex: 0 0 25%;
        padding: 0 12px;
        box-sizing: border-box;
        min-width: 0;
    }
    
    @media (max-width: 1200px) {
        .carousel-slide {
            flex: 0 0 33.333%;
        }
    }
    
    @media (max-width: 900px) {
        .carousel-slide {
            flex: 0 0 50%;
        }
    }
    
    @media (max-width: 640px) {
        .carousel-slide {
            flex: 0 0 100%;
        }
    }
    
    /* Arrow Buttons */
    .carousel-arrow {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 2px solid var(--gray-200);
        background: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        flex-shrink: 0;
        z-index: 10;
    }
    
    .carousel-arrow svg {
        width: 24px;
        height: 24px;
        color: var(--navy);
    }
    
    .carousel-arrow:hover:not(:disabled) {
        border-color: var(--gold);
        background: var(--gold);
    }
    
    .carousel-arrow:hover:not(:disabled) svg {
        color: var(--navy);
    }
    
    .carousel-arrow:disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    
    /* Dots Navigation */
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 32px;
    }
    
    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid var(--gray-300);
        background: transparent;
        cursor: pointer;
        transition: all 0.2s;
        padding: 0;
    }
    
    .carousel-dot:hover {
        border-color: var(--gold);
    }
    
    .carousel-dot.active {
        background: var(--gold);
        border-color: var(--gold);
        width: 32px;
        border-radius: 6px;
    }
    
    /* Service Card New */
    .service-card-new {
        background: white;
        border: 1px solid var(--gray-200);
        border-radius: 16px;
        padding: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s;
        overflow: hidden;
    }
    
    .service-card-new:hover {
        border-color: var(--gold);
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        transform: translateY(-4px);
    }
    
    .service-card-image {
        width: 100%;
        height: 160px;
        overflow: hidden;
        background: var(--gray-100);
    }
    
    .service-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .service-card-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 24px 0;
    }
    
    .service-card-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--navy);
        margin: 0;
        flex: 1;
    }
    
    .service-price-badge {
        background: linear-gradient(135deg, var(--gold), #d4a84b);
        color: var(--navy);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .service-card-desc {
        font-size: 14px;
        color: var(--gray-600);
        line-height: 1.6;
        padding: 12px 24px;
        margin: 0;
        flex: 1;
    }
    
    .service-features {
        list-style: none;
        padding: 0 24px;
        margin: 0 0 16px;
    }
    
    .service-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--gray-600);
        padding: 6px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .service-features li:last-child {
        border-bottom: none;
    }
    
    .feature-check {
        color: var(--gold);
        font-weight: 700;
        flex-shrink: 0;
    }
    
    .service-card-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 16px 24px;
        background: var(--navy);
        color: white;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.2s;
        margin-top: auto;
    }
    
    .service-card-btn:hover {
        background: var(--gold);
        color: var(--navy);
    }
    
    .service-card-btn svg {
        width: 16px;
        height: 16px;
        transition: transform 0.2s;
    }
    
    .service-card-btn:hover svg {
        transform: translateX(4px);
    }
    
    /* Quick Links */
    .services-quick-links {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 48px;
        flex-wrap: wrap;
    }
    
    .quick-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        background: var(--gray-50);
        border: 1px solid var(--gray-200);
        border-radius: 40px;
        text-decoration: none;
        color: var(--gray-700);
        font-size: 14px;
        transition: all 0.2s;
    }
    
    .quick-link:hover {
        background: var(--navy);
        border-color: var(--navy);
        color: white;
    }
    
    .quick-link-icon {
        font-size: 18px;
    }
    
    .quick-link-title {
        font-weight: 500;
    }
    
    /* Process Steps */
    .process-steps {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
    }
    
    .process-step {
        text-align: center;
        flex: 0 0 200px;
    }
    
    .step-number {
        width: 64px;
        height: 64px;
        background: var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 24px;
        font-weight: 700;
        color: var(--navy);
    }
    
    .process-step h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: var(--navy);
    }
    
    .process-step p {
        font-size: 14px;
        color: var(--gray-500);
        line-height: 1.5;
    }
    
    .process-connector {
        flex: 0 0 60px;
        height: 2px;
        background: linear-gradient(90deg, var(--gold) 0%, var(--gray-300) 100%);
        margin-top: 32px;
    }
    
    /* Loading */
    .loading-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 0;
        color: var(--gray-500);
    }
    
    .spinner {
        width: 40px;
        height: 40px;
        border: 3px solid var(--gray-200);
        border-top-color: var(--gold);
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
        margin-bottom: 16px;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
        .carousel-arrow {
            width: 44px;
            height: 44px;
        }
        
        .carousel-arrow svg {
            width: 20px;
            height: 20px;
        }
        
        .process-steps {
            flex-wrap: wrap;
            gap: 24px;
        }
        
        .process-connector {
            display: none;
        }
        
        .process-step {
            flex: 0 0 calc(50% - 12px);
        }
    }
    
    @media (max-width: 640px) {
        .carousel-wrapper {
            gap: 12px;
        }
        
        .carousel-arrow {
            width: 40px;
            height: 40px;
        }
        
        .carousel-arrow svg {
            width: 18px;
            height: 18px;
        }
        
        .service-card-image {
            height: 140px;
        }
        
        .process-step {
            flex: 0 0 100%;
        }
        
        .services-quick-links {
            flex-direction: column;
            align-items: stretch;
        }
        
        .quick-link {
            justify-content: center;
        }
    }

/* =========================================
   Task Form - Time Fields
   ========================================= */

.c-form-section {
    padding: 1rem;
    background: var(--c-bg-secondary, var(--c-bg-secondary));
    border-radius: 0.5rem;
    border: 1px solid var(--c-border, var(--c-border));
}

.c-form-section h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-text-secondary, var(--c-text-secondary));
}

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

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

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

.c-calculated-time {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.c-calculated-time .c-input-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-text-primary, #1a1a2e);
}

.c-time-display {
    display: flex;
    align-items: center;
    height: 42px;
    padding: 0 0.875rem;
    background: var(--c-bg-tertiary, var(--c-bg-tertiary));
    border: 1px solid var(--c-border, var(--c-border));
    border-radius: 0.375rem;
}

.c-time-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--c-primary, var(--c-info-hover));
}

.c-time-placeholder {
    color: var(--c-text-muted, var(--c-text-muted));
}

/* Dark mode */
html.admin-dark-mode .c-form-section {
    background: var(--c-bg-tertiary);
    border-color: var(--c-border);
}

html.admin-dark-mode .c-time-display {
    background: var(--c-bg-primary);
}

/* Task datetime display in table */
.c-task-datetime {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    align-items: flex-start;
}

.c-task-time {
    font-size: 0.75rem;
    color: var(--c-text-secondary, var(--c-text-secondary));
    font-weight: 500;
}

.c-task-duration {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--c-text-primary, #1a1a2e);
}

/* =========================================
   PUBLIC OFFER - Sticky Navigation & Progress Bar
   ========================================= */

.offer-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.offer-nav.visible {
    transform: translateY(0);
}

.nav-progress {
    height: 3px;
    background: var(--gray-200, #e5e7eb);
    width: 100%;
}

.nav-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold, #c9a227), #d4a84b);
    width: 0%;
    transition: width 0.1s ease;
}

.offer-nav .nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.offer-nav .nav-item {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600, #6b7280);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.offer-nav .nav-item:hover {
    color: var(--navy, #1a1a2e);
    background: var(--gray-100, #f3f4f6);
}

.offer-nav .nav-item.active {
    color: var(--gold, #c9a227);
}

.offer-nav .nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--gold, #c9a227);
    border-radius: 1px;
}

.offer-nav .nav-item.nav-cta {
    background: var(--gold, #c9a227);
    color: var(--navy, #1a1a2e);
    padding: 8px 20px;
    font-weight: 600;
}

.offer-nav .nav-item.nav-cta:hover {
    background: #d4a84b;
    color: var(--navy, #1a1a2e);
}

/* Minimal navigation style */
.offer-nav.minimal .nav-items {
    padding: 8px 24px;
}

.offer-nav.minimal .nav-item {
    padding: 6px 12px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-nav .nav-items {
        gap: 4px;
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .offer-nav .nav-item {
        padding: 6px 12px;
        font-size: 13px;
    }

    .offer-nav .nav-item.nav-cta {
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .offer-nav .nav-items {
        justify-content: space-between;
    }

    .offer-nav .nav-item:not(.nav-cta) {
        display: none;
    }

    .offer-nav .nav-item.active:not(.nav-cta),
    .offer-nav .nav-item[data-nav="services"],
    .offer-nav .nav-item[data-nav="pricing"] {
        display: block;
    }
}

/* =========================================
   PUBLIC OFFER - Section Icons (CSS-only)
   ========================================= */

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    flex-shrink: 0;
}

.section-icon::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section-icon.icon-services::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z'%3E%3C/path%3E%3C/svg%3E");
}

.section-icon.icon-pricing::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='12' y1='1' x2='12' y2='23'%3E%3C/line%3E%3Cpath d='M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6'%3E%3C/path%3E%3C/svg%3E");
}

.section-icon.icon-terms::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3Cline x1='16' y1='13' x2='8' y2='13'%3E%3C/line%3E%3Cline x1='16' y1='17' x2='8' y2='17'%3E%3C/line%3E%3Cpolyline points='10 9 9 9 8 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.section-icon.icon-about::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='9' cy='7' r='4'%3E%3C/circle%3E%3Cpath d='M23 21v-2a4 4 0 0 0-3-3.87'%3E%3C/path%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'%3E%3C/path%3E%3C/svg%3E");
}

.section-icon.icon-faq::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'%3E%3C/path%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'%3E%3C/line%3E%3C/svg%3E");
}

.section-icon.icon-process::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.section-icon.icon-contact::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/ccircle%3E%3C/svg%3E");
}

.section-icon.icon-check::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

/* =========================================
   PUBLIC OFFER - FAQ Accordion
   ========================================= */

.offer-faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--gray-50, #f9fafb);
    cursor: pointer;
    font-weight: 500;
    color: var(--navy, #1a1a2e);
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--gray-100, #f3f4f6);
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--gold, #c9a227);
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--gray-600, #6b7280);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    padding: 16px 20px;
    max-height: 500px;
}

/* =========================================
   PUBLIC OFFER - Process Steps
   ========================================= */

.offer-process {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.process-step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border: 1px solid var(--gray-200, #e5e7eb);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.process-step-card:hover {
    border-color: var(--gold, #c9a227);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.process-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold, #c9a227), #d4a84b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy, #1a1a2e);
}

.process-step-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy, #1a1a2e);
}

.process-step-content p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-600, #6b7280);
    line-height: 1.6;
}

/* =========================================
   PUBLIC OFFER - Contact Person Card
   ========================================= */

.offer-contact-person {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, var(--navy, #1a1a2e), #2a2a4e);
    border-radius: 16px;
    color: white;
}

.contact-person-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gold, #c9a227);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy, #1a1a2e);
}

.contact-person-info h4 {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 600;
}

.contact-person-info .position {
    margin: 0 0 12px 0;
    font-size: 14px;
    opacity: 0.8;
}

.contact-person-links {
    display: flex;
    gap: 16px;
}

.contact-person-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}

.contact-person-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .offer-contact-person {
        flex-direction: column;
        text-align: center;
    }

    .contact-person-links {
        flex-direction: column;
        width: 100%;
    }

    .contact-person-links a {
        justify-content: center;
    }
}
