* {
    box-sizing: border-box;
}

:root {
    --blue-950: #042c53;
    --blue-900: #073b68;
    --blue-850: #0f4c82;
    --blue-800: #185fa5;
    --blue-700: #185fa5;
    --blue-600: #2675bd;
    --blue-500: #4b9ad7;
    --blue-300: #b7daf4;
    --sky-400: #6db8e8;
    --amber-700: #a85e00;
    --amber-600: #d98600;
    --amber-500: #f2a900;
    --amber-400: #ffc44d;
    --amber-soft: #fff4d8;
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-200: #e2e8f0;
    --blue-soft: #edf6fc;
    --brand-border: #c6deef;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--blue-900);
    background: #f7fafc;
    letter-spacing: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, var(--blue-950), var(--blue-900) 58%, var(--blue-800));
    border-bottom: 1px solid rgba(183, 218, 244, 0.18);
    backdrop-filter: blur(10px);
}

.header-container,
.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.header-container {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    width: 190px;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-link {
    position: relative;
    color: #dbeafe;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color .18s ease;
}

.nav-link::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 2px;
    background: var(--amber-500);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn-login,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn-login::after,
.btn-primary::after,
.btn-secondary::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 70%);
    content: "";
    transform: translateX(-120%);
    transition: transform .45s ease;
}

.btn-login:hover::after,
.btn-primary:hover::after,
.btn-secondary:hover::after {
    transform: translateX(120%);
}

.btn-login,
.btn-primary {
    border: 1px solid var(--amber-600);
    background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
    color: var(--blue-950);
    box-shadow: 0 14px 28px rgba(217, 134, 0, 0.24);
}

.btn-secondary {
    border: 1px solid rgba(24, 95, 165, 0.34);
    background: #ffffff;
    color: var(--blue-950);
}

.btn-login:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-1px);
}

.btn-login:hover,
.btn-primary:hover {
    background: linear-gradient(180deg, var(--amber-500), var(--amber-600));
    border-color: var(--amber-700);
    box-shadow: 0 18px 34px rgba(168, 94, 0, 0.3);
}

.btn-secondary:hover {
    border-color: var(--blue-800);
    background: #f7fbff;
    box-shadow: 0 10px 22px rgba(4, 44, 83, 0.1);
}

.btn-login:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.nav-link:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid rgba(242, 169, 0, 0.42);
    outline-offset: 3px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(183, 218, 244, 0.34);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.hero,
.page-hero,
.seo-section,
.process-section,
.blog-preview,
.contact-layout,
.profile-section,
.blog-index,
.blog-articles,
.pricing-section,
.proof-section,
.sales-outcomes,
.sales-conversion-section,
.sales-bases-section,
.sales-strip,
.band {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.hero {
    min-height: calc(100vh - 150px);
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 44px;
    align-items: center;
    padding: 68px 0 54px;
    position: relative;
}

.home-hero::before {
    position: absolute;
    top: 68px;
    bottom: 54px;
    left: -24px;
    width: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--amber-500), var(--blue-800));
    content: "";
}

.hero-copy h1,
.page-hero h1 {
    margin: 12px 0 18px;
    color: var(--blue-950);
    font-size: 52px;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero-copy h1,
.section-heading h2 {
    text-wrap: balance;
}

.hero-copy p,
.page-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--slate-600);
    font-size: 19px;
    line-height: 1.7;
}

.eyebrow {
    display: inline-flex;
    color: var(--blue-800);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-visual {
    min-width: 0;
}

.dashboard-shell {
    border: 1px solid rgba(183, 218, 244, 0.42);
    border-radius: 8px;
    background: var(--blue-950);
    color: #ffffff;
    box-shadow: 0 24px 50px rgba(4, 44, 83, 0.24);
    overflow: hidden;
    transition: transform .24s ease, box-shadow .24s ease;
}

.dashboard-shell:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 68px rgba(4, 44, 83, 0.32);
}

.dashboard-bar {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.dashboard-bar span {
    color: var(--amber-400);
    font-weight: 800;
}

.dashboard-bar strong {
    font-size: 22px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px;
}

.metric-panel,
.chart-panel,
.list-panel {
    border: 1px solid rgba(226, 232, 240, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.metric-panel {
    padding: 18px;
}

.metric-panel small {
    display: block;
    margin-bottom: 10px;
    color: #cbd5e1;
}

.metric-panel strong {
    color: #f8fafc;
    font-size: 34px;
}

.accent-blue strong {
    color: var(--amber-400);
}

.chart-panel {
    grid-column: 1 / -1;
    min-height: 170px;
    display: flex;
    align-items: end;
    gap: 14px;
    padding: 18px;
}

.chart-panel span {
    flex: 1;
    min-height: 32px;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--blue-500), var(--blue-800));
    animation: barRise .9s ease both;
}

.chart-panel span:nth-child(even) {
    background: linear-gradient(180deg, var(--amber-400), var(--amber-600));
}

.list-panel {
    grid-column: 1 / -1;
    display: grid;
    gap: 10px;
    padding: 18px;
}

.list-panel span {
    height: 10px;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.7);
}

.list-panel span:nth-child(2) {
    width: 78%;
}

.list-panel span:nth-child(3) {
    width: 56%;
}

.seo-section,
.process-section,
.blog-preview,
.band {
    padding: 76px 0;
}

.band {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100% - 1180px) / 2));
    padding-right: max(20px, calc((100% - 1180px) / 2));
    background: linear-gradient(180deg, #ffffff, var(--blue-soft));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading h2,
.profile-copy h2,
.contact-info h2,
.contact-form h2 {
    margin: 10px 0 0;
    color: var(--blue-950);
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: 0;
}

.two-column-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.two-column-text p,
.benefit-list p,
.feature p,
.steps p,
.faq-grid p,
.blog-card p,
.profile-copy p,
.contact-info p,
.blog-post p {
    color: var(--slate-600);
    font-size: 16px;
    line-height: 1.7;
}

.feature-grid,
.blog-cards,
.faq-grid,
.blog-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature,
.blog-card,
.faq-grid article,
.steps article,
.contact-methods article,
.profile-card,
.contact-form,
.blog-post {
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    background: #ffffff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature:hover,
.blog-card:hover,
.faq-grid article:hover,
.steps article:hover,
.contact-methods article:hover,
.pricing-card:hover,
.proof-card:hover,
.module-pill:hover {
    transform: translateY(-6px);
    border-color: rgba(242, 169, 0, 0.66);
    box-shadow: 0 18px 36px rgba(4, 44, 83, 0.12);
}

.feature,
.blog-card,
.faq-grid article,
.steps article,
.blog-post {
    padding: 24px;
}

.feature-tag,
.blog-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--blue-800);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.feature h3,
.steps h3,
.faq-grid h3,
.blog-card h2,
.blog-card h3,
.blog-post h2 {
    margin: 0 0 10px;
    color: var(--blue-950);
    line-height: 1.25;
    letter-spacing: 0;
}

.feature h3,
.steps h3,
.faq-grid h3,
.blog-card h3 {
    font-size: 21px;
}

.blog-card h2 {
    font-size: 22px;
}

.feature p,
.steps p,
.faq-grid p,
.blog-card p,
.blog-post p {
    margin: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.steps strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid rgba(242, 169, 0, 0.46);
    background: var(--amber-soft);
    color: var(--blue-950);
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.benefit-list p {
    margin: 0;
    padding: 18px;
    border-left: 4px solid var(--amber-500);
    background: #ffffff;
    transition: transform .18s ease, box-shadow .18s ease;
}

.benefit-list p:hover {
    transform: translateX(5px);
    box-shadow: 0 14px 26px rgba(4, 44, 83, 0.1);
}

.blog-card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--amber-700);
    font-weight: 800;
    text-decoration: none;
}

.blog-card a:hover {
    text-decoration: underline;
}

.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 52px max(20px, calc((100% - 1180px) / 2));
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 48%, var(--blue-800));
    color: #ffffff;
}

.cta h2 {
    max-width: 760px;
    margin: 8px 0 8px;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: 0;
}

.cta p {
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
}

.cta .eyebrow {
    color: var(--amber-400);
}

.page-hero {
    padding: 76px 0 54px;
}

.page-hero h1 {
    max-width: 980px;
}

.profile-section,
.contact-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 28px;
    padding: 28px 0 76px;
    align-items: start;
}

.profile-card {
    padding: 28px;
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 48%, var(--blue-800));
    color: #ffffff;
}

.profile-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--amber-500);
    color: var(--blue-950);
    font-size: 26px;
    font-weight: 800;
}

.profile-card h2,
.profile-card p {
    margin: 0;
}

.profile-card p {
    margin-top: 8px;
    color: #cbd5e1;
}

.profile-copy {
    padding-top: 8px;
}

.contact-layout {
    grid-template-columns: 1fr 1fr;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-methods article {
    padding: 18px;
}

.contact-methods span,
.contact-form label {
    display: block;
    color: var(--blue-950);
    font-size: 14px;
    font-weight: 800;
}

.contact-methods a {
    display: inline-flex;
    margin-top: 8px;
    color: var(--amber-700);
    font-weight: 800;
    text-decoration: none;
}

.contact-methods p {
    margin: 8px 0 0;
}

.contact-form {
    padding: 26px;
}

.contact-form label {
    margin-top: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    color: var(--blue-900);
    font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--blue-800);
    outline: 3px solid rgba(242, 169, 0, 0.22);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    margin-top: 18px;
}

.blog-index {
    padding: 28px 0 46px;
}

.blog-articles {
    display: grid;
    gap: 22px;
    padding-bottom: 76px;
}

.blog-post {
    scroll-margin-top: 92px;
}

.blog-post h2 {
    font-size: 30px;
}

.blog-post p + p {
    margin-top: 14px;
}

.site-footer {
    background: var(--blue-950);
    color: #ffffff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 0;
}

.footer-container p {
    max-width: 460px;
    margin: 8px 0 0;
    color: #cbd5e1;
}

.footer-container nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: start;
}

.footer-container a {
    color: #e2e8f0;
    font-weight: 700;
    text-decoration: none;
}

.footer-container a:hover {
    color: var(--amber-400);
}

.footer-container > div:not(.footer-social) {
    order: 1;
}

.footer-social {
    order: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: flex-start;
    min-width: 210px;
}

.footer-container nav {
    order: 3;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #e2e8f0;
    line-height: 1;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.footer-social-link svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-social-youtube svg,
.footer-social-tiktok svg {
    fill: currentColor;
    stroke: none;
}

.footer-social-link span {
    font-size: 13px;
    font-weight: 800;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 196, 77, .55);
    background: rgba(255, 196, 77, .14);
    color: var(--amber-400);
}

@media (max-width: 760px) {
    .footer-social {
        width: 100%;
        min-width: 0;
        order: 2;
    }

    .footer-social-link {
        flex: 1 1 140px;
        justify-content: center;
    }
}

.footer-copy {
    padding: 16px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 14px;
    text-align: center;
}

.sales-page {
    background: #edf6fc;
}

.sales-hero {
    width: 100%;
    max-width: none;
    min-height: calc(100vh - 72px);
    padding: 84px max(20px, calc((100% - 1180px) / 2)) 76px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(4, 44, 83, 0.96), rgba(7, 59, 104, 0.94) 48%, rgba(24, 95, 165, 0.9)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 96px);
    overflow: hidden;
    isolation: isolate;
}

.sales-hero::before {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    content: "";
    opacity: .28;
    animation: salesGridShift 22s linear infinite;
}

.sales-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 196, 77, 0.12) 42%, transparent 62%);
    content: "";
    transform: translateX(-60%);
    animation: salesSweep 8s ease-in-out infinite;
}

.sales-hero .hero-copy h1 {
    max-width: 740px;
    color: #ffffff;
}

.sales-hero .hero-copy p {
    color: #dbeafe;
}

.sales-hero .eyebrow {
    color: var(--amber-400);
}

.sales-hero .btn-secondary {
    border-color: rgba(183, 218, 244, 0.45);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.sales-hero .btn-secondary:hover {
    border-color: rgba(255, 196, 77, 0.75);
    background: rgba(255, 255, 255, 0.14);
}

.sales-hero-points,
.sales-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sales-hero-points {
    margin-top: 22px;
}

.sales-hero-points span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border: 1px solid rgba(183, 218, 244, 0.32);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #edf6fc;
    font-size: 13px;
    font-weight: 800;
}

.sales-trust-row {
    max-width: 640px;
    margin-top: 26px;
}

.sales-trust-row div {
    flex: 1 1 160px;
    min-height: 86px;
    padding: 15px;
    border: 1px solid rgba(183, 218, 244, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.sales-trust-row strong,
.sales-trust-row span {
    display: block;
}

.sales-trust-row strong {
    color: var(--amber-400);
    font-size: 30px;
    line-height: 1;
}

.sales-trust-row span {
    margin-top: 7px;
    color: #dbeafe;
    font-size: 13px;
    font-weight: 700;
}

.sales-command-center {
    position: relative;
    min-height: 520px;
    padding: 18px;
    border: 1px solid rgba(183, 218, 244, 0.34);
    border-radius: 8px;
    background: rgba(4, 44, 83, 0.82);
    color: #ffffff;
    box-shadow: 0 32px 70px rgba(2, 20, 38, 0.38);
    overflow: hidden;
    animation: floatPanel 6s ease-in-out infinite;
}

.sales-command-center::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--amber-500), var(--blue-300));
    content: "";
    animation: salesAccentRun 4.8s linear infinite;
}

.command-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.command-topbar span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--blue-500);
}

.command-topbar span:nth-child(2) {
    background: var(--blue-300);
}

.command-topbar span:nth-child(3) {
    background: var(--amber-500);
}

.command-topbar strong {
    margin-left: auto;
    color: var(--amber-400);
}

.command-summary {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 12px;
    margin: 18px 0;
}

.command-summary div,
.board-column,
.command-footer {
    border: 1px solid rgba(183, 218, 244, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.command-summary div {
    padding: 18px;
}

.command-summary small {
    display: block;
    margin-bottom: 8px;
    color: #dbeafe;
    font-weight: 700;
}

.command-summary strong {
    color: #ffffff;
    font-size: 28px;
}

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

.board-column {
    min-height: 250px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 12px;
}

.board-column span {
    color: var(--blue-300);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.board-column em {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 10px;
    border-left: 3px solid var(--amber-500);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
    animation: cardPulse 4.6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.command-footer {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 14px;
}

.command-footer span {
    color: #dbeafe;
    font-size: 13px;
    font-weight: 800;
}

.progress-track {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.progress-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--blue-500), var(--amber-500));
    animation: pipelineGrow .9s ease both;
}

.sales-outcomes {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: -42px;
    padding-bottom: 34px;
}

.sales-stat,
.sales-problem-card,
.sales-solution-card,
.sales-base-card,
.sales-flow-grid article,
.sales-module-card {
    border-radius: 8px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sales-stat {
    min-height: 174px;
    padding: 22px;
    border: 1px solid rgba(24, 95, 165, 0.22);
    border-top: 4px solid var(--blue-800);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(4, 44, 83, 0.1);
}

.sales-stat:nth-child(2) {
    border-top-color: var(--blue-500);
}

.sales-stat:nth-child(3) {
    border-top-color: var(--amber-500);
}

.sales-stat span,
.sales-problem-card span,
.sales-solution-card span,
.sales-base-card span,
.sales-module-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--blue-800);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sales-stat strong {
    display: block;
    color: var(--blue-950);
    font-size: 20px;
    line-height: 1.25;
}

.sales-stat p {
    margin: 10px 0 0;
    color: var(--slate-600);
    line-height: 1.6;
}

.sales-conversion-section {
    padding: 76px 0;
}

.sales-conversion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.sales-problem-card,
.sales-solution-card {
    min-height: 330px;
    padding: 28px;
    border: 1px solid var(--brand-border);
}

.sales-problem-card {
    background: #ffffff;
}

.sales-solution-card {
    border-color: rgba(183, 218, 244, 0.28);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 44%, var(--blue-800));
    color: #ffffff;
    box-shadow: 0 24px 48px rgba(4, 44, 83, 0.18);
}

.sales-solution-card span,
.sales-solution-card h3 {
    color: #ffffff;
}

.sales-solution-card span {
    color: var(--amber-400);
}

.sales-problem-card h3,
.sales-solution-card h3,
.sales-module-card h3 {
    margin: 0 0 18px;
    font-size: 25px;
    line-height: 1.2;
}

.sales-problem-card h3,
.sales-module-card h3 {
    color: var(--blue-950);
}

.sales-problem-card ul,
.sales-solution-card ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sales-problem-card li,
.sales-solution-card li {
    position: relative;
    padding-left: 26px;
    line-height: 1.65;
}

.sales-problem-card li {
    color: var(--slate-600);
}

.sales-solution-card li {
    color: #dbeafe;
}

.sales-problem-card li::before,
.sales-solution-card li::before {
    position: absolute;
    left: 0;
    font-weight: 900;
}

.sales-problem-card li::before {
    color: var(--blue-600);
    content: "-";
}

.sales-solution-card li::before {
    color: var(--amber-400);
    content: "\2713";
}

.sales-bases-section {
    padding: 0 0 76px;
}

.sales-bases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sales-base-card {
    position: relative;
    min-height: 280px;
    padding: 26px;
    border: 1px solid rgba(24, 95, 165, 0.22);
    background: #ffffff;
    overflow: hidden;
}

.sales-base-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-800), var(--blue-500));
    content: "";
}

.sales-base-card.featured {
    border-color: rgba(183, 218, 244, 0.28);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 48%, var(--blue-800));
    color: #ffffff;
    box-shadow: 0 24px 48px rgba(4, 44, 83, 0.18);
}

.sales-base-card.featured::before {
    background: linear-gradient(90deg, var(--blue-500), var(--amber-500));
}

.sales-base-card h3 {
    margin: 0 0 12px;
    color: var(--blue-950);
    font-size: 24px;
    line-height: 1.22;
}

.sales-base-card p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.65;
}

.sales-base-card.featured span,
.sales-base-card.featured h3 {
    color: #ffffff;
}

.sales-base-card.featured span {
    color: var(--amber-400);
}

.sales-base-card.featured p {
    color: #dbeafe;
}

.sales-flow-section {
    width: 100%;
    max-width: none;
    padding: 76px 0;
    background:
        linear-gradient(135deg, rgba(4, 44, 83, 0.98), rgba(7, 59, 104, 0.96) 50%, rgba(24, 95, 165, 0.92)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 88px 88px;
    color: #ffffff;
}

.sales-flow-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.sales-flow-section .section-heading h2 {
    color: #ffffff;
}

.sales-flow-section .eyebrow {
    color: var(--amber-400);
}

.sales-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.sales-flow-grid article {
    min-height: 250px;
    padding: 24px;
    border: 1px solid rgba(183, 218, 244, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.sales-flow-grid article:hover,
.sales-stat:hover,
.sales-problem-card:hover,
.sales-solution-card:hover,
.sales-base-card:hover,
.sales-module-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 196, 77, 0.64);
    box-shadow: 0 20px 40px rgba(4, 44, 83, 0.16);
}

.sales-flow-grid strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: var(--amber-500);
    color: var(--blue-950);
}

.sales-flow-grid h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 21px;
}

.sales-flow-grid p {
    margin: 0;
    color: #dbeafe;
    line-height: 1.65;
}

.sales-page .pricing-section {
    padding-top: 86px;
}

.sales-page .pricing-card {
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(4, 44, 83, 0.08);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sales-page .pricing-card::after {
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-800), var(--blue-500));
    content: "";
}

.sales-page .pricing-card.featured::after {
    background: linear-gradient(90deg, var(--blue-800), var(--amber-500));
}

.sales-modules-band {
    background:
        linear-gradient(180deg, #f7fbff, #edf6fc),
        linear-gradient(90deg, rgba(24, 95, 165, 0.08) 1px, transparent 1px);
}

.sales-module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sales-module-card {
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--brand-border);
    background: #ffffff;
}

.sales-module-card p {
    margin: 0;
    color: var(--slate-600);
    line-height: 1.65;
}

.sales-final-offer {
    border-color: rgba(183, 218, 244, 0.3);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 48%, var(--blue-800));
    color: #ffffff;
}

.sales-final-offer .sales-panel h2 {
    color: #ffffff;
}

.sales-final-offer .sales-panel p {
    color: #dbeafe;
}

.sales-final-offer .eyebrow {
    color: var(--amber-400);
}

.sales-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    margin-bottom: 54px;
    border: 1px solid rgba(24, 95, 165, 0.28);
    border-radius: 8px;
    background: linear-gradient(135deg, #ffffff, var(--blue-soft));
    box-shadow: 0 18px 36px rgba(4, 44, 83, 0.1);
}

.sales-strip {
    border-top: 4px solid var(--amber-500);
}

.sales-strip.sales-final-offer {
    border-color: rgba(183, 218, 244, 0.3);
    border-top: 4px solid var(--amber-500);
    background: linear-gradient(135deg, var(--blue-950), var(--blue-900) 48%, var(--blue-800));
    color: #ffffff;
}

.sales-panel h2 {
    margin: 10px 0 8px;
    color: var(--blue-950);
    font-size: 30px;
    line-height: 1.18;
}

.sales-panel p {
    max-width: 720px;
    margin: 0;
    color: var(--slate-600);
    line-height: 1.7;
}

.sales-dashboard {
    padding: 22px;
    border: 1px solid rgba(183, 218, 244, 0.42);
    border-radius: 8px;
    background: var(--blue-950);
    color: #ffffff;
    box-shadow: 0 26px 54px rgba(4, 44, 83, 0.26);
    transition: transform .24s ease, box-shadow .24s ease;
}

.sales-dashboard:hover {
    transform: translateY(-6px);
    box-shadow: 0 36px 72px rgba(4, 44, 83, 0.34);
}

.sales-dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.sales-dashboard-header span {
    color: var(--amber-400);
    font-weight: 800;
}

.sales-dashboard-header strong {
    color: #ffffff;
    font-size: 24px;
}

.pipeline-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: center;
    margin-top: 15px;
}

.pipeline-row span {
    color: #dbeafe;
    font-size: 14px;
}

.pipeline-row i {
    display: block;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue-500), var(--amber-500));
    animation: pipelineGrow .9s ease both;
}

.sales-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.sales-kpis div {
    padding: 16px;
    border: 1px solid rgba(226, 232, 240, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.sales-kpis small,
.sales-kpis strong {
    display: block;
}

.sales-kpis small {
    margin-bottom: 8px;
    color: #cbd5e1;
}

.sales-kpis strong {
    color: var(--amber-400);
    font-size: 28px;
}

.pricing-section,
.proof-section {
    padding: 76px 0;
}

.billing-toggle {
    display: inline-flex;
    gap: 6px;
    margin: 0 0 24px;
    padding: 5px;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    background: #ffffff;
}

.billing-toggle button {
    min-width: 100px;
    min-height: 38px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: var(--blue-900);
    font-weight: 800;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.billing-toggle button:hover {
    transform: translateY(-1px);
}

.billing-toggle button.active {
    background: var(--amber-500);
    color: var(--blue-950);
}

.pricing-grid,
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.pricing-card,
.proof-card {
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    background: #ffffff;
}

.pricing-card {
    position: relative;
    padding: 26px;
}

.pricing-card.featured {
    border-color: rgba(242, 169, 0, 0.7);
    background: linear-gradient(180deg, #ffffff, var(--blue-soft));
    box-shadow: 0 20px 44px rgba(4, 44, 83, 0.14);
}

.pricing-card.featured::before {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--amber-500);
    color: var(--blue-950);
    content: "Recomendado";
    font-size: 12px;
    font-weight: 900;
}

.plan-label {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--blue-800);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-card h2 {
    max-width: 330px;
    margin: 0 0 18px;
    color: var(--blue-950);
    font-size: 25px;
    line-height: 1.2;
}

.price {
    display: flex;
    align-items: end;
    gap: 8px;
    margin-bottom: 14px;
}

.price strong {
    color: var(--blue-800);
    font-size: 42px;
    line-height: 1;
}

.price small {
    color: var(--slate-600);
    font-weight: 700;
}

.pricing-card p,
.proof-card p {
    color: var(--slate-600);
    line-height: 1.7;
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    position: relative;
    padding-left: 24px;
    color: var(--blue-900);
}

.pricing-card li::before {
    position: absolute;
    left: 0;
    color: var(--amber-600);
    content: "\2713";
    font-weight: 900;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
}

.module-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.module-pill {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 11px 15px;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    background: #ffffff;
    color: var(--blue-950);
    font-weight: 800;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.proof-card {
    padding: 24px;
}

.proof-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--blue-950);
    font-size: 21px;
}

.reveal-item {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes barRise {
    from {
        transform: scaleY(.18);
        transform-origin: bottom;
    }
    to {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

@keyframes pipelineGrow {
    from {
        transform: scaleX(.16);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

@keyframes salesGridShift {
    from {
        background-position: 0 0, 0 0;
    }
    to {
        background-position: 72px 0, 0 72px;
    }
}

@keyframes salesSweep {
    0%, 34% {
        transform: translateX(-70%);
        opacity: .15;
    }
    54% {
        transform: translateX(42%);
        opacity: 1;
    }
    100% {
        transform: translateX(78%);
        opacity: 0;
    }
}

@keyframes floatPanel {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes salesAccentRun {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 240px 0;
    }
}

@keyframes cardPulse {
    0%, 100% {
        transform: translateY(0);
        background: rgba(255, 255, 255, 0.12);
    }
    50% {
        transform: translateY(-4px);
        background: rgba(255, 255, 255, 0.18);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sales-hero::before,
    .sales-hero::after,
    .sales-command-center,
    .sales-command-center::before,
    .board-column em,
    .pipeline-row i,
    .progress-track i,
    .chart-panel span,
    .reveal-item {
        animation: none;
        transition: none;
    }
}

.question-capture-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
    gap: clamp(36px, 6vw, 86px);
    align-items: center;
    width: min(100% - 28px, 1520px);
    margin: clamp(54px, 7vw, 96px) auto;
    padding: clamp(34px, 5vw, 72px);
    overflow: hidden;
    border: 1px solid rgba(183, 218, 244, .78);
    border-radius: 22px;
    background:
        radial-gradient(circle at 3% 8%, rgba(255, 196, 77, .18), transparent 24rem),
        linear-gradient(135deg, #042c53, #07568d 57%, #087a77);
    box-shadow: 0 34px 90px rgba(4, 44, 83, .2);
}

.question-capture-section::after {
    position: absolute;
    right: -130px;
    bottom: -160px;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 54px rgba(255, 255, 255, .035), 0 0 0 108px rgba(255, 255, 255, .025);
    content: "";
    pointer-events: none;
}

.question-capture-copy,
.question-capture-card {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.question-capture-copy .eyebrow {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .1);
    color: #ffffff;
}

.question-capture-copy h2 {
    max-width: 620px;
    margin: 16px 0;
    color: #ffffff;
    font-size: clamp(36px, 4.6vw, 62px);
    line-height: 1.02;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.question-capture-copy > p {
    max-width: 620px;
    margin: 0;
    color: #d9eaf6;
    font-size: 17px;
    line-height: 1.7;
}

.question-capture-benefits {
    display: grid;
    gap: 12px;
    margin-top: 30px;
}

.question-capture-benefits article {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 560px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 13px;
    background: rgba(255, 255, 255, .075);
    backdrop-filter: blur(10px);
}

.question-capture-benefits article > span {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 196, 77, .16);
    color: #ffc44d;
}

.question-capture-benefits svg {
    width: 20px;
}

.question-capture-benefits strong,
.question-capture-benefits small {
    display: block;
}

.question-capture-benefits strong {
    color: #ffffff;
    font-size: 14px;
}

.question-capture-benefits small {
    margin-top: 4px;
    color: #c7dfef;
    font-size: 12px;
    line-height: 1.45;
}

.question-capture-card {
    padding: clamp(25px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    background: rgba(255, 255, 255, .985);
    box-shadow: 0 30px 70px rgba(2, 20, 38, .28);
}

.question-capture-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.question-capture-card-head > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(135deg, #edf6fc, #d7ecfa);
    color: #0a69ad;
}

.question-capture-card-head svg {
    width: 23px;
}

.question-capture-card-head small,
.question-capture-card-head h3 {
    display: block;
}

.question-capture-card-head small {
    color: #0a69ad;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.question-capture-card-head h3 {
    margin: 4px 0 0;
    color: #052f56;
    font-size: 27px;
}

.question-capture-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.question-capture-fields label {
    min-width: 0;
}

.question-capture-fields label > span:first-child {
    display: block;
    margin-bottom: 7px;
    color: #263e56;
    font-size: 12px;
    font-weight: 800;
}

.question-capture-fields em {
    color: #dc2626;
    font-style: normal;
}

.question-capture-fields .is-wide {
    grid-column: 1 / -1;
}

.question-input {
    position: relative;
    display: block;
}

.question-input > svg {
    position: absolute;
    top: 15px;
    left: 14px;
    z-index: 1;
    width: 18px;
    height: 18px;
    color: #6a8298;
    pointer-events: none;
}

.question-input input,
.question-input textarea,
.question-input select {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 13px 14px 13px 44px;
    border: 1px solid #c7d7e3;
    border-radius: 11px;
    outline: 0;
    background: #f9fbfd;
    color: #0f2942;
    font: inherit;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.question-input input {
    min-height: 50px;
}

.question-input select {
    min-height: 50px;
    cursor: pointer;
}

.question-input textarea {
    min-height: 124px;
    resize: vertical;
    line-height: 1.55;
}

.question-input input:focus,
.question-input textarea:focus,
.question-input select:focus {
    border-color: #2677bc;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(38, 119, 188, .12);
}

.question-capture-consent {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 16px;
    color: #52657a;
    font-size: 11px;
    line-height: 1.5;
}

.question-capture-consent input {
    width: 17px;
    height: 17px;
    margin: 0;
    flex: 0 0 auto;
    accent-color: #185fa5;
}

.question-capture-consent a {
    color: #0a69ad;
    font-weight: 800;
}

.question-capture-fields label > span:first-child small {
    color: #74879a;
    font-size: 11px;
    font-style: normal;
    font-weight: 700;
}

.question-capture-submit {
    width: 100%;
    min-height: 55px;
    margin-top: 18px;
    justify-content: center;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 900;
}

.question-capture-submit:disabled {
    cursor: wait;
    opacity: .7;
    transform: none;
}

.question-capture-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 12px 0 0;
    color: #718196;
    font-size: 10px;
    line-height: 1.45;
    text-align: center;
}

.question-capture-note svg {
    width: 14px;
    flex: 0 0 auto;
}

.question-capture-feedback {
    margin-bottom: 17px;
    padding: 12px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #f8fafc;
    color: #40566c;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.question-capture-feedback.is-success {
    border-color: #9ad9c3;
    background: #effcf6;
    color: #087454;
}

.question-capture-feedback.is-error {
    border-color: #fecaca;
    background: #fff1f2;
    color: #be123c;
}

.question-capture-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 1000px) {
    .question-capture-section {
        grid-template-columns: 1fr;
    }

    .question-capture-copy {
        text-align: center;
    }

    .question-capture-copy h2,
    .question-capture-copy > p,
    .question-capture-benefits article {
        margin-right: auto;
        margin-left: auto;
    }

    .question-capture-benefits {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
        text-align: left;
    }
}

@media (max-width: 620px) {
    .home-page .mobile-sticky-cta {
        display: none;
    }

    .question-capture-section {
        width: min(100% - 20px, 1520px);
        padding: 30px 16px 16px;
        border-radius: 18px;
    }

    .question-capture-copy h2 {
        font-size: 34px;
    }

    .question-capture-copy > p {
        font-size: 15px;
    }

    .question-capture-benefits article {
        align-items: flex-start;
    }

    .question-capture-card {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .question-capture-fields {
        grid-template-columns: 1fr;
    }

    .question-capture-fields .is-wide {
        grid-column: auto;
    }
}

/* Conversão, agenda e conteúdo institucional */
.schedule-fields {
    padding: 16px;
    margin: 18px 0 0;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #f8fbff;
}

.schedule-fields legend {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 7px;
    color: #042c53;
    font-weight: 900;
}

.schedule-fields legend svg {
    width: 18px;
    color: #185fa5;
}

.schedule-fields legend span {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.schedule-fields > small {
    display: block;
    margin-top: 9px;
    color: #64748b;
    line-height: 1.45;
}

.form-alert.success a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: #06664a;
    font-weight: 900;
}

.form-alert.success a svg {
    width: 17px;
}

.use-cases-section,
.plan-comparison-section,
.legal-content {
    width: min(100% - 28px, 1520px);
    margin: 0 auto;
    padding: clamp(58px, 6vw, 94px) clamp(22px, 3vw, 56px);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.use-case-grid article {
    padding: 24px;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.use-case-grid article:hover {
    border-color: #185fa5;
    background: linear-gradient(145deg, #ffffff, #edf6fc);
    box-shadow: 0 26px 60px rgba(4,44,83,.14);
    transform: translateY(-6px);
}

.use-case-grid small {
    color: #185fa5;
    font-weight: 900;
    text-transform: uppercase;
}

.use-case-grid h3 {
    margin: 10px 0;
    color: #042c53;
    font-size: 22px;
}

.use-case-grid p {
    color: #475569;
    line-height: 1.65;
}

.use-case-grid blockquote {
    padding: 13px;
    margin: 14px 0;
    border-left: 3px solid #f2a900;
    background: #fffaf0;
    color: #334155;
    font-style: italic;
    line-height: 1.55;
}

.use-case-grid strong {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #087f5b;
}

.use-case-grid strong svg {
    width: 18px;
}

.use-case-note {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 12px;
}

.plan-comparison-section {
    border-radius: 8px;
    background: #ffffff;
}

.plan-table-wrap {
    overflow-x: auto;
    border: 1px solid #c6deef;
    border-radius: 8px;
}

.plan-comparison {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}

.plan-comparison th,
.plan-comparison td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.plan-comparison thead th {
    background: #042c53;
    color: #ffffff;
}

.plan-comparison thead th:first-child,
.plan-comparison tbody th {
    text-align: left;
}

.plan-comparison tbody th {
    color: #334155;
}

.plan-comparison tbody tr:hover {
    background: #edf6fc;
}

.plan-comparison td svg {
    width: 20px;
    margin: auto;
    color: #09936f;
}

.plan-comparison td svg[data-lucide="minus"] {
    color: #94a3b8;
}

.product-demo-dialog {
    width: min(900px, calc(100% - 28px));
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 38px 110px rgba(2,20,38,.4);
    overflow: hidden;
    z-index: 6001;
}

.product-demo-dialog::backdrop {
    background: rgba(3,31,60,.78);
}

.product-demo-shell > header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-bottom: 1px solid #dbe8f2;
    background: linear-gradient(135deg, #edf6fc, #ffffff 62%, #fff4d8);
}

.product-demo-shell h2 {
    margin: 8px 0 0;
    color: #031f3c;
}

.product-demo-shell header button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #ffffff;
    color: #042c53;
    cursor: pointer;
}

.product-demo-screen {
    position: relative;
    min-height: 430px;
    padding: 28px;
    background: linear-gradient(145deg, #042c53, #185fa5 60%, #087f5b);
    overflow: hidden;
}

.demo-progress {
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    overflow: hidden;
}

.demo-progress i {
    display: block;
    height: 100%;
    background: #ffc44d;
    animation: demoProgress 16s linear infinite;
}

.demo-scenes {
    position: relative;
    min-height: 340px;
}

.demo-scenes article {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #ffffff;
    text-align: center;
    opacity: 0;
    animation: demoScene 16s infinite;
    animation-delay: calc(var(--scene) * 4s);
}

.demo-scenes article > span {
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    color: #ffc44d;
}

.demo-scenes article > span svg {
    width: 46px;
    height: 46px;
}

.demo-scenes strong {
    font-size: clamp(26px, 4vw, 42px);
}

.demo-scenes p {
    max-width: 580px;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.6;
}

.product-demo-shell > footer {
    display: flex;
    justify-content: flex-end;
    padding: 16px 24px;
}

.cookie-banner {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 5500;
    width: min(100% - 36px, 1080px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    background: #042c53;
    color: #ffffff;
    box-shadow: 0 26px 70px rgba(2,20,38,.35);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong,
.cookie-banner p {
    display: block;
}

.cookie-banner p {
    margin: 5px 0 0;
    color: #dbeafe;
    font-size: 13px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    flex: 0 0 auto;
}

.cookie-actions > a {
    color: #ffffff;
    font-weight: 800;
}

.footer-cookie-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #e2e8f0;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.footer-cookie-button:hover {
    color: #ffc44d;
}

.mobile-sticky-cta {
    display: none;
}

.legal-content {
    max-width: 980px;
    margin-bottom: 70px;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #ffffff;
}

.legal-content h2 {
    margin: 30px 0 8px;
    color: #042c53;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #475569;
    line-height: 1.75;
}

@keyframes demoProgress {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes demoScene {
    0%, 3% { opacity: 0; transform: translateY(10px); }
    8%, 22% { opacity: 1; transform: translateY(0); }
    25%, 100% { opacity: 0; transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .use-case-grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .use-cases-section,
    .plan-comparison-section,
    .legal-content {
        width: min(100% - 20px, 1520px);
    }

    .mobile-sticky-cta {
        position: fixed;
        right: 10px;
        bottom: 10px;
        left: 10px;
        z-index: 5200;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: 1px solid #d98600;
        border-radius: 8px;
        background: linear-gradient(180deg, #ffc44d, #f2a900);
        color: #042c53;
        font-weight: 900;
        text-decoration: none;
        box-shadow: 0 18px 38px rgba(2,20,38,.25);
    }

    .mobile-sticky-cta svg {
        width: 18px;
    }

    .site-footer {
        padding-bottom: 66px;
    }

    .cookie-banner {
        right: 10px;
        bottom: 68px;
        left: 10px;
        width: auto;
        gap: 12px;
        padding: 13px;
    }

    .cookie-banner p {
        line-height: 1.35;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .cookie-actions > a {
        grid-column: 1 / -1;
    }

    .cookie-actions .btn-primary,
    .cookie-actions .btn-secondary {
        width: 100%;
        min-width: 0;
        padding: 9px 8px;
        white-space: normal;
        line-height: 1.2;
    }

    .product-demo-dialog {
        width: 100%;
        max-height: 100svh;
        height: 100svh;
        border-radius: 0;
    }

    .product-demo-screen {
        min-height: calc(100svh - 190px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .demo-scenes article {
        position: relative;
        display: none;
        animation: none;
    }

    .demo-scenes article:first-child {
        display: flex;
        opacity: 1;
    }

    .demo-progress i {
        width: 100%;
        animation: none;
    }
}

@media (max-width: 980px) {
    .hero,
    .two-column-text,
    .profile-section,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .blog-cards,
    .faq-grid,
    .blog-index,
    .steps,
    .benefit-list,
    .pricing-grid,
    .proof-grid,
    .sales-outcomes,
    .sales-flow-grid,
    .sales-bases-grid,
    .sales-module-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero.sales-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-top: 64px;
    }

    .sales-conversion-grid {
        grid-template-columns: 1fr;
    }

    .sales-board {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        min-height: auto;
        padding-top: 48px;
    }

    .home-hero::before {
        left: -10px;
    }
}

@media (max-width: 760px) {
    .header-container,
    .footer-container,
    .hero,
    .page-hero,
    .seo-section,
    .process-section,
    .blog-preview,
    .contact-layout,
    .profile-section,
    .blog-index,
    .blog-articles,
    .pricing-section,
    .proof-section,
    .sales-outcomes,
    .sales-conversion-section,
    .sales-bases-section,
    .sales-strip {
        width: min(100% - 28px, 1180px);
    }

    .header-container {
        min-height: 66px;
    }

    .logo-link img {
        width: 146px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: 66px;
        right: 14px;
        left: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(183, 218, 244, 0.26);
        border-radius: 8px;
        background: var(--blue-950);
        box-shadow: 0 18px 40px rgba(2, 20, 38, 0.28);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link,
    .btn-login {
        width: 100%;
        justify-content: flex-start;
        padding: 12px;
        min-height: 42px;
        box-shadow: none;
    }

    .btn-login {
        margin-top: 8px;
        justify-content: center;
    }

    .hero {
        padding: 42px 0 32px;
        gap: 28px;
    }

    .home-hero::before {
        top: 42px;
        bottom: 32px;
        left: -8px;
        width: 4px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 36px;
        line-height: 1.12;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 17px;
    }

    .section-heading h2,
    .profile-copy h2,
    .contact-info h2,
    .contact-form h2,
    .cta h2 {
        font-size: 28px;
    }

    .feature-grid,
    .blog-cards,
    .faq-grid,
    .blog-index,
    .steps,
    .benefit-list,
    .pricing-grid,
    .proof-grid,
    .sales-outcomes,
    .sales-flow-grid,
    .sales-bases-grid,
    .sales-module-grid,
    .sales-board,
    .command-summary {
        grid-template-columns: 1fr;
    }

    .sales-hero {
        width: 100%;
        padding: 50px 14px 42px;
    }

    .sales-outcomes {
        margin-top: 0;
        padding-top: 24px;
    }

    .sales-command-center,
    .sales-problem-card,
    .sales-solution-card,
    .sales-base-card,
    .sales-flow-grid article,
    .sales-module-card {
        min-height: auto;
    }

    .sales-flow-inner {
        width: min(100% - 28px, 1180px);
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .chart-panel,
    .list-panel {
        grid-column: auto;
    }

    .seo-section,
    .process-section,
    .blog-preview,
    .pricing-section,
    .proof-section,
    .band {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .page-hero {
        padding: 52px 0 30px;
    }

    .profile-section,
    .contact-layout {
        padding-bottom: 52px;
    }

    .cta,
    .sales-strip,
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta .btn-primary,
    .sales-strip .btn-primary {
        width: 100%;
    }

    .pipeline-row,
    .sales-kpis {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .header-container,
    .footer-container,
    .hero,
    .page-hero,
    .seo-section,
    .process-section,
    .blog-preview,
    .contact-layout,
    .profile-section,
    .blog-index,
    .blog-articles,
    .pricing-section,
    .proof-section,
    .sales-outcomes,
    .sales-conversion-section,
    .sales-bases-section,
    .sales-strip {
        width: min(100% - 24px, 1180px);
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: 31px;
    }

    .hero-copy p,
    .page-hero p {
        font-size: 16px;
        line-height: 1.58;
    }

    .hero-actions,
    .sales-hero-points,
    .sales-trust-row,
    .module-cloud {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .sales-hero-points span,
    .module-pill {
        width: 100%;
    }

    .dashboard-bar,
    .sales-dashboard-header,
    .command-topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-grid,
    .sales-kpis,
    .command-summary,
    .sales-board {
        gap: 10px;
    }

    .dashboard-bar strong,
    .sales-dashboard-header strong,
    .command-topbar strong {
        font-size: 18px;
    }

    .section-heading h2,
    .profile-copy h2,
    .contact-info h2,
    .contact-form h2,
    .cta h2,
    .sales-panel h2 {
        font-size: 24px;
    }

    .feature,
    .blog-card,
    .faq-grid article,
    .steps article,
    .blog-post,
    .pricing-card,
    .proof-card,
    .sales-problem-card,
    .sales-solution-card,
    .sales-base-card,
    .sales-module-card {
        padding: 18px;
    }

    .sales-strip,
    .cta {
        padding-left: 18px;
        padding-right: 18px;
    }
}

@media (max-width: 380px) {
    .hero-copy h1,
    .page-hero h1 {
        font-size: 28px;
    }

    .btn-login,
    .btn-primary,
    .btn-secondary,
    .billing-toggle button {
        width: 100%;
        min-width: 0;
    }

    .billing-toggle {
        width: 100%;
        flex-direction: column;
    }
}

/* Modernizacao visual Orçaprojetos */
.public-page {
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 196, 77, .22), transparent 30%),
        radial-gradient(circle at 88% 2%, rgba(75, 154, 215, .22), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 38%, #f5f9fc 100%);
}

.site-header {
    background:
        linear-gradient(115deg, rgba(4, 44, 83, .96), rgba(24, 95, 165, .92) 52%, rgba(9, 147, 111, .88)),
        radial-gradient(circle at 12% 0%, rgba(255, 196, 77, .2), transparent 34%);
    box-shadow: 0 14px 36px rgba(4, 44, 83, .18);
}

.hero {
    width: min(1240px, calc(100% - 40px));
    margin-top: 24px;
    padding: 76px clamp(20px, 4vw, 54px);
    border: 1px solid rgba(198, 222, 239, .72);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.96), rgba(237,246,252,.88)),
        radial-gradient(circle at 78% 22%, rgba(255,196,77,.22), transparent 28%),
        radial-gradient(circle at 20% 88%, rgba(24,95,165,.16), transparent 30%);
    box-shadow: 0 28px 70px rgba(4, 44, 83, .14);
}

.home-hero::before {
    left: 0;
    top: 28px;
    bottom: 28px;
    width: 7px;
    background: linear-gradient(180deg, #ffc44d, #4b9ad7, #09936f);
}

.hero-copy h1,
.page-hero h1 {
    color: var(--blue-950);
}

.eyebrow {
    padding: 7px 11px;
    border: 1px solid rgba(24, 95, 165, .16);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(237,246,252,.76));
    color: var(--blue-800);
}

.dashboard-shell {
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(4,44,83,.98), rgba(24,95,165,.9) 48%, rgba(9,147,111,.82)),
        radial-gradient(circle at 12% 0%, rgba(255,196,77,.24), transparent 36%);
    box-shadow: 0 34px 80px rgba(4, 44, 83, .28);
}

.dashboard-bar,
.metric-panel,
.chart-panel,
.list-panel {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
}

.band {
    background:
        linear-gradient(180deg, rgba(255,255,255,.98), rgba(237,246,252,.94)),
        radial-gradient(circle at 0% 0%, rgba(255,196,77,.18), transparent 28%),
        radial-gradient(circle at 100% 16%, rgba(9,147,111,.13), transparent 30%);
}

.feature,
.blog-card,
.faq-grid article,
.steps article,
.contact-methods article,
.profile-card,
.contact-form,
.blog-post,
.pricing-card,
.proof-card,
.module-pill,
.sales-problem-card,
.sales-solution-card,
.sales-base-card,
.sales-flow-grid article,
.sales-module-card {
    border: 1px solid rgba(198, 222, 239, .78);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.9)),
        radial-gradient(circle at 100% 0%, rgba(255,196,77,.12), transparent 38%);
    box-shadow: 0 18px 42px rgba(4, 44, 83, .08);
}

.feature:hover,
.blog-card:hover,
.faq-grid article:hover,
.steps article:hover,
.contact-methods article:hover,
.pricing-card:hover,
.proof-card:hover,
.module-pill:hover,
.sales-problem-card:hover,
.sales-solution-card:hover,
.sales-base-card:hover,
.sales-flow-grid article:hover,
.sales-module-card:hover {
    border-color: rgba(24, 95, 165, .34);
    box-shadow: 0 26px 58px rgba(4, 44, 83, .15);
}

.feature-tag,
.blog-card span {
    padding: 6px 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(24,95,165,.1), rgba(255,196,77,.14));
}

.benefit-list p {
    border-left: 0;
    border: 1px solid rgba(198, 222, 239, .78);
    border-radius: 18px;
    background:
        linear-gradient(135deg, #ffffff, #f7fbff),
        radial-gradient(circle at 100% 0%, rgba(255,196,77,.13), transparent 30%);
    box-shadow: 0 14px 32px rgba(4, 44, 83, .07);
}

.sales-strip,
.sales-panel,
.cta {
    border-radius: 26px;
    background:
        linear-gradient(135deg, rgba(4,44,83,.96), rgba(24,95,165,.88) 58%, rgba(9,147,111,.82)),
        radial-gradient(circle at 86% 12%, rgba(255,196,77,.28), transparent 28%);
    box-shadow: 0 28px 68px rgba(4, 44, 83, .18);
}

.sales-strip .sales-panel {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.sales-strip .sales-panel h2,
.sales-strip h2,
.cta h2 {
    color: #ffffff;
}

.sales-strip .sales-panel p,
.sales-strip p,
.cta p {
    color: #dbeafe;
}

.sales-strip .eyebrow,
.cta .eyebrow {
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.12);
    color: #ffffff;
}

.page-hero,
.seo-section,
.process-section,
.blog-preview,
.contact-layout,
.profile-section,
.blog-index,
.blog-articles,
.pricing-section,
.proof-section,
.sales-outcomes,
.sales-conversion-section,
.sales-bases-section {
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,251,255,.86)),
        radial-gradient(circle at 100% 0%, rgba(75,154,215,.1), transparent 30%);
    box-shadow: 0 16px 42px rgba(4, 44, 83, .06);
}

/* Revisao da home: largura util e contraste */
.hero-copy h1,
.page-hero h1 {
    background: none;
    color: var(--blue-950);
}

.home-page main {
    width: 100%;
}

.header-container,
.footer-container {
    width: min(100% - 32px, 1520px);
}

.logo-link {
    gap: 10px;
    color: #ffffff;
    font-weight: 900;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 10px;
    background: linear-gradient(135deg, #ffc44d, #f2a900);
    color: #042c53;
    font-size: 20px;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(2,20,38,.2);
}

.logo-text {
    color: #ffffff;
    font-size: 20px;
    letter-spacing: 0;
}

.home-page .hero,
.home-page .seo-section,
.home-page .process-section,
.home-page .blog-preview,
.home-page .sales-strip,
.home-page .cta {
    width: min(100% - 28px, 1520px);
    max-width: none;
}

.home-page .hero {
    min-height: clamp(620px, calc(100vh - 96px), 820px);
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(28px, 4vw, 72px);
    margin-top: 16px;
    padding: clamp(44px, 5vw, 86px) clamp(24px, 4vw, 70px);
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(239,247,253,.94)),
        radial-gradient(circle at 84% 16%, rgba(255,196,77,.24), transparent 30%),
        radial-gradient(circle at 18% 88%, rgba(24,95,165,.14), transparent 36%);
}

.home-page .hero-copy {
    max-width: 780px;
    opacity: 1;
    transform: none;
}

.home-page .reveal-item {
    opacity: 1;
    transform: none;
}

.home-page .hero-copy h1 {
    color: #031f3c;
    font-size: 56px;
    line-height: 1.03;
}

.home-page .hero-copy p,
.home-page .two-column-text p,
.home-page .benefit-list p,
.home-page .feature p,
.home-page .steps p,
.home-page .faq-grid p,
.home-page .blog-card p {
    color: #334155;
}

.home-page .hero-copy p {
    max-width: 760px;
    font-size: 20px;
}

.home-page .hero-visual {
    align-self: stretch;
    display: flex;
    align-items: center;
    opacity: 1;
    transform: none;
}

.home-page .dashboard-shell {
    width: 100%;
    min-height: 520px;
}

.home-page .dashboard-grid {
    min-height: 410px;
    align-content: stretch;
}

.home-page .section-heading {
    max-width: 1040px;
}

.home-page .section-heading h2 {
    color: #031f3c;
}

.home-page .seo-section,
.home-page .process-section,
.home-page .blog-preview {
    padding: clamp(46px, 5vw, 82px) clamp(24px, 4vw, 68px);
}

.home-page .band {
    width: 100%;
    max-width: none;
    padding-left: clamp(18px, 3vw, 56px);
    padding-right: clamp(18px, 3vw, 56px);
}

.home-page .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.home-page .feature,
.home-page .blog-card,
.home-page .faq-grid article,
.home-page .steps article,
.home-page .benefit-list p {
    background:
        linear-gradient(180deg, #ffffff, #f8fbff),
        radial-gradient(circle at 100% 0%, rgba(255,196,77,.14), transparent 32%);
}

.home-page .feature h3,
.home-page .steps h3,
.home-page .faq-grid h3,
.home-page .blog-card h3 {
    color: #042c53;
}

.home-page .sales-strip,
.home-page .cta {
    padding: clamp(34px, 4vw, 58px) clamp(24px, 4vw, 68px);
}

@media (max-width: 1180px) {
    .home-page .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-page .hero {
        grid-template-columns: 1fr;
    }

    .home-page .hero-visual {
        align-self: auto;
    }
}

@media (max-width: 760px) {
    .home-page .hero,
    .home-page .seo-section,
    .home-page .process-section,
    .home-page .blog-preview,
    .home-page .sales-strip,
    .home-page .cta {
        width: min(100% - 20px, 1520px);
        padding-left: 18px;
        padding-right: 18px;
    }

    .home-page .hero-copy h1 {
        font-size: 36px;
    }

    .home-page .feature-grid {
        grid-template-columns: 1fr;
    }

    .home-page .dashboard-shell {
        min-height: auto;
    }
}

/* Revisao global das paginas publicas */
.public-page {
    color: #0f172a;
}

.public-page .reveal-item {
    opacity: 1;
    transform: none;
}

.public-page .hero:not(.sales-hero),
.public-page .page-hero,
.public-page .seo-section,
.public-page .process-section,
.public-page .blog-preview,
.public-page .contact-layout,
.public-page .profile-section,
.public-page .blog-index,
.public-page .blog-articles,
.public-page .pricing-section,
.public-page .proof-section,
.public-page .sales-outcomes,
.public-page .sales-conversion-section,
.public-page .sales-bases-section,
.public-page .sales-modules-band,
.public-page .sales-strip,
.public-page .cta {
    width: min(100% - 28px, 1520px);
    max-width: none;
}

.public-page .page-hero,
.public-page .seo-section,
.public-page .process-section,
.public-page .blog-preview,
.public-page .pricing-section,
.public-page .proof-section,
.public-page .sales-conversion-section,
.public-page .sales-bases-section,
.public-page .sales-modules-band,
.public-page .blog-articles,
.public-page .contact-layout,
.public-page .profile-section {
    padding-left: clamp(22px, 3vw, 56px);
    padding-right: clamp(22px, 3vw, 56px);
}

.public-page .section-heading {
    max-width: 1040px;
}

.public-page .hero-copy h1,
.public-page .page-hero h1,
.public-page .section-heading h2,
.public-page .profile-copy h2,
.public-page .contact-info h2,
.public-page .contact-form h2,
.public-page .blog-post h2,
.public-page .pricing-card h2,
.public-page .sales-panel h2 {
    background: none;
    color: #031f3c;
}

.public-page .hero-copy p,
.public-page .page-hero p,
.public-page .two-column-text p,
.public-page .benefit-list p,
.public-page .feature p,
.public-page .steps p,
.public-page .faq-grid p,
.public-page .blog-card p,
.public-page .blog-post p,
.public-page .profile-copy p,
.public-page .contact-info p,
.public-page .pricing-card p,
.public-page .pricing-card li,
.public-page .proof-card p,
.public-page .sales-stat p,
.public-page .sales-problem-card p,
.public-page .sales-solution-card p,
.public-page .sales-base-card p,
.public-page .sales-module-card p {
    color: #334155;
}

.public-page .feature,
.public-page .blog-card,
.public-page .faq-grid article,
.public-page .steps article,
.public-page .blog-post,
.public-page .pricing-card,
.public-page .proof-card,
.public-page .sales-stat,
.public-page .sales-problem-card,
.public-page .sales-solution-card,
.public-page .sales-base-card,
.public-page .sales-flow-grid article,
.public-page .sales-module-card,
.public-page .contact-methods article,
.public-page .contact-form,
.public-page .profile-card {
    border-radius: 20px;
    background:
        linear-gradient(180deg, #ffffff, #f8fbff),
        radial-gradient(circle at 100% 0%, rgba(255,196,77,.12), transparent 34%);
}

.public-page .sales-hero,
.public-page .sales-final-offer,
.public-page .sales-final-offer .sales-panel,
.public-page .sales-strip,
.public-page .cta,
.public-page .profile-card {
    color: #ffffff;
}

.public-page .sales-hero .hero-copy h1,
.public-page .sales-final-offer h2,
.public-page .sales-strip h2,
.public-page .cta h2,
.public-page .profile-card h2,
.public-page .profile-card p {
    color: #ffffff;
}

.public-page .sales-hero .hero-copy p,
.public-page .sales-final-offer p,
.public-page .sales-strip p,
.public-page .cta p {
    color: #dbeafe;
}

.public-page.sales-page .sales-hero {
    width: min(100% - 28px, 1520px);
    max-width: none;
    min-height: clamp(660px, calc(100vh - 96px), 860px);
    margin: 16px auto 0;
    padding: clamp(44px, 5vw, 86px) clamp(24px, 4vw, 70px);
    border: 1px solid rgba(183, 218, 244, .28);
    border-radius: 28px;
    background:
        linear-gradient(120deg, rgba(4, 44, 83, .97), rgba(7, 59, 104, .94) 48%, rgba(9, 147, 111, .88)),
        radial-gradient(circle at 88% 12%, rgba(255, 196, 77, .22), transparent 30%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 96px);
    box-shadow: 0 28px 70px rgba(4, 44, 83, .22);
    color: #ffffff;
}

.public-page.sales-page .sales-hero .hero-copy h1 {
    background: none;
    color: #ffffff;
}

.public-page.sales-page .sales-hero .hero-copy p,
.public-page.sales-page .sales-hero-points span,
.public-page.sales-page .sales-trust-row span {
    color: #dbeafe;
}

.public-page.sales-page .sales-hero .btn-secondary {
    border-color: rgba(255,255,255,.32);
    background: rgba(255,255,255,.1);
    color: #ffffff;
}

.public-page.sales-page .sales-hero .hero-copy,
.public-page.sales-page .sales-hero .hero-visual {
    opacity: 1;
    transform: none;
}

@media (max-width: 760px) {
    .public-page .hero:not(.sales-hero),
    .public-page .page-hero,
    .public-page .seo-section,
    .public-page .process-section,
    .public-page .blog-preview,
    .public-page .contact-layout,
    .public-page .profile-section,
    .public-page .blog-index,
    .public-page .blog-articles,
    .public-page .pricing-section,
    .public-page .proof-section,
    .public-page .sales-outcomes,
    .public-page .sales-conversion-section,
    .public-page .sales-bases-section,
    .public-page .sales-modules-band,
    .public-page .sales-strip,
    .public-page .cta {
        width: min(100% - 20px, 1520px);
    }
}

/* Contraste final e animacao dos cards publicos */
.public-page .profile-card {
    background:
        linear-gradient(135deg, #042c53, #185fa5 58%, #09936f),
        radial-gradient(circle at 100% 0%, rgba(255,196,77,.22), transparent 34%);
    color: #ffffff;
}

.public-page .profile-card h2,
.public-page .profile-card p {
    color: #ffffff;
}

.public-page .sales-problem-card h3,
.public-page .sales-solution-card h3,
.public-page .sales-base-card h3,
.public-page .sales-module-card h3,
.public-page .sales-stat strong,
.public-page .proof-card strong,
.public-page .pricing-card h2,
.public-page .pricing-card strong {
    color: #042c53;
}

.public-page .sales-problem-card p,
.public-page .sales-solution-card p,
.public-page .sales-base-card p,
.public-page .sales-module-card p,
.public-page .sales-problem-card li,
.public-page .sales-solution-card li,
.public-page .pricing-card li,
.public-page .proof-card p {
    color: #334155;
}

.public-page .sales-base-card.featured,
.public-page .sales-base-card.featured h3,
.public-page .sales-base-card.featured p,
.public-page .sales-base-card.featured span {
    color: #ffffff;
}

.public-page .feature,
.public-page .blog-card,
.public-page .faq-grid article,
.public-page .steps article,
.public-page .blog-post,
.public-page .pricing-card,
.public-page .proof-card,
.public-page .sales-stat,
.public-page .sales-problem-card,
.public-page .sales-solution-card,
.public-page .sales-base-card,
.public-page .sales-flow-grid article,
.public-page .sales-module-card,
.public-page .contact-methods article,
.public-page .contact-form,
.public-page .benefit-list p,
.public-page .module-pill {
    position: relative;
    overflow: hidden;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease,
        background .22s ease,
        color .22s ease;
    animation: cardSoftEnter .45s ease both;
}

.public-page .feature::after,
.public-page .blog-card::after,
.public-page .faq-grid article::after,
.public-page .steps article::after,
.public-page .pricing-card::after,
.public-page .proof-card::after,
.public-page .sales-stat::after,
.public-page .sales-problem-card::after,
.public-page .sales-solution-card::after,
.public-page .sales-base-card::after,
.public-page .sales-module-card::after,
.public-page .contact-methods article::after,
.public-page .contact-form::after,
.public-page .benefit-list p::after,
.public-page .module-pill::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255,196,77,.16) 44%, rgba(24,95,165,.12) 72%, transparent 100%);
    content: "";
    opacity: 0;
    transform: translateX(-24%);
    transition: opacity .22s ease, transform .3s ease;
}

.public-page .feature:hover,
.public-page .blog-card:hover,
.public-page .faq-grid article:hover,
.public-page .steps article:hover,
.public-page .blog-post:hover,
.public-page .pricing-card:hover,
.public-page .proof-card:hover,
.public-page .sales-stat:hover,
.public-page .sales-problem-card:hover,
.public-page .sales-solution-card:hover,
.public-page .sales-base-card:hover,
.public-page .sales-flow-grid article:hover,
.public-page .sales-module-card:hover,
.public-page .contact-methods article:hover,
.public-page .contact-form:hover,
.public-page .benefit-list p:hover,
.public-page .module-pill:hover {
    border-color: rgba(24, 95, 165, .42);
    background:
        linear-gradient(135deg, #f7fbff, #edf6fc 58%, #fff8e8),
        radial-gradient(circle at 100% 0%, rgba(255,196,77,.18), transparent 34%);
    box-shadow: 0 30px 70px rgba(4, 44, 83, .16);
    transform: translateY(-7px);
}

.public-page .feature:hover::after,
.public-page .blog-card:hover::after,
.public-page .faq-grid article:hover::after,
.public-page .steps article:hover::after,
.public-page .pricing-card:hover::after,
.public-page .proof-card:hover::after,
.public-page .sales-stat:hover::after,
.public-page .sales-problem-card:hover::after,
.public-page .sales-solution-card:hover::after,
.public-page .sales-base-card:hover::after,
.public-page .sales-module-card:hover::after,
.public-page .contact-methods article:hover::after,
.public-page .contact-form:hover::after,
.public-page .benefit-list p:hover::after,
.public-page .module-pill:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.public-page .sales-base-card.featured:hover {
    background:
        linear-gradient(135deg, #042c53, #185fa5 58%, #09936f),
        radial-gradient(circle at 100% 0%, rgba(255,196,77,.24), transparent 34%);
}

@keyframes cardSoftEnter {
    from {
        opacity: .88;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Experiência pública do produto */
.public-page main {
    width: 100%;
}

.public-page svg {
    display: block;
}

.btn-primary,
.btn-secondary,
.btn-login,
.text-link,
.contact-email {
    gap: 8px;
}

.btn-primary svg,
.btn-secondary svg,
.btn-login svg,
.text-link svg,
.contact-email svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.product-hero {
    position: relative;
    min-height: calc(100svh - 112px);
    display: flex;
    align-items: center;
    width: 100%;
    isolation: isolate;
    overflow: hidden;
    background-color: #042c53;
    background-image: image-set(
        url("../assets/img/treinamento-orcaprojetos-banner.webp") type("image/webp"),
        url("../assets/img/treinamento-orcaprojetos-banner.png") type("image/png")
    );
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(3, 31, 60, .97) 0%, rgba(4, 44, 83, .9) 42%, rgba(4, 44, 83, .45) 72%, rgba(4, 44, 83, .2) 100%),
        linear-gradient(0deg, rgba(3, 31, 60, .66), transparent 54%);
}

.product-hero-content {
    width: min(100% - 40px, 1520px);
    margin: 0 auto;
    padding: clamp(54px, 7vw, 104px) 0;
}

.product-hero-content .eyebrow {
    border-color: rgba(255,255,255,.26);
    background: rgba(255,255,255,.12);
    color: #ffffff;
}

.product-hero h1 {
    max-width: 850px;
    margin: 18px 0;
    color: #ffffff;
    font-size: clamp(44px, 5.6vw, 82px);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

.product-hero p {
    max-width: 700px;
    margin: 0;
    color: #e6f1fb;
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 1.6;
}

.btn-on-dark {
    border-color: rgba(255,255,255,.46);
    background: rgba(255,255,255,.12);
    color: #ffffff;
    backdrop-filter: blur(12px);
}

.btn-on-dark:hover {
    border-color: #ffffff;
    background: rgba(255,255,255,.2);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 34px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.hero-proof svg {
    width: 18px;
    color: #ffc44d;
}

.hero-scroll {
    position: absolute;
    right: max(20px, calc((100% - 1520px) / 2));
    bottom: 24px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.36);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(4,44,83,.42);
}

.hero-scroll svg {
    width: 20px;
}

.commercial-proof-strip,
.buyer-diagnostic-section,
.commercial-comparison-section {
    width: min(100% - 28px, 1520px);
    margin: 0 auto;
}

.commercial-proof-strip {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: -42px;
}

.commercial-proof-strip article {
    display: flex;
    gap: 14px;
    min-height: 132px;
    padding: 22px;
    border: 1px solid rgba(183,218,244,.86);
    border-radius: 8px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 24px 60px rgba(4,44,83,.14);
    backdrop-filter: blur(12px);
}

.commercial-proof-strip strong {
    display: block;
    margin-bottom: 7px;
    color: #031f3c;
    font-size: 18px;
}

.commercial-proof-strip p {
    margin: 0;
    color: #475569;
    line-height: 1.55;
}

.buyer-diagnostic-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: clamp(22px, 4vw, 52px);
    align-items: stretch;
    padding: clamp(58px, 6vw, 92px) clamp(22px, 3vw, 56px);
}

.buyer-diagnostic-copy {
    align-self: center;
}

.buyer-diagnostic-copy h2 {
    margin: 14px 0 16px;
    color: #031f3c;
    font-size: clamp(32px, 4.5vw, 58px);
    line-height: 1.06;
    text-wrap: balance;
}

.buyer-diagnostic-copy p {
    max-width: 820px;
    margin: 0;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}

.diagnostic-checklist {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.diagnostic-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.45;
}

.diagnostic-checklist svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: #087f5b;
}

.buyer-diagnostic-panel {
    display: flex;
    flex-direction: column;
    padding: clamp(24px, 3vw, 36px);
    border: 1px solid rgba(255,196,77,.55);
    border-radius: 8px;
    background:
        radial-gradient(circle at top right, rgba(255,196,77,.22), transparent 38%),
        linear-gradient(145deg, #042c53, #073b68 62%, #0b6b78);
    color: #ffffff;
    box-shadow: 0 30px 70px rgba(4,44,83,.2);
}

.panel-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: #ffc44d;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.panel-label svg {
    width: 16px;
}

.buyer-diagnostic-panel h3 {
    margin: 18px 0 18px;
    color: #ffffff;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}

.buyer-diagnostic-panel ol {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.buyer-diagnostic-panel li {
    padding: 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.08);
}

.buyer-diagnostic-panel li strong,
.buyer-diagnostic-panel li span {
    display: block;
}

.buyer-diagnostic-panel li strong {
    margin-bottom: 5px;
    color: #ffffff;
}

.buyer-diagnostic-panel li span {
    color: #dbeafe;
    line-height: 1.45;
}

.buyer-diagnostic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
}

.buyer-diagnostic-actions .btn-secondary {
    border-color: rgba(255,255,255,.42);
    color: #ffffff;
    background: rgba(255,255,255,.1);
}

.commercial-comparison-section {
    padding: 0 clamp(22px, 3vw, 56px) clamp(58px, 6vw, 92px);
}

.commercial-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.commercial-comparison-grid article {
    padding: clamp(24px, 3vw, 34px);
    border-radius: 8px;
}

.commercial-comparison-grid article > span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.commercial-comparison-grid h3 {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.12;
}

.commercial-comparison-grid ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    line-height: 1.55;
}

.comparison-before {
    border: 1px solid #fed7aa;
    background: linear-gradient(145deg, #fff7ed, #ffffff);
}

.comparison-before > span {
    background: #ffedd5;
    color: #9a3412;
}

.comparison-before h3 {
    color: #7c2d12;
}

.comparison-before li {
    color: #7c2d12;
}

.comparison-after {
    border: 1px solid #b7daf4;
    background: linear-gradient(145deg, #edf6fc, #ffffff);
    box-shadow: 0 24px 60px rgba(4,44,83,.1);
}

.comparison-after > span {
    background: #dcfce7;
    color: #166534;
}

.comparison-after h3 {
    color: #031f3c;
}

.comparison-after li {
    color: #0f172a;
}

@media (max-width: 1020px) {
    .commercial-proof-strip,
    .buyer-diagnostic-section,
    .commercial-comparison-section {
        width: min(100% - 20px, 1520px);
    }

    .commercial-proof-strip,
    .buyer-diagnostic-section,
    .commercial-comparison-grid {
        grid-template-columns: 1fr;
    }

    .commercial-proof-strip {
        margin-top: 14px;
    }

    .buyer-diagnostic-section {
        padding-inline: 14px;
    }

    .commercial-comparison-section {
        padding-inline: 14px;
    }
}

@media (max-width: 620px) {
    .commercial-proof-strip article {
        min-height: 0;
        padding: 18px;
    }

    .buyer-diagnostic-section {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .buyer-diagnostic-copy h2 {
        font-size: 31px;
    }

    .buyer-diagnostic-panel {
        padding: 20px;
    }

    .buyer-diagnostic-actions .btn-primary,
    .buyer-diagnostic-actions .btn-secondary {
        width: 100%;
    }
}

.product-tour,
.segment-section,
.trust-section,
.pricing-preview,
.segment-hero,
.segment-benefits,
.segment-detail-band,
.segment-faq {
    width: min(100% - 28px, 1520px);
    margin: 0 auto;
}

.product-tour,
.segment-section,
.segment-benefits,
.segment-faq {
    padding: clamp(58px, 6vw, 94px) clamp(22px, 3vw, 56px);
}

.tour-heading {
    max-width: none !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
}

.tour-heading p {
    max-width: 430px;
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.tour-tabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    margin-bottom: 16px;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #edf6fc;
    overflow-x: auto;
}

.tour-tabs button {
    flex: 1 0 auto;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #334155;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.tour-tabs button svg {
    width: 18px;
}

.tour-tabs button.active {
    background: #ffffff;
    color: #042c53;
    box-shadow: 0 8px 22px rgba(4,44,83,.1);
}

.tour-tabs button:focus-visible {
    outline: 3px solid rgba(242,169,0,.4);
    outline-offset: -2px;
}

.tour-stage {
    min-height: 550px;
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(183,218,244,.7);
    border-radius: 8px;
    background: #f8fbff;
    box-shadow: 0 30px 80px rgba(4,44,83,.14);
}

.tour-sidebar {
    padding: 24px 18px;
    background: linear-gradient(180deg, #042c53, #073b68);
    color: #ffffff;
}

.tour-sidebar > strong {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 30px;
}

.tour-sidebar > strong span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: #ffc44d;
    color: #042c53;
}

.tour-sidebar nav {
    display: grid;
    gap: 6px;
}

.tour-sidebar nav span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 6px;
    color: #cbd5e1;
    font-size: 14px;
}

.tour-sidebar nav span.active {
    background: rgba(255,255,255,.12);
    color: #ffffff;
}

.tour-sidebar svg {
    width: 17px;
}

.tour-panel {
    padding: clamp(24px, 3vw, 46px);
    color: #0f172a;
    animation: tourPanelIn .28s ease both;
}

.tour-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-panel-header small {
    color: #185fa5;
    font-weight: 800;
    text-transform: uppercase;
}

.tour-panel-header h3 {
    margin: 7px 0 0;
    color: #031f3c;
    font-size: clamp(25px, 3vw, 38px);
}

.tour-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border: 1px solid #b7daf4;
    border-radius: 999px;
    background: #ffffff;
    color: #0f4c82;
    font-size: 13px;
    font-weight: 800;
}

.tour-status svg {
    width: 16px;
}

.pipeline-board {
    display: grid;
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    gap: 12px;
    overflow-x: auto;
}

.pipeline-board article {
    min-height: 330px;
    padding: 16px;
    border: 1px solid #dbe8f2;
    border-radius: 8px;
    background: #edf3f8;
}

.pipeline-board article > strong {
    display: block;
    margin-bottom: 15px;
    color: #334155;
    font-size: 13px;
}

.pipeline-board article > span {
    display: block;
    padding: 14px;
    margin-top: 10px;
    border-left: 3px solid #185fa5;
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(4,44,83,.07);
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
}

.pipeline-board article:nth-child(2) > span {
    border-left-color: #f2a900;
}

.pipeline-board article:nth-child(3) > span {
    border-left-color: #09936f;
}

.pipeline-board article:nth-child(4) > span {
    border-left-color: #7c3aed;
}

.budget-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 18px;
}

.budget-table {
    display: grid;
    grid-template-columns: minmax(200px, 1fr) 140px 140px;
    align-content: start;
    overflow: hidden;
    border: 1px solid #dbe8f2;
    border-radius: 8px;
    background: #ffffff;
}

.budget-table > * {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.budget-table > span {
    background: #edf6fc;
    color: #475569;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.budget-table > strong {
    color: #0f172a;
    font-size: 14px;
}

.budget-total {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 26px;
    border-radius: 8px;
    background: linear-gradient(145deg, #042c53, #185fa5 64%, #09936f);
    color: #ffffff;
}

.budget-total small,
.budget-total span {
    color: #dbeafe;
}

.budget-total strong {
    margin: 12px 0;
    color: #ffffff;
    font-size: 34px;
}

.schedule-preview {
    display: grid;
    gap: 14px;
}

.schedule-preview article {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) 90px;
    align-items: center;
    gap: 16px;
    padding: 19px;
    border: 1px solid #dbe8f2;
    border-radius: 8px;
    background: #ffffff;
}

.schedule-preview article > span {
    color: #0f172a;
    font-weight: 800;
}

.schedule-preview article > i {
    position: relative;
    height: 10px;
    border-radius: 999px;
    background: #e2e8f0;
    overflow: hidden;
}

.schedule-preview article > i::after {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--progress);
    border-radius: inherit;
    background: linear-gradient(90deg, #185fa5, #09936f);
    content: "";
}

.schedule-preview article > strong {
    color: #09936f;
    text-align: right;
}

.finance-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.finance-preview article {
    padding: 22px;
    border: 1px solid #dbe8f2;
    border-radius: 8px;
    background: #ffffff;
}

.finance-preview article small,
.finance-preview article span {
    display: block;
    color: #64748b;
}

.finance-preview article strong {
    display: block;
    margin: 11px 0;
    color: #031f3c;
    font-size: 27px;
}

.finance-preview .positive {
    color: #087f5b;
    font-weight: 800;
}

.finance-chart {
    grid-column: 1 / -1;
    height: 220px;
    display: flex;
    align-items: end;
    gap: 18px;
    padding: 26px;
    border: 1px solid #dbe8f2;
    border-radius: 8px;
    background: #ffffff;
}

.finance-chart i {
    flex: 1;
    height: 44%;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, #6db8e8, #185fa5);
}

.finance-chart i:nth-child(2) { height: 68%; }
.finance-chart i:nth-child(3) { height: 53%; }
.finance-chart i:nth-child(4) { height: 82%; background: linear-gradient(180deg, #ffc44d, #d98600); }
.finance-chart i:nth-child(5) { height: 74%; }
.finance-chart i:nth-child(6) { height: 92%; background: linear-gradient(180deg, #37c49a, #087f5b); }

.card-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 17px;
    border: 1px solid rgba(24,95,165,.16);
    border-radius: 8px;
    background: linear-gradient(145deg, #edf6fc, #ffffff);
    color: #185fa5;
    box-shadow: 0 10px 22px rgba(4,44,83,.08);
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.card-icon.small {
    width: 38px;
    height: 38px;
    margin: 0;
    flex: 0 0 auto;
}

.feature:hover .card-icon,
.commercial-proof-strip article:hover .card-icon,
.segment-card:hover .card-icon,
.trust-grid article:hover .card-icon,
.segment-benefit-grid article:hover .card-icon,
.faq-grid article:hover .card-icon,
.pricing-card:hover .card-icon,
.sales-module-card:hover .card-icon,
.sales-base-card:hover .card-icon {
    background: linear-gradient(145deg, #185fa5, #073b68);
    color: #ffffff;
    transform: rotate(-4deg) scale(1.05);
}

.feature,
.public-page .pricing-card,
.public-page .sales-module-card,
.public-page .sales-base-card,
.public-page .faq-grid article,
.public-page .steps article {
    border-radius: 8px;
}

.segment-section {
    border-radius: 8px;
    background: linear-gradient(135deg, #042c53, #073b68 62%, #087f5b);
}

.segment-section .section-heading h2,
.segment-section .eyebrow {
    color: #ffffff;
}

.segment-section .eyebrow {
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.1);
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.segment-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    background: rgba(255,255,255,.09);
    color: #ffffff;
    text-decoration: none;
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.segment-card .card-icon {
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.12);
    color: #ffc44d;
}

.segment-card h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 22px;
}

.segment-card p {
    margin: 0;
    color: #dbeafe;
    line-height: 1.65;
}

.segment-card strong {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 22px;
    color: #ffc44d;
}

.segment-card strong svg {
    width: 17px;
}

.segment-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,196,77,.7);
    background: rgba(255,255,255,.15);
}

.trust-section {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: clamp(30px, 5vw, 76px);
    align-items: center;
    padding: clamp(58px, 6vw, 94px) clamp(22px, 3vw, 56px);
}

.trust-copy h2 {
    margin: 12px 0 16px;
    color: #031f3c;
    font-size: clamp(30px, 4vw, 48px);
}

.trust-copy p {
    color: #475569;
    font-size: 17px;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: #185fa5;
    font-weight: 800;
    text-decoration: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.trust-grid article,
.segment-benefit-grid article {
    padding: 23px;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #ffffff;
    transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.trust-grid article:hover,
.segment-benefit-grid article:hover {
    transform: translateY(-6px);
    background: linear-gradient(145deg, #ffffff, #edf6fc);
    box-shadow: 0 24px 54px rgba(4,44,83,.13);
}

.trust-grid h3,
.segment-benefit-grid h3 {
    margin: 0 0 9px;
    color: #042c53;
}

.trust-grid p,
.segment-benefit-grid p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.pricing-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(36px, 4vw, 56px);
    border: 1px solid #b7daf4;
    border-radius: 8px;
    background: linear-gradient(135deg, #edf6fc, #ffffff 58%, #fff4d8);
}

.pricing-preview h2 {
    margin: 10px 0;
    color: #031f3c;
    font-size: clamp(28px, 3.4vw, 43px);
}

.pricing-preview p {
    margin: 0;
    color: #475569;
}

.pricing-preview-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

.pricing-preview-actions > span {
    color: #475569;
}

.pricing-preview-actions > span strong {
    display: block;
    color: #042c53;
    font-size: 24px;
}

.public-bonus-section {
    width: min(100% - 28px, 1520px);
    margin: clamp(58px, 7vw, 96px) auto;
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid #b7daf4;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(237,246,252,.98), rgba(255,255,255,.98) 54%, rgba(255,244,216,.96)),
        #ffffff;
    box-shadow: 0 24px 60px rgba(4,44,83,.1);
}

.sales-bonus-section {
    border-color: rgba(255,196,77,.45);
    background:
        linear-gradient(135deg, #042c53, #073b68 56%, #087f5b);
    box-shadow: 0 30px 70px rgba(4,44,83,.22);
}

.public-bonus-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.public-bonus-heading > div {
    max-width: 850px;
}

.public-bonus-heading h2 {
    margin: 12px 0 10px;
    color: #031f3c;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.08;
}

.public-bonus-heading p {
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.65;
}

.sales-bonus-section .public-bonus-heading h2 {
    color: #ffffff;
}

.sales-bonus-section .public-bonus-heading p {
    color: #dbeafe;
}

.bonus-kicker,
.bonus-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.bonus-kicker {
    color: #a85e00;
}

.bonus-kicker svg {
    width: 17px;
    height: 17px;
}

.sales-bonus-section .bonus-kicker {
    color: #ffc44d;
}

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

.public-bonus-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(4,44,83,.08);
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.public-bonus-card:hover {
    transform: translateY(-6px);
    border-color: #f2a900;
    background: linear-gradient(145deg, #ffffff, #fff8e8);
    box-shadow: 0 24px 50px rgba(4,44,83,.15);
}

.bonus-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.bonus-chip {
    padding: 6px 9px;
    border: 1px solid #f2c15b;
    border-radius: 999px;
    background: #fff4d8;
    color: #8a4e00;
}

.public-bonus-card small {
    display: block;
    color: #185fa5;
    font-weight: 900;
    text-transform: uppercase;
}

.public-bonus-card h3 {
    margin: 8px 0 10px;
    color: #042c53;
    font-size: 24px;
}

.public-bonus-card p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.public-bonus-card:hover .card-icon {
    background: linear-gradient(145deg, #185fa5, #073b68);
    color: #ffffff;
    transform: rotate(-4deg) scale(1.05);
}

.public-bonus-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 18px 0 0;
    color: #475569;
    font-size: 13px;
}

.sales-bonus-section .public-bonus-note {
    color: #dbeafe;
}

.public-bonus-note svg {
    width: 17px;
    flex: 0 0 auto;
}

.plan-bonus-box {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    margin: 0 0 20px;
    padding: 14px;
    border: 1px solid #efbd4d;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff8e8, #ffffff);
}

.plan-bonus-box strong {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8a4e00;
    font-size: 13px;
    text-transform: uppercase;
}

.plan-bonus-box strong svg {
    width: 17px;
}

.plan-bonus-box span {
    min-width: 0;
    padding: 7px;
    border-radius: 6px;
    background: #ffffff;
    color: #073b68;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

.public-bonus-mini {
    width: min(100% - 28px, 1180px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 50px auto 0;
    padding: 22px 24px;
    border: 1px solid rgba(255,196,77,.46);
    border-radius: 8px 8px 0 0;
    background: linear-gradient(135deg, #042c53, #185fa5 70%, #087f5b);
    color: #ffffff;
}

.public-bonus-mini > div {
    display: grid;
    gap: 8px;
}

.public-bonus-mini .bonus-kicker {
    color: #ffc44d;
}

.public-bonus-mini strong {
    font-size: clamp(18px, 2.4vw, 27px);
}

@media (max-width: 900px) {
    .public-bonus-heading,
    .public-bonus-mini {
        align-items: flex-start;
        flex-direction: column;
    }

    .public-bonus-grid {
        grid-template-columns: 1fr;
    }

    .public-bonus-mini .btn-primary {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .public-bonus-section {
        width: min(100% - 20px, 1520px);
        padding: 22px 16px;
    }

    .public-bonus-heading h2 {
        font-size: 30px;
    }

    .public-bonus-heading .btn-primary {
        width: 100%;
    }

    .public-bonus-card {
        padding: 19px;
    }

    .bonus-card-top {
        align-items: center;
    }

    .plan-bonus-box {
        grid-template-columns: 1fr;
    }

    .plan-bonus-box strong {
        grid-column: auto;
    }

    .public-bonus-mini {
        width: calc(100% - 20px);
        padding: 18px;
    }
}

.public-page.sales-page .sales-flow-section .section-heading h2 {
    color: #ffffff;
}

.public-page.sales-page .sales-flow-grid article {
    border: 1px solid rgba(183,218,244,.22);
    border-radius: 8px;
    background: rgba(255,255,255,.09);
}

.public-page.sales-page .sales-flow-grid h3 {
    color: #ffffff;
}

.public-page.sales-page .sales-flow-grid p {
    color: #dbeafe;
}

.public-page.sales-page .sales-flow-grid article:hover {
    border-color: rgba(255,196,77,.64);
    background: rgba(255,255,255,.14);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Contato integrado ao CRM */
.contact-hero {
    background: linear-gradient(135deg, #edf6fc, #ffffff 62%, #fff4d8);
}

.contact-info > .card-icon {
    width: 52px;
    height: 52px;
}

.contact-methods article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border-radius: 8px;
}

.contact-method-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--brand-border);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    color: #334155;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.contact-method-card > span:last-child {
    min-width: 0;
    display: block;
}

.contact-method-card strong,
.contact-method-card > span > span {
    display: block;
}

.contact-method-card strong {
    color: #042c53;
}

.contact-method-card > span > span {
    margin-top: 8px;
    color: #475569;
    line-height: 1.6;
}

.contact-method-card em {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: #185fa5;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.contact-method-card em svg {
    width: 16px;
}

.contact-method-card:hover,
.contact-method-card:focus-visible,
.contact-method-card.completed {
    border-color: #185fa5;
    background: linear-gradient(145deg, #ffffff, #edf6fc);
    box-shadow: 0 20px 44px rgba(4,44,83,.12);
    transform: translateY(-4px);
}

.contact-method-card:focus-visible {
    outline: 3px solid rgba(242,169,0,.35);
    outline-offset: 2px;
}

.contact-method-card.completed em {
    color: #087f5b;
}

.contact-methods article strong {
    color: #042c53;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    color: #185fa5;
    font-weight: 800;
    text-decoration: none;
}

.form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.form-heading .card-icon {
    margin: 0;
}

.form-heading small {
    color: #185fa5;
    font-weight: 800;
    text-transform: uppercase;
}

.form-heading h2 {
    margin: 3px 0 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
}

.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    margin-top: 18px;
    border: 1px solid;
    border-radius: 8px;
}

.form-alert svg {
    width: 20px;
    flex: 0 0 auto;
}

.form-alert strong,
.form-alert span {
    display: block;
}

.form-alert span {
    margin-top: 3px;
    font-size: 14px;
}

.form-alert.success {
    border-color: #96dfc8;
    background: #ecfdf5;
    color: #06664a;
}

.form-alert.error {
    border-color: #fecaca;
    background: #fff1f2;
    color: #9f1239;
}

.contact-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consent-field {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500 !important;
    line-height: 1.45;
}

.consent-field input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    flex: 0 0 auto;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 13px 0 0;
    color: #64748b !important;
    font-size: 12px;
}

.form-note svg {
    width: 15px;
}

/* Mapeamento do processo */
body.dialog-open {
    overflow: hidden;
}

.mapping-dialog {
    width: min(1040px, calc(100% - 28px));
    max-width: none;
    max-height: min(880px, calc(100svh - 28px));
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    box-shadow: 0 36px 100px rgba(2,20,38,.35);
    overflow: hidden;
    z-index: 6001;
}

.mapping-dialog::backdrop {
    background: rgba(3,31,60,.72);
}

.mapping-dialog[open] {
    animation: mappingDialogIn .2s ease both;
}

.mapping-dialog-shell {
    max-height: min(880px, calc(100svh - 28px));
    display: flex;
    flex-direction: column;
}

.mapping-dialog-header,
.mapping-dialog-actions {
    flex: 0 0 auto;
}

.mapping-dialog-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px 20px;
    border-bottom: 1px solid #dbe8f2;
    background: linear-gradient(135deg, #edf6fc, #ffffff 65%, #fff4d8);
}

.mapping-dialog-header h2 {
    margin: 9px 0 6px;
    color: #031f3c;
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;
}

.mapping-dialog-header p {
    margin: 0;
    color: #475569;
}

.mapping-close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #ffffff;
    color: #042c53;
    cursor: pointer;
}

.mapping-close:hover {
    border-color: #185fa5;
    background: #edf6fc;
}

.mapping-close svg {
    width: 20px;
}

.mapping-dialog-body {
    min-height: 0;
    padding: 24px 26px;
    overflow-y: auto;
}

.mapping-section {
    padding: 0;
    margin: 0;
    border: 0;
}

.mapping-section legend {
    margin-bottom: 14px;
    color: #042c53;
    font-size: 16px;
    font-weight: 900;
}

.mapping-stage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mapping-stage {
    position: relative;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.mapping-stage > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mapping-stage .card-icon {
    margin: 0 0 12px;
}

.mapping-stage strong,
.mapping-stage small {
    display: block;
}

.mapping-stage strong {
    color: #042c53;
}

.mapping-stage small {
    margin-top: 5px;
    color: #64748b;
    line-height: 1.4;
}

.mapping-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    padding: 4px;
    border: 1px solid #c6deef;
    border-radius: 50%;
    color: #ffffff;
    background: #ffffff;
    opacity: 0;
}

.mapping-stage:has(input:checked) {
    border-color: #185fa5;
    background: #edf6fc;
    box-shadow: 0 12px 28px rgba(4,44,83,.1);
    transform: translateY(-2px);
}

.mapping-stage:has(input:checked) .mapping-check {
    border-color: #185fa5;
    background: #185fa5;
    color: #ffffff;
    opacity: 1;
}

.mapping-stage:has(input:focus-visible) {
    outline: 3px solid rgba(242,169,0,.36);
    outline-offset: 2px;
}

.mapping-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}

.mapping-fields label {
    color: #042c53;
    font-size: 14px;
    font-weight: 800;
}

.mapping-fields select {
    width: 100%;
    min-height: 46px;
    margin-top: 7px;
    padding: 11px 12px;
    border: 1px solid #c6deef;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    font: inherit;
}

.mapping-fields select:focus {
    border-color: #185fa5;
    outline: 3px solid rgba(242,169,0,.22);
}

.mapping-preview {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    margin-top: 20px;
    border: 1px dashed #b7daf4;
    border-radius: 8px;
    background: #f8fbff;
    color: #64748b;
    line-height: 1.5;
}

.mapping-preview.has-data {
    border-style: solid;
    border-color: #96dfc8;
    background: #ecfdf5;
    color: #06664a;
}

.mapping-preview svg {
    width: 20px;
    flex: 0 0 auto;
}

.mapping-error {
    margin: 10px 0 0;
    color: #be123c;
    font-size: 13px;
    font-weight: 800;
}

.mapping-dialog-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 26px;
    border-top: 1px solid #dbe8f2;
    background: #ffffff;
}

@keyframes mappingDialogIn {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Páginas por segmento */
.segment-page {
    background: #f7fafc;
}

.segment-hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 72px);
    align-items: center;
    padding: clamp(48px, 6vw, 90px) clamp(22px, 4vw, 64px);
    border-radius: 8px;
    background: linear-gradient(135deg, #edf6fc, #ffffff 58%, #fff4d8);
}

.segment-hero h1 {
    margin: 14px 0 18px;
    color: #031f3c;
    font-size: clamp(39px, 5vw, 66px);
    line-height: 1.04;
    letter-spacing: 0;
}

.segment-hero p {
    margin: 0;
    color: #475569;
    font-size: 19px;
    line-height: 1.7;
}

.segment-hero-visual {
    position: relative;
    min-height: 430px;
    display: grid;
    place-items: center;
    padding: 36px;
    border-radius: 8px;
    background: linear-gradient(145deg, #042c53, #185fa5 62%, #087f5b);
    color: #ffffff;
    overflow: hidden;
}

.segment-main-icon {
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    color: #ffc44d;
}

.segment-main-icon svg {
    width: 48px;
    height: 48px;
}

.segment-flow {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    align-self: end;
}

.segment-flow article {
    padding: 12px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 7px;
    background: rgba(255,255,255,.09);
}

.segment-flow strong,
.segment-flow span {
    display: block;
}

.segment-flow strong {
    color: #ffc44d;
    font-size: 12px;
}

.segment-flow span {
    margin-top: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.segment-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.segment-detail-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: clamp(44px, 5vw, 72px);
    border-radius: 8px;
    background: linear-gradient(135deg, #042c53, #073b68 62%, #087f5b);
}

.segment-detail-band h2 {
    margin: 12px 0 16px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 46px);
}

.segment-detail-band p {
    margin: 0;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.7;
}

.segment-detail-band .eyebrow {
    color: #ffffff;
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.1);
}

.segment-detail-band ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.segment-detail-band li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(255,255,255,.09);
    color: #ffffff;
    font-weight: 700;
}

.segment-detail-band li svg {
    width: 19px;
    color: #ffc44d;
}

.public-page .sales-stat .card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    color: #185fa5;
    background: #edf6fc;
}

.public-page .sales-base-card.featured .card-icon {
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.12);
    color: #ffc44d;
}

@keyframes tourPanelIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
    .segment-grid,
    .segment-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-section,
    .segment-hero {
        grid-template-columns: 1fr;
    }

    .segment-hero {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .tour-stage {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        display: none;
    }

    .budget-preview,
    .segment-detail-band {
        grid-template-columns: 1fr;
    }

    .finance-preview {
        grid-template-columns: 1fr;
    }

    .pricing-preview {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .product-hero {
        min-height: calc(100svh - 96px);
        background-position: 42% center;
    }

    .product-hero-overlay {
        background: linear-gradient(90deg, rgba(3,31,60,.97), rgba(4,44,83,.84));
    }

    .product-hero-content {
        width: min(100% - 28px, 1520px);
        min-width: 0;
        padding: 46px 0 78px;
    }

    .product-hero h1 {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 38px);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .product-hero p {
        max-width: 100%;
        font-size: 17px;
        line-height: 1.5;
    }

    .hero-scroll {
        display: none;
    }

    .product-tour,
    .segment-section,
    .trust-section,
    .pricing-preview,
    .segment-hero,
    .segment-benefits,
    .segment-detail-band,
    .segment-faq {
        width: min(100% - 20px, 1520px);
    }

    .tour-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .pipeline-board {
        grid-template-columns: repeat(4, 210px);
    }

    .budget-table {
        grid-template-columns: minmax(150px, 1fr) 100px 100px;
        overflow-x: auto;
    }

    .budget-table > * {
        padding: 11px;
    }

    .schedule-preview article {
        grid-template-columns: 1fr;
    }

    .schedule-preview article > strong {
        text-align: left;
    }

    .segment-grid,
    .segment-benefit-grid,
    .trust-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .segment-card {
        min-height: 240px;
    }

    .pricing-preview-actions {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .segment-hero-visual {
        min-height: 360px;
        padding: 24px 16px;
    }

    .segment-flow {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .mapping-stage-grid,
    .mapping-fields {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .mapping-dialog {
        width: 100%;
        max-height: 100svh;
        height: 100svh;
        border-radius: 0;
    }

    .mapping-dialog-shell {
        max-height: 100svh;
        height: 100%;
    }

    .mapping-dialog-header,
    .mapping-dialog-body,
    .mapping-dialog-actions {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mapping-stage-grid,
    .mapping-fields {
        grid-template-columns: 1fr;
    }

    .mapping-stage {
        min-height: 126px;
    }

    .mapping-dialog-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .mapping-dialog-actions .btn-primary,
    .mapping-dialog-actions .btn-secondary {
        width: 100%;
    }
}

.thank-you-main {
    min-height: calc(100vh - 160px);
    padding: 72px 24px 88px;
    background:
        radial-gradient(circle at 12% 15%, rgba(32, 178, 150, .14), transparent 30%),
        radial-gradient(circle at 88% 0%, rgba(24, 95, 165, .16), transparent 34%),
        #f4f8fb;
}

.thank-you-shell {
    width: min(1040px, 100%);
    margin: 0 auto;
}

.thank-you-status {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.thank-you-icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(145deg, #20b296, #178a77);
    color: #fff;
    box-shadow: 0 18px 40px rgba(23, 138, 119, .24);
}

.thank-you-icon svg {
    width: 38px;
    height: 38px;
}

.thank-you-status h1 {
    margin: 12px 0 16px;
    color: #052f56;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.06;
}

.thank-you-status p {
    margin: 0 auto;
    color: #526b81;
    font-size: 18px;
    line-height: 1.7;
}

.thank-you-next {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.thank-you-next article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 28px;
    border: 1px solid #d8e4ed;
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 52px rgba(5, 47, 86, .09);
}

.thank-you-next article > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background: #edf6fc;
    color: #185fa5;
}

.thank-you-next article > span svg {
    width: 25px;
}

.thank-you-next small {
    color: #0a69ad;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.thank-you-next h2 {
    margin: 5px 0 9px;
    color: #052f56;
    font-size: 24px;
}

.thank-you-next p {
    min-height: 50px;
    margin: 0 0 20px;
    color: #60758a;
    line-height: 1.55;
}

.thank-you-whatsapp,
.thank-you-email {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    padding: 18px 22px;
    border-radius: 16px;
    text-decoration: none;
}

.thank-you-whatsapp {
    border: 1px solid #a7e4d2;
    background: #eafaf4;
    color: #126a51;
}

.thank-you-whatsapp > svg:first-child,
.thank-you-email > svg {
    width: 25px;
    flex: 0 0 auto;
}

.thank-you-whatsapp > svg:last-child {
    margin-left: auto;
}

.thank-you-whatsapp span,
.thank-you-email span {
    line-height: 1.5;
}

.thank-you-whatsapp strong,
.thank-you-email strong {
    display: block;
}

.thank-you-email {
    border: 1px solid #d8e4ed;
    background: #fff;
    color: #40566c;
}

.thank-you-note {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 0;
    color: #718397;
    font-size: 12px;
    text-align: center;
}

.thank-you-note svg {
    width: 16px;
    flex: 0 0 auto;
}

.segment-seo-article,
.seo-video-section,
.seo-blog-layout {
    width: min(1180px, calc(100% - 40px));
    margin: 54px auto;
}

.segment-seo-article {
    display: grid;
    gap: 28px;
}

.segment-seo-main,
.segment-howto,
.segment-blog-link,
.seo-video-section,
.seo-blog-content,
.seo-blog-summary {
    border: 1px solid #d8e4ed;
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 22px 52px rgba(5, 47, 86, .08);
}

.segment-seo-main {
    padding: clamp(28px, 4vw, 48px);
}

.segment-seo-main h2,
.segment-howto h2,
.seo-video-copy h2,
.seo-blog-content h2,
.seo-blog-hero h1 {
    color: #052f56;
}

.segment-seo-main h2 {
    max-width: 980px;
    margin: 12px 0 18px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
}

.segment-seo-main p,
.segment-seo-grid p,
.segment-howto p,
.seo-video-copy p,
.seo-video-copy li,
.seo-blog-content p,
.seo-blog-content li,
.seo-post-faq p {
    color: #526b81;
    font-size: 17px;
    line-height: 1.75;
}

.segment-seo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.segment-seo-grid article {
    padding: 28px;
    border: 1px solid #d8e4ed;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f4f8fb);
}

.segment-seo-grid h3,
.seo-blog-content h3,
.seo-post-faq h3 {
    margin: 0 0 10px;
    color: #052f56;
}

.segment-howto {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 28px;
    padding: clamp(28px, 4vw, 44px);
}

.segment-howto ol,
.seo-steps {
    margin: 0;
    padding-left: 24px;
}

.segment-howto li,
.seo-steps li {
    margin-bottom: 12px;
    padding-left: 6px;
}

.segment-blog-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 28px;
}

.segment-blog-link strong,
.segment-blog-link span {
    display: block;
}

.segment-blog-link strong {
    color: #052f56;
    font-size: 20px;
}

.segment-blog-link span {
    margin-top: 6px;
    color: #526b81;
}

.seo-blog-hero {
    padding: clamp(56px, 7vw, 100px) clamp(22px, 5vw, 72px);
    background: linear-gradient(135deg, #042c53, #185fa5 62%, #087f5b);
    color: #fff;
}

.seo-blog-hero > div {
    width: min(1040px, 100%);
}

.seo-blog-hero h1 {
    margin: 14px 0 18px;
    color: #fff;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.05;
}

.seo-blog-hero p {
    max-width: 860px;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.7;
}

.seo-video-section {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    padding: clamp(24px, 4vw, 38px);
}

.seo-video-frame {
    display: grid;
    min-height: 330px;
    place-items: center;
    padding: 32px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 196, 77, .28), transparent 28%),
        linear-gradient(145deg, #031f3c, #0b5a9a 58%, #087f5b);
    color: #fff;
    text-align: center;
}

.seo-video-frame span {
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    color: #ffc44d;
}

.seo-video-frame svg {
    width: 44px;
    height: 44px;
}

.seo-video-frame strong {
    margin-top: 18px;
    font-size: 28px;
}

.seo-video-frame p {
    max-width: 560px;
    margin: 8px auto;
    color: #eef6ff;
}

.seo-video-frame small {
    max-width: 520px;
    color: #cfe4f5;
    line-height: 1.6;
}

.seo-video-copy {
    align-self: center;
}

.seo-video-copy ul {
    display: grid;
    gap: 10px;
    padding-left: 20px;
}

.seo-blog-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 26px;
    align-items: start;
}

.seo-blog-summary {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 10px;
    padding: 22px;
}

.seo-blog-summary strong {
    color: #052f56;
    font-size: 18px;
}

.seo-blog-summary a {
    color: #185fa5;
    font-weight: 800;
    text-decoration: none;
}

.seo-blog-content {
    padding: clamp(28px, 4vw, 52px);
}

.seo-blog-content h2 {
    margin: 34px 0 14px;
    font-size: clamp(28px, 4vw, 42px);
}

.seo-blog-content h2:first-of-type {
    margin-top: 10px;
}

.seo-blog-content h3 {
    margin-top: 28px;
    font-size: 24px;
}

.seo-checklist-grid,
.seo-post-faq {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.seo-checklist-grid span,
.seo-post-faq article {
    padding: 18px;
    border: 1px solid #d8e4ed;
    border-radius: 16px;
    background: #f8fbfd;
}

.seo-checklist-grid span {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #052f56;
    font-weight: 800;
}

.seo-checklist-grid svg {
    width: 19px;
    color: #087f5b;
    flex: 0 0 auto;
}

.blog-seo-guides {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 42px;
}

.blog-seo-guides .blog-index {
    width: 100%;
    margin: 0;
}

/* Public content stays readable even when scroll effects are unavailable. */
.reveal-item {
    opacity: 1;
    transform: translateY(12px);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-showcase-section {
    width: min(100% - 28px, 1520px);
    margin: 74px auto;
}

.home-showcase-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 24px;
}

.home-showcase-heading h2 {
    max-width: 780px;
    margin: 10px 0 0;
    color: #042c53;
    font-size: 42px;
    line-height: 1.1;
    letter-spacing: 0;
}

.home-showcase-heading > p {
    max-width: 430px;
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.65;
}

.home-showcase-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid #bfd8ea;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 26px 64px rgba(4, 44, 83, .14);
}

.home-showcase-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.home-showcase-viewport::-webkit-scrollbar {
    display: none;
}

.home-showcase-slider.is-enhanced .home-showcase-viewport {
    overflow: hidden;
}

.home-showcase-track {
    display: flex;
    transition: transform .55s cubic-bezier(.22, .75, .22, 1);
    touch-action: pan-y;
}

.home-showcase-slide {
    min-width: 100%;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
    align-items: stretch;
    scroll-snap-align: start;
    background: #ffffff;
}

.home-showcase-copy {
    align-self: center;
    padding: 54px;
}

.home-showcase-copy > span {
    display: block;
    margin-bottom: 14px;
    color: #185fa5;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-showcase-copy h3 {
    margin: 0;
    color: #042c53;
    font-size: 34px;
    line-height: 1.14;
    letter-spacing: 0;
}

.home-showcase-copy p {
    margin: 18px 0 24px;
    color: #475569;
    font-size: 17px;
    line-height: 1.65;
}

.home-showcase-copy .text-link {
    display: inline-flex;
    align-items: center;
    color: #0c5795;
}

.home-showcase-slide figure {
    min-width: 0;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border-left: 1px solid #d8e6f0;
    background: #edf5fa;
}

.home-showcase-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top left;
    pointer-events: none;
    user-select: none;
}

.home-showcase-controls {
    position: absolute;
    bottom: 22px;
    left: 54px;
    z-index: 2;
    display: none;
    align-items: center;
    gap: 12px;
}

.home-showcase-slider.is-enhanced .home-showcase-controls {
    display: flex;
}

.home-showcase-controls > button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #b8d1e4;
    border-radius: 50%;
    background: #ffffff;
    color: #06365f;
    cursor: pointer;
}

.home-showcase-controls > button:hover,
.home-showcase-controls > button:focus-visible {
    border-color: #185fa5;
    background: #edf6fc;
}

.home-showcase-controls svg {
    width: 19px;
}

.home-showcase-dots {
    display: flex;
    align-items: center;
    gap: 7px;
}

.home-showcase-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #a9bfd0;
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.home-showcase-dots button[aria-selected="true"] {
    width: 26px;
    border-radius: 5px;
    background: #185fa5;
}

.home-showcase-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    overflow: hidden;
    background: #dce9f2;
}

.home-showcase-progress i {
    width: 100%;
    height: 100%;
    display: block;
    background: #f2a900;
    transform: scaleX(0);
    transform-origin: left;
}

.home-showcase-slider.is-playing .home-showcase-progress i {
    animation: homeSliderProgress 6.5s linear infinite;
}

.public-contact-dock {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 5200;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
}

.public-contact-dock a {
    min-width: 152px;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 10px 14px;
    border: 1px solid #b8d1e4;
    border-radius: 8px;
    background: #ffffff;
    color: #06365f;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(2, 20, 38, .2);
}

.public-contact-dock a:hover,
.public-contact-dock a:focus-visible {
    transform: translateY(-2px);
}

.public-contact-dock svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.public-contact-dock .public-contact-whatsapp {
    border-color: #087f5b;
    background: #087f5b;
    color: #ffffff;
}

@keyframes homeSliderProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (min-width: 761px) {
    .home-page .product-hero {
        animation: homeHeroDrift 18s ease-in-out infinite alternate;
    }

    @keyframes homeHeroDrift {
        from { background-position: 48% center; }
        to { background-position: 53% center; }
    }
}

@media (max-width: 760px) {
    .home-showcase-section {
        width: min(100% - 20px, 1520px);
        margin: 52px auto;
    }

    .home-showcase-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .home-showcase-heading h2 {
        font-size: 30px;
    }

    .home-showcase-heading > p {
        font-size: 15px;
    }

    .home-showcase-slide {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .home-showcase-copy {
        min-height: 340px;
        padding: 30px 22px 76px;
    }

    .home-showcase-copy h3 {
        font-size: 27px;
    }

    .home-showcase-copy p {
        font-size: 15px;
    }

    .home-showcase-slide figure {
        min-height: 280px;
        height: 280px;
        border-top: 1px solid #d8e6f0;
        border-left: 0;
    }

    .home-showcase-controls {
        bottom: 302px;
        left: 22px;
    }

    .public-contact-dock {
        right: 10px;
        bottom: 10px;
        left: 10px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .public-contact-dock a {
        min-width: 0;
        min-height: 50px;
        justify-content: center;
        padding: 10px;
        font-size: 13px;
    }

    .site-footer {
        padding-bottom: 74px;
    }

    .thank-you-main {
        padding: 48px 16px 64px;
    }

    .thank-you-next {
        grid-template-columns: 1fr;
    }

    .thank-you-next article {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .thank-you-next p {
        min-height: 0;
    }

    .segment-seo-article,
    .seo-video-section,
    .seo-blog-layout,
    .blog-seo-guides {
        width: min(100% - 28px, 1180px);
    }

    .segment-seo-grid,
    .segment-howto,
    .seo-video-section,
    .seo-blog-layout,
    .seo-checklist-grid,
    .seo-post-faq {
        grid-template-columns: 1fr;
    }

    .segment-blog-link {
        align-items: flex-start;
        flex-direction: column;
    }

    .seo-blog-summary {
        position: static;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page .product-hero,
    .home-showcase-track,
    .home-showcase-slider.is-playing .home-showcase-progress i,
    .public-contact-dock a {
        animation: none;
        transition: none;
    }

    .tour-panel,
    .public-page .feature,
    .public-page .blog-card,
    .public-page .faq-grid article,
    .public-page .steps article,
    .public-page .pricing-card,
    .public-page .proof-card {
        animation: none;
        transition: none;
    }
}
