* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #111111;
    background: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    overflow-x: hidden;
}

section[id] {
    scroll-margin-top: 96px;
}

a {
    color: inherit;
}

:focus-visible {
    outline: 2px solid #007c89;
    outline-offset: 2px;
}

.lf-icon {
    display: inline-block;
    width: 1.25em;
    height: 1.25em;
    flex-shrink: 0;
    line-height: 1;
    vertical-align: middle;
}

.lf-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 76px;
    padding: 0 32px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e7e7e7;
    backdrop-filter: blur(14px);
    width: 100%;
}

.lf-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.lf-brand img {
    display: block;
    width: 160px;
    height: 45px;
    object-fit: contain;
}

.lf-brand span {
    color: #007c89;
    font-size: 26px;
    font-weight: 800;
}

.lf-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.lf-main-nav a {
    padding: 8px 8px;
    color: #343434;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
}

.lf-main-nav a:hover {
    background: #f2f2f2;
}

.lf-header-actions,
.lf-hero-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.material-symbols-rounded {
    font-family: "Material Symbols Rounded";
    font-weight: normal;
    font-style: normal;
    font-size: 20px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga";
}

.mc-dropdown {
    position: relative;
    display: inline-flex;
}

.mc-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 80;
    min-width: 180px;
    margin-top: 4px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}

.mc-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mc-topbar-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 36px;
    padding: 6px 12px;
    color: #5d5d5d;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.mc-topbar-lang-btn:hover,
.mc-dropdown:has(.mc-dropdown-menu.active) .mc-topbar-lang-btn {
    color: #111111;
    background: #f2f2f2;
    border-color: #c9c9c9;
}

.mc-topbar-lang-btn:focus {
    outline: 2px solid #007c89;
    outline-offset: 2px;
}

.mc-topbar-lang-btn .material-symbols-rounded {
    font-variation-settings: "wght" 200, "FILL" 0;
}

.mc-topbar-lang-icon {
    font-size: 18px;
}

.mc-topbar-lang-current {
    white-space: nowrap;
}

.mc-topbar-lang-chevron {
    font-size: 16px;
    transition: transform 0.15s ease;
}

.mc-dropdown:has(.mc-dropdown-menu.active) .mc-topbar-lang-chevron {
    transform: rotate(180deg);
}

.mc-topbar-lang-dropdown {
    min-width: 210px;
    padding: 4px 0;
}

.mc-lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    color: #111111;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.mc-lang-item:hover,
.mc-lang-item.active {
    color: #111111;
    background: #f2f7f7;
    text-decoration: none;
}

.mc-lang-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 20px;
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    background: #f2f2f2;
    border-radius: 4px;
}

.mc-lang-item.active .mc-lang-code {
    color: #007c89;
    background: #e5f5f6;
}

.mc-lang-name {
    flex: 1;
    color: #343434;
    font-size: 14px;
    white-space: nowrap;
}

.mc-lang-check {
    color: #007c89;
    font-size: 18px;
}

.lf-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #111111;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
}

.lf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 14px;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    white-space: nowrap;
    min-width: 0;
}

.lf-btn-primary {
    color: #ffffff;
    background: #007c89;
    border-color: #007c89;
}

.lf-btn-primary:hover {
    background: #005f69;
    border-color: #005f69;
}

.lf-btn-secondary {
    background: #ffffff;
}

.lf-btn-secondary:hover {
    background: #f2f2f2;
}

.lf-btn-large {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 16px;
}

.lf-hero {
    padding: 70px 32px 48px;
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
}

.lf-hero-inner {
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
}

.lf-eyebrow {
    margin: 0 0 14px;
    color: #007c89;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.lf-hero h1 {
    max-width: 860px;
    margin: 0 auto;
    color: #111111;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

.lf-hero-copy {
    max-width: 760px;
    margin: 24px auto 0;
    color: #444444;
    font-size: 20px;
}

.lf-hero-actions {
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.lf-product-visual {
    width: min(100%, 1180px);
    max-width: 1180px;
    margin: 52px auto 0;
    overflow: hidden;
    background: #161616;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.lf-browser-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
    background: #242424;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lf-browser-bar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #e86e4d;
}

.lf-browser-bar span:nth-child(2) {
    background: #ffce32;
}

.lf-browser-bar span:nth-child(3) {
    background: #4fac70;
}

.lf-browser-bar strong {
    margin-left: 10px;
    color: #dcdcdc;
    font-size: 12px;
    font-weight: 600;
}

.lf-app-preview {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 520px;
    background: #f7f7f7;
    min-width: 0;
}

.lf-preview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px 16px;
    background: #ffffff;
    border-right: 1px solid #e0e0e0;
}

.lf-preview-logo {
    width: 110px;
    height: 26px;
    margin-bottom: 24px;
    background: #007c89;
    border-radius: 6px;
}

.lf-preview-sidebar div:not(.lf-preview-logo) {
    padding: 11px 12px;
    color: #4a4a4a;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
}

.lf-preview-sidebar .is-active {
    color: #007c89;
    background: #eef6f7;
}

.lf-preview-main {
    padding: 28px;
    min-width: 0;
    overflow: hidden;
}

.lf-preview-topline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 22px;
}

.lf-preview-topline span {
    display: block;
    color: #6a6a6a;
    font-size: 13px;
    font-weight: 600;
}

.lf-preview-topline strong {
    display: block;
    color: #111111;
    font-size: 30px;
    line-height: 1.2;
}

.lf-preview-topline button {
    height: 40px;
    padding: 0 16px;
    color: #ffffff;
    font-weight: 700;
    background: #007c89;
    border: 0;
    border-radius: 8px;
}

.lf-preview-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lf-preview-stats article,
.lf-preview-chart,
.lf-preview-flow {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.lf-preview-stats article {
    min-height: 112px;
    padding: 18px;
}

.lf-preview-stats span {
    display: block;
    color: #6a6a6a;
    font-size: 13px;
    font-weight: 600;
}

.lf-preview-stats strong {
    display: block;
    margin-top: 12px;
    color: #111111;
    font-size: 34px;
    line-height: 1;
}

.lf-preview-chart {
    display: flex;
    align-items: end;
    gap: 18px;
    height: 190px;
    margin-top: 16px;
    padding: 26px;
    min-width: 0;
}

.lf-preview-chart span {
    flex: 1;
    min-width: 18px;
    background: #69b7be;
    border-radius: 6px 6px 0 0;
}

.lf-preview-chart span:nth-child(2n) {
    background: #4fac70;
}

.lf-preview-chart span:nth-child(3n) {
    background: #ffce32;
}

.lf-preview-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 92px;
    margin-top: 16px;
    padding: 18px;
    flex-wrap: wrap;
}

.lf-preview-flow span {
    padding: 10px 14px;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    background: #f4f4f4;
    border-radius: 8px;
}

.lf-preview-flow i {
    width: 34px;
    height: 2px;
    background: #007c89;
}

.lf-preview-table {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 16px 18px;
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.lf-preview-table strong,
.lf-preview-table span,
.lf-preview-table em {
    display: block;
}

.lf-preview-table strong {
    color: #111111;
    font-size: 15px;
}

.lf-preview-table span {
    margin-top: 3px;
    color: #666666;
    font-size: 13px;
}

.lf-preview-table em {
    padding: 6px 10px;
    color: #2e7d32;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    background: #edf8ef;
    border-radius: 8px;
}

.lf-trust-band {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 22px 24px;
    background: #f6f6f6;
    border-bottom: 1px solid #e7e7e7;
    flex-wrap: wrap;
}

.lf-trust-band span {
    padding: 8px 12px;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.lf-seo-hub-section {
    padding-top: 68px;
    padding-bottom: 68px;
}

.lf-seo-hub-grid,
.lf-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.lf-seo-hub-grid a,
.lf-related-grid a {
    display: grid;
    gap: 10px;
    min-height: 132px;
    padding: 20px;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lf-seo-hub-grid a:hover,
.lf-related-grid a:hover {
    transform: translateY(-2px);
    border-color: #cfcfcf;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.lf-seo-hub-grid span,
.lf-related-grid span {
    color: #007c89;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.lf-seo-hub-grid strong,
.lf-related-grid strong {
    color: #111111;
    font-size: 17px;
    line-height: 1.25;
}

.lf-related-grid em {
    align-self: end;
    color: #b65336;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.lf-section,
.lf-split-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 86px 32px;
}

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

.lf-section-heading h2,
.lf-split-copy h2,
.lf-ai-copy h2,
.lf-security-panel h2,
.lf-final-cta h2 {
    margin: 0;
    color: #111111;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: 0;
}

.lf-section-heading p:not(.lf-eyebrow),
.lf-split-copy p,
.lf-ai-copy p,
.lf-security-panel p {
    margin: 18px 0 0;
    color: #4a4a4a;
    font-size: 18px;
}

.lf-dashboard-section {
    max-width: none;
    background: #f6f6f6;
}

.lf-dashboard-section > * {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.lf-dashboard-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 36px;
    align-items: center;
    margin-bottom: 34px;
}

.lf-dashboard-intro h2 {
    max-width: 780px;
    margin: 0;
    color: #111111;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
}

.lf-dashboard-intro p:not(.lf-eyebrow) {
    max-width: 640px;
    margin: 16px 0 0;
    color: #4a4a4a;
    font-size: 18px;
}

.lf-dashboard-illustration {
    position: relative;
    display: grid;
    width: 156px;
    height: 132px;
    place-items: center;
    justify-self: end;
    color: #111111;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-shadow: 18px 18px 0 #ededed;
}

.lf-dashboard-illustration .lf-icon {
    font-size: 54px;
}

.lf-dashboard-illustration i,
.lf-dashboard-illustration b {
    position: absolute;
    display: block;
    right: -28px;
    bottom: 16px;
    width: 10px;
    height: 48px;
    background: #69b7be;
    border-radius: 8px 8px 0 0;
}

.lf-dashboard-illustration b {
    right: -46px;
    height: 72px;
    background: #d8d8d8;
}

.lf-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 18px;
}

.lf-quick-actions article {
    min-height: 142px;
    padding: 24px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-quick-actions .lf-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #111111;
    background: #f0f0f0;
    border-radius: 999px;
}

.lf-quick-actions article:nth-child(2) .lf-icon {
    color: #007c89;
    background: #eef6f7;
}

.lf-quick-actions article:nth-child(3) .lf-icon {
    color: #b65336;
    background: #fff0ec;
}

.lf-quick-actions article:nth-child(4) .lf-icon {
    color: #477c54;
    background: #edf8ef;
}

.lf-quick-actions strong,
.lf-quick-actions small,
.lf-metric-grid strong,
.lf-metric-grid small {
    display: block;
}

.lf-quick-actions strong {
    color: #111111;
    font-size: 16px;
}

.lf-quick-actions small {
    margin-top: 6px;
    color: #666666;
}

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

.lf-metric-grid article {
    min-height: 148px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-metric-grid .lf-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #007c89;
    background: #eef6f7;
    border-radius: 999px;
}

.lf-metric-grid article:nth-child(2) .lf-icon {
    color: #477c54;
    background: #edf8ef;
}

.lf-metric-grid article:nth-child(3) .lf-icon {
    color: #517abf;
    background: #eef3ff;
}

.lf-metric-grid article:nth-child(4) .lf-icon {
    color: #b65336;
    background: #fff0ec;
}

.lf-metric-grid p {
    margin: 12px 0 12px;
    color: #5a5a5a;
    font-size: 13px;
}

.lf-metric-grid strong {
    color: #111111;
    font-size: 38px;
    line-height: 1;
}

.lf-metric-grid small {
    margin-top: 6px;
    color: #4f4f4f;
}

.lf-dashboard-chart {
    position: relative;
    margin-top: 42px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-dashboard-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.lf-dashboard-chart-head strong,
.lf-dashboard-chart-head span {
    display: block;
}

.lf-dashboard-chart-head strong {
    color: #111111;
    font-size: 20px;
}

.lf-dashboard-chart-head span {
    margin-top: 3px;
    color: #666666;
    font-size: 14px;
}

.lf-chart-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #f7f7f7;
    border-radius: 8px;
    flex-wrap: wrap;
}

.lf-chart-tabs button {
    height: 34px;
    padding: 0 14px;
    color: #333333;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.lf-chart-tabs button:hover,
.lf-chart-tabs button.is-active {
    color: #111111;
    background: #ffffff;
}

.lf-chart-tabs button:focus-visible {
    outline: 2px solid #007c89;
    outline-offset: 2px;
}

.lf-dashboard-visual {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 10px;
    position: relative;
    min-height: 286px;
    overflow: hidden;
    margin-top: 30px;
    background: #ffffff;
}

.lf-chart-y-axis {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    align-items: start;
    padding-top: 2px;
    color: #666666;
    font-size: 12px;
    text-align: right;
}

.lf-chart-plot {
    position: relative;
    min-width: 0;
    border-bottom: 1px solid #e2e2e2;
}

.lf-chart-plot > span {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(to right, #e5e5e5 0 8px, transparent 8px 14px);
}

.lf-chart-plot > span:nth-child(1) {
    top: 0;
}

.lf-chart-plot > span:nth-child(2) {
    top: 20%;
}

.lf-chart-plot > span:nth-child(3) {
    top: 40%;
}

.lf-chart-plot > span:nth-child(4) {
    top: 60%;
}

.lf-chart-plot > span:nth-child(5) {
    top: 80%;
}

.lf-chart-plot > span:nth-child(6) {
    bottom: 0;
}

.lf-bar-chart {
    position: absolute;
    inset: 0 7% 0 7%;
    display: grid;
    grid-template-columns: repeat(var(--chart-columns, 7), minmax(0, 1fr));
    align-items: end;
    gap: clamp(12px, 2vw, 28px);
}

.lf-bar-group {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: clamp(4px, 0.6vw, 7px);
    height: 100%;
    min-width: 0;
    border-radius: 8px;
    cursor: pointer;
}

.lf-bar-group span {
    display: block;
    width: clamp(6px, 0.82vw, 12px);
    height: var(--bar-height);
    min-height: 4px;
    background: linear-gradient(180deg, var(--bar-color) 0%, var(--bar-color-mid) 58%, var(--bar-color-soft) 100%);
    border-radius: 5px 5px 0 0;
    transform-origin: bottom;
    animation: lfBarRise 460ms ease both;
    animation-delay: var(--bar-delay);
    transition: opacity 160ms ease, filter 160ms ease;
}

.lf-bar-group:hover span,
.lf-bar-group:focus-visible span {
    opacity: 0.9;
    filter: saturate(1.18);
}

.lf-bar-group:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
}

.lf-bar-group .is-templates {
    --bar-color: #007c89;
    --bar-color-mid: rgba(0, 124, 137, 0.7);
    --bar-color-soft: rgba(0, 124, 137, 0.12);
}

.lf-bar-group .is-campaigns {
    --bar-color: #b65336;
    --bar-color-mid: rgba(182, 83, 54, 0.68);
    --bar-color-soft: rgba(182, 83, 54, 0.12);
}

.lf-bar-group .is-ai {
    --bar-color: #477c54;
    --bar-color-mid: rgba(71, 124, 84, 0.68);
    --bar-color-soft: rgba(71, 124, 84, 0.12);
}

.lf-chart-series-legend {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: -10px 7% 0 calc(38px + 7% + 10px);
    color: #4f4f4f;
    font-size: 12px;
    font-weight: 700;
    flex-wrap: wrap;
}

.lf-chart-series-legend + .lf-dashboard-visual {
    margin-top: 22px;
}

.lf-chart-series-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.lf-chart-series-legend i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
}

.lf-chart-series-legend .is-templates i {
    background: #007c89;
}

.lf-chart-series-legend .is-campaigns i {
    background: #b65336;
}

.lf-chart-series-legend .is-ai i {
    background: #477c54;
}

.lf-dashboard-axis {
    display: grid;
    grid-template-columns: repeat(var(--chart-columns, 7), minmax(0, 1fr));
    gap: 12px;
    margin: 8px 7% 0 calc(38px + 7% + 10px);
    color: #666666;
    font-size: 12px;
    text-align: center;
    overflow: hidden;
}

.lf-dashboard-chart-foot {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    color: #555555;
    font-size: 13px;
}

.lf-dashboard-chart-foot em {
    color: #555555;
    font-style: normal;
}

.lf-dashboard-chart-foot .lf-icon {
    color: #555555;
    font-size: 18px;
}

.lf-chart-tooltip {
    position: absolute;
    left: var(--tooltip-left, 50%);
    top: var(--tooltip-top, 50%);
    z-index: 4;
    min-width: 168px;
    max-width: 220px;
    padding: 10px 12px;
    color: #ffffff;
    background: #111111;
    border: 1px solid #111111;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -100%) translateY(-8px);
    transition: opacity 140ms ease, transform 140ms ease;
}

.lf-chart-tooltip::after {
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background: #111111;
    border-right: 1px solid #111111;
    border-bottom: 1px solid #111111;
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.lf-chart-tooltip.is-visible {
    opacity: 1;
    transform: translate(-50%, -100%) translateY(-12px);
}

.lf-chart-tooltip span,
.lf-tooltip-row,
.lf-tooltip-row em,
.lf-tooltip-row b {
    display: block;
}

.lf-chart-tooltip span {
    color: #cfcfcf;
    font-size: 12px;
    font-weight: 700;
}

.lf-tooltip-row {
    display: grid;
    grid-template-columns: 9px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.lf-tooltip-row i {
    width: 9px;
    height: 9px;
    border-radius: 999px;
}

.lf-tooltip-row.is-templates i {
    background: #007c89;
}

.lf-tooltip-row.is-campaigns i {
    background: #b65336;
}

.lf-tooltip-row.is-ai i {
    background: #477c54;
}

.lf-tooltip-row em {
    color: #e8e8e8;
    font-size: 12px;
    font-style: normal;
}

.lf-tooltip-row b {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

@keyframes lfBarRise {
    0% {
        opacity: 0.45;
        transform: scaleY(0.18);
    }

    100% {
        opacity: 1;
        transform: scaleY(1);
    }
}

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

.lf-feature {
    min-height: 246px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-feature,
.lf-audience-layout article,
.lf-persona-grid article,
.lf-quick-actions article,
.lf-metric-grid article {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lf-feature:hover,
.lf-audience-layout article:hover,
.lf-persona-grid article:hover,
.lf-quick-actions article:hover,
.lf-metric-grid article:hover {
    transform: translateY(-2px);
    border-color: #cfcfcf;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.lf-feature .lf-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #007c89;
    background: #eef6f7;
    border-radius: 8px;
}

.lf-feature:nth-child(2) .lf-icon {
    color: #b65336;
    background: #fff0ec;
}

.lf-feature:nth-child(3) .lf-icon {
    color: #477c54;
    background: #edf8ef;
}

.lf-feature h3,
.lf-audience-layout h3 {
    margin: 22px 0 10px;
    color: #111111;
    font-size: 22px;
    line-height: 1.2;
}

.lf-feature p,
.lf-audience-layout p {
    margin: 0;
    color: #555555;
}

.lf-split-section {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1fr);
    gap: 54px;
    align-items: center;
}

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

.lf-check-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #222222;
    font-weight: 700;
}

.lf-check-list .lf-icon {
    color: #007c89;
}

.lf-flow-board {
    padding: 26px;
    background: #f7f7f7;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-flow-row {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-left: 6px solid #69b7be;
    border-radius: 8px;
}

.lf-flow-row.accent {
    border-left-color: #ffce32;
}

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

.lf-flow-row strong {
    color: #111111;
    font-size: 18px;
}

.lf-flow-row span {
    margin-top: 4px;
    color: #555555;
}

.lf-flow-line {
    width: 2px;
    height: 28px;
    margin: 0 0 0 28px;
    background: #cfcfcf;
}

.lf-ai-section {
    padding: 86px 32px;
    color: #ffffff;
    background: #111111;
}

.lf-ai-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
    gap: 56px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.lf-ai-copy .lf-eyebrow {
    color: #69b7be;
}

.lf-ai-copy h2,
.lf-ai-copy p {
    color: #ffffff;
}

.lf-ai-copy p {
    color: #d6d6d6;
}

.lf-ai-copy .lf-check-list li {
    color: #ffffff;
}

.lf-ai-copy .lf-check-list .lf-icon {
    color: #69b7be;
}

.lf-ai-workspace {
    padding: 20px;
    color: #111111;
    background: #ffffff;
    border: 1px solid #333333;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.lf-ai-toolbar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 14px;
    background: #f6f6f6;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.lf-ai-toolbar .lf-icon {
    color: #007c89;
}

.lf-ai-toolbar strong {
    font-size: 16px;
}

.lf-ai-toolbar em {
    margin-left: auto;
    padding: 5px 9px;
    color: #007c89;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    background: #eef6f7;
    border-radius: 999px;
}

.lf-ai-prompt,
.lf-ai-result {
    margin-top: 14px;
    padding: 18px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.lf-ai-prompt {
    background: #f7f7f7;
}

.lf-ai-prompt small,
.lf-ai-result span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #007c89;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.lf-ai-prompt p,
.lf-ai-result p,
.lf-ai-result h3 {
    margin: 0;
}

.lf-ai-result h3 {
    color: #111111;
    font-size: 22px;
    line-height: 1.2;
}

.lf-ai-result p {
    margin-top: 10px;
    color: #555555;
}

.lf-ai-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.lf-ai-actions span {
    padding: 8px 10px;
    color: #333333;
    font-size: 12px;
    font-weight: 700;
    background: #f0f0f0;
    border-radius: 8px;
}

.lf-muted-section {
    max-width: none;
    background: #f6f6f6;
}

.lf-muted-section .lf-section-heading,
.lf-muted-section .lf-audience-layout {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

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

.lf-audience-layout article {
    min-height: 190px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-persona-section {
    padding-top: 78px;
}

.lf-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.lf-persona-grid article {
    min-height: 230px;
    padding: 26px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-persona-grid .lf-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #007c89;
    background: #eef6f7;
    border-radius: 8px;
}

.lf-persona-grid article:nth-child(2) .lf-icon {
    color: #b65336;
    background: #fff0ec;
}

.lf-persona-grid article:nth-child(3) .lf-icon {
    color: #477c54;
    background: #edf8ef;
}

.lf-persona-grid h3 {
    margin: 22px 0 10px;
    color: #111111;
    font-size: 22px;
    line-height: 1.2;
}

.lf-persona-grid p {
    margin: 0;
    color: #555555;
}

.lf-infra-section {
    padding: 78px 32px;
    background: #f7f7f7;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
}

.lf-infra-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    gap: 44px;
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.lf-infra-inner h2 {
    margin: 0;
    color: #111111;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.12;
}

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

.lf-infra-grid span {
    display: flex;
    min-height: 58px;
    align-items: center;
    padding: 14px 16px;
    color: #222222;
    font-weight: 700;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-security-panel {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 42px;
    background: #111111;
    border-radius: 8px;
}

.lf-security-panel h2,
.lf-security-panel p {
    color: #ffffff;
}

.lf-security-panel .lf-eyebrow {
    color: #69b7be;
}

.lf-security-list {
    display: grid;
    gap: 12px;
}

.lf-security-list span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    color: #f5f5f5;
    background: #202020;
    border: 1px solid #333333;
    border-radius: 8px;
}

.lf-security-list i {
    width: 10px;
    height: 10px;
    background: #69b7be;
    border-radius: 999px;
}

.lf-seo-hero {
    padding: 46px 32px 78px;
    background: #ffffff;
    border-bottom: 1px solid #e9e9e9;
}

.lf-seo-breadcrumb,
.lf-seo-hero-grid,
.lf-seo-keywords,
.lf-seo-content {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.lf-seo-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 46px;
    color: #666666;
    font-size: 13px;
    font-weight: 700;
}

.lf-seo-breadcrumb a {
    color: #007c89;
    text-decoration: none;
}

.lf-seo-breadcrumb strong {
    color: #111111;
}

.lf-seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 52px;
    align-items: center;
}

.lf-seo-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #111111;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

.lf-seo-hero .lf-hero-copy {
    max-width: 740px;
    margin-left: 0;
    margin-right: 0;
}

.lf-seo-hero .lf-hero-actions {
    justify-content: flex-start;
}

.lf-seo-intent-card {
    display: grid;
    gap: 14px;
    padding: 26px;
    background: #f6f6f6;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-seo-intent-card .lf-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    color: #007c89;
    background: #eef6f7;
    border-radius: 8px;
}

.lf-seo-intent-card strong {
    color: #111111;
    font-size: 22px;
}

.lf-seo-intent-card p {
    margin: 0;
    color: #4f4f4f;
}

.lf-seo-keywords {
    display: flex;
    gap: 10px;
    padding: 22px 32px;
    flex-wrap: wrap;
}

.lf-seo-keywords span {
    padding: 8px 12px;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    background: #f6f6f6;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-seo-content {
    display: grid;
    gap: 20px;
    padding: 0 32px 86px;
}

.lf-seo-content-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 34px;
    align-items: start;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-seo-content-block h2 {
    margin: 0;
    color: #111111;
    font-size: 34px;
    line-height: 1.14;
}

.lf-seo-content-block p:not(.lf-eyebrow) {
    margin: 16px 0 0;
    color: #4f4f4f;
    font-size: 17px;
}

.lf-seo-content-block .lf-check-list {
    margin-top: 0;
}

.lf-related-section {
    background: #ffffff;
}

.lf-faq-section {
    max-width: none;
    background: #f6f6f6;
}

.lf-faq-section .lf-section-heading,
.lf-faq-list {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.lf-faq-list {
    display: grid;
    gap: 12px;
}

.lf-faq-item {
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 8px;
}

.lf-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 68px;
    padding: 18px 22px;
    color: #111111;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.lf-faq-item summary::-webkit-details-marker {
    display: none;
}

.lf-faq-item summary::after {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #007c89;
    background: #eef6f7;
    border-radius: 999px;
    content: "+";
}

.lf-faq-item[open] summary::after {
    content: "-";
}

.lf-faq-item p {
    margin: 0;
    padding: 0 22px 22px;
    color: #4f4f4f;
    font-size: 16px;
}

.lf-final-cta {
    max-width: 980px;
    margin: 0 auto;
    padding: 88px 32px 96px;
    text-align: center;
}

.lf-final-cta h2 {
    max-width: 820px;
    margin: 0 auto;
}

.lf-site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 40px;
    color: #555555;
    font-size: 14px;
    border-top: 1px solid #e7e7e7;
    flex-wrap: wrap;
}

.lf-site-footer a {
    text-decoration: none;
}

.lf-site-footer a:hover {
    color: #007c89;
}

@media (max-width: 980px) {
    .lf-site-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
        padding: 0 20px;
    }

    .lf-nav-toggle {
        display: inline-flex;
    }

    .lf-main-nav {
        grid-column: 1 / -1;
        display: none;
        justify-content: flex-start;
        width: 100%;
        padding: 0 0 16px;
        flex-wrap: wrap;
    }

    .lf-main-nav.is-open {
        display: flex;
    }

    .lf-header-actions {
        grid-column: 1 / -1;
        width: 100%;
        padding-bottom: 16px;
        flex-wrap: wrap;
    }

    .lf-header-actions .lf-btn {
        flex: 1;
        min-width: 0;
    }

    .lf-language-dropdown {
        order: -1;
        width: 100%;
        justify-content: center;
    }

    .lf-language-dropdown .mc-topbar-lang-btn {
        width: 100%;
        justify-content: center;
    }

    .lf-language-dropdown .mc-dropdown-menu {
        right: auto;
        left: 50%;
        transform: translate(-50%, -8px);
    }

    .lf-language-dropdown .mc-dropdown-menu.active {
        transform: translate(-50%, 0);
    }

    .lf-hero h1 {
        font-size: 42px;
    }

    .lf-app-preview,
    .lf-split-section,
    .lf-security-panel,
    .lf-dashboard-intro,
    .lf-ai-inner {
        grid-template-columns: 1fr;
    }

    .lf-preview-sidebar {
        display: none;
    }

    .lf-feature-grid,
    .lf-audience-layout,
    .lf-persona-grid,
    .lf-seo-hub-grid,
    .lf-related-grid,
    .lf-quick-actions,
    .lf-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lf-infra-inner {
        grid-template-columns: 1fr;
    }

    .lf-seo-hero-grid,
    .lf-seo-content-block {
        grid-template-columns: 1fr;
    }

    .lf-seo-hero h1 {
        font-size: 42px;
    }

    .lf-dashboard-illustration {
        justify-self: start;
        margin-left: 12px;
    }
}

@media (max-width: 640px) {
    .lf-brand img {
        width: 160px;
        height: 45px;
    }

    .lf-hero {
        padding: 48px 18px 36px;
        overflow: hidden;
    }

    .lf-hero h1 {
        font-size: 32px;
        line-height: 1.1;
    }

    .lf-hero-copy,
    .lf-section-heading p:not(.lf-eyebrow),
    .lf-split-copy p,
    .lf-security-panel p {
        font-size: 16px;
    }

    .lf-btn-large,
    .lf-hero-actions .lf-btn {
        width: 100%;
    }

    .lf-header-actions {
        gap: 8px;
    }

    .lf-header-actions .lf-btn {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 14px;
    }

    .lf-product-visual {
        margin-top: 34px;
        width: 100%;
    }

    .lf-preview-main {
        padding: 18px;
    }

    .lf-preview-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .lf-preview-topline strong {
        font-size: 24px;
    }

    .lf-preview-stats,
    .lf-feature-grid,
    .lf-audience-layout,
    .lf-persona-grid,
    .lf-seo-hub-grid,
    .lf-related-grid,
    .lf-infra-grid {
        grid-template-columns: 1fr;
    }

    .lf-preview-table {
        align-items: flex-start;
        flex-direction: column;
    }

    .lf-preview-chart {
        height: 150px;
        gap: 10px;
        padding: 18px;
    }

    .lf-section,
    .lf-split-section {
        padding: 62px 18px;
    }

    .lf-section-heading h2,
    .lf-split-copy h2,
    .lf-ai-copy h2,
    .lf-security-panel h2,
    .lf-final-cta h2,
    .lf-dashboard-intro h2 {
        font-size: 30px;
    }

    .lf-dashboard-section,
    .lf-ai-section {
        padding: 62px 18px;
    }

    .lf-seo-hero {
        padding: 32px 18px 56px;
    }

    .lf-seo-breadcrumb {
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .lf-seo-hero h1 {
        font-size: 34px;
        line-height: 1.1;
    }

    .lf-seo-hero .lf-hero-actions {
        justify-content: stretch;
    }

    .lf-seo-keywords {
        padding: 18px;
    }

    .lf-seo-content {
        padding: 0 18px 62px;
    }

    .lf-seo-content-block {
        padding: 24px;
    }

    .lf-seo-content-block h2 {
        font-size: 28px;
    }

    .lf-dashboard-intro {
        gap: 22px;
    }

    .lf-dashboard-intro p:not(.lf-eyebrow) {
        font-size: 16px;
    }

    .lf-dashboard-illustration {
        width: 132px;
        height: 112px;
        box-shadow: 12px 12px 0 #ededed;
    }

    .lf-dashboard-illustration .lf-icon {
        font-size: 46px;
    }

    .lf-quick-actions,
    .lf-metric-grid {
        grid-template-columns: 1fr;
    }

    .lf-dashboard-chart {
        padding: 18px;
    }

    .lf-dashboard-chart-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .lf-chart-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .lf-dashboard-visual {
        grid-template-columns: 32px 1fr;
        min-height: 220px;
        margin-top: 22px;
    }

    .lf-chart-y-axis {
        font-size: 11px;
    }

    .lf-bar-chart {
        left: 4%;
        right: 4%;
        gap: 8px;
    }

    .lf-bar-group {
        gap: 3px;
    }

    .lf-bar-group span {
        width: clamp(4px, 1.6vw, 8px);
    }

    .lf-chart-series-legend {
        margin-left: calc(32px + 4% + 10px);
        margin-right: 4%;
    }

    .lf-dashboard-axis {
        margin-left: calc(32px + 4% + 10px);
        margin-right: 4%;
    }

    .lf-ai-workspace {
        padding: 14px;
    }

    .lf-ai-toolbar {
        flex-wrap: wrap;
        padding: 10px 12px;
    }

    .lf-ai-toolbar em {
        margin-left: 0;
    }

    .lf-security-panel {
        padding: 26px;
    }

    .lf-faq-item summary {
        min-height: 60px;
        padding: 16px 18px;
        font-size: 16px;
    }

    .lf-faq-item p {
        padding: 0 18px 18px;
    }

    .lf-infra-section {
        padding: 62px 18px;
    }

    .lf-infra-inner h2 {
        font-size: 30px;
    }

    .lf-final-cta {
        padding: 68px 18px 76px;
    }

    .lf-site-footer {
        padding: 22px 18px;
    }
}
