/* ╔══════════════════════════════════════════════════════════════════════════
   ║ LANDING PAGE OVERRIDES — contrast / copy / SEO remediation (July 2026)
   ║
   ║ Loads AFTER transfers-wizard.css (enqueued with it as a dependency) so
   ║ every rule here wins on source order; where the base rule uses !important
   ║ we match it with a modest specificity bump (.pca-lp prefix), never by
   ║ editing transfers-wizard.css — a parallel workstream owns that file.
   ║ Everything is scoped under .pca-lp so nothing leaks to other pages.
   ╚══════════════════════════════════════════════════════════════════════════ */

/* — Token pass: supporting-copy floor -----------------------------------
   Owner critique: light-gray secondary text failed contrast. Floor the
   muted token at #5C6B73 (was #6b7280). The soft token (#4b5563) is
   already darker than the floor and stays. */
.pca-lp {
    --pca-lp-text-muted: #5c6b73;
}

/* — Hero CTA microcopy: one claim, 14px readable gray ------------------- */
.pca-lp .pca-lp-cta-meta {
    font-size: 14px;
    font-weight: 500;
    color: #5c6b73;
}

/* Hero rating meta rides the muted token. Explicit 14px: the base parent
   (.pca-lp-hero__rating) is 14px on desktop but drops to 12px !important on
   mobile — an explicit size here keeps the meta readable on both. */
.pca-lp .pca-lp-hero__rating-meta {
    font-size: 14px;
}

/* — Trust ticker: short labels, no truncation, two-row wrap, darker ----- */
.pca-lp aside.pca-trust-strip {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px 28px !important;
}
.pca-lp aside.pca-trust-strip .pca-trust-strip__item {
    flex: 0 0 auto !important;
    color: #37424a !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}
.pca-lp aside.pca-trust-strip .pca-trust-strip__item span {
    white-space: normal !important;   /* kill the nowrap… */
    overflow: visible !important;     /* …and the ellipsis truncation */
    text-overflow: clip !important;
    flex: 0 1 auto !important;
    color: #37424a !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}
.pca-lp aside.pca-trust-strip .pca-trust-strip__icon {
    color: #0e6b54 !important;
}
@media (max-width: 759px) {
    .pca-lp aside.pca-trust-strip {
        gap: 10px 18px !important;
        padding: 12px 14px !important;
    }
    .pca-lp aside.pca-trust-strip .pca-trust-strip__item span {
        font-size: 13px !important;   /* base had 12px here */
    }
}

/* — Eyebrows: 12px / 700 / letter-spaced / darker teal ------------------- */
.pca-lp .pca-lp-section__eyebrow,
.pca-lp .pca-lp-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0e6b54;
}
.pca-lp .pca-lp-eyebrow__dot {
    background: #0e6b54;
    box-shadow: 0 0 0 4px rgba(14, 107, 84, 0.12);
}

/* — How-it-works step numbers: 14px bold in a filled circle ------------- */
.pca-lp .pca-lp-step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #0e6b54;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}
/* Step descriptions: keep ≥14px in the soft (dark-enough) color. */
.pca-lp .pca-lp-step__body {
    font-size: 14.5px;
    color: var(--pca-lp-text-soft);
}

/* — Reviews: attribution readable; route is part of the attribution ----- */
.pca-lp .pca-lp-review__attr {
    font-size: 13px;
    color: #5c6b73;
}

/* — FAQ answers: body color, 15px — NOT gray ---------------------------- */
.pca-lp .pca-lp-faq__item p {
    color: var(--pca-lp-text);
    font-size: 15px;
    line-height: 1.65;
}

/* — Embedded wizard: type-chooser card text ≥14px ------------------------
   The landing hero embeds the wizard; base CSS renders card subtitles at
   13px (12px ≤640px). Scope the bump to the landing context only. */
.pca-lp .pca-transfers-wizard .pca-type-card__subtitle,
.pca-lp .pca-transfers-wizard .pca-type-card__desc {
    font-size: 14px !important;
    line-height: 1.45 !important;
}
.pca-lp .pca-transfers-wizard .pca-type-card__title {
    font-size: 16px !important;
}
/* With bigger text, two columns get cramped inside the 760px wizard card —
   drop to one column earlier than the base 600px breakpoint. */
@media (max-width: 700px) {
    .pca-lp .pca-transfers-wizard .pca-transfer-type-cards {
        grid-template-columns: 1fr !important;
    }
}

/* — Final CTA band -------------------------------------------------------
   Primary matches the hero CTA (17px/600, 16×32 padding); WhatsApp is a
   real secondary outline button with the brand-green icon. */
.pca-lp .pca-lp-final__ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.pca-lp .pca-lp-final__cta {
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    gap: 10px;
}
.pca-lp .pca-lp-final__wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 26px;
    border: 1.5px solid #b8c4c9;
    border-radius: 8px;
    background: transparent;
    color: #1f2937 !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none !important;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
.pca-lp .pca-lp-final__wa-btn:hover {
    border-color: #25d366;
    background: #f4fbf6;
    color: #1f2937 !important;
}
.pca-lp .pca-lp-final__wa-icon {
    color: #25d366;   /* WhatsApp green */
    flex: 0 0 auto;
}
.pca-lp .pca-lp-final__sub {
    font-size: 17px;
    color: var(--pca-lp-text-soft);
    margin-bottom: 30px;
}

/* — Routes section (SEO partial) ----------------------------------------- */
.pca-lp .pca-lp-routes__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 640px) {
    .pca-lp .pca-lp-routes__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 20px;
    }
}
.pca-lp .pca-lp-routes__cell { min-width: 0; }
.pca-lp .pca-lp-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--pca-lp-surface);
    border: 1px solid var(--pca-lp-border);
    border-radius: 10px;
    padding: 16px 18px;
    text-decoration: none !important;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}
.pca-lp .pca-lp-route:hover {
    border-color: #0e6b54;
    background: #fafffe;
}
.pca-lp .pca-lp-route__name {
    color: var(--pca-lp-text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-width: 0;
}
.pca-lp .pca-lp-route__time {
    color: #5c6b73;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    flex: 0 0 auto;
}
