/* ============================================================
   PROJECT ACCOUNTING — page-project-accounting.php
   Section order & bg:
   1. Hero       → light (var(--color-bg))
   2. Who for    → dark  (#1E293B)
   3. Included   → light
   4. Packages   → dark
   5. Steps      → light
   6. Results    → dark
   7. FAQ        → light
   8. CTA        → dark
   ============================================================ */

/* ── Shared section chrome ──────────────────────────────────── */

/* Section label pill — light background sections */
.pa-included .section-label,
.pa-steps .section-label,
.pa-faq .section-label {
    display: inline-block;
    border: 1px solid rgba(30, 41, 59, 0.2);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 16px;
}

/* Section label pill — dark background sections */
.pa-fit .section-label,
.pa-packages .section-label,
.pa-results .section-label {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    padding: 5px 16px;
    margin-bottom: 16px;
}

.pa-section-hd {
    margin-bottom: 40px;
}

.pa-section-hd h2 {
    margin-bottom: 10px;
}

.pa-section-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Dark-section heading overrides */
.pa-fit .pa-section-hd h2,
.pa-packages .pa-section-hd h2,
.pa-results .pa-section-hd h2,
.pa-cta .pa-section-hd h2 {
    color: #fff;
}

.pa-fit .pa-section-desc,
.pa-packages .pa-section-desc,
.pa-results .pa-section-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* ── 1. HERO (light) ────────────────────────────────────────── */

.pa-hero {
    background: var(--color-bg);
    padding: 60px 0 32px;
}

.pa-hero__inner {
    max-width: 100%;
}

.pa-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(30, 41, 59, 0.07);
    border-radius: 100px;
    padding: 5px 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.pa-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    line-height: 1.1;
}

.pa-hero__title em {
    font-style: italic;
    color: var(--color-text-muted);
    font-weight: 400;
}

.pa-hero__desc {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    line-height: 1.65;
}

.pa-hero__note {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-text-muted);
    border: 1px solid rgba(30, 41, 59, 0.15);
    border-radius: 100px;
    padding: 5px 14px;
    margin-top: 10px;
    margin-bottom: 28px;
}

.pa-hero__btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

/* Hero messenger buttons */
.pa-btn-tg,
.pa-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 14px 28px;
    border-radius: var(--button-radius);
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.pa-btn-tg { background: #229ED9; }
.pa-btn-wa { background: #25D366; }

.pa-btn-tg:hover,
.pa-btn-wa:hover {
    opacity: 0.88;
    color: #fff;
}

/* Outline button for dark sections */
.pa-btn-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--button-radius);
    padding: 14px 20px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pa-btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

/* Urgency banner */
.pa-urgency {
    background: #FEF3E8;
    border-radius: 10px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 4px 20px rgba(120, 80, 20, 0.12);
}

.pa-urgency__body {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 14px;
    color: #7A4A10;
    line-height: 1.65;
}

.pa-urgency__label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #7A4A10;
}

.pa-urgency__text {
    display: block;
    line-height: 1.65;
}

.pa-urgency__text strong {
    display: inline;
    font-weight: 700;
    color: #7A4A10;
}

.pa-urgency__badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    min-width: 140px;
}

.pa-urgency__val {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: #7A4A10;
    opacity: 0.7;
    white-space: nowrap;
    margin-top: 2px;
}

.pa-urgency__sub {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    color: #7A4A10;
    opacity: 0.7;
    white-space: nowrap;
}

/* ── 2. WHO IT'S FOR (dark) ─────────────────────────────────── */

.pa-fit {
    background: var(--color-text-primary);
    padding: 56px 0;
}

.pa-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.pa-fit-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.15s ease, background 0.15s ease;
}

.pa-fit-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.pa-fit-n {
    font-family: var(--font-card-title);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    min-width: 24px;
    flex-shrink: 0;
}

.pa-fit-title {
    display: block;
    font-family: var(--font-card-title);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.pa-fit-desc {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.pa-fit-not {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 16px 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.pa-fit-not strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-right: 4px;
}

/* ── 3. INCLUDED (light) ────────────────────────────────────── */

.pa-included {
    background: var(--color-bg);
    padding: 56px 0;
}

.pa-inc-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
}

/* Connector arrows between scope-of-work items (default = stacked, points down) */
.pa-inc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 26px;
    color: var(--color-text-muted);
    opacity: 0.4;
}

.pa-inc-arrow svg {
    transform: rotate(90deg);
}

.pa-inc-item {
    background: #fff;
    border: 1px solid rgba(30, 41, 59, 0.07);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pa-inc-num {
    font-family: var(--font-card-title);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-muted);
    min-width: 26px;
    flex-shrink: 0;
    opacity: 0.45;
}

.pa-inc-name {
    display: block;
    font-family: var(--font-card-title);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-card-heading);
    margin-bottom: 4px;
}

.pa-inc-desc {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.55;
}

/* Scope of work — snake flow on wide screens: 1 → 2 / 4 ← 3 / 5 → 6 / 7 */
@media (min-width: 769px) {
    .pa-inc-grid {
        display: grid;
        grid-template-columns: 1fr 40px 1fr;
        gap: 0;
    }
    .pa-inc-arrow {
        width: auto;
        height: auto;
        justify-self: center;
        align-self: center;
    }
    .pa-inc-arrow svg { transform: none; }

    .pa-inc-item:nth-child(1)  { grid-column: 1;      grid-row: 1; }
    .pa-inc-item:nth-child(3)  { grid-column: 3;      grid-row: 1; }
    .pa-inc-item:nth-child(5)  { grid-column: 3;      grid-row: 3; }
    .pa-inc-item:nth-child(7)  { grid-column: 1;      grid-row: 3; }
    .pa-inc-item:nth-child(9)  { grid-column: 1;      grid-row: 5; }
    .pa-inc-item:nth-child(11) { grid-column: 3;      grid-row: 5; }
    .pa-inc-item:nth-child(13) { grid-column: 1 / -1; grid-row: 7; }

    .pa-inc-arrow:nth-child(2)  { grid-column: 2; grid-row: 1; }                  /* → */
    .pa-inc-arrow:nth-child(4)  { grid-column: 3; grid-row: 2; }                  /* ↓ */
    .pa-inc-arrow:nth-child(4)  svg { transform: rotate(90deg); }
    .pa-inc-arrow:nth-child(6)  { grid-column: 2; grid-row: 3; }                  /* ← */
    .pa-inc-arrow:nth-child(6)  svg { transform: rotate(180deg); }
    .pa-inc-arrow:nth-child(8)  { grid-column: 1; grid-row: 4; }                  /* ↓ */
    .pa-inc-arrow:nth-child(8)  svg { transform: rotate(90deg); }
    .pa-inc-arrow:nth-child(10) { grid-column: 2; grid-row: 5; }                  /* → */
    .pa-inc-arrow:nth-child(12) { grid-column: 3; grid-row: 6; }                  /* ↓ */
    .pa-inc-arrow:nth-child(12) svg { transform: rotate(90deg); }
}

.pa-excl {
    background: #fff;
    border: 1px solid rgba(30, 41, 59, 0.07);
    border-radius: 6px;
    padding: 14px 18px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.pa-excl strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

/* ── 4. PACKAGES (dark) ─────────────────────────────────────── */

.pa-packages {
    background: var(--color-text-primary);
    padding: 56px 0;
}

.pa-pkgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 16px;
}

.pa-pkg {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 24px;
    display: grid;
    grid-row: span 9;
    grid-template-rows: subgrid;
    transition: transform 0.15s ease, background 0.15s ease;
}

.pa-pkg:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.pa-pkg--featured {
    background: rgba(255, 255, 255, 0.16);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
}

.pa-pkg--featured:hover {
    background: rgba(255, 255, 255, 0.22);
}

.pa-pkg-tag {
    display: block;
    font-family: var(--font-heading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-bottom: 4px;
}

.pa-pkg-name {
    display: block;
    font-family: var(--font-card-title);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.pa-pkg-for {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pa-pkg-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 16px;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

.pa-pkg-price strong {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pa-pkg-from {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
}

.pa-pkg-li {
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 0 6px 14px;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
}

.pa-pkg-li:last-of-type {
    border-bottom: none;
}

.pa-pkg-li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

.pa-pkg-action {
    margin-top: 0;
    padding-top: 20px;
    align-self: end;
}

/* Buttons on dark bg */
.pa-packages .btn-primary,
.pa-packages .btn-sm {
    background: #0F6E56;
    border-color: #0F6E56;
    color: #fff;
}

.pa-packages .btn-primary:hover,
.pa-packages .btn-sm:hover {
    background: #0a5442;
    border-color: #0a5442;
    opacity: 1;
}

.btn-sm {
    font-size: 14px;
    padding: 14px 20px;
}

/* ── 5. STEPS (light) ───────────────────────────────────────── */

.pa-steps {
    background: var(--color-bg);
    padding: 56px 0;
}

.pa-steps-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.pa-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    color: var(--color-text-muted);
    opacity: 0.4;
}

.pa-step {
    background: #fff;
    border: 1px solid rgba(30, 41, 59, 0.07);
    border-radius: 10px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pa-step-n {
    display: block;
    font-family: var(--font-card-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-muted);
    opacity: 0.35;
    margin-bottom: 12px;
}

.pa-step-title {
    display: block;
    font-family: var(--font-card-title);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-card-heading);
    margin-bottom: 8px;
}

.pa-step-desc {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ── 6. RESULTS (dark) ──────────────────────────────────────── */

.pa-results {
    background: var(--color-text-primary);
    padding: 56px 0;
}

.pa-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.pa-result-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.pa-result-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.pa-result-type {
    display: block;
    font-family: var(--font-card-title);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.pa-result-sit {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pa-result-res {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    flex: 1;
}

.pa-result-price {
    display: block;
    font-family: var(--font-card-title);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

/* ── 7. FAQ (light) ─────────────────────────────────────────── */

.pa-faq {
    background: var(--color-bg);
    padding: 56px 0;
}

.pa-faq-item {
    border-top: 1px solid rgba(30, 41, 59, 0.1);
    padding: 20px 0;
}

.pa-faq-item:last-child {
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}

.pa-faq-q {
    display: block;
    font-family: var(--font-card-title);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-card-heading);
    margin-bottom: 8px;
    line-height: 1.4;
}

.pa-faq-a {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.pa-cross-link {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(30, 41, 59, 0.08);
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pa-cross-link a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1px solid rgba(30, 41, 59, 0.2);
    padding-bottom: 1px;
    transition: border-color 0.2s;
}

.pa-cross-link a:hover {
    border-color: var(--color-text-primary);
}

/* ── 8. CTA / CONTACT FORM (dark) ───────────────────────────── */

.pa-cta {
    background: var(--color-text-primary);
    padding: 56px 0 48px;
}

.pa-cta .section-label {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 100px;
    padding: 5px 16px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 16px;
}

.pa-cta__inner {
    max-width: 100%;
}

.pa-cta__title {
    font-size: clamp(24px, 3.5vw, 34px);
    color: #fff;
    margin-bottom: 12px;
}

.pa-cta__desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    margin-bottom: 20px;
}

.pa-cta__guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 16px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.pa-cta__guarantee svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* ── STATS BAR (white) ──────────────────────────────────────────── */

.pa-stats {
    background: #fff;
    border-bottom: 1px solid rgba(30, 41, 59, 0.07);
    padding: 32px 0;
}

.pa-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.pa-stat__val {
    font-family: var(--font-card-title);
    font-size: 38px;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.pa-stat__label {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

/* ── GUARANTEE STRIP (inside packages, dark bg) ─────────────────── */

.pa-guarantee-strip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    padding: 18px 24px;
    margin-top: 20px;
}

.pa-guarantee-strip svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.pa-guarantee-strip p {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
}

.pa-guarantee-strip strong {
    color: #fff;
    font-weight: 700;
    margin-right: 4px;
}

/* ── CONTACT FORM (dark section) ────────────────────────────────── */

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

.pa-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pa-form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pa-form__field label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
}

.pa-form__field label span[aria-hidden] {
    color: rgba(255, 255, 255, 0.35);
    margin-left: 2px;
}

.pa-form input[type="text"],
.pa-form input[type="email"],
.pa-form textarea,
.pa-form select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.15s ease;
    width: 100%;
    box-sizing: border-box;
}

.pa-form input[type="text"]:focus,
.pa-form input[type="email"]:focus,
.pa-form textarea:focus,
.pa-form select:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.pa-form input::placeholder,
.pa-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

/* override browser autofill yellow/white background */
.pa-form input:-webkit-autofill,
.pa-form input:-webkit-autofill:hover,
.pa-form input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px #253249 inset;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
}

.pa-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.pa-form select option {
    background: var(--color-text-primary);
    color: #fff;
}

.pa-form textarea {
    resize: vertical;
    min-height: 150px;
}

.pa-form__consent {
    display: flex;
}

.pa-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    line-height: 1.5;
}

.pa-form__check input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    margin-top: 2px;
    position: relative;
    transition: background 0.15s ease;
}

.pa-form__check input[type="checkbox"]:checked {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.pa-form__check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.pa-form__policy-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pa-form__policy-link:hover {
    color: #fff;
}

.pa-form__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pa-form .btn-primary {
    background: #0F6E56;
    border-color: #0F6E56;
    color: #fff;
    padding: 14px 28px;
    white-space: nowrap;
}

.pa-form .btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pa-form__note {
    font-family: var(--font-heading);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
}

.pa-form__result {
    font-family: var(--font-heading);
    font-size: 14px;
    border-radius: 6px;
    line-height: 1.5;
    min-height: 0;
}

.pa-form__result:not(:empty) {
    padding: 12px 16px;
}

.pa-form__result--ok {
    background: rgba(52, 211, 153, 0.14);
    color: #6ee7b7;
    border: 1px solid rgba(52, 211, 153, 0.22);
}

.pa-form__result--err {
    background: rgba(248, 113, 113, 0.12);
    color: #fca5a5;
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* ── STICKY CTA (all screens) ───────────────────────────────────── */

.pa-sticky {
    position: fixed;
    bottom: 0;
    left: 50%;
    /* Sized to match the homepage timely-banner (.tb-bar) on desktop */
    width: calc(100% - 48px);
    max-width: 800px;
    background: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    padding: 13px 22px;
    z-index: 500;
    transform: translateX(-50%) translateY(110%);
    transition: transform 0.35s ease;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.32);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
}

.pa-sticky--visible {
    transform: translateX(-50%) translateY(0);
}

.pa-sticky__left {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.pa-sticky__countdown {
    font-family: var(--font-card-title);
    /* Matches .tb-bar__count on the homepage exactly so both bars have the same height */
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    white-space: nowrap;
}

.pa-sticky__dl-label {
    font-family: var(--font-heading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.pa-sticky__dl-date {
    /* Now an inline child of .pa-sticky__dl-label so label+date share one line.
     * Match label sizing; visually muted via opacity to suggest secondary info. */
    font-size: inherit;
    opacity: 0.7;
}

.pa-sticky__offer {
    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
}

.pa-sticky__offer strong {
    color: #fff;
    font-weight: 700;
}

.pa-sticky__action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.pa-sticky__consult {
    font-family: var(--font-heading);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    text-align: right;
}

.pa-sticky__action .btn-primary {
    background: #0F6E56;
    border-color: #0F6E56;
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}

.pa-sticky__msg-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: var(--button-radius);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease;
    color: #fff;
}

.pa-sticky__msg-btn:hover {
    opacity: 0.88;
    color: #fff;
}

.pa-sticky__msg-btn--tg {
    background: #229ED9;
}

.pa-sticky__msg-btn--wa {
    background: #25D366;
}

/* ── Urgency countdown ───────────────────────────────────────────── */

.pa-urgency__countdown {
    display: block;
    font-family: var(--font-card-title);
    font-size: 26px;
    font-weight: 700;
    color: #7A4A10;
    white-space: nowrap;
    line-height: 1.1;
}

/* ── Responsive ─────────────────────────────────────────────── */

/* Steps — snake layout on tablets: 1 → 2 / 4 ← 3 */
@media (min-width: 601px) and (max-width: 1024px) {
    .pa-steps-grid {
        display: grid;
        grid-template-columns: 1fr 56px 1fr;
        gap: 16px 0;
    }

    .pa-step-arrow { justify-self: center; align-self: center; }

    .pa-steps-grid .pa-step:nth-child(1) { grid-column: 1; grid-row: 1; }
    .pa-steps-grid .pa-step:nth-child(3) { grid-column: 3; grid-row: 1; }
    .pa-steps-grid .pa-step:nth-child(5) { grid-column: 3; grid-row: 3; }
    .pa-steps-grid .pa-step:nth-child(7) { grid-column: 1; grid-row: 3; }

    .pa-step-arrow:nth-child(2) { grid-column: 2; grid-row: 1; }                   /* → */
    .pa-step-arrow:nth-child(4) { grid-column: 3; grid-row: 2; }                   /* ↓ */
    .pa-step-arrow:nth-child(4) svg { transform: rotate(90deg); }
    .pa-step-arrow:nth-child(6) { grid-column: 2; grid-row: 3; }                   /* ← */
    .pa-step-arrow:nth-child(6) svg { transform: rotate(180deg); }
}

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

    .pa-pkgs {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
    }

    .pa-results-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pa-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Mobile minimum: countdown + short label ("until CT deadline") + CTA only.
     * Full-width bar attached to bottom; corner buttons lifted via
     * body.pa-sticky-open rules below.
     * Switch to flex `space-between` so left-content + CTA are pinned to opposite
     * edges; with the desktop `grid auto 1fr auto`, hiding `.pa-sticky__offer`
     * via display:none shifted the CTA into the wrong column. */
    .pa-sticky {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        left: 0;
        width: 100%;
        max-width: none;
        border-radius: 0;
        transform: translateY(100%);
        gap: 12px;
    }

    .pa-sticky--visible {
        transform: translateY(0);
    }

    /* Hide everything except countdown, short label, and the CTA button */
    .pa-sticky__dl-date,
    .pa-sticky__offer,
    .pa-sticky__consult {
        display: none;
    }

    .pa-sticky__countdown {
        font-size: 18px;
    }

    .pa-sticky__dl-label {
        font-size: 10px;
        letter-spacing: 0.05em;
        line-height: 1.2;
    }

    .pa-sticky__action .btn-primary {
        padding: 10px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .pa-form__row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pa-hero {
        padding: 40px 0 36px;
    }

    .pa-steps-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        row-gap: 0;
    }

    .pa-steps-grid .pa-step {
        flex: 0 0 auto;
        width: 100%;
    }

    .pa-step-arrow {
        display: flex;
        flex: 0 0 auto;
        width: 100%;
        height: 28px;
    }

    .pa-step-arrow svg {
        transform: rotate(90deg);
    }

    .pa-urgency {
        flex-direction: column;
        align-items: flex-start;
    }

    .pa-urgency__label {
        text-align: center;
        width: 100%;
    }

    .pa-urgency__badge {
        align-self: center;
    }

    .pa-pkgs,
    .pa-results-grid {
        max-width: 100%;
    }

    .pa-cta__title {
        font-size: 24px;
    }

    .pa-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pa-stat__val {
        font-size: 30px;
    }

    .pa-guarantee-strip {
        padding: 16px 18px;
    }

    .pa-form .btn-primary {
        width: 100%;
        text-align: center;
    }
}


/* ── Sticky bar: lift floating buttons above it on mobile ─────── */
@media (max-width: 768px) {
    body.pa-sticky-open .scroll-top {
        bottom: calc(64px + 12px);
        transition: bottom 0.3s ease, opacity 0.3s, visibility 0.3s, transform 0.3s;
    }

    body.pa-sticky-open #cl-cc-revisit {
        bottom: calc(64px + 12px) !important;
        transition: bottom 0.3s ease;
    }
}

/* ── TG bot soft CTA strip (between FAQ and contact form, RU only) ──── */
.pa-bot-strip {
    padding: 14px 0 28px;
    margin-top: -35px;             /* eat half of .pa-faq's 56px bottom padding */
    background: var(--color-bg);
    text-align: center;
}

.pa-bot-strip__inner {
    max-width: 720px;
    margin: 0 auto;
}

.pa-bot-strip__text {
    margin: 0 0 18px;
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.55;
    color: var(--color-text-primary);
}

.pa-bot-strip__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--button-radius);
    background: #229ED9;            /* match .pa-btn-tg in hero */
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: opacity 0.2s ease;
}

.pa-bot-strip__btn:hover {
    opacity: 0.88;
    color: #fff;
}

@media (max-width: 640px) {
    .pa-bot-strip {
        padding: 11px 0 22px;
        margin-top: -28px;
    }

    .pa-bot-strip__text {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 14px;
    }
}
