/* =============================================================
   PAGES — Subpage styles (sobre, expansao, posto)
   Inherits base from ../css/style.css
   ============================================================= */

:root {
    --white: #f8f7f4;
    --black: #0a0a0a;
    --accent: #3b82f6;
    --gray: rgba(255,255,255,.35);
    --serif: 'Playfair Display', 'Instrument Serif', serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ================================================================
   CURSOR override (pages use .cursor instead of .cur)
   ================================================================ */
.cursor {
    position: fixed; top: 0; left: 0; z-index: 9999;
    pointer-events: none; mix-blend-mode: difference;
}
.cursor-dot {
    position: absolute; width: 5px; height: 5px;
    background: #fff; border-radius: 50%;
}
.cursor-ring {
    position: absolute; width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
}

/* ================================================================
   NAV override (pages uses .nav-links / .nav-menu)
   ================================================================ */
.nav-links { display: flex; gap: 28px; }
.nav-menu {
    display: none;
    flex-direction: column; gap: 5px;
    padding: 8px;
}
.nav-menu span {
    display: block; width: 24px; height: 1px;
    background: #fff; transition: transform .3s, opacity .3s;
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-menu { display: flex; }
}

/* ================================================================
   MOBILE OVERLAY
   ================================================================ */
.mobile-overlay {
    position: fixed; inset: 0; z-index: 850;
    pointer-events: none; opacity: 0;
    transition: opacity .4s;
}
.mobile-overlay.active { pointer-events: all; opacity: 1; }
.mobile-overlay-bg {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.95);
}
.mobile-overlay-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 100%; gap: 24px;
}
.mobile-link {
    font-size: 24px; font-weight: 200;
    letter-spacing: .08em; color: var(--white);
    transition: opacity .3s;
}
.mobile-link:hover { opacity: .5; }

/* ================================================================
   CONTAINER
   ================================================================ */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 48px);
}

/* ================================================================
   SECTION SYSTEM
   ================================================================ */
.section {
    padding: clamp(80px, 12vh, 160px) 0;
}
.section--white { background: var(--white); color: var(--black); }
.section--black { background: var(--black); color: var(--white); }
.section--cta {
    background: var(--black); color: var(--white);
    padding: clamp(100px, 16vh, 200px) 0;
}

.text-center { text-align: center; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
.heading-display {
    font-size: clamp(40px, 7vw, 80px);
    font-weight: 200; line-height: 1.08;
    letter-spacing: -.02em;
}
.heading-lg {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 200; line-height: 1.1;
    letter-spacing: -.02em;
}
.heading--light { color: var(--white); }
.heading-display em, .heading-lg em {
    font-family: var(--serif);
    font-style: italic; font-weight: 400;
}
.label {
    display: inline-block;
    font-size: 10px; font-weight: 500;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px;
}
.label--light { color: rgba(255,255,255,.4); }
.body-lg {
    font-size: clamp(16px, 1.3vw, 18px);
    line-height: 1.85; font-weight: 300;
    color: rgba(0,0,0,.55);
}
.body-lg strong { font-weight: 500; color: rgba(0,0,0,.8); }
.section--black .body-lg,
.body--muted-light {
    color: rgba(255,255,255,.45);
}
.section--black .body-lg strong { color: rgba(255,255,255,.7); }

/* ================================================================
   PAGE HERO
   ================================================================ */
.page-hero {
    position: relative;
    display: flex; align-items: flex-end;
    min-height: 50vh;
    padding: 80px 0 clamp(60px, 8vh, 100px);
}
.page-hero--dark { background: var(--black); }
.page-hero--tall { min-height: 70vh; }
.page-hero-bg {
    position: absolute; inset: 0;
    z-index: 0;
}

/* ================================================================
   PROSE BLOCK
   ================================================================ */
.prose-block { max-width: 680px; }
.prose-block .body-lg + .body-lg { margin-top: 20px; }

/* ================================================================
   PULLQUOTE
   ================================================================ */
.pullquote {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 48px);
    font-style: italic;
    line-height: 1.25;
    color: rgba(255,255,255,.7);
}
.pullquote em {
    color: var(--accent);
}

/* ================================================================
   INTRO GRID
   ================================================================ */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start;
}
.intro-right .body-lg + .body-lg { margin-top: 16px; }
@media (max-width: 768px) {
    .intro-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   HORIZONTAL TIMELINE (sobre)
   ================================================================ */
.h-timeline-wrap {
    overflow: hidden;
    padding: 48px 0 0;
}
.h-timeline { position: relative; }
.h-timeline-track {
    display: flex; gap: 24px;
    padding: 0 clamp(24px, 5vw, 48px);
    cursor: grab;
}
.h-timeline-track:active { cursor: grabbing; }
.tl-card {
    flex-shrink: 0;
    width: clamp(260px, 22vw, 320px);
    padding: 32px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
}
.tl-card--accent { border-color: rgba(74,108,247,.3); }
.tl-year {
    display: block;
    font-family: var(--serif); font-style: italic;
    font-size: 14px; color: var(--accent);
    margin-bottom: 12px;
}
.tl-card h3 {
    font-size: 18px; font-weight: 400;
    margin-bottom: 10px; color: var(--white);
}
.tl-card p {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,.4); font-weight: 300;
}
.h-timeline-line {
    margin-top: 24px; height: 1px;
    background: rgba(255,255,255,.06);
}
.h-timeline-line-fill {
    height: 100%; width: 0%;
    background: var(--accent);
    transition: width .1s linear;
}

/* ================================================================
   VALUES LIST (sobre)
   ================================================================ */
.values-list { margin-top: 48px; }
.val-item {
    display: flex; gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.val-num {
    font-family: var(--serif); font-style: italic;
    font-size: 14px; color: rgba(0,0,0,.15);
    flex-shrink: 0; width: 32px;
}
.val-content h3 {
    font-size: 18px; font-weight: 400;
    margin-bottom: 6px;
}
.val-content p {
    font-size: 15px; line-height: 1.7;
    color: rgba(0,0,0,.45); font-weight: 300;
}

/* ================================================================
   EXPANSION STATS
   ================================================================ */
.exp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.exp-stat { text-align: center; }
.exp-stat-num {
    display: block;
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 200; line-height: 1;
    color: var(--white);
}
.exp-stat-pct {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 200; color: var(--accent);
}
.exp-stat-label {
    display: block; margin-top: 8px;
    font-size: 13px; line-height: 1.5;
    color: rgba(255,255,255,.35);
}
@media (max-width: 768px) {
    .exp-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   PROBLEM / SOLUTION
   ================================================================ */
.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.ps-item {
    padding: 40px;
    border-radius: 12px;
}
.ps-item--problem { background: rgba(0,0,0,.03); }
.ps-item--solution { background: rgba(74,108,247,.04); }
.ps-item .label { margin-bottom: 16px; }
@media (max-width: 768px) {
    .ps-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   MODEL GRID
   ================================================================ */
.model-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}
.model-item {
    padding: 28px 20px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px;
}
.model-num {
    display: block;
    font-family: var(--serif); font-style: italic;
    font-size: 14px; color: var(--accent);
    margin-bottom: 16px;
}
.model-item p {
    font-size: 14px; line-height: 1.7;
    color: rgba(255,255,255,.45); font-weight: 300;
}
@media (max-width: 768px) {
    .model-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .model-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   CTA EMAIL
   ================================================================ */
.cta-email {
    display: inline-block;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300; color: var(--gray);
    margin-top: 32px;
    position: relative; padding-bottom: 2px;
    transition: color .4s;
}
.cta-email::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 100%; height: 1px;
    background: var(--accent);
    transform: scaleX(0); transform-origin: right;
    transition: transform .5s var(--ease);
}
.cta-email:hover { color: var(--white); }
.cta-email:hover::after { transform: scaleX(1); transform-origin: left; }

/* ================================================================
   LINK ARROW
   ================================================================ */
.link-arrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 400;
    transition: opacity .3s;
}
.link-arrow:hover { opacity: .5; }

/* ================================================================
   POSTO INFO GRID
   ================================================================ */
.posto-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.posto-info-label {
    display: block;
    font-size: 10px; letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gray); margin-bottom: 4px;
}
.posto-info-val {
    font-size: 16px; font-weight: 400;
}
.posto-gallery-item {
    width: 100%;
}
.posto-nav-links {
    display: flex; justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .posto-info-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    background: var(--black);
}
.footer-grid {
    display: flex;
    align-items: center; justify-content: space-between;
}
.footer-brand {
    font-size: 10px; font-weight: 600;
    letter-spacing: .3em; color: rgba(255,255,255,.2);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
    font-size: 10px; letter-spacing: .08em;
    color: var(--gray); transition: color .3s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 10px; color: rgba(255,255,255,.2); }
@media (max-width: 768px) {
    .footer-grid { flex-direction: column; gap: 8px; text-align: center; }
}

/* ================================================================
   REVEAL ANIMATION BASE STATES
   ================================================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
}
.reveal-clip {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
}

/* ================================================================
   SÓCIOS PAGE
   ================================================================ */
.section--gray { background: #f0efec; color: var(--black); }

.socios-page-founder {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.socios-page-founder-img {
    border-radius: 16px;
    overflow: hidden;
}
.socios-page-founder-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.socios-page-founder-info .label {
    margin-bottom: 1rem;
}
.socios-page-founder-info .heading-lg {
    margin-bottom: 1.5rem;
}
.socios-page-founder-info .body-lg + .body-lg {
    margin-top: 1rem;
}

.socios-page-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.socios-page-type {
    background: #fff;
    border: 1px solid rgba(10,10,10,.06);
    border-radius: 16px;
    padding: 2.5rem;
}
.socios-page-type-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: rgba(59,130,246,.12);
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}
.socios-page-type h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: .6rem;
}
.socios-page-type p {
    font-size: .9rem;
    line-height: 1.7;
    color: rgba(10,10,10,.5);
}

@media (max-width: 900px) {
    .socios-page-founder {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .socios-page-founder-img img {
        height: 300px;
    }
    .socios-page-types {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   EXPANSION PAGE — Hero
   ================================================================ */
.exp-hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.exp-hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.exp-hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(.45) saturate(.9);
}
.exp-hero-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,.3) 0%, rgba(10,10,10,.7) 100%);
}
.exp-hero-content {
    position: relative; z-index: 2;
    text-align: center;
    padding-top: 80px;
}
.exp-hero-title {
    font-size: clamp(44px, 8vw, 96px);
    font-weight: 200; line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--white);
    margin-top: 12px;
}
.exp-hero-title em {
    font-family: var(--serif);
    font-style: italic; font-weight: 400;
    color: var(--accent);
}
.exp-hero-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,.5);
    max-width: 520px; margin: 24px auto 0;
}
.exp-hero-scroll {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 40px;
    font-size: 12px; font-weight: 400;
    letter-spacing: .12em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
    transition: color .3s;
}
.exp-hero-scroll:hover { color: var(--white); }
.exp-hero-scroll svg { animation: exp-bounce 2s ease-in-out infinite; }
@keyframes exp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Hero floating stats bar */
.exp-hero-stats {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex; align-items: center; gap: 32px;
    padding: 20px 40px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.exp-hero-stat { text-align: center; }
.exp-hero-stat-num {
    font-size: 28px; font-weight: 200;
    color: var(--white); line-height: 1;
}
.exp-hero-stat-plus {
    font-size: 18px; font-weight: 300;
    color: var(--accent);
}
.exp-hero-stat-label {
    display: block; margin-top: 4px;
    font-size: 10px; letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.35);
}
.exp-hero-stat-divider {
    width: 1px; height: 32px;
    background: rgba(255,255,255,.1);
}
@media (max-width: 768px) {
    .exp-hero-stats {
        flex-direction: column; gap: 16px;
        padding: 20px 28px;
        bottom: 24px;
    }
    .exp-hero-stat-divider {
        width: 40px; height: 1px;
    }
}

/* ================================================================
   EXPANSION — Versus Cards (problem / solution)
   ================================================================ */
.exp-versus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.exp-versus-card {
    padding: clamp(32px, 4vw, 48px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.06);
    background: rgba(255,255,255,.02);
}
.exp-versus-card--solution {
    background: rgba(59,130,246,.04);
    border-color: rgba(59,130,246,.12);
}
.exp-versus-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(255,80,80,.08);
    color: #ff5050;
    margin-bottom: 20px;
}
.exp-versus-icon--teal {
    background: rgba(59,130,246,.08);
    color: var(--accent);
}
.exp-versus-tag {
    display: block;
    font-size: 10px; font-weight: 500;
    letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 16px;
}
.exp-versus-tag--teal { color: var(--accent); }
.exp-versus-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 200; line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}
.exp-versus-title em {
    font-family: var(--serif);
    font-style: italic; font-weight: 400;
}
.exp-versus-list {
    list-style: none; padding: 0;
    display: flex; flex-direction: column; gap: 12px;
}
.exp-versus-list li {
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,.4);
    padding-left: 20px;
    position: relative;
}
.exp-versus-list li::before {
    content: ''; position: absolute;
    left: 0; top: 7px;
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(255,80,80,.4);
}
.exp-versus-list--teal li::before {
    background: rgba(59,130,246,.5);
}
@media (max-width: 768px) {
    .exp-versus { grid-template-columns: 1fr; }
}

/* ================================================================
   EXPANSION — 5 Steps
   ================================================================ */
.exp-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
    counter-reset: step;
}
.exp-step {
    position: relative;
    padding: 0 24px;
    text-align: center;
}
.exp-step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,.08);
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px; color: var(--accent);
    margin-bottom: 20px;
    position: relative; z-index: 2;
    background: var(--white);
}
.exp-step-line {
    position: absolute;
    top: 24px; left: calc(50% + 24px);
    width: calc(100% - 48px);
    height: 1px;
    background: rgba(0,0,0,.06);
}
.exp-step:last-child .exp-step-line { display: none; }
.exp-step-title {
    font-size: 16px; font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
}
.exp-step-text {
    font-size: 13px; line-height: 1.7;
    color: rgba(0,0,0,.4); font-weight: 300;
}
@media (max-width: 900px) {
    .exp-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .exp-step { text-align: left; padding: 0; display: flex; gap: 20px; align-items: flex-start; }
    .exp-step-num { flex-shrink: 0; }
    .exp-step-line { display: none; }
}

/* ================================================================
   EXPANSION — Metrics Row
   ================================================================ */
.exp-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.exp-metric { text-align: center; }
.exp-metric-num {
    display: inline;
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 200; line-height: 1;
    color: var(--white);
}
.exp-metric-unit {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 200;
    color: var(--accent);
}
.exp-metric-label {
    display: block; margin-top: 12px;
    font-size: 13px; line-height: 1.5;
    color: rgba(255,255,255,.3);
}
@media (max-width: 768px) {
    .exp-metrics { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* ================================================================
   EXPANSION — Differentials Grid
   ================================================================ */
.exp-diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.exp-diff {
    padding: 32px;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px;
    transition: border-color .3s, box-shadow .3s;
}
.exp-diff:hover {
    border-color: rgba(59,130,246,.15);
    box-shadow: 0 8px 32px rgba(59,130,246,.04);
}
.exp-diff-num {
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 14px; color: rgba(0,0,0,.12);
    margin-bottom: 16px;
}
.exp-diff h3 {
    font-size: 17px; font-weight: 500;
    margin-bottom: 8px;
}
.exp-diff p {
    font-size: 14px; line-height: 1.75;
    color: rgba(0,0,0,.45); font-weight: 300;
}
@media (max-width: 768px) {
    .exp-diff-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   EXPANSION — Pullquote
   ================================================================ */
.exp-quote {
    max-width: 800px; margin: 0 auto;
}
.exp-quote p {
    font-family: var(--serif);
    font-size: clamp(28px, 4.5vw, 52px);
    font-style: italic;
    line-height: 1.2;
    color: rgba(255,255,255,.65);
}
.exp-quote em {
    font-style: italic;
    color: var(--accent);
}
.exp-quote cite {
    display: block; margin-top: 24px;
    font-style: normal;
    font-size: 13px; letter-spacing: .06em;
    color: rgba(255,255,255,.25);
}

/* ================================================================
   EXPANSION — CTA Section
   ================================================================ */
.exp-cta-section {
    background: var(--black);
    color: var(--white);
    padding: clamp(100px, 16vh, 200px) 0;
}
.exp-cta-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 200; line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--white);
    margin-top: 12px;
}
.exp-cta-title em {
    font-family: var(--serif);
    font-style: italic; font-weight: 400;
    color: var(--accent);
}
.exp-cta-sub {
    font-size: clamp(15px, 1.3vw, 18px);
    color: rgba(255,255,255,.4);
    font-weight: 300;
    margin-top: 20px;
}
.exp-cta-actions {
    display: flex; gap: 16px;
    justify-content: center;
    margin-top: 40px;
}
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px;
    font-size: 13px; font-weight: 500;
    letter-spacing: .06em;
    border-radius: 8px;
    transition: all .3s;
    cursor: pointer;
}
.btn--primary {
    background: var(--accent); color: var(--white);
    border: 1px solid var(--accent);
}
.btn--primary:hover { background: #2563eb; }
.btn--ghost-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.6);
}
.btn--ghost-light:hover {
    border-color: rgba(255,255,255,.4);
    color: var(--white);
}
.exp-cta-section .cta-email {
    margin-top: 24px;
}
@media (max-width: 480px) {
    .exp-cta-actions { flex-direction: column; align-items: center; }
}
