/* cotarpreco home */
:root {
    --home-bg: #f7faf8;
    --home-surface: #ffffff;
    --home-surface-soft: #eef7f4;
    --home-ink: #18231f;
    --home-muted: #5f6f69;
    --home-border: #d8e3df;
    --home-primary: #0f766e;
    --home-primary-dark: #0b5f59;
    --home-blue: #2563eb;
    --home-orange: #f97316;
    --home-yellow: #f59e0b;
    --home-success: #16a34a;
    --home-danger: #dc2626;
    --home-shadow: 0 18px 50px rgba(21, 45, 38, 0.12);
    --home-shadow-soft: 0 10px 28px rgba(21, 45, 38, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--home-ink);
    background: var(--home-bg);
    font-family: 'Roboto', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: #ffffff;
    background: var(--home-primary);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

[x-cloak] {
    display: none !important;
}

.home-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(216, 227, 223, 0.9);
    backdrop-filter: blur(16px);
}

.home-nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    position: relative;
    flex: 0 0 auto;
    width: 250px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 310px;
    max-width: none;
    height: auto;
    display: block;
    transform: translate(-50%, -50%);
}

.home-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    color: var(--home-muted);
    font-size: 0.94rem;
    font-weight: 700;
}

.public-mobile-menu {
    display: contents;
}

.mobile-menu-button {
    display: none;
}

.mobile-menu-icon {
    position: relative;
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: background 0.2s ease;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease;
}

.mobile-menu-icon::before {
    transform: translateY(-6px);
}

.mobile-menu-icon::after {
    transform: translateY(6px);
}

.home-nav-links > a,
.tools-menu-button {
    padding: 9px 12px;
    border-radius: 8px;
}

.home-nav-links > a:hover,
.tools-menu-button:hover,
.tools-menu-button[aria-expanded="true"] {
    color: var(--home-primary-dark);
    background: var(--home-surface-soft);
}

.public-tools-menu {
    position: relative;
}

.tools-menu-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.tools-menu-chevron {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.tools-menu-button[aria-expanded="true"] .tools-menu-chevron {
    transform: translateY(2px) rotate(225deg);
}

.tools-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 110;
    width: 286px;
    max-height: min(560px, calc(100vh - 96px));
    padding: 12px;
    overflow-y: auto;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--home-shadow-soft);
    transform: translateX(-50%);
}

.tools-category-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px;
    border: 0;
    border-radius: 7px;
    color: var(--home-muted);
    background: transparent;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
    letter-spacing: 0.02em;
    cursor: pointer;
}

.tools-category-button:hover,
.tools-category-button[aria-expanded="true"] {
    color: var(--home-primary-dark);
    background: var(--home-surface-soft);
}

.tools-category-button-separated {
    margin-top: 8px;
    border-top: 1px solid var(--home-border);
    border-radius: 0 0 7px 7px;
}

.tools-category-chevron {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-right: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.tools-category-button[aria-expanded="true"] .tools-category-chevron {
    transform: translateY(2px) rotate(225deg);
}

.tools-list {
    display: grid;
    gap: 3px;
    margin-top: 4px;
    padding-left: 8px;
    border-left: 2px solid var(--home-surface-soft);
}

.home-nav-links .tools-list a {
    display: block;
    padding: 8px 10px;
    border-radius: 7px;
    color: var(--home-muted);
    font-size: 0.9rem;
    line-height: 1.3;
}

.home-nav-links .tools-list a:hover,
.home-nav-links .tools-list a:focus-visible {
    color: var(--home-primary-dark);
    background: var(--home-surface-soft);
}

.home-nav-links .tools-direct-link {
    display: block;
    margin-top: 8px;
    padding: 10px;
    border-top: 1px solid var(--home-border);
    border-radius: 0 0 7px 7px;
    color: var(--home-primary-dark);
    font-size: 0.9rem;
    line-height: 1.3;
}

.home-nav-links .tools-direct-link:hover,
.home-nav-links .tools-direct-link:focus-visible {
    background: var(--home-surface-soft);
}

.containerNavHome {
    display: flex;
    align-items: center;
    gap: 10px;
}

.containerNavHome > div {
    position: relative;
}

.language-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: var(--home-surface);
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.language-btn img {
    width: 20px;
    height: 20px;
    filter: invert(31%) sepia(10%) saturate(549%) hue-rotate(109deg) brightness(92%) contrast(86%);
}

.language-btn:hover,
.language-btn[aria-expanded="true"] {
    border-color: var(--home-primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.nav-header-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 110;
    min-width: 132px;
    padding: 8px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--home-shadow-soft);
}

.nav-languages {
    width: 148px;
    display: grid;
    gap: 4px;
}

.language-card {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid transparent;
    border-radius: 7px;
    background: #ffffff;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.language-card:hover {
    border-color: rgba(15, 118, 110, 0.16);
    background: var(--home-surface-soft);
    box-shadow: 0 4px 12px rgba(21, 45, 38, 0.08);
}

.language-card:focus-visible {
    outline: 2px solid rgba(15, 118, 110, 0.55);
    outline-offset: 1px;
}

.language-card[aria-current="page"] {
    color: var(--home-primary-dark);
    border-color: rgba(15, 118, 110, 0.12);
    background: var(--home-surface-soft);
}

.language-card p {
    margin: 0;
    color: inherit;
    font-size: 0.93rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cta-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font: inherit;
    font-size: 0.96rem;
    font-weight: 900;
    line-height: 1.2;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

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

.cta-button.primary {
    color: #ffffff;
    background: var(--home-primary);
    box-shadow: 0 12px 24px rgba(15, 118, 110, 0.2);
}

.cta-button.primary:hover {
    background: var(--home-primary-dark);
    box-shadow: 0 14px 28px rgba(15, 118, 110, 0.26);
}

.cta-button.secondary {
    color: var(--home-ink);
    background: #ffffff;
    border-color: var(--home-border);
}

.cta-button.secondary:hover {
    border-color: var(--home-primary);
    color: var(--home-primary-dark);
    box-shadow: 0 10px 20px rgba(21, 45, 38, 0.08);
}

.cta-button.large {
    min-height: 52px;
    padding: 0 26px;
    font-size: 1rem;
}

.nav-cta {
    color: #ffffff;
    background: var(--home-ink);
}

.nav-cta:hover {
    background: var(--home-primary-dark);
}

main {
    overflow: hidden;
}

.hero-section,
.feature-band,
.reports-section,
.pricing-section,
.faq-section,
.cta-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    scroll-margin-top: 96px;
}

.hero-section {
    min-height: min(760px, 100svh);
    padding: 112px 0 40px;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(410px, 1.02fr);
    gap: 44px;
    align-items: center;
}

.hero-badge,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(15, 118, 110, 0.22);
    border-radius: 8px;
    color: var(--home-primary-dark);
    background: #e9f7f4;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-content h1,
.section-header h2,
.feature-band-copy h2,
.reports-copy h2,
.cta-section h2 {
    margin: 16px 0 0;
    color: var(--home-ink);
    font-weight: 950;
    letter-spacing: 0;
    line-height: 1.04;
}

.hero-content h1 {
    max-width: 720px;
    margin-top: 12px;
    font-size: 3.8rem;
}

.hero-subtitle {
    max-width: 640px;
    margin: 16px 0 0;
    color: var(--home-muted);
    font-size: 1.08rem;
    line-height: 1.55;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-trust-list {
    margin: 20px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
    list-style: none;
    color: var(--home-ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.hero-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hero-trust-list li::before,
.check-list li::before {
    content: "";
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border-radius: 50%;
    background: var(--home-success);
    box-shadow: inset 0 0 0 4px #dff7e7;
}

.check-list li::before {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    box-shadow: inset 0 0 0 5px #dff7e7;
}

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

.automation-panel {
    position: relative;
    width: 100%;
    max-width: 530px;
    margin-left: auto;
    padding: 14px;
    border: 1px solid #cfded9;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--home-shadow);
}

.automation-panel::before {
    content: "";
    position: absolute;
    inset: -12px 30px auto auto;
    width: 168px;
    height: 8px;
    border-radius: 8px;
    background: var(--home-orange);
}

.panel-topline,
.report-header {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 2px 10px;
    border-bottom: 1px solid var(--home-border);
}

.panel-topline span,
.request-card span,
.offer-row span,
.insight-card span,
.report-header span,
.report-metrics span {
    color: var(--home-muted);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.report-header {
    min-height: 48px;
    padding: 0 2px 14px;
}

.report-header span,
.report-metrics span {
    font-size: 0.78rem;
}

.panel-topline strong {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    color: #875200;
    background: #fff4db;
    font-size: 0.74rem;
    text-transform: uppercase;
}

.request-card {
    margin-top: 12px;
    padding: 12px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #f8fbfa;
}

.request-card strong {
    display: block;
    margin-top: 2px;
    color: var(--home-ink);
    font-size: 1.02rem;
}

.request-card p {
    margin: 4px 0 0;
    color: var(--home-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.channel-row {
    margin-top: 10px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
}

.channel-card {
    min-height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 10px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
}

.channel-card strong {
    color: var(--home-ink);
    font-size: 0.86rem;
}

.channel-card small {
    color: var(--home-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.channel-dot {
    width: 15px;
    height: 15px;
    border-radius: 5px;
    background: var(--home-success);
    box-shadow: inset 0 0 0 4px #dbf7e3;
}

.offer-stack {
    margin-top: 10px;
    display: grid;
    gap: 7px;
}

.offer-row {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 11px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
}

.offer-row.best {
    border-color: rgba(22, 163, 74, 0.32);
    background: #f0fbf3;
}

.offer-row.pending {
    background: #fbfbfa;
}

.offer-row strong {
    display: block;
    margin-top: 3px;
    color: var(--home-ink);
    font-size: 0.86rem;
}

.offer-row b {
    color: var(--home-ink);
    font-size: 1.05rem;
    white-space: nowrap;
}

.insight-card {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--home-ink);
}

.insight-card span {
    color: rgba(255, 255, 255, 0.72);
}

.insight-card strong {
    display: block;
    margin-top: 3px;
    font-size: 0.98rem;
}

@media (min-width: 1081px) and (max-height: 800px) {
    .hero-section {
        min-height: 100svh;
        padding-top: 96px;
        padding-bottom: 28px;
    }

    .hero-badge {
        min-height: 28px;
    }

    .hero-content h1 {
        font-size: 3.3rem;
    }

    .hero-subtitle {
        margin-top: 12px;
        font-size: 1rem;
        line-height: 1.45;
    }

    .hero-cta {
        margin-top: 18px;
    }

    .hero-trust-list {
        margin-top: 16px;
        gap: 5px;
    }
}

.reports-section,
.pricing-section,
.faq-section,
.cta-section {
    padding: 86px 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 38px;
    text-align: center;
}

.section-header h2,
.feature-band-copy h2,
.reports-copy h2,
.cta-section h2 {
    font-size: 2.65rem;
}

.section-header p,
.feature-band-copy p,
.reports-copy p,
.cta-section p {
    margin: 16px 0 0;
    color: var(--home-muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.feature-list article,
.faq-grid article {
    min-width: 0;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(21, 45, 38, 0.04);
}

.feature-list h3,
.faq-grid h3 {
    margin: 18px 0 0;
    color: var(--home-ink);
    font-size: 1.1rem;
    line-height: 1.28;
}

.feature-list p,
.faq-grid p {
    margin: 10px 0 0;
    color: var(--home-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.feature-band {
    margin-top: 22px;
    padding: 48px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 38px;
    align-items: center;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: var(--home-ink);
}

.feature-band-copy h2,
.feature-band-copy p {
    color: #ffffff;
}

.feature-band-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.feature-band .section-kicker {
    color: #bbf7d0;
    border-color: rgba(187, 247, 208, 0.28);
    background: rgba(15, 118, 110, 0.4);
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.feature-list article {
    min-height: 238px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.96);
}

.feature-symbol {
    position: relative;
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--home-success);
}

.feature-symbol::after {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid #ffffff;
    border-radius: 4px;
}

.followup-symbol {
    background: var(--home-blue);
}

.followup-symbol::after {
    inset: 13px 9px;
    border-top: 2px solid #ffffff;
    border-right: 0;
    border-left: 0;
    border-bottom: 2px solid #ffffff;
    transform: skewY(-12deg);
}

.history-symbol {
    background: var(--home-orange);
}

.history-symbol::after {
    inset: 11px 13px 9px;
    border-radius: 999px;
}

.feature-band .cta-button {
    margin-top: 28px;
}

.reports-section {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}

.reports-visual {
    padding: 20px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--home-shadow-soft);
}

.report-header strong {
    color: var(--home-primary-dark);
}

.bar-chart {
    height: 240px;
    margin-top: 20px;
    padding: 20px 18px 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 12px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #f8fbfa;
}

.bar-chart span {
    min-height: 30px;
    height: var(--bar-height);
    border-radius: 8px 8px 0 0;
    background: var(--home-primary);
}

.bar-chart span:nth-child(2),
.bar-chart span:nth-child(5) {
    background: var(--home-blue);
}

.bar-chart span:nth-child(4),
.bar-chart span:nth-child(6) {
    background: var(--home-orange);
}

.report-metrics {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.report-metrics div {
    min-height: 92px;
    padding: 16px;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
}

.report-metrics strong {
    display: block;
    margin-top: 6px;
    color: var(--home-ink);
    font-size: 1.45rem;
}

.check-list {
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 10px;
    color: var(--home-ink);
    font-weight: 800;
}

.pricing-section {
    border-top: 1px solid var(--home-border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.pricing-card {
    min-width: 0;
    min-height: 380px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--home-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(21, 45, 38, 0.04);
}

.pricing-card.recommended {
    border-color: rgba(15, 118, 110, 0.5);
    background: #f8fbfa;
    box-shadow: var(--home-shadow-soft);
}

.plan-badge {
    width: fit-content;
    min-height: 28px;
    margin-bottom: 14px;
    padding: 5px 9px;
    border-radius: 8px;
    color: #ffffff;
    background: var(--home-primary);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
}

.pricing-card-head {
    min-height: 118px;
}

.pricing-card h3 {
    margin: 0;
    color: var(--home-ink);
    font-size: 1.2rem;
    line-height: 1.25;
}

.pricing-card-head p {
    margin: 10px 0 0;
    color: var(--home-muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.plan-price {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--home-border);
}

.plan-price strong {
    color: var(--home-ink);
    font-size: 2.18rem;
    line-height: 1;
    white-space: nowrap;
}

.plan-price span {
    margin-left: 3px;
    color: var(--home-muted);
    font-size: 0.94rem;
    font-weight: 800;
}

.pricing-card ul {
    margin: 20px 0 24px;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.pricing-card li {
    display: flex;
    gap: 9px;
    color: var(--home-ink);
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1.45;
}

.pricing-card li::before {
    content: "";
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    border-radius: 50%;
    background: var(--home-success);
    box-shadow: inset 0 0 0 5px #dff7e7;
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    max-width: 760px;
    margin: 22px auto 0;
    color: var(--home-muted);
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.6;
    text-align: center;
}

.faq-section {
    border-top: 1px solid var(--home-border);
}

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

.faq-grid article {
    min-height: 180px;
    padding: 22px;
}

.faq-grid h3 {
    margin-top: 0;
}

.cta-section {
    max-width: 860px;
    text-align: center;
}

.cta-section .section-kicker {
    margin: 0 auto;
}

.cta-section .cta-button {
    margin-top: 28px;
}

.home-footer {
    padding: 48px 16px 34px;
    border-top: 1px solid var(--home-border);
    background: #ffffff;
    text-align: center;
}

.footer-brand {
    display: grid;
    justify-items: center;
    gap: 12px;
}

.footer-brand p {
    max-width: 520px;
    margin: 0;
    color: var(--home-muted);
}

.footer-links {
    margin: 26px 0 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--home-primary-dark);
    font-weight: 900;
}

.copyright {
    margin: 20px auto 0;
    padding-top: 20px;
    max-width: 680px;
    border-top: 1px solid var(--home-border);
    color: var(--home-muted);
    font-size: 0.88rem;
}

.legal-header {
    border-bottom: 1px solid var(--home-border);
    background: rgba(255, 255, 255, 0.94);
}

.legal-nav {
    width: min(960px, calc(100% - 32px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.legal-nav-links,
.legal-footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.legal-nav-links a,
.legal-footer-links a,
.privacy-section a {
    color: var(--home-primary-dark);
    font-weight: 900;
}

.privacy-page,
.terms-page {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0 34px;
    overflow: visible;
}

.privacy-hero {
    padding: 16px 0 22px;
}

.privacy-hero h1 {
    margin: 16px 0 0;
    color: var(--home-ink);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: 0;
}

.privacy-hero p:last-child {
    margin: 14px 0 0;
    color: var(--home-muted);
    font-weight: 750;
}

.privacy-section {
    padding: 26px 0;
    border-top: 1px solid var(--home-border);
}

.privacy-section h2 {
    margin: 0 0 10px;
    color: var(--home-ink);
    font-size: 1.35rem;
    line-height: 1.2;
}

.privacy-section p,
.privacy-section li {
    color: var(--home-muted);
    font-weight: 650;
}

.privacy-section p {
    margin: 0;
}

.privacy-section ul {
    margin: 0;
    padding-left: 20px;
}

.legal-footer-links {
    margin: 26px 0 0;
}

@media (max-width: 1080px) {
    .home-nav {
        gap: 14px;
        justify-content: flex-start;
        position: relative;
    }

    .public-mobile-menu {
        position: relative;
        display: block;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--home-border);
        border-radius: 8px;
        color: var(--home-ink);
        background: var(--home-surface);
        cursor: pointer;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .mobile-menu-button:hover,
    .public-mobile-menu.is-open .mobile-menu-button {
        border-color: var(--home-primary);
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
    }

    .public-mobile-menu.is-open .mobile-menu-icon {
        background: transparent;
    }

    .public-mobile-menu.is-open .mobile-menu-icon::before {
        transform: translateY(0) rotate(45deg);
    }

    .public-mobile-menu.is-open .mobile-menu-icon::after {
        transform: translateY(0) rotate(-45deg);
    }

    .public-mobile-menu .home-nav-links {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        z-index: 120;
        width: min(360px, calc(100vw - 24px));
        max-height: calc(100vh - 90px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 8px;
        overflow-y: auto;
        border: 1px solid var(--home-border);
        border-radius: 10px;
        background: #ffffff;
        box-shadow: var(--home-shadow-soft);
        scrollbar-width: thin;
    }

    .public-mobile-menu.is-open .home-nav-links {
        display: flex;
    }

    .public-mobile-menu .home-nav-links > a,
    .public-mobile-menu .tools-menu-button {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        text-align: left;
    }

    .public-mobile-menu .home-nav-links > a:focus-visible,
    .public-mobile-menu .tools-menu-button:focus-visible,
    .public-mobile-menu .tools-category-button:focus-visible,
    .mobile-menu-button:focus-visible {
        outline: 2px solid rgba(15, 118, 110, 0.55);
        outline-offset: 1px;
    }

    .public-mobile-menu .public-tools-menu {
        width: 100%;
    }

    .public-mobile-menu .tools-dropdown {
        position: static;
        width: auto;
        max-height: none;
        padding: 8px;
        overflow: visible;
        border-color: var(--home-border);
        background: var(--home-surface-soft);
        box-shadow: none;
        transform: none;
    }

    .public-mobile-menu .tools-list {
        padding-left: 8px;
    }

    .hero-section,
    .reports-section,
    .feature-band {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
        padding: 110px 0 44px;
        gap: 32px;
    }

    .hero-content h1 {
        font-size: 3.45rem;
    }

    .automation-panel {
        margin: 0;
        max-width: none;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-band {
        padding: 36px;
    }
}

@media (max-width: 760px) {
    .home-nav {
        width: min(100% - 24px, 1180px);
        min-height: 66px;
    }

    .logo {
        width: 166px;
        height: 44px;
    }

    .logo img {
        width: 260px;
    }

    .nav-cta {
        display: none;
    }

    .hero-section,
    .feature-band,
    .reports-section,
    .pricing-section,
    .faq-section,
    .cta-section {
        width: min(100% - 24px, 1180px);
    }

    .hero-section {
        padding-top: 96px;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 2.35rem;
        line-height: 1.08;
    }

    .hero-subtitle,
    .section-header p,
    .feature-band-copy p,
    .reports-copy p,
    .cta-section p {
        font-size: 1rem;
    }

    .hero-cta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        min-width: 0;
    }

    .automation-panel {
        padding: 12px;
    }

    .channel-row,
    .report-metrics,
    .feature-list,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .channel-card {
        min-height: 60px;
    }

    .offer-row {
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }

    .reports-section,
    .pricing-section,
    .faq-section,
    .cta-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 28px;
        text-align: left;
    }

    .section-header h2,
    .feature-band-copy h2,
    .reports-copy h2,
    .cta-section h2 {
        font-size: 2rem;
        line-height: 1.12;
    }

    .feature-band {
        padding: 24px;
    }

    .reports-section {
        gap: 32px;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card-head {
        min-height: 0;
    }

    .pricing-note {
        text-align: left;
    }

    .reports-visual {
        padding: 14px;
    }

    .bar-chart {
        height: 190px;
        gap: 8px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .cta-section {
        text-align: left;
    }

    .cta-section .section-kicker {
        margin-left: 0;
    }
}

@media (max-width: 420px) {
    .logo {
        width: min(166px, calc(100vw - 140px));
    }

    .hero-content h1 {
        font-size: 2.08rem;
    }

    .language-btn {
        width: 40px;
        height: 40px;
    }

    .containerNavHome {
        gap: 6px;
    }

    .panel-topline,
    .report-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .feature-list article,
    .pricing-card,
    .faq-grid article {
        padding: 18px;
    }
}
