/* ==================== ZMIENNE KOLORÓW ==================== */
:root {
    --primary: #1a3a52;
    --primary-dark: #0f2439;
    --primary-light: #2d5a7b;
    --accent: #17a2b8;
    --accent-light: #20c997;
    --accent-dark: #138496;
    --text: #1a1a1a;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --shadow-sm: 0 2px 8px rgba(26, 58, 82, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 58, 82, 0.12);
    --shadow-lg: 0 8px 24px rgba(26, 58, 82, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET I OGÓLNE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ==================== PRZYCISKI ==================== */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.btn-cta-nav {
    background-color: var(--accent);
    color: white;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-search {
    padding: 14px 32px;
    margin-top: 8px;
}

/* ==================== NAWIGACJA ==================== */
.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar .container-fluid {
    padding: 16px 20px;
    height: auto;
}

.navbar-brand h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    margin: 0;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    flex: 1;
    margin-left: 60px;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
}

.navbar-menu a:hover {
    color: var(--accent);
}

@media (max-width: 1024px) {
    .navbar-menu {
        gap: 20px;
        margin-left: 40px;
        font-size: 12px;
    }

    .navbar-menu a {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-brand h1 {
        font-size: 18px;
    }

    .btn-cta-nav {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.search-box {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 40px;
    border-radius: 12px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: flex-end;
    margin-bottom: 20px;
    box-shadow: var(--shadow-lg);
}

.search-group {
    text-align: left;
}

.search-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-group-fixed {
    position: relative;
}

.region-fixed {
    width: 100%;
    padding: 12px;
    background-color: #f0f8fa;
    border: 2px solid var(--accent);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    letter-spacing: 0.5px;
}

.search-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background-color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-group select:hover,
.search-group select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 184, 0.1);
}

.btn-search {
    width: 100%;
}

.search-hint {
    color: var(--text-light);
    font-size: 13px;
    opacity: 0.9;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .search-box {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==================== SEKCJE OGÓLNE ==================== */
section {
    padding: 80px 20px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    section {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }
}

/* ==================== FINALIZACJA ZAMÓWIENIA ==================== */
.order-summary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 20px;
    min-height: 100vh;
}

.order-summary .section-title {
    color: white;
}

.order-summary-content {
    margin-top: 40px;
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.order-card {
    background-color: white;
    color: var(--text);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.order-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.order-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.order-info p {
    margin: 10px 0;
    font-size: 14px;
}

.order-info strong {
    color: var(--primary);
}

.order-price-section {
    margin: 24px 0;
    padding-top: 24px;
    border-top: 2px solid var(--border);
}

.order-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.order-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
}

.order-what-includes {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.order-what-includes h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.order-what-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.order-what-includes li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-light);
    break-inside: avoid;
}

.order-what-includes li::before {
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

@media (max-width: 968px) {
    .order-details {
        grid-template-columns: 1fr;
    }

    .order-what-includes ul {
        columns: 1;
    }
}

.btn-close-order {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition);
}

.btn-close-order:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ==================== PAKIETY DLA KATEGORII ==================== */
.category-packages {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 20px;
    min-height: 100vh;
}

.btn-close-category {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--transition);
}

.btn-close-category:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.category-packages .section-title {
    color: white;
}

.category-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.category-package-card {
    background-color: white;
    color: var(--text);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.category-package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.category-package-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.category-package-card .price-tag {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.category-package-card .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.category-package-card .price small {
    font-size: 12px;
    color: var(--text-light);
    margin-left: 4px;
}

.category-package-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.category-package-card .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .category-packages {
        padding: 40px 20px;
    }

    .category-packages-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SEKCJA KATEGORII ==================== */
.categories {
    background-color: var(--bg-light);
}

.categories-showcase-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 20px 0;
    flex-wrap: wrap;
    padding: 12px;
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.05) 0%, rgba(23, 162, 184, 0.02) 100%);
    border-radius: 12px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    transition: var(--transition);
}

.icon-item:hover {
    transform: translateY(-6px);
}

.icon-item svg {
    width: 75px;
    height: 75px;
    filter: drop-shadow(0 2px 8px rgba(23, 162, 184, 0.18));
    transition: var(--transition);
}

.icon-item:hover svg {
    filter: drop-shadow(0 4px 12px rgba(23, 162, 184, 0.35));
    transform: translateY(-3px);
}

.icon-item p {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin: 4px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

@media (max-width: 1024px) {
    .categories-showcase-icons {
        gap: 16px;
        padding: 20px;
    }

    .icon-item svg {
        width: 65px;
        height: 65px;
    }

    .icon-item p {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .categories-showcase-icons {
        gap: 12px;
        padding: 16px;
    }

    .icon-item svg {
        width: 55px;
        height: 55px;
    }

    .icon-item p {
        font-size: 10px;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.category-card {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
}

.category-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.category-card .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==================== SEKCJA BAZY POPULARNE ==================== */
.popular-databases {
    background-color: white;
}

.category-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 40px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.filter-btn {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--border);
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-btn-active {
    background-color: var(--accent);
    color: white;
    border-color: var(--accent);
}

.databases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.database-card {
    background-color: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.database-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--accent);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.database-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 16px;
    margin-bottom: 12px;
}

.card-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.badge {
    background-color: var(--bg-light);
    color: var(--text);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.price small {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 4px;
}

.card-for-who {
    background-color: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 16px;
}

.card-for-who strong {
    color: var(--primary);
}

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

/* ==================== SEKCJA CENNIK ==================== */
.pricing {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.pricing-variants {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

@media (max-width: 1024px) {
    .pricing-variants {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-variants {
        grid-template-columns: 1fr;
    }
}

.variant-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border);
}

.variant-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.variant-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.variant-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.variant-price span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.variant-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05);
}

.badge-featured {
    position: absolute;
    top: -12px;
    left: 20px;
    background-color: var(--accent);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 12px;
    margin-bottom: 12px;
}

.price-tag {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 12px;
}

.price-amount span {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.price-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.price-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: var(--text);
}

.price-list li {
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

.price-best-for {
    margin: 20px 0;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.price-best-for strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card .btn {
    margin-top: auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

/* ==================== SEKCJA CO ZAWIERA ==================== */
.what-includes {
    background-color: white;
}

.includes-content {
    margin-top: 50px;
}

.includes-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.column-group h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.column-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-group li {
    padding: 8px 0;
    padding-left: 24px;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
}

.column-group li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.includes-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .includes-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==================== SEKCJA CUSTOM ==================== */
.custom-databases {
    background-color: var(--bg-light);
}

.custom-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.custom-example {
    background-color: white;
    padding: 24px;
    border-radius: 10px;
    border-top: 4px solid var(--accent);
    box-shadow: var(--shadow-sm);
}

.ce-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(23, 162, 184, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}

.ce-icon svg {
    width: 22px;
    height: 22px;
}

.custom-example h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.custom-example p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.custom-cta {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.custom-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .custom-examples {
        grid-template-columns: 1fr;
    }

    .custom-cta h3 {
        font-size: 18px;
    }
}

/* ==================== SEKCJA DLA JAKICH FIRM ==================== */
/* ==================== TESTIMONIALE / CASE STUDIES ==================== */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.testimonial-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.testimonial-meta {
    background-color: var(--bg-light);
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--primary);
    border-left: 3px solid var(--accent);
    font-weight: 500;
}

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

    .testimonial-card {
        flex-direction: row;
    }

    .testimonial-image {
        width: 200px;
        height: 160px;
        flex-shrink: 0;
    }

    .testimonial-content {
        padding: 16px;
    }
}

/* ==================== USE CASES / JAK FIRMY MOGĄ WYKORZYSTAĆ ==================== */
.use-cases {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.use-cases-accordion {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
    text-align: left;
}

.accordion-button:hover {
    background-color: #f9fafb;
    color: var(--accent);
}

.accordion-title {
    flex-grow: 1;
    line-height: 1.5;
}

.accordion-icon {
    font-size: 24px;
    color: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 24px 24px 24px;
    border-top: 2px solid #e5e7eb;
}

.accordion-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.case-study-box {
    background: linear-gradient(135deg, #f0fafb 0%, #e6f7f9 100%);
    border-left: 4px solid var(--accent);
    padding: 18px 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.case-study-box strong {
    display: block;
    color: var(--accent);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 700;
}

.case-study-box p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .accordion-button {
        padding: 16px 20px;
        font-size: 15px;
    }

    .accordion-body {
        padding: 0 20px 20px 20px;
    }

    .accordion-item {
        margin-bottom: 12px;
    }
}

.for-who {
    background-color: white;
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 50px;
}

.for-who-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.for-who-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .for-who-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .for-who-badge {
        font-size: 13px;
        padding: 12px;
    }
}

/* ==================== SEKCJA DEMO TABLE ==================== */
/* ==================== GALERIA / CASE STUDIES ==================== */
.use-cases-showcase {
    background-color: white;
}

.uc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.uc-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #fff;
    border: 1px solid #eef0f3;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.uc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.uc-card-body {
    padding: 26px 24px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.uc-icon {
    width: 48px;
    height: 48px;
    background: rgba(23, 162, 184, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.uc-icon svg {
    width: 24px;
    height: 24px;
}

.uc-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin: 0;
}

.uc-card-text {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 1024px) {
    .uc-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .uc-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==================== DEMO TABLE ==================== */
.demo-table {
    background-color: var(--bg-light);
}

.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.demo-db-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
}

.demo-db-table thead {
    background-color: var(--primary);
    color: white;
}

.demo-db-table th {
    padding: 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-db-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}

.demo-db-table tbody tr:hover {
    background-color: var(--bg-light);
}

.demo-db-table tbody tr:last-child td {
    border-bottom: none;
}

.demo-table-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    margin: 16px 0 28px;
    font-style: italic;
}

.demo-cta {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.demo-cta p {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 20px;
}

.demo-cta strong {
    color: var(--primary);
}

/* ==================== SEKCJA PRAWNA ==================== */
.legal-notice {
    background-color: white;
}

.legal-text {
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legal-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.legal-point {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.legal-point h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.legal-point p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .legal-points {
        grid-template-columns: 1fr;
    }
}

/* ==================== FAQ ==================== */
.faq {
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.faq-item {
    background-color: white;
    padding: 24px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover .faq-question {
    color: var(--accent);
}

.faq-answer {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

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

/* ==================== FINAL CTA ==================== */
.final-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.final-cta .section-title {
    color: white;
}

.final-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.final-cta-buttons .btn {
    padding: 16px 40px;
    font-size: 15px;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.contact-info a {
    color: var(--accent-light);
    text-decoration: none;
    font-weight: 600;
}

/* ==================== FORMULARZ KONTAKTOWY ==================== */
.contact-form-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-left h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: inherit;
    font-size: 15px;
    padding: 14px 18px;
    border: 2px solid #e8ecf1;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: var(--text);
    background-color: #f8f9fb;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #d1dce6;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(23, 162, 184, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.checkbox-group {
    display: flex;
    gap: 24px;
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    cursor: pointer;
    gap: 8px;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.contact-form-right h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
}

.contact-info-box {
    background-color: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    font-size: 14px;
    color: var(--text);
    padding: 10px 0;
    line-height: 1.6;
}

.checklist li:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: 700;
    margin-right: 8px;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .final-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .final-cta-buttons .btn {
        width: 100%;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* ==================== RESPONSYWNOŚĆ ==================== */
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .hero-title {
        font-size: 28px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .pricing-amount {
        font-size: 24px;
    }
}

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

.database-card,
.category-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== PRODUCTS TABLE ==================== */
.section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 12px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.products-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background-color: white;
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
    overflow: hidden;
}

.products-table thead {
    background-color: var(--primary);
    color: white;
}

.products-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.products-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.product-row:hover {
    background-color: var(--bg-light);
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-available {
    background-color: #d4edda;
    color: #155724;
}

.status-preparing {
    background-color: #fff3cd;
    color: #856404;
}

.status-custom {
    background-color: #d1ecf1;
    color: #0c5460;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* ==================== PRICING REFERENCE ==================== */
.pricing-reference {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.pricing-reference .pricing-grid {
    margin-top: 40px;
}

.pricing-reference .pricing-card {
    background-color: white;
    border: none;
}

.pricing-reference .pricing-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.price-range {
    font-size: 24px;
    color: var(--accent);
    margin: 16px 0;
    font-weight: 700;
}

.pricing-reference .pricing-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-explanation {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.explanation-intro {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.pricing-factors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0 30px 0;
}

@media (max-width: 1024px) {
    .pricing-factors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-factors-grid {
        grid-template-columns: 1fr;
    }
}

.factor-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8fafb 100%);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.factor-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.15);
    transform: translateY(-2px);
}

.factor-number {
    width: 40px;
    height: 40px;
    background-color: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.factor-card p {
    font-size: 14px;
    color: var(--text);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

.pricing-note {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.pricing-note strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 768px) {
    .products-table {
        font-size: 14px;
    }

    .products-table th,
    .products-table td {
        padding: 12px 8px;
    }

    .btn-sm {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ==================== ACCESSIBILITY ==================== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ==================== MODAL ZAKUPU ==================== */
.pm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 45, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}

.pm-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.pm-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 4px 8px;
}

.pm-close:hover { color: var(--primary); }

.pm-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.pm-package-info {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.pm-form { display: flex; flex-direction: column; gap: 16px; }

.pm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pm-group { display: flex; flex-direction: column; gap: 6px; }
.pm-group.pm-full { grid-column: 1 / -1; }

.pm-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.pm-group input[type="text"],
.pm-group input[type="email"],
.pm-group input[type="tel"] {
    padding: 10px 14px;
    border: 1.5px solid #dde3ea;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.pm-group input:focus {
    outline: none;
    border-color: var(--accent);
}

.pm-group input[readonly] {
    background: var(--bg-light);
    color: var(--text-secondary);
}

.pm-consent { margin-top: 4px; }

.pm-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.pm-checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pm-checkbox-label a { color: var(--accent); }

.pm-submit {
    margin-top: 8px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
}

.pm-secure-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

@media (max-width: 600px) {
    .pm-box { padding: 24px 20px; }
    .pm-row { grid-template-columns: 1fr; }
}
