/* Info Landing Page Styles */

:root {
    --primary-color: #0d6efd;
    --primary-dark: #1d4ed8;
    --success-color: #059669;
    --warning-color: #f59e0b;

    --bg-body: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --card-bg: #ffffff;
    --navbar-bg: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-top: 70px;
    background-color: var(--bg-body);
    color: var(--text-primary);
}

/* Navbar */
.navbar {
    transition: box-shadow 0.3s ease;
    background-color: var(--navbar-bg) !important;
}

.navbar-brand img {
    vertical-align: middle;
}

.nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
    color: var(--text-primary) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #fff !important;
    border-radius: 6px;
}

.nav-link.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.nav-link.btn-outline-secondary {
    border-radius: 6px;
}

/* Darken outline-primary text/border to meet WCAG AA contrast on light backgrounds */
.btn-outline-primary {
    --bs-btn-color: #0a58ca;
    --bs-btn-border-color: #0a58ca;
    --bs-btn-hover-border-color: #0a58ca;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 70px);
    background: #ffffff;
    padding: 4rem 0;
}

.hero-section h1 {
    color: var(--text-primary);
    line-height: 1.2;
}

.hero-section .lead {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-section .badge {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Feature list in Ce este section */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding-left: 28px;
    margin-bottom: 0.6rem;
    position: relative;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Why cards */
.why-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.1);
}

/* Audience cards */
.audience-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.audience-card:hover {
    border-color: var(--success-color);
    box-shadow: 0 8px 16px rgba(5, 150, 105, 0.1);
}

/* Benefit Cards */
.benefit-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 16px rgba(13, 110, 253, 0.1);
    transform: translateY(-2px);
}

.benefit-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Card / contact sub-headings use <h3> for correct heading order but keep h5 sizing */
.why-card h3,
.audience-card h3,
.benefit-card h3,
.support-card h3,
#contact h3 {
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-secondary) !important;
}

/* Pricing Cards */
.pricing-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
    color: white;
}

.pricing-card-featured .pricing-name,
.pricing-card-featured .price-amount,
.pricing-card-featured .pricing-features li {
    color: white;
}

.pricing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fbbf24;
    color: #1e293b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}
.partner-badges a img {
    height: 48px;
    width: auto;
    display: block;
}
.netopia-badge-wrap {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.pricing-header {
    padding: 1.1rem 1.5rem 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.pricing-card-featured .pricing-header {
    border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 0.25rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-card-featured .price-amount {
    color: white;
}

.pricing-card-featured .price-period {
    color: rgba(255,255,255,0.7);
}

.pricing-features {
    list-style: none;
    padding: 0.9rem 1.5rem;
    margin: 0;
    flex: 1;
}

.pricing-features li {
    padding-left: 22px;
    margin-bottom: 0.3rem;
    position: relative;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-card-featured .pricing-features li::before {
    background-color: rgba(255,255,255,0.3);
}

.pricing-features li.feature-unavailable {
    opacity: 0.4;
    text-decoration: line-through;
}

.pricing-features li.feature-unavailable::before {
    background-color: #94a3b8;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18 6L6 18M6 6l12 12' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 10px;
}

.pricing-features li.feature-soon {
    color: #b45309;
    font-style: italic;
}

.pricing-features li.feature-soon::before {
    background-color: var(--warning-color);
}

.pricing-footer {
    padding: 0.9rem 1.5rem 1.25rem;
}

/* ── Pricing Comparison Table ────────────────────────────────────────────────── */
.pricing-compare-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.pricing-compare {
    min-width: 580px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    background: var(--card-bg);
}

/* Each row = 4-column grid: [label 50%] [STARTER] [STANDARD] [PREMIUM] — packages share 50% */
.pc-row {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr;
    align-items: stretch;
    border-bottom: 1px solid var(--border-color);
}

.pc-row:last-child { border-bottom: none; }

.pc-row:not(.pc-header):not(.pc-footer-row):hover { background: #f8fafc; }
.pc-row:not(.pc-header):not(.pc-footer-row):hover .pc-cell.pc-featured {
    background: rgba(37, 99, 235, 0.1);
}

/* Feature label */
.pc-feature-col {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

/* Package header columns — extra top padding reserves space for the absolutely-positioned badge */
.pc-pkg-col {
    padding: 2.4rem 0.75rem 1rem;
    text-align: center;
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.pc-pkg-col.pc-pkg-featured {
    background: linear-gradient(160deg, #1e40af 0%, #2563eb 100%);
    border-left-color: transparent;
}

.pc-pkg-name {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}
.pc-pkg-col.pc-pkg-featured .pc-pkg-name { color: rgba(255,255,255,0.75); }

.pc-pkg-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 0.15rem;
}

.pc-price-amt {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}
.pc-pkg-col.pc-pkg-featured .pc-price-amt { color: white; }

.pc-price-period {
    font-size: 0.72rem;
    color: var(--text-secondary);
    line-height: 1.2;
}
.pc-pkg-col.pc-pkg-featured .pc-price-period { color: rgba(255,255,255,0.65); }

.pc-pkg-meta {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.pc-pkg-col.pc-pkg-featured .pc-pkg-meta { color: rgba(255,255,255,0.65); }

.pc-pkg-badge {
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #fbbf24;
    color: #1e293b;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Group separator */
.pc-group-label {
    padding: 0.35rem 1rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #1d4ed8;
    background: #eff6ff;
    border-bottom: 1px solid #dbeafe;
}

/* Feature value cells */
.pc-cell {
    padding: 0.6rem 0.5rem;
    text-align: center;
    border-left: 1px solid var(--border-color);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pc-cell.pc-featured {
    background: rgba(37, 99, 235, 0.05);
    border-left-color: rgba(37, 99, 235, 0.2);
}

.pc-cell.pc-yes { color: #059669; font-weight: 700; font-size: 1.05rem; }
.pc-cell.pc-yes.pc-featured { color: #2563eb; }

.pc-cell.pc-no { color: #cbd5e1; font-size: 1.05rem; }
.pc-cell.pc-no.pc-featured { color: rgba(37, 99, 235, 0.25); }

.pc-cell.pc-text { font-size: 0.775rem; color: var(--text-secondary); line-height: 1.3; }
.pc-cell.pc-text.pc-featured { color: #2563eb; font-weight: 600; }

.pc-cell.pc-soon { font-size: 0.72rem; color: #b45309; font-style: italic; }

/* Footer CTA */
.pc-footer-row { background: #f8fafc; }
.pc-footer-row .pc-cell { padding: 0.85rem 0.75rem; }
.pc-footer-row .pc-cell.pc-featured { background: rgba(37, 99, 235, 0.08); }

/* Testimonials */
.testimonial-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

/* Support cards */
.support-card {
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

.support-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

/* Contact */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-secondary);
}

.contact-info-item a {
    color: var(--primary-color);
}

.contact-info-item a:hover {
    color: var(--primary-dark);
}

/* Card */
.card {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

/* Form alerts */
#contactFormAlert.alert-success {
    background-color: #d1fae5;
    border-color: #a7f3d0;
    color: #065f46;
}

#contactFormAlert.alert-danger {
    background-color: #fee2e2;
    border-color: #fecaca;
    color: #991b1b;
}

/* Footer */
footer a:hover {
    color: white !important;
}

/* Button effects */
.btn-primary {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Loading state */
#contactSubmitBtn.loading {
    pointer-events: none;
    opacity: 0.7;
}

#contactSubmitBtn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

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

/* Scroll margin */
section[id] {
    scroll-margin-top: 80px;
}

/* despre image — desktop cap */
.despre-img {
    max-height: 480px;
    object-fit: contain;
    width: 100%;
}

/* ─── Large desktops: many nav items need tighter spacing ─────────────────── */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .nav-link {
        font-size: 0.82rem;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    .nav-link.btn-primary {
        padding-left: 0.6rem !important;
        padding-right: 0.6rem !important;
    }
}

/* ─── Tablet / collapsed navbar (< 992px) ─────────────────────────────────── */
@media (max-width: 991.98px) {
    /* Navbar */
    .navbar-collapse {
        background: var(--navbar-bg);
        padding: 0.75rem 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-link.btn-primary {
        display: inline-block;
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
    }

    /* Hero */
    .hero-section {
        text-align: center;
        min-height: auto;
        padding: 2.5rem 0;
    }
    .hero-section .d-flex.gap-3 {
        justify-content: center;
    }

    /* Despre: image below text, reasonable height */
    .despre-img {
        max-height: 320px;
    }

    /* Contact: reduce gap */
    #contact .row.g-5 {
        --bs-gutter-y: 2rem;
    }

    /* Footer: center all columns */
    footer .col-md-4 {
        text-align: center !important;
    }
}

/* ─── Mobile (< 768px) ────────────────────────────────────────────────────── */
@media (max-width: 767.98px) {
    /* Typography */
    .hero-section h1,
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
    h5 { font-size: 1rem; }

    .hero-section .lead { font-size: 0.95rem; }

    /* Sections: uniform vertical padding */
    section { padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    #pachete { padding-top: 2rem !important; padding-bottom: 2rem !important; }

    /* Hero */
    .hero-section {
        padding: 2rem 0;
    }
    .hero-section .badge { font-size: 0.75rem; }

    /* Despre image: compact on phone */
    .despre-img {
        max-height: 220px;
    }

    /* Reduce large gaps between columns */
    .g-5 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }
    .g-4 { --bs-gutter-x: 1rem;   --bs-gutter-y: 1rem; }

    /* Why / audience cards: full width */
    #dece .col-md-6,
    #pentrucine .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Pricing cards: full width, no h-100 height lock on mobile */
    #pachete .pricing-card { height: auto !important; }
    .pricing-header { padding: 0.9rem 1.1rem 0.75rem; }
    .pricing-features { padding: 0.75rem 1.1rem; }
    .pricing-footer { padding: 0.75rem 1.1rem 1rem; }
    .price-amount { font-size: 1.75rem; }

    /* Benefit cards: 1 per row on small phones, 2 per row on wider phones */
    #beneficii .col-md-6 { flex: 0 0 100%; max-width: 100%; }

    /* Testimonials: 1 per row */
    #testimoniale .col-md-6 { flex: 0 0 100%; max-width: 100%; }

    /* Support cards: full width */
    #suport .col-md-6 { flex: 0 0 100%; max-width: 100%; }

    /* Contact: stack naturally */
    #contact .row.g-5 { --bs-gutter-y: 1.5rem; }
    #contact h5 { margin-top: 0; }

    /* Footer: stack and center */
    footer .row { text-align: center; }
    footer .col-md-4 { margin-bottom: 0.75rem; }
    footer .text-md-end { text-align: center !important; }
    footer .text-md-start { text-align: center !important; }

    /* CTA section */
    .cta-section .btn { width: 100%; }
    .cta-section .d-flex { flex-direction: column; }

    /* ── Pricing comparison table: mobile ─────────────────────────────────────── */
    .pricing-compare { min-width: 480px; }
    .pc-row { grid-template-columns: 2fr 1fr 1fr 1fr; }

    /* Sticky feature-name column — stays visible while packages scroll */
    .pc-feature-col {
        position: sticky;
        left: 0;
        background: #ffffff;
        z-index: 2;
        box-shadow: 2px 0 5px -2px rgba(0,0,0,0.07);
    }
    .pc-row:not(.pc-header):not(.pc-footer-row):hover .pc-feature-col { background: #f8fafc; }
    .pc-footer-row .pc-feature-col { background: #f8fafc; }

    /* Compact header */
    .pc-pkg-col { padding: 2rem 0.5rem 0.75rem; }
    .pc-pkg-name { font-size: 0.72rem; letter-spacing: 1px; }
    .pc-price-amt { font-size: 1.3rem; }
    .pc-pkg-meta { font-size: 0.6rem; }
    .pc-pkg-badge { font-size: 0.5rem; padding: 2px 5px; }
    .pc-pkg-col .btn { font-size: 0.7rem; padding: 0.2rem 0.3rem; }

    /* Compact cells */
    .pc-feature-col { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
    .pc-cell { padding: 0.5rem 0.3rem; }
    .pc-cell.pc-text { font-size: 0.7rem; }
    .pc-group-label { font-size: 0.62rem; }
    .pc-footer-row .pc-cell { padding: 0.65rem 0.4rem; }

    /* Badges: allow wrap on phones */
    .partner-badges { flex-wrap: wrap; }
}

/* ─── Very small phones (< 400px) ─────────────────────────────────────────── */
@media (max-width: 399.98px) {
    .hero-section h1 { font-size: 1.5rem; }
    .navbar-brand img { height: 30px !important; }
    .pricing-badge { font-size: 0.65rem; padding: 3px 7px; }
}

/* ── Cookie Consent Banner ──────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1080;
    background: #1e293b;
    color: #e2e8f0;
    padding: 0.9rem 1rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.5;
    min-width: 200px;
}

.cookie-icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: #93c5fd;
}

.cookie-link {
    color: #93c5fd;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #bfdbfe;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-banner-actions .btn-outline-secondary {
    color: #94a3b8;
    border-color: #475569;
}

.cookie-banner-actions .btn-outline-secondary:hover {
    background: #334155;
    border-color: #64748b;
    color: #e2e8f0;
}

@media (max-width: 575.98px) {
    /* Pricing comparison table: small phones */
    .pricing-compare { min-width: 360px; }
    .pc-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .pc-pkg-col { padding: 1.8rem 0.3rem 0.6rem; }
    .pc-pkg-name { font-size: 0.6rem; letter-spacing: 0.5px; }
    .pc-price-amt { font-size: 1.1rem; }
    .pc-price-period { font-size: 0.58rem; }
    .pc-pkg-meta { display: none; }         /* hide users/invoices line — too cramped */
    .pc-pkg-badge { font-size: 0.48rem; top: 7px; }
    .pc-pkg-col .btn { font-size: 0.6rem; padding: 0.15rem 0.2rem; }
    .pc-feature-col { font-size: 0.75rem; padding: 0.45rem 0.5rem; }
    .pc-cell { padding: 0.45rem 0.15rem; }
    .pc-cell.pc-yes, .pc-cell.pc-no { font-size: 0.85rem; }
    .pc-cell.pc-text { font-size: 0.62rem; }
    .pc-group-label { font-size: 0.58rem; }
    .pc-footer-row .pc-cell { padding: 0.55rem 0.2rem; }

    /* Cookie banner */
    .cookie-banner-inner { flex-direction: column; align-items: stretch; }
    .cookie-banner-actions { justify-content: flex-end; }
}
