:root {
    --bg: #050806;
    --bg-soft: #0d1813;
    --bg-panel: rgba(9, 16, 13, 0.86);
    --surface: #ffffff;
    --surface-soft: #0d1310;
    --surface-muted: #0d1310;
    --text: #f3f5f2;
    --text-dark: #e9f2ec;
    --muted: #a4b0aa;
    --line: rgba(0, 120, 88, 0.18);
    --line-dark: rgba(255, 255, 255, 0.12);
    --brand: #0f3a2c;
    --brand-strong: #00d18f;
    --brand-bright: #00ffae;
    --brand-wash: rgba(0, 255, 174, 0.14);
    --danger: #b6c0bb;
    --shadow-soft: 0 20px 60px rgba(4, 9, 7, 0.12);
    --shadow-strong: 0 30px 90px rgba(4, 9, 7, 0.22);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100vw - 40px));
    --header-height: 92px;

    /* ── Typography scale ── */
    --fs-h2: clamp(2rem, 4vw, 3.2rem);
    --fs-h3: 1.15rem;
    --fs-body: 0.96rem;
    --fs-body-sm: 0.9rem;
    --lh-body: 1.72;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section[id],
footer[id] {
    scroll-margin-top: var(--header-height);
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(0, 255, 174, 0.2), transparent 30%),
        radial-gradient(circle at right 20%, rgba(0, 120, 88, 0.35), transparent 28%),
        linear-gradient(180deg, #040705 0%, #09110d 22%, #0a0d0c 22%, #0d1310 100%);
    min-height: 100vh;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-shell {
    position: relative;
    overflow: clip;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.alt-shell {
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 255, 174, 0.18), transparent 25%),
        linear-gradient(180deg, #040705 0%, #08110d 18%, #0a0d0c 18%, #0d1310 100%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(0px);
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 6, 0.86);
    border-color: var(--line-dark);
    box-shadow: 0 12px 40px rgba(4, 8, 6, 0.16);
}

.header-inner {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: auto;
    height: 46px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong,
.brand-copy small {
    display: block;
    line-height: 1.2;
}

.brand-copy strong {
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.82rem;
}

.desktop-nav,
.header-actions,
.hero-actions,
.eyebrow-group,
.billing-toggle-wrap,
.decision-actions,
.social-links,
.footer-links,
.footer-bottom {
    display: flex;
    align-items: center;
}

.desktop-nav {
    gap: 24px;
    margin-left: auto;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a,
.social-links a {
    color: rgba(243, 245, 242, 0.84);
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.mobile-nav a:hover,
.footer-links a:hover,
.social-links a:hover {
    color: #ffffff;
}

.header-actions {
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 14px 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--brand-strong), var(--brand-bright));
    color: #eef4f0;
    box-shadow: 0 16px 35px rgba(0, 255, 174, 0.22);
}

.button-primary:hover {
    box-shadow: 0 22px 45px rgba(0, 255, 174, 0.28);
}

.button-secondary {
    background: rgba(18, 22, 20, 0.92);
    color: var(--text-dark);
    border-color: rgba(17, 35, 28, 0.08);
}

.button-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #eef4f0;
    border-color: rgba(255, 255, 255, 0.12);
}

.button-large {
    padding: 16px 28px;
}

.full {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--line-dark);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #0b100e;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-panel {
    display: none;
    padding: 0 20px 24px;
    border-top: 1px solid var(--line-dark);
    background: rgba(5, 8, 6, 0.96);
}

.mobile-nav {
    display: grid;
    gap: 16px;
    padding-top: 18px;
}

.mobile-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hero-section,
.page-hero {
    position: relative;
    padding: 66px 0 90px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 18%, rgba(0, 255, 174, 0.18), transparent 18%),
        radial-gradient(circle at 78% 10%, rgba(70, 105, 91, 0.28), transparent 25%),
        linear-gradient(180deg, rgba(5, 8, 6, 0.2) 0%, rgba(5, 8, 6, 0) 100%);
    pointer-events: none;
}

.hero-grid,
.social-grid,
.footer-grid {
    display: grid;
    gap: 32px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
}

.clients-grid {
    align-items: start;
}

.hero-copy h1,
.section-heading h2,
.final-cta-box h2,
.decision-box h2 {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.05em;
}

.hero-copy h1 {
    font-family: "Oswald", sans-serif;
    font-size: 120px;
    line-height: 0.98;
    max-width: 13ch;
    margin-top: 48px;
    white-space: nowrap;
}

.hero-pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 4px;
}

@media (max-width: 640px) {
    .hero-pillars {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-pillars span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(0, 255, 174, 0.12);
    border: 1px solid rgba(0, 255, 174, 0.3);
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-pillars span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-bright);
    flex-shrink: 0;
}

.hero-subtitle,
.hero-microcopy,
.section-heading p,
.plan-description,
.faq-answer p,
.footer-brand p,
.decision-box p,
.final-cta-box p,
.social-copy p {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
    color: rgba(243, 245, 242, 0.78);
}

.hero-subtitle {
    margin: 18px 0 28px;
    max-width: 54ch;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: rgba(243, 245, 242, 0.68);
}

.hero-microcopy {
    margin: 0 0 28px;
    max-width: 55ch;
    font-size: 0.98rem;
}

.hero-actions {
    gap: 14px;
    flex-wrap: wrap;
}

.eyebrow-group {
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.eyebrow-pill,
.section-tag,
.billing-badge,
.plan-tag,
.case-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.eyebrow-pill,
.section-tag,
.billing-badge,
.case-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #dff2e8;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.eyebrow-pill.muted {
    background: rgba(0, 120, 88, 0.32);
}

.hero-proof-card,
.dashboard-mockup,
.stacked-metrics-card,
.mini-feature,
.pricing-card,
.fit-card,
.feature-card,
.value-card,
.decision-box,
.faq-item,
.final-cta-box,
.case-card,
.testimonial-card,
.social-metrics article,
.social-copy,
.site-footer,
.logo-strip,
.table-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero-proof-card {
    margin-top: 32px;
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

.hero-proof-card strong,
.hero-proof-card span {
    display: block;
}

.hero-proof-card strong {
    margin-bottom: 7px;
    font-size: 0.94rem;
}

.hero-proof-card span {
    color: rgba(243, 245, 242, 0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

.dashboard-mockup,
.stacked-metrics-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 17, 14, 0.94), rgba(11, 20, 15, 0.88));
    border-color: rgba(255, 255, 255, 0.08);
}

.dashboard-mockup::before,
.stacked-metrics-card::before,
.featured::before,
.final-cta-box::before {
    content: "";
    position: absolute;
    inset: auto auto 0 -12%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 255, 174, 0.28), transparent 68%);
    pointer-events: none;
}

.dashboard-mockup {
    padding: 20px;
    min-height: 520px;
    box-shadow: var(--shadow-strong);
}

.mockup-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.mockup-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
}

.mockup-main {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 18px;
    min-height: 430px;
}

.mockup-sidebar,
.mockup-content,
.pipeline-column,
.pricing-card,
.fit-card,
.feature-card,
.value-card,
.case-card,
.testimonial-card,
.social-copy,
.social-metrics article,
.footer-brand {
    background: rgba(255, 255, 255, 0.04);
}

.mockup-sidebar,
.mockup-content,
.pipeline-column,
.pipeline-card,
.sidebar-chip,
.mini-feature,
.feature-card,
.value-card,
.fit-card,
.case-card,
.testimonial-card,
.social-metrics article,
.social-copy {
    border-radius: 22px;
}

.mockup-sidebar,
.mockup-content,
.pipeline-column,
.pipeline-card,
.sidebar-chip,
.mini-feature,
.feature-card,
.value-card,
.fit-card,
.case-card,
.testimonial-card,
.social-metrics article,
.social-copy,
.logo-strip,
.faq-item,
.pricing-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-sidebar {
    padding: 14px;
    display: grid;
    align-content: start;
    gap: 10px;
}

.sidebar-chip {
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(243, 245, 242, 0.74);
    font-size: 0.88rem;
}

.sidebar-chip.active {
    background: rgba(0, 255, 174, 0.16);
    color: #eef4f0;
}

.mockup-content {
    padding: 16px;
    display: grid;
    gap: 16px;
}

.mockup-stats,
.pipeline-board,
.benefits-grid,
.pricing-grid,
.fit-grid,
.feature-grid,
.value-grid,
.social-metrics,
.cases-grid,
.testimonial-grid {
    display: grid;
    gap: 18px;
}

.mockup-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mockup-stats article,
.stacked-metrics-card article {
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.mockup-stats small,
.stacked-metrics-card small {
    display: block;
    margin-bottom: 8px;
    color: rgba(243, 245, 242, 0.64);
}

.mockup-stats strong,
.stacked-metrics-card strong,
.plan-price strong,
.social-metrics strong {
    display: block;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.05em;
}

.mockup-stats strong,
.stacked-metrics-card strong {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.mockup-stats span {
    color: rgba(243, 245, 242, 0.65);
    font-size: 0.88rem;
}

.pipeline-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pipeline-column {
    padding: 14px;
    display: grid;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.pipeline-column header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-weight: 700;
}

.pipeline-column header span {
    color: rgba(243, 245, 242, 0.62);
}

.pipeline-column.accent {
    background: rgba(0, 255, 174, 0.12);
}

.pipeline-card {
    padding: 14px;
    background: rgba(18, 22, 20, 0.94);
    color: var(--text-dark);
    font-weight: 700;
}

.quick-benefits,
.fit-section,
.value-section,
.faq-section,
.cases-section,
.testimonials-section,
.social-section,
.decision-cta,
.features-section,
.comparison-section,
.pricing-section,
.final-cta,
.logo-band {
    padding: 28px 0 100px;
}

.quick-benefits {
    padding-top: 0;
    margin-top: -24px;
}

.benefits-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.mini-feature,
.pricing-card,
.fit-card,
.feature-card,
.value-card,
.case-card,
.testimonial-card,
.social-metrics article,
.social-copy {
    padding: 24px;
    background: rgba(18, 22, 20, 0.94);
    color: var(--text-dark);
}

.mini-feature h3,
.pricing-card h3,
.fit-card h3,
.feature-card h3,
.value-card h3,
.case-top strong,
.testimonial-card strong,
.site-footer h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.04em;
}

.mini-feature h3,
.fit-card h3,
.feature-card h3,
.value-card h3 {
    font-size: var(--fs-h3);
    margin-bottom: 10px;
}

.mini-feature p,
.fit-card p,
.feature-card p,
.value-card p,
.case-card p,
.testimonial-card p,
.testimonial-card span,
.social-metrics span {
    color: rgba(230, 240, 236, 0.72);
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body);
}

.feature-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 120, 88, 0.1), rgba(0, 255, 174, 0.22));
    color: var(--brand);
    font-weight: 800;
}

.section-heading {
    color: var(--text-dark);
    margin-bottom: 32px;
}

.section-heading h2,
.final-cta-box h2,
.decision-box h2 {
    font-size: var(--fs-h2);
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 18ch;
}

.section-heading p,
.decision-box p,
.final-cta-box p {
    max-width: 62ch;
    margin-top: 16px;
    font-size: var(--fs-body);
    color: rgba(230, 240, 236, 0.72);
    line-height: var(--lh-body);
}

.section-tag {
    background: rgba(0, 120, 88, 0.08);
    border-color: rgba(0, 120, 88, 0.08);
    color: var(--brand);
    margin-bottom: 14px;
}

.pricing-section {
    padding-top: 48px;
}

.billing-toggle-wrap {
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 30px;
}

.billing-toggle {
    display: inline-flex;
    align-items: center;
    padding: 6px;
    border-radius: 999px;
    background: rgba(0, 120, 88, 0.08);
    border: 1px solid rgba(0, 120, 88, 0.08);
}

.billing-option {
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    background: transparent;
    color: rgba(230, 240, 236, 0.7);
    font-weight: 800;
    cursor: pointer;
}

.billing-option.is-active {
    background: var(--brand);
    color: #ffffff;
}

.billing-discount-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 255, 174, 0.22);
    color: #00ffae;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 8px;
    vertical-align: middle;
}

.billing-option.is-active .billing-discount-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.price-billing-note {
    display: block;
    font-size: 0.78rem;
    color: var(--brand-strong);
    font-weight: 600;
    margin-top: 4px;
    min-height: 1.2em;
}

.price-original {
    display: none;
    font-size: 0.95rem;
    color: rgba(14, 31, 24, 0.45);
    font-weight: 500;
    text-decoration: line-through;
}

.billing-yearly-active .price-original {
    display: block;
}

.billing-badge {
    background: rgba(0, 255, 174, 0.12);
    color: var(--brand-strong);
    border-color: rgba(0, 255, 174, 0.16);
}

.pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.pricing-card:hover,
.mini-feature:hover,
.fit-card:hover,
.feature-card:hover,
.value-card:hover,
.case-card:hover,
.testimonial-card:hover,
.social-metrics article:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(4, 9, 7, 0.14);
}

.pricing-card,
.mini-feature,
.fit-card,
.feature-card,
.value-card,
.case-card,
.testimonial-card,
.social-metrics article {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.featured {
    transform: scale(1.03);
    border-color: rgba(0, 255, 174, 0.36);
    box-shadow: 0 32px 80px rgba(0, 255, 174, 0.16);
}

.featured:hover {
    transform: scale(1.03) translateY(-5px);
}

.enterprise {
    background: linear-gradient(180deg, #0d1310, #0d1310);
}

.plan-tag {
    background: rgba(0, 120, 88, 0.08);
    color: var(--brand);
    border: 1px solid rgba(0, 120, 88, 0.08);
}

.plan-tag.highlight {
    background: rgba(0, 255, 174, 0.14);
    color: #ffffff;
}

.plan-tag.neutral {
    background: rgba(17, 35, 28, 0.06);
}

.plan-tag.dark {
    background: rgba(17, 35, 28, 0.9);
    color: #eef4f0;
}

.plan-description,
.plan-footnote {
    margin: 0;
    font-size: var(--fs-body-sm);
    color: rgba(230, 240, 236, 0.7);
    line-height: var(--lh-body);
}

.plan-price strong {
    font-size: clamp(2rem, 4vw, 3rem);
}

.plan-price span {
    color: rgba(230, 240, 236, 0.66);
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.feature-list li {
    position: relative;
    padding-left: 26px;
    font-size: var(--fs-body-sm);
    color: rgba(230, 240, 236, 0.78);
    line-height: var(--lh-body);
}

.feature-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-strong), var(--brand-bright));
}

.fit-grid,
.value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-section {
    background: linear-gradient(180deg, #0d1310 0%, #0d1310 100%);
}

.table-shell {
    background: #0b100e;
    padding: 18px;
}

.table-scroll {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
    color: var(--text-dark);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 120, 88, 0.09);
}

.comparison-table thead th {
    position: sticky;
    top: 0;
    background: #0d1310;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    z-index: 10;
}

.comparison-table tbody tr:nth-child(even):not(.category-row) {
    background: rgba(0, 120, 88, 0.025);
}

.category-row td {
    background: rgba(0, 120, 88, 0.08);
    color: var(--brand);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.status.yes {
    background: rgba(0, 255, 174, 0.13);
    color: #00c88a;
}

.status.no {
    background: rgba(210, 50, 50, 0.08);
    color: rgba(195, 45, 45, 0.72);
}

.social-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
}

.social-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.social-metrics strong {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
    color: var(--brand);
}

.logo-strip {
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    background: rgba(18, 22, 20, 0.92);
    color: rgba(230, 240, 236, 0.7);
    text-align: center;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.decision-box,
.final-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
    background: linear-gradient(135deg, #0d1914, #0f3a2c);
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.08);
}

.final-cta-box {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 56px;
    padding: 56px 64px;
}

.final-cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.final-cta-box h2 {
    max-width: 22ch;
}

.final-cta-box p {
    max-width: 52ch;
}

.final-cta-photo {
    flex: 1;
    min-width: 0;
    align-self: stretch;
    min-height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.final-cta-box .hero-actions {
    justify-content: flex-start;
}

.final-cta-box .section-tag {
    white-space: nowrap;
}

.decision-box .section-tag,
.final-cta-box .section-tag {
    color: #dbf8ea;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.decision-box p,
.final-cta-box p {
    color: rgba(243, 245, 242, 0.76);
}

.decision-actions {
    gap: 14px;
    flex-wrap: wrap;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    background: #0b100e;
}

.faq-question {
    width: 100%;
    border: 0;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: var(--text-dark);
    font-family: "Sora", sans-serif;
    font-size: var(--fs-h3);
    text-align: left;
    cursor: pointer;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--brand);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 24px 0;
    color: rgba(230, 240, 236, 0.72);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
    padding-bottom: 22px;
}

.compact-hero {
    padding-bottom: 72px;
}

.stacked-metrics-card {
    padding: 22px;
    display: grid;
    gap: 14px;
}

.metrics-only {
    padding-top: 0;
}

.case-top {
    display: grid;
    gap: 6px;
    margin-bottom: 16px;
}

.case-top small,
.testimonial-card span {
    color: rgba(230, 240, 236, 0.56);
    font-size: 0.88rem;
}

.testimonial-card p {
    margin: 0 0 20px;
    font-size: 1.04rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card strong {
    font-size: 0.98rem;
    color: var(--text-dark);
}

.case-card p:last-child {
    margin-bottom: 0;
}

.site-footer {
    width: 100%;
    margin: 0;
    padding: 44px 0 24px;
    background: #0a130f;
    color: var(--text);
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    box-shadow: none;
}

.footer-grid {
    grid-template-columns: 1.3fr 0.9fr 0.95fr 0.75fr;
    align-items: start;
}

.footer-brand,
.footer-grid > div:not(.footer-brand) {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
}

.footer-links,
.social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-bottom {
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(243, 245, 242, 0.64);
    font-size: 0.92rem;
}

.site-footer h3 {
    color: rgba(243, 245, 242, 0.92);
    margin-bottom: 14px;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
}

.site-footer .footer-brand p,
.site-footer .footer-meta li {
    color: rgba(243, 245, 242, 0.62);
    line-height: 1.72;
}

.site-footer .footer-meta li {
    font-size: 0.9rem;
}

body[data-page="planos"] {
    color: var(--text-dark);
    background: linear-gradient(180deg, #0d1310 0%, #0d1310 42%, #0a0d0c 100%);
}

body[data-page="planos"] .site-header {
    backdrop-filter: blur(18px);
    background: rgba(5, 8, 6, 0.92);
    border-bottom: 1px solid var(--line-dark);
}

body[data-page="planos"] .site-header.scrolled {
    background: rgba(5, 8, 6, 0.98);
    border-color: var(--line-dark);
    box-shadow: 0 12px 40px rgba(4, 8, 6, 0.16);
}

body[data-page="planos"] .desktop-nav a,
body[data-page="planos"] .mobile-nav a {
    color: rgba(245, 248, 244, 0.72);
}

body[data-page="planos"] .desktop-nav a:hover,
body[data-page="planos"] .desktop-nav a.is-active,
body[data-page="planos"] .mobile-nav a:hover {
    color: #ffffff;
}

body[data-page="planos"] .button-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

body[data-page="planos"] .menu-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
}

body[data-page="planos"] .menu-toggle span {
    background: #0b100e;
}

body[data-page="planos"] .mobile-panel {
    background: rgba(5, 8, 6, 0.97);
    border-top-color: var(--line-dark);
}

body[data-page="planos"] .brand-copy strong {
    color: #ffffff;
}

body[data-page="planos"] .brand-copy small {
    color: rgba(255, 255, 255, 0.55);
}

body[data-page="planos"] .pricing-top .container,
body[data-page="planos"] .pricing-focused .container,
body[data-page="planos"] .pricing-support .container,
body[data-page="planos"] .pricing-fit .container,
body[data-page="planos"] .comparison-section .container,
body[data-page="planos"] .pricing-faq .container,
body[data-page="planos"] .pricing-final .container {
    width: min(1320px, calc(100vw - 52px));
}

.pricing-top {
    padding: 54px 0 20px;
    background: linear-gradient(180deg, #0d1310 0%, #0a0d0c 100%);
}

.pricing-top-shell {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(0, 120, 88, 0.1);
}

.pricing-top-copy h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.35rem, 4vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
    max-width: 12.5ch;
    color: var(--text-dark);
}

.pricing-top-copy p {
    margin: 14px 0 0;
    max-width: 60ch;
    color: rgba(230, 240, 236, 0.72);
    line-height: 1.75;
}

.pricing-toggle-row {
    margin: 0;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.pricing-focused {
    padding: 26px 0 22px;
    background: #0b100e;
}

.pricing-grid-wide {
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    gap: 24px;
}

body[data-page="planos"] .pricing-card {
    min-height: 100%;
    padding: 24px;
    gap: 16px;
    border-radius: 28px;
    border: 1px solid rgba(0, 120, 88, 0.12);
    background: #0b100e;
    box-shadow: 0 18px 40px rgba(17, 35, 28, 0.06);
}

body[data-page="planos"] .pricing-card .plan-description {
    min-height: 0;
}

body[data-page="planos"] .pricing-card h3 {
    font-size: 1.6rem;
}

body[data-page="planos"] .pricing-card .feature-list {
    gap: 14px;
    margin-bottom: auto;
}

body[data-page="planos"] .pricing-card .feature-list li {
    padding-left: 28px;
    font-size: 0.98rem;
    line-height: 1.65;
}

body[data-page="planos"] .plan-price strong {
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    white-space: nowrap;
}

body[data-page="planos"] .plan-footnote {
    padding-top: 4px;
    font-size: 0.92rem;
}

body[data-page="planos"] .featured {
    transform: scale(1.02);
    background: linear-gradient(180deg, #0a0d0c 0%, #0d1310 100%);
    border: 1px solid rgba(0, 255, 174, 0.34);
    box-shadow: 0 28px 70px rgba(0, 255, 174, 0.18);
}

body[data-page="planos"] .featured::before {
    inset: -20px -10px auto auto;
    width: 220px;
    height: 220px;
}

body[data-page="planos"] .enterprise {
    background: linear-gradient(180deg, #0a0d0c 0%, #0d1310 100%);
}

.pricing-support {
    padding: 8px 0 44px;
    background: #0b100e;
}

.support-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    background: #0b100e;
    border: 1px solid rgba(0, 120, 88, 0.1);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(17, 35, 28, 0.04);
    overflow: hidden;
}

.support-item {
    padding: 22px 24px;
    display: grid;
    gap: 10px;
    border-right: 1px solid rgba(0, 120, 88, 0.08);
}

.support-item:last-child {
    border-right: 0;
}

.support-item strong {
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    letter-spacing: -0.03em;
    color: var(--text-dark);
}

.support-item span {
    color: rgba(230, 240, 236, 0.68);
    line-height: 1.65;
}

.pricing-fit {
    background: #0d1310;
    padding-top: 54px;
}

.fit-grid-clean {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

body[data-page="planos"] .fit-card {
    padding: 26px;
    border: 1px solid rgba(0, 120, 88, 0.09);
    background: #0b100e;
}

.fit-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 16px;
    background: rgba(0, 120, 88, 0.08);
    color: var(--brand);
    font-weight: 800;
}

body[data-page="planos"] .comparison-section {
    background: linear-gradient(180deg, #0d1310 0%, #0d1310 100%);
}

body[data-page="planos"] .table-shell {
    padding: 22px;
    border-radius: 30px;
    border: 1px solid rgba(0, 120, 88, 0.11);
    box-shadow: 0 22px 50px rgba(17, 35, 28, 0.06);
}

body[data-page="planos"] .table-scroll {
    max-height: calc(100vh - var(--header-height) - 60px);
    overflow-y: auto;
    overflow-x: auto;
}

body[data-page="planos"] .comparison-table {
    min-width: 100%;
    table-layout: fixed;
}

body[data-page="planos"] .comparison-table th,
body[data-page="planos"] .comparison-table td {
    padding: 11px 10px;
    border-bottom: 1px solid rgba(0, 120, 88, 0.08);
    font-size: 0.87rem;
    vertical-align: middle;
}

body[data-page="planos"] .comparison-table th:first-child,
body[data-page="planos"] .comparison-table td:first-child {
    width: 26%;
}

body[data-page="planos"] .comparison-table thead th {
    top: 0;
    background: #0b100e;
    color: var(--text-dark);
    font-size: 0.88rem;
    font-weight: 800;
    border-bottom: 2px solid rgba(0, 120, 88, 0.14);
    z-index: 10;
}

body[data-page="planos"] .comparison-table thead th:nth-child(5) {
    color: var(--brand);
}

body[data-page="planos"] .comparison-table tbody td:nth-child(5) {
    background: rgba(0, 255, 174, 0.06);
}

body[data-page="planos"] .comparison-table tbody tr:nth-child(even):not(.category-row) {
    background: rgba(0, 120, 88, 0.02);
}

body[data-page="planos"] .category-row td {
    padding: 16px 20px;
    background: rgba(0, 120, 88, 0.1);
    color: var(--brand);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

body[data-page="planos"] .status {
    min-width: 24px;
    padding: 0;
    border-radius: 0;
    background: none;
    font-size: 1.15rem;
    font-weight: 900;
}

body[data-page="planos"] .status.yes {
    color: var(--brand-strong);
}

body[data-page="planos"] .status.no {
    color: rgba(195, 45, 45, 0.82);
}

.pricing-faq {
    background: #0b100e;
    padding-top: 78px;
}

.faq-shell {
    width: min(1060px, calc(100vw - 52px));
}

body[data-page="planos"] .faq-list {
    gap: 16px;
}

body[data-page="planos"] .faq-item {
    border: 1px solid rgba(0, 120, 88, 0.1);
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(17, 35, 28, 0.04);
}

body[data-page="planos"] .faq-question {
    padding: 24px 28px;
    font-size: 1.02rem;
}

body[data-page="planos"] .faq-answer p {
    padding: 0 28px 0;
    line-height: 1.75;
}

body[data-page="planos"] .faq-item.open .faq-answer p {
    padding-bottom: 24px;
}

.pricing-final {
    background: linear-gradient(180deg, #0a0d0c 0%, #0d1310 100%);
}

body[data-page="planos"] .final-cta-box {
    padding: 64px 56px;
    background: linear-gradient(135deg, #10241d, #0f3a2c);
}

body[data-page="home"] {
    color: var(--text-dark);
    background: linear-gradient(180deg, #08100d 0%, #0d1914 14%, #0d1310 14%, #0a0d0c 100%);
}

body[data-page="home"] .site-header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
}

body[data-page="home"] .site-header.scrolled {
    backdrop-filter: blur(18px);
    background: rgba(9, 17, 14, 0.92);
    border-color: rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .home-hero .container,
body[data-page="home"] .proof-band .container,
body[data-page="home"] .what-bam-does .container,
body[data-page="home"] .system-showcase .container,
body[data-page="home"] .benefit-focus .container,
body[data-page="home"] .persona-section .container,
body[data-page="home"] .real-features .container,
body[data-page="home"] .differentials-section .container,
body[data-page="home"] .plans-preview-section .container,
body[data-page="home"] .social-proof-home .container,
body[data-page="home"] .home-faq .container,
body[data-page="home"] .home-final-cta .container {
    width: min(1280px, calc(100vw - 48px));
}

.home-hero {
    position: relative;
    padding: 52px 0 64px;
    padding-top: calc(52px + var(--header-height));
    overflow: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 18%, rgba(0, 255, 174, 0.2), transparent 22%),
        radial-gradient(circle at 82% 10%, rgba(83, 125, 107, 0.24), transparent 26%),
        linear-gradient(180deg, #08100d 0%, #0d1914 100%);
}

.hero-noise {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.03), transparent 35%),
        radial-gradient(circle at 65% 35%, rgba(0, 255, 174, 0.12), transparent 18%);
    pointer-events: none;
}

.home-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 34px;
    align-items: center;
}

.hero-inline-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-inline-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(243, 245, 242, 0.82);
    font-size: 0.92rem;
}

.hero-system {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Hero Banner Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-wrap {
    position: relative;
    width: 82%;
    margin-left: auto;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    display: block;
    box-shadow: 0 32px 90px rgba(2, 6, 4, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-float-card {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 18px;
    background: rgba(9, 16, 13, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 36px rgba(2, 6, 4, 0.36);
    z-index: 2;
}

.hero-float-card small {
    font-size: 0.75rem;
    color: rgba(243, 245, 242, 0.55);
    font-weight: 500;
}

.hero-float-card strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    font-family: "Sora", sans-serif;
}

.hero-float-card span {
    font-size: 0.78rem;
    color: var(--brand-bright);
    font-weight: 600;
}

.hero-float-card--leads {
    top: -18px;
    right: -18px;
}

.hero-float-card--conv {
    bottom: 50px;
    right: -18px;
}

.hero-float-card--neg {
    bottom: -18px;
    left: 22px;
}

.system-window {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(10, 18, 14, 0.98), rgba(14, 24, 19, 0.96));
    box-shadow: 0 32px 90px rgba(2, 6, 4, 0.34);
    overflow: hidden;
}

.primary-window {
    padding: 22px;
}

.secondary-window {
    position: relative;
    width: 72%;
    align-self: flex-end;
    padding: 18px;
    background: linear-gradient(180deg, rgba(15, 24, 19, 0.98), rgba(19, 31, 24, 0.94));
}

.window-bar,
.window-topline,
.hero-stat-grid,
.mini-pipeline-board,
.showcase-kpis,
.chart-bars,
.plans-preview-grid,
.home-proof-grid,
.benefit-grid,
.persona-grid,
.feature-category-grid,
.capability-grid,
.showcase-grid,
.proof-band-shell,
.proof-logos,
.differential-grid {
    display: grid;
}

.window-bar {
    grid-auto-flow: column;
    justify-content: start;
    gap: 8px;
    margin-bottom: 16px;
}

.window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.window-topline {
    grid-auto-flow: column;
    justify-content: start;
    gap: 10px;
    margin-bottom: 18px;
}

.window-topline.compact {
    margin-bottom: 14px;
}

.window-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(243, 245, 242, 0.76);
    font-size: 0.84rem;
}

.window-chip.strong {
    background: rgba(0, 255, 174, 0.14);
    color: #eef4f0;
}

.hero-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-stat-grid article,
.hero-chart-card,
.mini-pipeline-column,
.showcase-card,
.capability-card,
.benefit-card,
.persona-card,
.feature-category-card,
.plan-preview-card,
.proof-highlight {
    border: 1px solid rgba(0, 120, 88, 0.1);
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(17, 35, 28, 0.05);
}

.hero-stat-grid article {
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.06);
}

.hero-stat-grid small,
.hero-stat-grid span,
.chart-header span,
.showcase-head span {
    color: rgba(243, 245, 242, 0.64);
}

.hero-stat-grid strong {
    display: block;
    margin: 6px 0;
    font-family: "Sora", sans-serif;
    font-size: 1.65rem;
    letter-spacing: -0.05em;
}

.hero-chart-card {
    margin-top: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
}

.showcase-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
}

.showcase-head strong {
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
}

/* showcase-head in dark pipeline card */
.showcase-pipeline .showcase-head strong {
    color: rgba(243, 245, 242, 0.92);
}

.showcase-pipeline .showcase-head span {
    color: rgba(243, 245, 242, 0.48);
}

.chart-bars {
    grid-auto-flow: column;
    align-items: end;
    gap: 10px;
    height: 150px;
    margin-top: 18px;
}

.chart-bars span,
.showcase-chart-wide span {
    border-radius: 999px 999px 10px 10px;
    background: linear-gradient(180deg, #00ffae, #0f3a2c);
}

.mini-pipeline-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.mini-pipeline-column {
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    display: grid;
    gap: 10px;
}

.mini-pipeline-column header,
.pipeline-sim-column header {
    font-weight: 800;
    color: #eef4f0;
}

.mini-pipeline-column.accent {
    background: rgba(0, 255, 174, 0.12);
}

.mini-pipeline-card,
.pipeline-sim-column div {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(18, 22, 20, 0.9);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.84rem;
    line-height: 1.4;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-list-mockup {
    display: grid;
    gap: 10px;
}

.contact-row {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(243, 245, 242, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-row strong,
.contact-row em {
    font-style: normal;
}

.proof-band {
    padding: 22px 0 38px;
    background: linear-gradient(180deg, #0a0d0c 0%, #0d1310 100%);
    border-bottom: 1px solid rgba(0, 120, 88, 0.08);
}

.proof-band-shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
    gap: 24px;
    align-items: stretch;
}

.proof-highlight {
    padding: 28px 30px;
    background: #0b100e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.proof-highlight strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.85rem;
    letter-spacing: -0.05em;
    color: var(--brand);
    line-height: 1;
}

.proof-highlight span {
    color: rgba(230, 240, 236, 0.66);
    line-height: 1.7;
    font-size: 0.97rem;
    max-width: 38ch;
}

.proof-logos {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    align-content: center;
}

.proof-logos span {
    display: grid;
    place-items: center;
    min-height: 84px;
    padding: 16px;
    border-radius: 20px;
    background: #0b100e;
    border: 1px solid rgba(0, 120, 88, 0.1);
    color: rgba(230, 240, 236, 0.66);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.what-bam-does,
.benefit-focus,
.persona-section,
.real-features,
.plans-preview-section,
.social-proof-home,
.home-faq {
    background: #0b100e;
}

.what-bam-does,
.system-showcase,
.benefit-focus,
.persona-section,
.real-features,
.differentials-section,
.plans-preview-section,
.social-proof-home,
.home-faq,
.home-final-cta {
    padding: 86px 0;
}

.capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.capability-card,
.benefit-card,
.persona-card,
.feature-category-card,
.plan-preview-card {
    padding: 26px;
    background: #0b100e;
}

.capability-card h3,
.benefit-card h3,
.persona-card h3,
.feature-category-card h3,
.plan-preview-card h3,
.proof-highlight strong {
    letter-spacing: -0.04em;
}

.capability-card p,
.benefit-card p,
.persona-card p,
.plan-preview-card p,
.feature-category-card .feature-list li,
.differential-grid span {
    color: rgba(230, 240, 236, 0.7);
}

.system-showcase {
    background: linear-gradient(180deg, #0d1310 0%, #0d1310 100%);
    padding: 86px 0;
}

.showcase-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 8px;
}

.showcase-gallery-item {
    display: flex;
}

.showcase-gallery-item .crm-image {
    margin-top: 0;
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 6, 4, 0.22), 0 0 0 1px rgba(0, 255, 174, 0.1);
}

.showcase-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
}

.showcase-card.showcase-bare {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    padding: 0;
}

.showcase-card.showcase-bare .showcase-head {
    padding: 0 4px 12px;
}

.showcase-card.showcase-bare .crm-image {
    margin-top: 0;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(2, 6, 4, 0.28), 0 0 0 1px rgba(0, 255, 174, 0.1);
}

.showcase-card {
    padding: 28px;
    background: #0b100e;
    min-width: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(0, 120, 88, 0.1);
    box-shadow: 0 18px 44px rgba(17, 35, 28, 0.06);
}

.showcase-large {
    grid-row: span 2;
}

/* Pipeline card tema escuro */
.showcase-pipeline {
    background: linear-gradient(180deg, #0d1914 0%, #111f18 100%);
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 24px 60px rgba(2, 6, 4, 0.28);
}

.showcase-kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.showcase-kpis article {
    padding: 14px;
    border-radius: 18px;
    background: #0d1310;
    border: 1px solid rgba(0, 120, 88, 0.08);
}

.showcase-kpis small,
.contacts-header,
.contacts-line span:not(:first-child) {
    color: rgba(230, 240, 236, 0.58);
}

.showcase-kpis strong {
    display: block;
    margin-top: 8px;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
}

.showcase-chart-wide {
    display: grid;
    grid-auto-flow: column;
    gap: 12px;
    align-items: end;
    height: 220px;
    margin-top: 22px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0f1b16, #163126);
}

.pipeline-sim-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
    width: 100%;
    min-width: 0;
    align-items: start;
}

.pipeline-sim-column {
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: grid;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
    align-content: start;
}

.pipeline-sim-column header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-bottom: 4px;
}

.col-label {
    font-weight: 700;
    font-size: 0.78rem;
    color: rgba(243, 245, 242, 0.72);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.col-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(243, 245, 242, 0.6);
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
}

.col-count-accent {
    background: rgba(0, 255, 174, 0.2);
    color: #a8f0cc;
}

.pipeline-sim-column.accent {
    background: rgba(0, 255, 174, 0.1);
    border-color: rgba(0, 255, 174, 0.18);
}

.pipeline-count-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(243, 245, 242, 0.6);
    font-size: 0.78rem;
    font-weight: 700;
}

.contacts-table-mockup {
    margin-top: 20px;
    border-radius: 20px;
    border: 1px solid rgba(0, 120, 88, 0.08);
    overflow: hidden;
}

.contacts-header,
.contacts-line {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #0b100e;
    border-bottom: 1px solid rgba(0, 120, 88, 0.08);
}

.contacts-header {
    background: #0d1310;
    font-weight: 800;
}

.contacts-line span:first-child {
    font-weight: 700;
    color: var(--text-dark);
}

.benefit-grid,
.persona-grid,
.plans-preview-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.home-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.feature-category-card {
    background: #0d1310;
}

.differentials-section {
    background: linear-gradient(135deg, #0b1511, #10241d);
    color: var(--text);
}

.differential-shell {
    padding: 34px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 24px 70px rgba(2, 6, 4, 0.2);
}

.compact-heading h2,
.differential-grid strong,
.plans-preview-grid h3 {
    color: #eef4f0;
}

.compact-heading p,
.differential-grid span {
    color: rgba(243, 245, 242, 0.7);
}

.differentials-section .section-tag {
    color: rgba(243, 245, 242, 0.9);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.differential-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 26px;
}

.differential-highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 255, 174, 0.12), rgba(0, 120, 88, 0.2)) !important;
    border-color: rgba(0, 255, 174, 0.22) !important;
    padding: 28px 32px !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.diff-price-badge {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--brand-bright);
    line-height: 1;
    font-family: "Sora", sans-serif;
    margin-bottom: 4px;
}

.diff-price-badge span {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(0, 255, 174, 0.65);
}

.differential-grid article {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.differential-grid strong {
    display: block;
    margin-bottom: 10px;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
}

.plans-preview-section {
    background: linear-gradient(180deg, #0a0d0c 0%, #0d1310 100%);
}

.plan-preview-card {
    background: linear-gradient(180deg, #10241d, #153328);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 50px rgba(3, 10, 7, 0.2);
}

.plan-preview-card p {
    color: rgba(243, 245, 242, 0.72);
}

/* Tags dos planos nos cards escuros da home */
.plan-preview-card .plan-tag {
    color: rgba(243, 245, 242, 0.88);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.12);
}

.preview-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.social-proof-home {
    background: #0b100e;
}

.section-heading--inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
}

.section-heading--inline h2 {
    margin: 0;
    white-space: nowrap;
}

.home-faq {
    background: #0d1310;
}

.home-final-cta {
    background: linear-gradient(180deg, #0d1310 0%, #0a0d0c 100%);
}

/* Social proof home refinement */
.social-proof-home .social-metrics {
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 120, 88, 0.1);
}

.social-metrics article {
    padding: 24px;
    text-align: center;
}

.social-metrics strong {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--brand);
    margin-bottom: 8px;
}

.social-metrics span {
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

/* Testimonial card polish */
.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.testimonial-card p {
    flex: 1;
}

/* Client logo em cards */
.client-logo-wrap {
    display: flex;
    align-items: center;
    min-height: 40px;
    margin-bottom: 18px;
}

.testimonial-card .client-logo-wrap {
    background: var(--brand, #0f3a2c);
    border-radius: 10px;
    padding: 8px 14px;
    display: inline-flex;
    align-self: flex-start;
}

.client-logo {
    max-height: 36px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: opacity 0.2s, filter 0.2s;
}

.testimonial-card:hover .client-logo,
.case-card:hover .client-logo {
    opacity: 1;
    filter: grayscale(0);
}

.client-logo-text {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #00ffae;
    background: rgba(0, 255, 174, 0.1);
    border: 1.5px solid rgba(0, 255, 174, 0.35);
    padding: 7px 14px;
    border-radius: 8px;
}

/* Badge de resultado em testimonials */
.card-result {
    margin: 0 0 18px;
    padding: 10px 14px;
    background: rgba(0, 255, 174, 0.1);
    border: 1px solid rgba(0, 255, 174, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brand-strong);
    line-height: 1.45;
}

/* Bloco de autor em testimonials */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 120, 88, 0.08);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(0, 255, 174, 0.28);
}

body[data-page="clientes"] .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Resultado destacado em case cards */
.case-result {
    margin-top: auto !important;
    margin-bottom: 0 !important;
    padding: 10px 14px;
    border-left: 3px solid var(--brand-bright);
    background: rgba(0, 255, 174, 0.08);
    border-radius: 0 8px 8px 0;
    font-size: 0.95rem !important;
}

.case-result strong {
    color: var(--brand-strong);
}

/* Case card polish */
.case-card {
    background: linear-gradient(180deg, #0d1310, #0d1310);
    border: 1px solid rgba(0, 120, 88, 0.12);
    display: flex;
    flex-direction: column;
}

.case-card .case-top {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 120, 88, 0.1);
    margin-bottom: 18px;
}

.case-badge {
    background: rgba(0, 255, 174, 0.14);
    color: var(--brand-strong);
    border: 1px solid rgba(0, 255, 174, 0.18);
    font-size: 0.76rem;
    padding: 7px 12px;
}

.case-top strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.case-card p {
    font-size: 0.95rem;
    margin: 0 0 10px;
}

.case-card p:last-child {
    margin-bottom: 0;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

/* ── Clients Carousel ─────────────────────────────────── */
.clients-carousel-section {
    padding: 48px 0 56px;
    background: var(--bg-soft);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.clients-carousel-heading {
    text-align: center;
    margin-bottom: 28px;
}

.clients-carousel-heading .section-tag {
    background: rgba(0, 255, 174, 0.16);
    border-color: rgba(0, 255, 174, 0.24);
    color: var(--brand-bright);
}

.clients-carousel-label {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--text);
    margin-top: 10px;
    margin-bottom: 0;
}

.carousel-wrapper {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: clients-scroll 50s linear infinite;
    will-change: transform;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.carousel-item img {
    height: 64px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: block;
}

.carousel-item img:hover {
    opacity: 1;
}

@keyframes clients-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── CRM Images ─────────────────────────────────────────── */
.crm-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 16px 50px rgba(2, 6, 4, 0.18), 0 0 0 1px rgba(0, 255, 174, 0.08);
    display: block;
    object-fit: contain;
    margin-top: 18px;
}

.showcase-card .crm-image {
    margin-top: 16px;
    max-height: 280px;
    object-fit: cover;
    object-position: top center;
}

.showcase-large .crm-image {
    max-height: 100%;
    min-height: 240px;
    flex: 1;
}

.crm-image-large {
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(2, 6, 4, 0.22), 0 0 0 1px rgba(0, 255, 174, 0.1);
    margin-top: 0;
    max-width: 600px;
    width: 100%;
}

/* ── Product Features ────────────────────────────────────── */
.product-features {
    background: #0b100e;
    padding: 86px 0 40px;
}

.product-features .section-heading {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 120, 88, 0.08);
    margin-bottom: 0;
}

.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 72px 0;
    border-bottom: 1px solid rgba(0, 120, 88, 0.07);
}

.product-row:last-child {
    border-bottom: none;
    padding-bottom: 86px;
}

.product-row-reverse .product-row-image {
    order: -1;
}

.product-row-copy {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-row-copy h3 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.04em;
    line-height: 1.25;
    margin: 0;
}

.product-row-copy > p {
    color: rgba(230, 240, 236, 0.68);
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
}

.product-feature-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.product-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(230, 240, 236, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
}

.product-feature-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-bright);
    flex-shrink: 0;
}

.product-row-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        animation: none;
    }
}

@media (min-width: 921px) and (max-width: 1360px) {
    .pipeline-sim-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1120px) {
    .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-grid,
    .fit-grid,
    .value-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-item:nth-child(2) {
        border-right: 0;
    }

    .support-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(0, 120, 88, 0.08);
    }

    .proof-band-shell,
    .home-hero-grid,
    .showcase-grid,
    .feature-category-grid,
    .differential-grid,
    .benefit-grid,
    .persona-grid,
    .plans-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .proof-logos,
    .showcase-kpis,
    .hero-stat-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pipeline-sim-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .secondary-window {
        width: 100%;
        align-self: stretch;
    }

    .feature-grid,
    .social-grid,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .cases-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-mockup {
        min-height: auto;
    }

    .logo-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .desktop-nav,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-panel.is-open {
        display: block;
    }

    .hero-copy h1 {
        max-width: 100%;
        text-align: center;
        margin-top: 32px;
    }

    .mockup-main {
        grid-template-columns: 1fr;
    }

    .mockup-stats,
    .pipeline-board,
    .social-metrics,
    .logo-strip,
    .benefits-grid,
    .feature-grid,
    .cases-grid,
    .fit-grid,
    .value-grid,
    .testimonial-grid,
    .pricing-grid,
    .footer-grid,
    .support-strip {
        grid-template-columns: 1fr;
    }

    .hero-proof-card,
    .decision-box,
    .billing-toggle-wrap,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-cta-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 36px;
        padding: 52px 36px;
    }

    .final-cta-content {
        align-items: center;
    }

    .final-cta-box .hero-actions {
        justify-content: center;
    }

    .final-cta-photo {
        width: 100%;
        min-height: 300px;
        align-self: auto;
    }

    .pricing-top-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-toggle-row {
        width: 100%;
        justify-content: flex-start;
    }

    .support-item,
    .support-item:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 120, 88, 0.08);
    }

    .support-item:last-child {
        border-bottom: 0;
    }

    .home-hero-grid,
    .proof-band-shell,
    .capability-grid,
    .showcase-grid,
    .benefit-grid,
    .persona-grid,
    .feature-category-grid,
    .differential-grid,
    .plans-preview-grid,
    .home-proof-grid,
    .proof-logos,
    .showcase-kpis,
    .hero-stat-grid,
    .pipeline-sim-grid,
    .mini-pipeline-board {
        grid-template-columns: 1fr;
    }

    .hero-banner-wrap {
        width: 100%;
        padding-right: 20px;
    }

    .hero-float-card--leads {
        right: 2px;
    }

    .hero-float-card--conv {
        right: 2px;
    }

    .window-topline,
    .chart-header,
    .showcase-head,
    .contacts-header,
    .contacts-line,
    .contact-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-system {
        overflow: visible;
    }

    .proof-logos span {
        min-height: 64px;
    }

    .featured,
    .featured:hover {
        transform: none;
    }

    .comparison-table {
        min-width: 900px;
    }

    .site-footer {
        margin-bottom: 0;
    }
}

@media (max-width: 640px) {
    :root {
        --container: min(100vw - 28px, 100%);
        --header-height: 84px;
    }

    .hero-section,
    .page-hero,
    .pricing-section,
    .features-section,
    .comparison-section,
    .faq-section,
    .final-cta,
    .cases-section,
    .testimonials-section,
    .fit-section,
    .value-section,
    .decision-cta,
    .social-section,
    .logo-band {
        padding-bottom: 72px;
    }

    body[data-page="planos"] .pricing-top .container,
    body[data-page="planos"] .pricing-focused .container,
    body[data-page="planos"] .pricing-support .container,
    body[data-page="planos"] .pricing-fit .container,
    body[data-page="planos"] .comparison-section .container,
    body[data-page="planos"] .pricing-faq .container,
    body[data-page="planos"] .pricing-final .container,
    body[data-page="home"] .home-hero .container,
    body[data-page="home"] .proof-band .container,
    body[data-page="home"] .what-bam-does .container,
    body[data-page="home"] .system-showcase .container,
    body[data-page="home"] .benefit-focus .container,
    body[data-page="home"] .persona-section .container,
    body[data-page="home"] .real-features .container,
    body[data-page="home"] .differentials-section .container,
    body[data-page="home"] .plans-preview-section .container,
    body[data-page="home"] .social-proof-home .container,
    body[data-page="home"] .home-faq .container,
    body[data-page="home"] .home-final-cta .container,
    .faq-shell {
        width: min(100vw - 28px, 100%);
    }

    .button,
    .button-large {
        width: 100%;
    }

    .hero-actions,
    .decision-actions {
        width: 100%;
    }

    .hero-proof-card,
    .dashboard-mockup,
    .decision-box,
    .table-shell {
        padding: 20px;
    }

    .final-cta-box {
        padding: 44px 28px;
    }

    .site-footer {
        padding: 36px 0 22px;
    }

    body[data-page="planos"] .pricing-card,
    body[data-page="planos"] .fit-card,
    .support-item {
        padding: 22px;
    }

    .capability-card,
    .benefit-card,
    .persona-card,
    .feature-category-card,
    .plan-preview-card,
    .proof-highlight,
    .showcase-card,
    .differential-shell,
    .primary-window,
    .secondary-window {
        padding: 22px;
    }

    .section-heading h2,
    .final-cta-box h2,
    .decision-box h2 {
        max-width: 100%;
    }

    .comparison-table {
        min-width: 820px;
    }

    /* Tabela de funcionalidades (planos): evita sobreposição de cabeçalhos */
    body[data-page="planos"] .comparison-table {
        table-layout: auto;
        min-width: 560px;
    }

    .hero-copy h1 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .section-heading h2,
    .final-cta-box h2,
    .decision-box h2 {
        font-size: clamp(1.55rem, 6vw, 2rem);
        max-width: 100%;
    }

    .section-heading--inline h2 {
        font-size: clamp(1.55rem, 6vw, 2rem);
        white-space: normal;
    }

    .pricing-top-copy h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .home-hero {
        padding-top: 44px;
        padding-bottom: 52px;
    }
}

@media (max-width: 920px) {
    .product-row {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0;
    }

    .product-row-reverse .product-row-image {
        order: 0;
    }

    .crm-image-large {
        max-width: 100%;
    }

    .showcase-gallery {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   NOVAS SEÇÕES — HOME REESTRUTURADA
   ============================================================ */

/* ---------- BENEFÍCIOS ---------- */
.benefits-section {
    background: #0b100e;
    padding: 96px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 52px;
}

.benefit-card {
    background: #0d1310;
    border: 1px solid rgba(0, 120, 88, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.benefit-card:hover {
    box-shadow: 0 16px 42px rgba(0, 120, 88, 0.1);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 174, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffae;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin: 0 0 8px;
    font-family: "Sora", sans-serif;
    font-size: var(--fs-h3);
    font-weight: 700;
    color: #e9f2ec;
    letter-spacing: -0.03em;
}

.benefit-card p {
    margin: 0;
    font-size: 0.91rem;
    line-height: 1.65;
    color: rgba(230, 240, 236, 0.6);
}

/* ---------- FUNCIONALIDADES (GRID DE CARDS) ---------- */
.features-grid-section {
    background: #0d1310;
    padding: 96px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 52px;
}

.feature-card {
    background: #0b100e;
    border: 1px solid rgba(0, 120, 88, 0.09);
    border-radius: 18px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 12px 36px rgba(0, 120, 88, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 255, 174, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffae;
    margin-bottom: 4px;
}

.feature-card h4 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #e9f2ec;
    letter-spacing: -0.02em;
}

.feature-card p {
    margin: 0;
    font-size: 0.87rem;
    line-height: 1.6;
    color: rgba(230, 240, 236, 0.58);
    flex: 1;
}

.feature-link {
    font-size: 0.83rem;
    font-weight: 700;
    color: #00ffae;
    letter-spacing: 0.01em;
    margin-top: 4px;
    transition: color 0.2s;
}

.feature-link:hover {
    color: #00d18f;
}

/* ---------- SUPORTE ---------- */
.support-section {
    background: #0b100e;
    padding: 96px 0;
}

.support-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.support-image img {
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(4, 9, 7, 0.1);
    width: 100%;
    height: 100%;
    max-height: 680px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.support-content .section-heading {
    margin-bottom: 36px;
}

.support-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.support-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: #0d1310;
    border: 1px solid rgba(0, 120, 88, 0.09);
    border-radius: 16px;
    transition: box-shadow 0.2s ease;
}

.support-card:hover {
    box-shadow: 0 8px 24px rgba(0, 120, 88, 0.08);
}

.support-card--solo {
    grid-column: 1 / -1;
    max-width: calc(50% - 6px);
    margin-left: auto;
    margin-right: auto;
}

.support-card-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(0, 255, 174, 0.1);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ffae;
}

.support-card strong {
    display: block;
    font-size: 0.93rem;
    font-weight: 700;
    color: #e9f2ec;
    margin-bottom: 4px;
}

.support-card span {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(230, 240, 236, 0.6);
}

/* ---------- INTEGRAÇÕES ---------- */
.integrations-section {
    background: #0b100e;
    padding: 96px 0;
    border-top: 1px solid rgba(0, 120, 88, 0.08);
    border-bottom: 1px solid rgba(0, 120, 88, 0.08);
}

/* 2-col split layout */
.integrations-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left — text */
.integrations-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.integrations-text h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
    font-weight: 800;
    color: #eef4f0;
    letter-spacing: -0.04em;
    line-height: 1.2;
    margin: 0;
}

.integrations-text p {
    font-size: 1rem;
    color: rgba(14, 31, 24, 0.6);
    line-height: 1.65;
    margin: 0;
    max-width: 420px;
}

.integrations-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #00ffae;
    text-decoration: none;
    border: 2px solid rgba(0, 255, 174, 0.3);
    border-radius: 50px;
    padding: 10px 22px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    margin-top: 4px;
}

.integrations-cta:hover {
    background: rgba(0, 255, 174, 0.08);
    border-color: #00ffae;
    color: #00c88a;
}

/* Right — cards grid */
.integrations-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 52px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px 20px;
    background: #0d1310;
    border: 1px solid rgba(0, 120, 88, 0.09);
    border-radius: 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s;
}

.integration-item:hover {
    box-shadow: 0 12px 32px rgba(0, 120, 88, 0.1);
    transform: translateY(-3px);
    border-color: rgba(0, 255, 174, 0.22);
}

.integration-item img {
    max-height: 69px;
    max-width: 125px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: filter 0.2s;
}

.integration-item:hover img {
    filter: grayscale(0);
}

.integration-item span {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(230, 240, 236, 0.6);
    letter-spacing: 0.03em;
}

.integration-item--soon {
    opacity: 0.5;
    cursor: default;
}

.integration-item--soon:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(0, 120, 88, 0.09);
}

.integration-soon-icon {
    color: rgba(230, 240, 236, 0.35);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integrations-note {
    margin-top: 32px;
    font-size: 0.88rem;
    color: rgba(230, 240, 236, 0.5);
}

.integrations-note a {
    color: #00ffae;
    font-weight: 700;
    transition: color 0.2s;
}

.integrations-note a:hover {
    color: #00d18f;
}

/* ---------- PLANOS HOME ---------- */
.plans-section-home {
    background: linear-gradient(180deg, #0d1310 0%, #0d1310 100%);
    padding: 96px 0 80px;
    border-top: 1px solid rgba(0, 255, 174, 0.15);
}

.plans-section-home .section-heading {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.plans-section-home .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.plans-section-home .section-heading p {
    max-width: 100%;
}

/* ── Centered heading pattern (shared) ── */
.features-grid-section .section-heading,
.social-proof-home .section-heading,
.home-faq .section-heading {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-section .section-heading h2,
.social-proof-home .section-heading h2,
.home-faq .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    letter-spacing: -0.03em;
    white-space: normal;
}

.features-grid-section .section-heading p,
.social-proof-home .section-heading p,
.home-faq .section-heading p {
    max-width: 62ch;
    margin-left: auto;
    margin-right: auto;
}

.plans-home-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 52px;
}

.plan-home-card {
    background: #0b100e;
    border: 1px solid rgba(0, 120, 88, 0.1);
    border-radius: 22px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-home-card:hover {
    box-shadow: 0 20px 50px rgba(4, 9, 7, 0.1);
    transform: translateY(-4px);
}

.plan-home-card--featured {
    background: linear-gradient(160deg, #10241d, #153328);
    border-color: rgba(0, 255, 174, 0.18);
    box-shadow: 0 24px 60px rgba(4, 9, 7, 0.18);
}

.plan-home-card--featured h3,
.plan-home-card--featured p {
    color: #f3f5f2;
}

.plan-home-card--featured p {
    color: rgba(243, 245, 242, 0.7);
}

.plan-home-card h3 {
    margin: 4px 0 0;
    font-family: "Sora", sans-serif;
    font-size: var(--fs-h3);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #e9f2ec;
}

.plan-home-card > p {
    margin: 0;
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body);
    color: rgba(230, 240, 236, 0.6);
    flex: 1;
}

.plan-home-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 8px 0 16px;
}

.plan-home-price .price-original {
    display: none;
    font-size: 0.9rem;
    color: rgba(230, 240, 236, 0.4);
    font-weight: 500;
    text-decoration: line-through;
}

.billing-yearly-active .plan-home-price .price-original {
    display: block;
}

.plan-home-price strong,
.plan-home-price .price-value {
    font-family: "Sora", sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: #e9f2ec;
    letter-spacing: -0.04em;
    white-space: nowrap;
    line-height: 1.1;
}

.plan-home-price .price-period {
    font-size: 0.86rem;
    color: rgba(230, 240, 236, 0.5);
    margin-top: 2px;
}

.plan-home-price .price-billing-note {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-strong);
    margin-top: 4px;
    min-height: 1.2em;
}

/* Enterprise: "escopo sob medida" abaixo */
.plan-home-price--consult {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.plan-home-price--consult span {
    font-size: 0.86rem;
    color: rgba(230, 240, 236, 0.5);
}

/* Featured (Pro) card overrides */
.plan-home-card--featured .plan-home-price strong,
.plan-home-card--featured .plan-home-price .price-value {
    color: #57f5c3;
}

.plan-home-card--featured .plan-home-price .price-period,
.plan-home-card--featured .plan-home-price .price-billing-note {
    color: rgba(243, 245, 242, 0.6);
}

.plan-home-card--featured .plan-home-price .price-original {
    color: rgba(243, 245, 242, 0.35);
}

.plans-detail-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00ffae;
    border-bottom: 1px solid rgba(0, 255, 174, 0.3);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.plans-detail-link:hover {
    color: #00d18f;
    border-color: #00d18f;
}

/* ---------- FAQ MODERNO (ACCORDION) ---------- */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 24px;
    color: #e9f2ec;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

/* Remove o ::after legado com +/- quando o SVG chevron está presente */
.faq-question::after {
    content: none;
}

.faq-question span {
    flex: 1;
}

.faq-chevron {
    flex-shrink: 0;
    color: #00ffae;
    transition: transform 0.28s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

/* ---------- BOTÃO FLUTUANTE WHATSAPP ---------- */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.wa-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    flex-shrink: 0;
}

.wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.wa-balloon {
    background: #0b100e;
    border-radius: 18px 18px 4px 18px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(4, 9, 7, 0.14);
    max-width: 240px;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.wa-balloon.wa-balloon--hidden {
    opacity: 0;
    transform: translateX(10px) scale(0.94);
    pointer-events: none;
}

.wa-balloon span {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #e9f2ec;
    margin-bottom: 4px;
}

.wa-balloon p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(230, 240, 236, 0.65);
    line-height: 1.5;
}

/* ---------- REVEAL DELAY ---------- */
.reveal-delay-3 {
    transition-delay: 0.45s;
}

/* ---------- RESPONSIVO DAS NOVAS SEÇÕES ---------- */
@media (max-width: 1024px) {
    .benefits-grid,
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .plans-section-home .section-heading h2,
    .features-grid-section .section-heading h2,
    .social-proof-home .section-heading h2,
    .home-faq .section-heading h2 {
        font-size: clamp(1.7rem, 7vw, 2.4rem);
        line-height: 1.18;
    }
}

@media (max-width: 480px) {
    .plans-section-home .section-heading h2,
    .features-grid-section .section-heading h2,
    .social-proof-home .section-heading h2,
    .home-faq .section-heading h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
        line-height: 1.25;
    }
}

@media (max-width: 768px) {
    .benefits-section,
    .features-grid-section,
    .support-section,
    .integrations-section,
    .plans-section-home {
        padding: 64px 0;
    }

    .benefits-grid,
    .features-grid,
    .plans-home-grid {
        grid-template-columns: 1fr 1fr;
    }

    .support-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .support-image {
        max-height: 300px;
        border-radius: 20px;
        overflow: hidden;
    }

    .integrations-grid {
        gap: 14px;
    }

    .integration-item {
        padding: 20px 16px;
    }

    .integrations-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .integrations-text h2 {
        font-size: 1.5rem;
    }

    .integrations-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .wa-float {
        bottom: 20px;
        right: 16px;
    }

    .wa-balloon {
        max-width: 200px;
        display: none !important;
    }
}
/* ================================================
   REVISÃO AVANÇADA — novas seções e correções
   ================================================ */

/* ---------- BENEFITS — layout split ---------- */
.benefits-section {
    background: #0b100e;
    padding: 96px 0;
}

.bsplit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.bsplit-content .section-heading {
    margin-bottom: 40px;
}

.bsplit-content .section-heading h2 {
    font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.bsplit-content .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 0;
}

.bsplit-content .benefit-card {
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #0d1310;
    border-radius: 16px;
}

.bsplit-content .benefit-card .benefit-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.bsplit-content .benefit-card h3 {
    font-size: 0.92rem;
    margin-bottom: 4px;
}

.bsplit-content .benefit-card p {
    font-size: 0.84rem;
}

.bsplit-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(4, 9, 7, 0.12);
    aspect-ratio: 4/5;
}

.bsplit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ---------- SYSTEM PREVIEW — prints reais ---------- */
.system-preview-section {
    background: transparent;
    padding: 96px 0;
    position: relative;
}

/* ---------- SP-SPLIT — nova seção split text + image ---------- */
.sp-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
    position: relative;
}

.sp-split__text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-width: 520px;
}

/* text slides — só o ativo fica visível */
.sp-text-slide {
    display: none;
}

.sp-text-slide.is-active {
    display: block;
}

.sp-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    color: #57f5c3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

.sp-split__text h2 {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0 0 14px;
}

.sp-split__text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.68;
    font-size: 0.97rem;
    max-width: 400px;
}

.sp-bullets {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sp-bullets li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.sp-bullets li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #57f5c3;
    flex-shrink: 0;
}

/* navigation */
.sp-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 36px;
}

.sp-nav__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.sp-nav__btn:hover {
    background: #57f5c3;
    color: #050806;
    box-shadow: 0 6px 20px rgba(87, 245, 196, 0.3);
}

.sp-nav__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sp-nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(87, 245, 196, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.sp-nav__dot.is-active {
    background: #57f5c3;
    transform: scale(1.5);
}

/* image side — full background */
.sp-split__visual {
    position: relative;
    width: 100%;
    background: transparent;
    z-index: 1;
    overflow: hidden;
}

.sp-image-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    height: auto;
}

.sp-image-slide {
    flex: 0 0 100%;
    background: transparent;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.sp-image-slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: contain;
    object-position: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s ease;
}

.sp-image-slide:hover img {
    transform: scale(1.02);
}

/* ══════════════════════════════════════════════
   UI MOCKUPS — system preview HTML components
   ══════════════════════════════════════════════ */

/* ── Outer shell ── */
.ui-mockup {
    width: 100%;
    border-radius: 14px;
    background: #0b1c16;
    border: 1px solid rgba(87,245,196,.18);
    box-shadow: 0 24px 64px rgba(0,0,0,.55), 0 0 0 1px rgba(87,245,196,.06);
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    display: flex;
    flex-direction: column;
}
.ui-mockup--portrait  { max-width: 400px; margin: 0 auto; }
.ui-mockup--landscape { max-width: 620px; }
.ui-mockup--reports-double { max-width: 580px; }

/* App top bar (portrait views) */
.uim-app-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 8px 14px;
    background: #091510;
    border-bottom: 1px solid rgba(87,245,196,.1);
    gap: 10px;
    min-height: 36px;
}
.uim-app-bar--leads { justify-content: space-between; }
.uim-app-bar__title {
    font-size: .8rem;
    font-weight: 800;
    color: #57f5c3;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.uim-app-bar__right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.uim-app-bar__counter {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 2px 8px;
}
.uim-app-bar__icon {
    font-size: .75rem;
    color: rgba(255,255,255,.35);
    cursor: default;
}

/* App top bar (landscape pipeline view) */
.uim-app-top {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: #091510;
    border-bottom: 1px solid rgba(87,245,196,.1);
    gap: 10px;
}

/* Shared button */
.uim-btn {
    font-size: .62rem;
    font-weight: 700;
    color: #050a07;
    background: #57f5c3;
    border: none;
    border-radius: 6px;
    padding: 5px 11px;
    cursor: default;
    letter-spacing: .02em;
    white-space: nowrap;
    flex-shrink: 0;
}
.uim-btn--add { background: #57f5c3; color: #050a07; }
.uim-btn--full { flex: 1; text-align: center; }

/* Body */
.uim-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* ─────────────────────────────────────────────
   SLIDE 1 — Dashboard: metrics + line chart
   ───────────────────────────────────────────── */
.uim-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}
.uim-metric {
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.12);
    border-radius: 8px;
    padding: 9px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.uim-metric--red  { border-color: rgba(231,85,85,.35);  background: rgba(231,85,85,.07); }
.uim-metric--teal { border-color: rgba(87,245,196,.3);  background: rgba(87,245,196,.06); }
.uim-metric__label {
    font-size: .56rem;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.35;
}
.uim-metric__val {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.uim-metric__val--sm { font-size: .82rem; }
.uim-metric--red  .uim-metric__val { color: #e75555; }
.uim-metric--teal .uim-metric__val { color: #57f5c3; }

/* Line chart */
.uim-linechart { display: flex; flex-direction: column; gap: 5px; }
.uim-chart__label {
    font-size: .58rem;
    color: rgba(255,255,255,.3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.uim-linechart__wrap {
    display: flex;
    gap: 4px;
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.08);
    border-radius: 8px;
    padding: 8px;
    height: 78px;
}
.uim-linechart__yaxis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: .5rem;
    color: rgba(255,255,255,.25);
    font-weight: 500;
    width: 26px;
    flex-shrink: 0;
    text-align: right;
}
.uim-linechart__area {
    flex: 1;
    height: 100%;
}
.uim-linechart__area svg { width: 100%; height: 100%; }
.uim-linechart__xaxis {
    display: flex;
    justify-content: space-between;
    font-size: .5rem;
    color: rgba(255,255,255,.25);
    font-weight: 500;
    padding: 0 0 0 30px;
}
.uim-chart__legend {
    display: flex;
    gap: 10px;
}
.uim-chart__legend span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: .57rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
}
.uim-chart__legend i {
    display: inline-block;
    width: 10px; height: 3px;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   SLIDE 2 — Pipeline kanban
   ───────────────────────────────────────────── */
.uim-body--kanban {
    flex-direction: row;
    gap: 7px;
    overflow: hidden;
    padding: 10px;
}
.uim-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.uim-col__head {
    font-size: .58rem;
    font-weight: 800;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .04em;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uim-col__head--won { color: #57f5c3; }
.uim-col__meta {
    font-size: .52rem;
    color: rgba(255,255,255,.28);
    font-weight: 500;
    line-height: 1.2;
}
.uim-col__add {
    font-size: .54rem;
    font-weight: 700;
    color: #57f5c3;
    background: rgba(87,245,196,.07);
    border: 1px dashed rgba(87,245,196,.2);
    border-radius: 5px;
    padding: 4px 6px;
    cursor: default;
    text-align: center;
}
.uim-kcard {
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.1);
    border-radius: 6px;
    padding: 6px 8px;
    font-size: .56rem;
    font-weight: 600;
    color: rgba(255,255,255,.7);
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}
.uim-kcard small {
    font-size: .5rem;
    color: rgba(255,255,255,.28);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uim-kcard em {
    font-style: normal;
    font-size: .54rem;
    font-weight: 700;
    color: #57f5c3;
    margin-top: 2px;
}
.uim-kcard--val { border-color: rgba(87,245,196,.15); }
.uim-kcard--won { border-color: rgba(87,245,196,.25); color: #57f5c3; }
.uim-col--won .uim-kcard--won { background: rgba(87,245,196,.05); }

/* ─────────────────────────────────────────────
   SLIDE 3 — Leads list
   ───────────────────────────────────────────── */
.uim-body--leads {
    gap: 8px;
}
.uim-leads-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
}
.uim-leads-filters {
    display: flex;
    gap: 5px;
}
.uim-filter-btn {
    font-size: .7rem;
    color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 5px;
    padding: 3px 7px;
    cursor: default;
}
.uim-leads-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.uim-lead-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.07);
    border-radius: 8px;
    padding: 8px 11px;
    gap: 10px;
}
.uim-lead-row--active { border-color: rgba(87,245,196,.22); }
.uim-lead-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.uim-lead-info strong {
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uim-lead-info small {
    font-size: .57rem;
    color: rgba(255,255,255,.35);
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uim-lead-company {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(255,255,255,.4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 38%;
    flex-shrink: 0;
    text-align: right;
}

/* ─────────────────────────────────────────────
   SLIDE 4 — Reports double panel
   ───────────────────────────────────────────── */
.uim-report-panel {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(87,245,196,.07);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uim-report-panel:last-child { border-bottom: none; }
.uim-panel-head {
    font-size: .65rem;
    font-weight: 800;
    color: rgba(255,255,255,.65);
    letter-spacing: .02em;
}
/* Bar chart (grouped) */
.uim-barchart {
    display: flex;
    gap: 6px;
    height: 80px;
    align-items: flex-end;
}
.uim-barchart__yaxis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: .48rem;
    color: rgba(255,255,255,.22);
    font-weight: 500;
    width: 34px;
    flex-shrink: 0;
    text-align: right;
    height: 100%;
}
.uim-barchart__bars {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    flex: 1;
    height: 100%;
}
.uim-bbar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 2px;
}
.uim-bbar-group span {
    font-size: .44rem;
    color: rgba(255,255,255,.25);
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.uim-bbar {
    width: 55%;
    border-radius: 3px 3px 0 0;
    min-height: 2px;
}
.uim-bbar--green { background: linear-gradient(180deg, #57f5c3 0%, #00ffae 100%); }
.uim-bbar--red   { background: #e75555; }
/* Top table */
.uim-checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .58rem;
    color: rgba(255,255,255,.35);
    font-weight: 500;
    cursor: default;
}
.uim-toptable-head {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr .8fr .5fr;
    padding: 4px 6px;
    font-size: .54rem;
    font-weight: 700;
    color: rgba(255,255,255,.28);
    text-transform: uppercase;
    letter-spacing: .04em;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.uim-toptable { display: flex; flex-direction: column; gap: 4px; }
.uim-toprow {
    display: grid;
    grid-template-columns: 1.6fr 1.2fr .8fr .5fr;
    align-items: center;
    padding: 5px 6px;
    border-radius: 6px;
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.06);
    gap: 4px;
}
.uim-toprow span {
    font-size: .58rem;
    color: rgba(255,255,255,.68);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uim-toprow span:last-child { color: rgba(255,255,255,.3); }
/* Status badges */
.uim-badge {
    font-size: .5rem;
    font-weight: 700;
    border-radius: 10px;
    padding: 2px 6px;
    white-space: nowrap;
    letter-spacing: .03em;
    text-align: center;
}
.uim-badge--contact { background: rgba(0, 255, 174,.15);  color: #00ffae; }
.uim-badge--meet    { background: rgba(255,190,30,.12);  color: #febc2e; }
.uim-badge--won     { background: rgba(87,155,255,.15);  color: #7ab4ff; }
.uim-badge--lost    { background: rgba(231,85,85,.15);   color: #e75555; }
.uim-badge--new     { background: rgba(255,255,255,.07); color: rgba(255,255,255,.4); }

/* ─────────────────────────────────────────────
   SLIDE 5 — Form builder
   ───────────────────────────────────────────── */
.uim-body--formbuilder {
    padding: 14px 16px;
    gap: 10px;
}
.uim-fb-title {
    font-size: .85rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: -.01em;
}
.uim-fb-field {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.uim-fb-field label {
    font-size: .57rem;
    font-weight: 700;
    color: rgba(255,255,255,.45);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.uim-input {
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.15);
    border-radius: 7px;
    padding: 7px 10px;
    font-size: .68rem;
    color: rgba(255,255,255,.7);
    font-weight: 500;
}
.uim-input--textarea {
    font-size: .6rem;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    color: rgba(255,255,255,.4);
}
.uim-fb-section-label {
    font-size: .6rem;
    font-weight: 800;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .05em;
    border-bottom: 1px solid rgba(87,245,196,.08);
    padding-bottom: 4px;
    margin-top: 2px;
}
.uim-fb-campos { display: flex; flex-direction: column; gap: 5px; }
.uim-fb-campo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.1);
    border-radius: 7px;
    padding: 7px 10px;
}
.uim-drag {
    font-size: .85rem;
    color: rgba(255,255,255,.2);
    cursor: default;
    flex-shrink: 0;
    letter-spacing: -.05em;
}
.uim-fb-campo div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.uim-fb-campo div strong {
    font-size: .64rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
}
.uim-fb-campo div small {
    font-size: .54rem;
    color: rgba(255,255,255,.3);
    font-weight: 400;
}
.uim-remove {
    font-size: .7rem;
    color: rgba(255,255,255,.2);
    cursor: default;
    flex-shrink: 0;
    line-height: 1;
}
.uim-remove--red { color: rgba(231,85,85,.5); }
.uim-fb-addrow {
    display: flex;
    gap: 7px;
    align-items: center;
}
.uim-fb-select {
    flex: 1;
    background: #0f2318;
    border: 1px solid rgba(87,245,196,.12);
    border-radius: 6px;
    padding: 6px 9px;
    font-size: .6rem;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    cursor: default;
}
.uim-fb-addrow--bottom { justify-content: space-between; }
.uim-checkrow {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .6rem;
    color: rgba(255,255,255,.45);
    font-weight: 500;
    cursor: default;
}
.uim-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px; height: 14px;
    border-radius: 4px;
    background: rgba(87,245,196,.15);
    border: 1px solid rgba(87,245,196,.3);
    color: #57f5c3;
    font-size: .6rem;
    flex-shrink: 0;
}
.uim-fb-aparencia { display: flex; flex-direction: column; gap: 6px; }
.uim-fb-color-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.uim-fb-color-row span {
    font-size: .58rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
    flex: 1;
}
.uim-color-swatch {
    width: 18px; height: 18px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,.15);
    flex-shrink: 0;
}
.uim-color-hex {
    font-size: .56rem;
    color: rgba(255,255,255,.35);
    font-weight: 600;
    font-family: monospace;
    flex: 0 !important;
    white-space: nowrap;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS CAROUSEL — tc-*
   ══════════════════════════════════════════════ */

/* Wrapper: reserve padding for arrows */
.tc-wrap {
    position: relative;
    padding: 0 52px;
}

/* Clip overflow so extra cards are hidden */
.tc-outer {
    overflow: hidden;
    padding: 20px;
}

/* Flex track — JS sets transform for sliding */
.tc-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* ── Card ── */
.tc-card {
    flex: 0 0 auto; /* width set by JS */
    background: #0b100e;
    border-radius: 24px;
    border: 1px solid rgba(0, 120, 88, 0.09);
    box-shadow: 0 4px 28px rgba(4, 9, 7, 0.07);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(4, 9, 7, 0.12);
}

/* ── Title ── */
.tc-title {
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #eef4f0;
    line-height: 1.35;
    text-align: center;
    margin: 0;
    letter-spacing: -0.025em;
}

.tc-highlight {
    color: #00ffae;
}

/* ── Person block ── */
.tc-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tc-avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
    display: block;
}

.tc-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tc-name {
    font-family: "Sora", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: #eef4f0;
    line-height: 1.2;
}

.tc-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(14, 31, 24, 0.72);
    line-height: 1.35;
}

.tc-company-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(14, 31, 24, 0.55);
    line-height: 1.3;
}

/* ── Quote ── */
.tc-quote {
    font-size: var(--fs-body-sm);
    line-height: var(--lh-body);
    color: rgba(14, 31, 24, 0.7);
    margin: 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Footer (result + logo) ── */
.tc-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Result block ── */
.tc-result {
    background: rgba(0, 255, 174, 0.08);
    border: 1px solid rgba(0, 255, 174, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
}

.tc-result__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #00ffae;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tc-result__text {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #eef4f0;
    line-height: 1.45;
}

/* ── Company logo footer ── */
.tc-company-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 120, 88, 0.07);
    min-height: 44px;
}

.tc-company-logo img {
    max-height: 80px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
    filter: brightness(0);
    opacity: 0.45;
    transition: opacity 0.2s;
}

.tc-card:hover .tc-company-logo img {
    opacity: 0.7;
}

.tc-company-logo--lg img {
    max-height: 130px;
    max-width: 210px;
}

/* ── Arrow buttons ── */
.tc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0b100e;
    border: 1px solid rgba(0, 120, 88, 0.14);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eef4f0;
    box-shadow: 0 4px 16px rgba(4, 9, 7, 0.1);
    z-index: 2;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, opacity 0.2s;
}

.tc-btn:hover {
    background: #00ffae;
    color: #ffffff;
    box-shadow: 0 6px 22px rgba(0, 255, 174, 0.35);
}

.tc-btn:disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.tc-btn--prev { left: 0; }
.tc-btn--next { right: 0; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .tc-wrap {
        padding: 0 44px;
    }
}

@media (max-width: 640px) {
    .tc-wrap {
        padding: 0 36px;
    }

    .tc-btn {
        width: 36px;
        height: 36px;
    }

    .tc-title {
        font-size: 1rem;
    }

    .tc-avatar {
        width: 88px;
        height: 88px;
    }

    .tc-track {
        align-items: flex-start;
    }

    /* Exibe o texto completo dos depoimentos no mobile (sem corte por reticências) */
    .tc-quote {
        display: block;
        -webkit-line-clamp: unset;
        overflow: visible;
    }
}

/* ---------- old .section-heading override for system-preview-section ---------- */
.system-preview-section .section-heading {
    text-align: center;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.system-preview-section .section-heading h2 {
    color: #eef4f0;
}

.system-preview-section .section-heading p {
    color: rgba(14, 31, 24, 0.6);
}

.system-preview-section .section-tag {
    background: rgba(0, 255, 174, 0.12);
    color: #00c88a;
    border-color: rgba(0, 255, 174, 0.22);
}

.system-preview-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 16px;
    margin-top: 52px;
}

.system-preview-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(87, 245, 196, 0.1);
}

.system-preview-main img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.system-preview-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.system-preview-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(87, 245, 196, 0.08);
    flex: 1;
}

.system-preview-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.system-preview-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.system-preview-item-wide {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(87, 245, 196, 0.08);
}

.system-preview-item-wide img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 220px;
}

.system-preview-label {
    position: absolute;
    top: 10px;
    left: 12px;
    background: rgba(5, 8, 6, 0.75);
    backdrop-filter: blur(8px);
    color: rgba(245, 251, 248, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

/* ---------- SP-GRID (showcase de prints) ---------- */
.sp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 48px;
}

.sp-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(87, 245, 196, 0.1);
    background: #081510;
}

.sp-item img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.4s ease;
}

.sp-item:hover img {
    transform: scale(1.035);
}

.sp-item--wide {
    grid-column: span 2;
}

.sp-label {
    position: absolute;
    top: 10px;
    left: 12px;
    background: rgba(5, 8, 6, 0.75);
    backdrop-filter: blur(8px);
    color: rgba(245, 251, 248, 0.9);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

/* ---------- CRM CAROUSEL — carrossel de prints ---------- */
.crm-carousel {
    max-width: 1140px;
    margin: 52px auto 0;
    padding: 0 72px;
    position: relative;
}

.crm-carousel__inner {
    position: relative;
}

.crm-carousel__viewport {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 24px 72px rgba(4, 9, 7, 0.15);
}

.crm-carousel__track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.crm-carousel__slide {
    flex: 0 0 100%;
    position: relative;
    background: #081510;
    overflow: hidden;
}

.crm-carousel__slide img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    background: #0a1810;
    transition: transform 0.5s ease;
}

.crm-carousel__slide:hover img {
    transform: scale(1.02);
}

.crm-carousel__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 32px 28px;
    background: linear-gradient(to top, rgba(5, 8, 6, 0.82) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.crm-carousel__overlay span {
    color: #ffffff;
    font-family: "Sora", sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.crm-carousel__overlay small {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    font-weight: 400;
}

.crm-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0b100e;
    border: 1px solid rgba(0, 120, 88, 0.1);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(4, 9, 7, 0.12);
    z-index: 4;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    color: #eef4f0;
}

.crm-carousel__btn:hover {
    background: #57f5c3;
    color: #050806;
    box-shadow: 0 8px 28px rgba(87, 245, 196, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.crm-carousel__btn--prev {
    left: -26px;
}

.crm-carousel__btn--next {
    right: -26px;
}

.crm-carousel__dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 28px;
}

.crm-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 255, 174, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
}

.crm-carousel__dot.is-active {
    background: #00ffae;
    transform: scale(1.35);
}

/* ---------- SUPORTE — novos estilos de título ---------- */
.support-title {
    font-family: "Sora", sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.9rem);
    font-weight: 800;
    color: #e9f2ec;
    letter-spacing: -0.04em;
    margin: 0 0 12px;
    line-height: 1.2;
}

.support-subtitle {
    font-size: 0.95rem;
    color: rgba(230, 240, 236, 0.62);
    line-height: 1.65;
    margin: 0 0 32px;
}

.support-content > .section-tag {
    display: inline-block;
    margin-bottom: 16px;
}

/* ---------- PLANOS — header interno e feature list ---------- */
.plan-home-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 4px;
}

.plan-home-header h3 {
    margin: 4px 0 0;
    font-family: "Sora", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #e9f2ec;
}

.plan-home-header p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(230, 240, 236, 0.6);
}

.plan-home-card--featured .plan-home-header h3 {
    color: #f3f5f2;
}

.plan-home-card--featured .plan-home-header p {
    color: rgba(243, 245, 242, 0.7);
}

/* Feature list nos planos */
.plan-home-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    gap: 10px;
    flex: 1;
}

.plan-home-features li {
    font-size: 0.875rem;
    color: rgba(230, 240, 236, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.plan-home-features li svg {
    flex-shrink: 0;
    color: #00ffae;
}

.plan-home-card--featured .plan-home-features li {
    color: rgba(243, 245, 242, 0.85);
}

.plan-home-card--featured .plan-home-features li svg {
    color: #57f5c3;
}

/* button-bright e button-outline-dark para planos */
.button-bright {
    background: #57f5c3;
    color: #050806;
    border: 2px solid transparent;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.button-bright:hover {
    background: #37e0ac;
    color: #050806;
    box-shadow: 0 8px 28px rgba(87, 245, 196, 0.4);
    transform: translateY(-2px);
}

.button-outline-dark {
    background: transparent;
    color: #e9f2ec;
    border: 2px solid rgba(17, 35, 28, 0.25);
    font-weight: 700;
}

.button-outline-dark:hover {
    border-color: #00ffae;
    color: #00ffae;
    background: rgba(0, 255, 174, 0.06);
}

/* ---- Responsivo novas seções ---- */
@media (max-width: 900px) {
    .bsplit-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .bsplit-image {
        aspect-ratio: auto;
        max-height: 280px;
        order: -1;
    }

    .bsplit-content .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .system-preview-grid {
        grid-template-columns: 1fr;
    }

    .system-preview-side {
        flex-direction: row;
    }

    .system-preview-row {
        grid-template-columns: 1fr;
    }

    .system-preview-item-wide img {
        max-height: 160px;
    }

    .sp-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sp-item--wide {
        grid-column: span 2;
    }

    .sp-split {
        grid-template-columns: 1fr;
        gap: 0;
        min-height: unset;
    }

    .sp-split__text {
        padding: 40px 24px;
    }

    .crm-carousel {
        padding: 0 40px;
    }

    .crm-carousel__btn--prev {
        left: -20px;
    }

    .crm-carousel__btn--next {
        right: -20px;
    }
}

/* ── SISTEMA EM AÇÃO — correções mobile ≤ 768 px ───────────── */
@media (max-width: 768px) {
    .system-preview-section {
        padding: 64px 0;
    }

    .system-preview-section .sp-split {
        display: grid;
        grid-template-columns: 1fr;
        gap: 36px;
        min-height: unset; /* remove o min-height definido no breakpoint 900px */
    }

    .system-preview-section .sp-split__text {
        padding: 0;
        max-width: 100%;
    }

    /* Garante que o container do slider corte corretamente os slides vizinhos */
    .system-preview-section .sp-split__visual {
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    /* Track deve ter exatamente a largura do container para que 100% = 1 slide */
    .system-preview-section .sp-image-track {
        width: 100%;
    }

    /* Cada slide ocupa exatamente a largura do container */
    .system-preview-section .sp-image-slide {
        flex: 0 0 100%;
        padding: 6px;
        align-items: flex-start;
        overflow: hidden; /* impede que conteúdo interno vaze para o slide seguinte */
        box-sizing: border-box;
    }

    .system-preview-section .sp-image-slide img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: contain;
        display: block;
    }

    /* Mockup landscape (pipeline): limita à largura disponível */
    .system-preview-section .ui-mockup--landscape,
    .system-preview-section .ui-mockup--reports-double {
        max-width: 100%;
        width: 100%;
    }

    /* Kanban: esconde as 2 últimas colunas no mobile para evitar
       conteúdo excessivamente espremido e "corte" visual */
    .system-preview-section .uim-body--kanban .uim-col:nth-child(4),
    .system-preview-section .uim-body--kanban .uim-col:nth-child(5) {
        display: none;
    }

    /* Com 3 colunas, dá mais espaço a cada uma */
    .system-preview-section .uim-body--kanban .uim-col {
        flex: 1 1 0;
        min-width: 0;
    }
}

@media (max-width: 640px) {
    .bsplit-content .benefits-grid {
        grid-template-columns: 1fr;
    }

    .bsplit-content .benefit-card {
        flex-direction: column;
        gap: 10px;
    }

    .system-preview-side {
        flex-direction: column;
    }

    .sp-grid {
        grid-template-columns: 1fr;
    }

    .sp-item--wide {
        grid-column: span 1;
    }

    .sp-split__text h2 {
        font-size: 1.5rem;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }

    .support-card--solo {
        max-width: 100%;
    }

    .plans-home-grid {
        grid-template-columns: 1fr;
    }

    .crm-carousel {
        padding: 0 16px;
    }

    .crm-carousel__btn {
        width: 40px;
        height: 40px;
    }

    .crm-carousel__btn--prev {
        left: -8px;
    }

    .crm-carousel__btn--next {
        right: -8px;
    }
}

/* ---------- CLIENTS TICKER CAROUSEL (clientes.html) ---------- */
.clients-carousel {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.clients-carousel__track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: clientsTicker 28s linear infinite;
}

.clients-carousel:hover .clients-carousel__track {
    animation-play-state: paused;
}

.clients-carousel__item {
    flex-shrink: 0;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(230, 240, 236, 0.55);
    background: rgba(18, 22, 20, 0.82);
    border: 1px solid rgba(0, 120, 88, 0.1);
    border-radius: 8px;
    padding: 9px 18px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.clients-carousel__item:hover {
    color: #00ffae;
    background: rgba(0, 255, 174, 0.08);
    border-color: rgba(0, 255, 174, 0.3);
}

@keyframes clientsTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---------- TESTIMONIALS CAROUSEL (tc-carousel) ---------- */
.tc-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 8px;
}

.tc-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.tc-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tc-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.tc-slide .testimonial-card {
    margin: 0;
    border-radius: 20px;
}

.tc-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.tc-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(0, 120, 88, 0.15);
    background: rgba(18, 22, 20, 0.85);
    color: #e9f2ec;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.tc-btn:hover {
    background: #00ffae;
    border-color: #00ffae;
    color: #fff;
}

.tc-dots {
    display: flex;
    gap: 8px;
}

.tc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 120, 88, 0.18);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.tc-dot--active {
    background: #00ffae;
    transform: scale(1.25);
}

/* ============================================================
   BAM Tec — alinhamento de paleta ao restante do site.
   Verde neon #00FFAE sobre preto; superfícies escuras.
   ============================================================ */
:root{
  --bg:#050505;
  --surface:#0b100e;
  --brand:#57F5C3;
  --line:rgba(255,255,255,0.12);
}
/* barras do menu hambúrguer permanecem claras sobre o header escuro */
.menu-toggle span{background:#ffffff}

/* ============================================================
   Correção de legibilidade — títulos em branco no tema escuro
   ============================================================ */
.section-heading h2,
.final-cta-box h2,
.decision-box h2,
.integrations-text h2,
.hero-copy h1,
.tc-title,
.pricing-card h3,
.plan-home-card h3,
.plan-home-card .plan-home-header h3,
.plan-home-card--featured .plan-home-header h3{
  color:#ffffff !important;
}
.pricing-card .plan-description,
.plan-home-card > p,
.plan-home-card--featured p,
.plan-home-card .plan-home-header p,
.mini-pipeline-column header,
.pipeline-sim-column header,
.plan-tag.dark{
  color:#b9c5be !important;
}

/* ============================================================
   Texto PRETO sobre fundos verdes vivos (contraste)
   ============================================================ */
.button-primary,
.button-primary:hover,
.button-primary span,
.billing-option.is-active,
.billing-option.is-active .billing-discount-badge{
  color:#050505 !important;
}

/* valores/rotulos da tabela comparativa em branco (mantém ✓/✗ e categorias) */
.comparison-table tbody tr:not(.category-row) td{ color:#ffffff !important; }

/* FAQ — perguntas e respostas em texto claro */
.faq-question{ color:#ffffff !important; }
.faq-answer p{ color:#e7efe9 !important; }
