.eyebrow {
    color: var(--plexo-orange, #ff6b1a);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.btn-primary {
    background: var(--plexo-orange, #ff6b1a);
    color: #fff;
}

.btn-secondary {
    background: var(--plexo-green, #12372a);
    color: #fff;
}

@media (min-width: 768px) {
}

/* ===============================
   INSTITUTIONAL PAGES
================================ */

.institutional-page {
    background:
        linear-gradient(180deg, var(--plexo-bg, #f7f4ef) 0%, var(--plexo-surface, #fffdf9) 42%, var(--plexo-green-pale, #e7f2ec) 100%);
}

.institutional-hero {
    padding: 76px 0 36px;
}

.institutional-hero span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--plexo-orange, #ff6b1a);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.institutional-hero h1 {
    max-width: 780px;
    margin: 0 0 18px;
    color: var(--plexo-ink, #111827);
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.institutional-hero p {
    max-width: 680px;
    margin: 0;
    color: #415044;
    font-size: 1.08rem;
    line-height: 1.8;
}

.institutional-content {
    display: grid;
    gap: 30px;
    padding: 22px 0 42px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.info-grid article,
.faq-list article,
.step-list li,
.cta-panel,
.legal-copy {
    border: 1px solid var(--plexo-border, #ead8ca);
    border-radius: 18px;
    background: var(--plexo-surface, #fffdf9);
    box-shadow: 0 18px 45px rgba(75, 45, 24, 0.07);
}

.info-grid article {
    padding: 24px;
}

.info-grid h2,
.faq-list h2,
.legal-copy h2 {
    margin: 0 0 10px;
    color: var(--plexo-green, #12372a);
    font-size: 1.05rem;
    line-height: 1.3;
}

.info-grid p,
.faq-list p,
.legal-copy p {
    margin: 0;
    color: #64748b;
    line-height: 1.72;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.faq-list article {
    padding: 24px;
}

.step-list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    counter-reset: plexo-steps;
    list-style: none;
}

.step-list li {
    position: relative;
    display: grid;
    gap: 6px;
    padding: 22px 24px 22px 76px;
    counter-increment: plexo-steps;
}

.step-list li::before {
    content: counter(plexo-steps);
    position: absolute;
    left: 22px;
    top: 22px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--plexo-orange, #ff6b1a);
    color: #fff;
    font-weight: 900;
}

.step-list strong {
    color: var(--plexo-green, #12372a);
    font-size: 1.02rem;
}

.step-list span {
    color: #64748b;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 26px;
    background:
        radial-gradient(circle at 100% 0%, rgba(243, 201, 105, 0.18), transparent 34%),
        var(--plexo-green, #12372a);
    color: #fff;
}

.cta-panel h2 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.35rem;
}

.cta-panel p {
    margin: 0;
    color: #d9e3ef;
}

.cta-panel .btn-primary {
    background: var(--plexo-orange, #ff6b1a);
    color: #fff;
}

.cta-panel .btn-secondary {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
}

.legal-copy {
    padding: 28px;
}

.legal-copy h2:not(:first-child) {
    margin-top: 24px;
}

.contact-page {
    display: grid;
    gap: 26px;
}

.contact-form {
    display: grid;
    gap: 10px;
    padding: 22px;
    border: 1px solid var(--plexo-border, #ead8ca);
    border-radius: 18px;
    background: var(--plexo-surface, #fffdf9);
    box-shadow: 0 18px 45px rgba(75, 45, 24, 0.07);
}

.contact-form label {
    color: var(--plexo-green, #12372a);
    font-weight: 900;
}

.contact-form textarea {
    resize: vertical;
}

@media (max-width: 1100px) {
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .faq-list,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .institutional-hero {
        padding: 54px 0 26px;
    }

    .institutional-content {
        padding-bottom: 24px;
    }
}
