/* =============================================================================
   ADVERTISE — vendor information page
   CR: fysh-advertise-2026-06-27
   Loaded only by advertise.php via $page_css.
============================================================================= */

/* ── Hero ────────────────────────────────────────────────────────────────── */
.adv-hero {
    background: linear-gradient(145deg, var(--navy) 0%, #1A3A6E 100%);
    padding: 5rem 0 4rem;
}

.adv-hero__inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
@media (min-width: 900px) {
    .adv-hero__inner { flex-direction: row; align-items: center; gap: 4rem; }
}

.adv-hero__text { flex: 1; min-width: 0; }

.adv-hero__eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--gold-lt, #E8C96A);
}

.adv-hero__heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.08;
    margin: 0 0 1.25rem;
}
.adv-hero__heading em { font-style: italic; color: var(--gold-lt, #E8C96A); }

.adv-hero__sub {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    max-width: 52ch;
    margin: 0 0 2rem;
}

.adv-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Proof cards */
.adv-hero__proof {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}
@media (max-width: 899px) {
    .adv-hero__proof { justify-content: flex-start; }
}

.adv-proof-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    text-align: center;
    min-width: 100px;
}
.adv-proof-card__value {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--gold-lt, #E8C96A);
    line-height: 1;
    margin-bottom: 0.35rem;
}
.adv-proof-card__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    line-height: 1.35;
    text-transform: uppercase;
}

/* ── Why FYSH benefits grid ──────────────────────────────────────────────── */
.adv-benefits {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .adv-benefits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .adv-benefits { grid-template-columns: repeat(3, 1fr); } }

.adv-benefit {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.adv-benefit__icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cream) 0%, #EDE9DF 100%);
    border: 1px solid rgba(201,168,76,0.28);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.adv-benefit__icon svg { width: 22px; height: 22px; }

.adv-benefit__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.25;
}

.adv-benefit__body {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── How it works steps ──────────────────────────────────────────────────── */
.adv-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
/* Vertical connector line */
.adv-steps::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,168,76,0.2) 100%);
}

.adv-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem 0;
    position: relative;
}

.adv-step__num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-lt, #E8C96A);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 2px var(--gold);
}

.adv-step__body { flex: 1; padding-top: 0.5rem; }

.adv-step__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 0.5rem;
}

.adv-step__text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Featured listing band ───────────────────────────────────────────────── */
.adv-featured-band {
    background: var(--navy);
    padding: 5rem 0;
    overflow: hidden;
}

.adv-featured-inner {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
}
@media (min-width: 900px) {
    .adv-featured-inner { flex-direction: row; align-items: center; gap: 5rem; }
    .adv-featured-copy  { flex: 1; }
    .adv-featured-visual { flex-shrink: 0; }
}

.adv-featured-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(201,168,76,0.15);
    color: var(--gold-lt, #E8C96A);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.8rem;
    margin-bottom: 1.25rem;
}
.adv-featured-eyebrow svg { color: var(--gold-lt); }

.adv-featured-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin: 0 0 1.25rem;
}
.adv-featured-heading em { font-style: italic; color: var(--gold-lt, #E8C96A); }

.adv-featured-body {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.70);
    line-height: 1.7;
    margin: 0 0 1.5rem;
    max-width: 48ch;
}

.adv-featured-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}
.adv-featured-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.45;
}
.adv-featured-list svg {
    color: var(--gold-lt, #E8C96A);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Mock property card */
.adv-featured-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.adv-mock-card {
    width: 280px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 0 2px var(--gold),
                0 20px 60px rgba(0,0,0,0.4);
    font-family: var(--font-body);
}

.adv-mock-card__thumb {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #1A3A6E 0%, #0F2340 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.adv-mock-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.adv-mock-badge {
    position: absolute;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 999px;
    text-transform: uppercase;
}
.adv-mock-badge--sale {
    top: 10px;
    left: 10px;
    background: var(--blue);
    color: #fff;
}
.adv-mock-badge--featured {
    top: 10px;
    right: 10px;
    background: var(--gold);
    color: var(--navy);
}

.adv-mock-card__body { padding: 14px 16px 16px; }
.adv-mock-card__price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.adv-mock-card__title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}
.adv-mock-card__loc {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 8px;
}
.adv-mock-card__specs {
    display: flex;
    gap: 8px;
    font-size: 0.7rem;
    color: var(--muted);
}
.adv-mock-card__specs span {
    background: var(--cream);
    padding: 2px 8px;
    border-radius: 4px;
}

.adv-mock-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.40);
    text-align: center;
    max-width: 220px;
    line-height: 1.4;
}

/* ── Credits / Pricing ───────────────────────────────────────────────────── */
.adv-credits {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 780px;
    margin: 0 auto 1.5rem;
}
@media (min-width: 640px) { .adv-credits { grid-template-columns: repeat(2, 1fr); } }

.adv-credit-tier {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
}

.adv-credit-tier--featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold);
}

.adv-credit-tier__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.adv-credit-tier__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.adv-credit-tier__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.adv-credit-tier__price strong { color: var(--gold); }

.adv-credit-tier__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}
.adv-credit-tier__features li {
    font-size: 0.85rem;
    color: var(--muted);
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.45;
}
.adv-credit-tier__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.8rem;
}

.adv-credits-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.55;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.adv-faq {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.adv-faq__item {
    border-bottom: 1px solid var(--border);
}
.adv-faq__item:first-child { border-top: 1px solid var(--border); }

.adv-faq__q {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    padding: 1.15rem 2rem 1.15rem 0;
    cursor: pointer;
    position: relative;
    list-style: none;
    line-height: 1.4;
    user-select: none;
}
.adv-faq__q::-webkit-details-marker { display: none; }
.adv-faq__q::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    transition: transform 0.2s;
}
.adv-faq__item[open] > .adv-faq__q::after {
    transform: translateY(-50%) rotate(45deg);
}

.adv-faq__a {
    padding: 0 0 1.15rem;
}
.adv-faq__a p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* ── Final CTA band ──────────────────────────────────────────────────────── */
.adv-cta-band {
    background: linear-gradient(145deg, var(--navy) 0%, #1A3A6E 100%);
    padding: 5.5rem 0;
    text-align: center;
}

.adv-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.adv-cta-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin: 0;
}
.adv-cta-heading em { font-style: italic; color: var(--gold-lt, #E8C96A); }

.adv-cta-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.65;
    margin: 0;
    max-width: 46ch;
}

.adv-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.adv-cta-small {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    margin: 0.25rem 0 0;
    letter-spacing: 0.02em;
}
