@import url('./consultant-components.css?v=5');

:root {
    --p-bg: var(--c-bg);
    --p-bg-soft: #f6f2eb;
    --p-surface: rgba(255, 255, 255, 0.88);
    --p-surface-strong: rgba(255, 255, 255, 0.96);
    --p-line: rgba(45, 43, 42, 0.08);
    --p-line-strong: rgba(45, 43, 42, 0.12);
    --p-ink: var(--c-ink);
    --p-ink-soft: var(--c-ink-soft);
    --p-muted: var(--c-muted);
    --p-brand: var(--c-brand);
    --p-brand-strong: var(--c-brand-strong);
    --p-brand-soft: rgba(217, 112, 74, 0.10);
    --p-brand-softer: rgba(217, 112, 74, 0.06);
    --p-radius-lg: 18px;
    --p-radius-xl: 24px;
    --p-shadow: 0 20px 50px rgba(75, 52, 38, 0.08), 0 6px 16px rgba(75, 52, 38, 0.05);
    --p-shadow-soft: 0 10px 28px rgba(75, 52, 38, 0.06);
    --p-grid-max: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.public-shell {
    min-height: 100vh;
    font-family: var(--c-font-body);
    color: var(--p-ink);
    background:
        radial-gradient(760px 360px at 8% -8%, rgba(217, 112, 74, 0.12), transparent 65%),
        radial-gradient(640px 320px at 100% 0%, rgba(116, 141, 112, 0.08), transparent 60%),
        linear-gradient(180deg, #fbfaf7 0%, #f7f4ed 58%, #f5f1e8 100%);
    position: relative;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.public-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.3;
    background-image: radial-gradient(rgba(45, 43, 42, 0.05) 0.6px, transparent 0.6px);
    background-size: 12px 12px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0));
}

.public-wrap {
    width: min(var(--p-grid-max), calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 34px;
    position: relative;
    z-index: 1;
}

.public-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.public-brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(217, 112, 74, 0.18);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 241, 232, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), var(--p-shadow-soft);
    display: grid;
    place-items: center;
    color: var(--p-brand);
    font-family: var(--c-font-head);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.public-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.public-brand-text strong {
    font-family: var(--c-font-head);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: var(--p-ink);
}

.public-brand-text span {
    margin-top: 4px;
    font-family: var(--c-font-head);
    font-size: 10px;
    font-weight: 700;
    color: var(--p-brand);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.public-logo-stack {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.public-logo-stack .logo-main {
    font-family: var(--c-font-head);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -0.03em;
    color: var(--p-ink);
}

.public-logo-stack .logo-sub {
    margin-top: 4px;
    font-family: var(--c-font-head);
    font-size: 10px;
    font-weight: 700;
    color: var(--p-brand);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.public-link-btn,
.public-primary-btn,
.public-secondary-btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 14px;
    font: 600 14px/1 var(--c-font-body);
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--c-transition-normal), box-shadow var(--c-transition-normal), background-color var(--c-transition-normal), border-color var(--c-transition-normal), color var(--c-transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.public-link-btn {
    background: rgba(255, 255, 255, 0.66);
    color: var(--p-ink-soft);
    border-color: var(--p-line);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.public-link-btn:hover,
.public-secondary-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(217, 112, 74, 0.24);
    color: var(--p-ink);
}

.public-primary-btn {
    background: linear-gradient(180deg, var(--p-brand), var(--p-brand-strong));
    color: white;
    border-color: rgba(194, 97, 61, 0.4);
    box-shadow: 0 10px 22px rgba(217, 112, 74, 0.26);
}

.public-primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(217, 112, 74, 0.3);
}

.public-secondary-btn {
    background: rgba(255, 255, 255, 0.82);
    color: var(--p-ink);
    border-color: var(--p-line-strong);
    box-shadow: 0 8px 18px rgba(60, 40, 30, 0.05);
}

.public-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--p-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.8);
    background:
        radial-gradient(540px 220px at 10% 0%, rgba(217, 112, 74, 0.1), transparent 65%),
        radial-gradient(460px 220px at 100% 0%, rgba(116, 141, 112, 0.1), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(252, 249, 243, 0.9));
    box-shadow: var(--p-shadow);
}

.public-hero-inner {
    padding: 22px;
}

.public-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 18px;
    align-items: start;
}

.public-chip-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.public-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--p-line);
    color: var(--p-ink-soft);
    font: 600 12px/1 var(--c-font-body);
}

.public-chip b {
    color: var(--p-brand);
    font-weight: 700;
}

.public-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--p-brand);
    font: 700 12px/1 var(--c-font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--p-brand);
    box-shadow: 0 0 0 5px rgba(217, 112, 74, 0.12);
}

.public-hero h1,
.public-hero h2,
.public-section h2,
.public-section h3,
.public-card h3,
.public-login-card h1 {
    margin: 0;
    font-family: var(--c-font-head);
    letter-spacing: -0.03em;
    color: var(--p-ink);
}

.public-hero h1 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 0.98;
    max-width: 13ch;
}

.public-hero p {
    margin: 12px 0 0;
    color: var(--p-ink-soft);
    font-size: 15px;
    line-height: 1.5;
    max-width: 58ch;
}

.public-cta-row {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

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

.public-mini-card,
.public-panel,
.public-card,
.public-login-card,
.public-quote,
.public-shot-card {
    border-radius: var(--p-radius-lg);
    border: 1px solid var(--p-line);
    background: var(--p-surface);
    box-shadow: var(--p-shadow-soft);
}

.public-mini-card {
    padding: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 246, 239, 0.94));
}

.public-mini-card .k {
    font: 700 11px/1 var(--c-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--p-muted);
}

.public-mini-card .v {
    margin-top: 8px;
    color: var(--p-ink);
    font: 700 18px/1.1 var(--c-font-head);
    letter-spacing: -0.02em;
}

.public-mini-card .d {
    margin-top: 6px;
    color: var(--p-muted);
    font-size: 12px;
    line-height: 1.4;
}

.public-panel {
    padding: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 245, 238, 0.92));
}

.public-panel h3 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 17px;
    letter-spacing: -0.02em;
}

.public-panel ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.public-panel li {
    position: relative;
    padding-left: 18px;
    color: var(--p-ink-soft);
    font-size: 14px;
    line-height: 1.42;
}

.public-panel li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--p-brand);
}

.public-option-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.public-option-card {
    position: relative;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--p-line);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 22px rgba(60, 40, 30, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform var(--c-spring), border-color var(--c-transition-normal), box-shadow var(--c-transition-normal), background-color var(--c-transition-normal);
    min-height: 160px;
    display: flex;
    flex-direction: column;
}

.public-option-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 112, 74, 0.28);
    box-shadow: 0 16px 36px rgba(60, 40, 30, 0.08);
}

.public-option-tag {
    align-self: flex-start;
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--p-muted);
    border-radius: 999px;
    background: var(--p-bg-soft);
    border: 1px solid rgba(45, 43, 42, 0.06);
    padding: 6px 9px;
}

.public-option-title {
    margin-top: 14px;
    font-family: var(--c-font-head);
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.03em;
}

.public-option-text {
    margin-top: 10px;
    color: var(--p-ink-soft);
    font-size: 14px;
    line-height: 1.45;
    max-width: 26ch;
}

.public-option-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--p-brand-strong);
    font-weight: 600;
    font-size: 13px;
}

.public-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, rgba(217, 112, 74, 0.1), rgba(217, 112, 74, 0.06));
    border: 1px solid rgba(217, 112, 74, 0.12);
    color: var(--p-brand);
}

.public-option-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.public-footer-note {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    color: var(--p-muted);
    font-size: 12px;
}

.public-footer-note code {
    font-family: var(--c-font-mono);
    font-size: 11px;
    color: var(--p-ink-soft);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--p-line);
    border-radius: 999px;
    padding: 5px 10px;
}

.public-login-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 16px;
    align-items: start;
}

.public-login-card {
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(252, 248, 241, 0.94));
}

.public-login-card h1 {
    font-size: 32px;
    line-height: 0.95;
}

.public-login-card p {
    margin: 10px 0 0;
    color: var(--p-ink-soft);
    font-size: 14px;
    line-height: 1.45;
}

.public-form {
    margin-top: 18px;
    display: grid;
    gap: 14px;
}

.public-field {
    display: grid;
    gap: 6px;
}

.public-field label {
    font: 600 13px/1.2 var(--c-font-body);
    color: var(--p-ink-soft);
}

.public-field input {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1px solid rgba(45, 43, 42, 0.12);
    background: rgba(255, 255, 255, 0.92);
    padding: 0 14px;
    font: 500 14px/1 var(--c-font-body);
    color: var(--p-ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: border-color var(--c-transition-normal), box-shadow var(--c-transition-normal), background-color var(--c-transition-normal);
}

.public-field input:focus {
    outline: none;
    border-color: rgba(217, 112, 74, 0.45);
    box-shadow: 0 0 0 4px rgba(217, 112, 74, 0.12);
    background: white;
}

.public-error {
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.18);
    background: rgba(254, 242, 242, 0.8);
    color: #b91c1c;
    padding: 10px 12px;
    font-size: 13px;
}

.public-error.hidden {
    display: none;
}

.public-form-actions {
    display: grid;
    gap: 10px;
}

.public-form-submit {
    width: 100%;
    justify-content: center;
    height: 46px;
    border-radius: 12px;
    font-weight: 700;
}

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

.public-rail {
    padding: 16px;
    border-radius: var(--p-radius-lg);
    border: 1px solid var(--p-line);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 20px rgba(60, 40, 30, 0.04);
}

.public-rail h3 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.public-rail p {
    margin: 8px 0 0;
    color: var(--p-ink-soft);
    font-size: 13px;
    line-height: 1.45;
}

.public-rail-list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.public-rail-list li {
    border-radius: 12px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.75);
    padding: 11px 12px;
}

.public-rail-list strong {
    display: block;
    font: 700 13px/1.1 var(--c-font-body);
    color: var(--p-ink);
}

.public-rail-list span {
    display: block;
    margin-top: 4px;
    color: var(--p-muted);
    font-size: 12px;
    line-height: 1.35;
}

.public-section {
    margin-top: 18px;
    padding: 18px;
    border-radius: var(--p-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 237, 0.9));
    box-shadow: var(--p-shadow);
}

.public-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.public-section h2 {
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1;
}

.public-section .sub {
    color: var(--p-ink-soft);
    max-width: 72ch;
    font-size: 14px;
    line-height: 1.48;
}

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

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

.public-card {
    padding: 15px;
    background: rgba(255, 255, 255, 0.84);
}

.public-card h3 {
    font-size: 18px;
    line-height: 1.05;
}

.public-card p {
    margin: 8px 0 0;
    color: var(--p-ink-soft);
    font-size: 14px;
    line-height: 1.45;
}

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

.public-card li {
    color: var(--p-ink-soft);
    font-size: 13px;
    line-height: 1.35;
    padding-left: 16px;
    position: relative;
}

.public-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--p-brand);
    font-weight: 700;
}

.public-workflow {
    display: grid;
    gap: 10px;
}

.public-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.8);
}

.public-step-num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--p-brand-soft);
    border: 1px solid rgba(217, 112, 74, 0.18);
    color: var(--p-brand-strong);
    display: grid;
    place-items: center;
    font: 700 12px/1 var(--c-font-mono);
}

.public-step h3 {
    margin: 1px 0 0;
    font-family: var(--c-font-head);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.public-step p {
    margin: 6px 0 0;
    color: var(--p-ink-soft);
    font-size: 14px;
    line-height: 1.45;
}

.public-step-kicker {
    font: 700 11px/1 var(--c-font-mono);
    color: var(--p-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 6px;
}

.public-shot-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 14px;
    align-items: start;
}

.public-shot-stack {
    display: grid;
    gap: 14px;
}

.public-shot-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.public-shot-card img {
    width: 100%;
    display: block;
    height: auto;
    background: #f2eee6;
}

.public-shot-caption {
    padding: 12px 14px 14px;
    border-top: 1px solid rgba(45, 43, 42, 0.06);
}

.public-shot-caption strong {
    display: block;
    font-family: var(--c-font-head);
    font-size: 16px;
    letter-spacing: -0.02em;
}

.public-shot-caption span {
    display: block;
    margin-top: 4px;
    color: var(--p-ink-soft);
    font-size: 13px;
    line-height: 1.4;
}

.public-quote {
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 240, 0.95));
}

.public-quote blockquote {
    margin: 0;
    font-family: var(--c-font-display);
    color: #3e352f;
    font-size: clamp(22px, 2.4vw, 30px);
    line-height: 1.18;
}

.public-quote p {
    margin: 10px 0 0;
    color: var(--p-ink-soft);
    font-size: 14px;
    line-height: 1.45;
}

.public-kpi-row {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.public-kpi {
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.86);
    padding: 12px;
}

.public-kpi .label {
    color: var(--p-muted);
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-kpi .value {
    margin-top: 8px;
    font-family: var(--c-font-head);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.public-kpi .note {
    margin-top: 6px;
    color: var(--p-ink-soft);
    font-size: 12px;
    line-height: 1.35;
}

.public-cta-panel {
    margin-top: 16px;
    border-radius: 22px;
    border: 1px solid rgba(217, 112, 74, 0.16);
    background:
        radial-gradient(380px 140px at 0% 0%, rgba(217, 112, 74, 0.1), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(252, 247, 239, 0.92));
    box-shadow: var(--p-shadow);
    padding: 18px;
}

.public-cta-panel h2 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 1;
    letter-spacing: -0.03em;
}

.public-cta-panel p {
    margin: 10px 0 0;
    color: var(--p-ink-soft);
    max-width: 68ch;
    font-size: 14px;
    line-height: 1.48;
}

.public-page-footer {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(45, 43, 42, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--p-muted);
    font-size: 12px;
}

.public-page-footer code {
    font-family: var(--c-font-mono);
    font-size: 11px;
    color: var(--p-ink-soft);
}

@media (max-width: 1080px) {

    .public-hero-grid,
    .public-login-layout,
    .public-shot-grid {
        grid-template-columns: 1fr;
    }

    .public-option-grid,
    .public-grid-3,
    .public-kpi-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .public-wrap {
        width: min(var(--p-grid-max), calc(100% - 20px));
        padding-top: 14px;
        padding-bottom: 20px;
    }

    .public-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .public-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .public-hero-inner,
    .public-section,
    .public-login-card,
    .public-quote,
    .public-cta-panel {
        padding: 16px;
    }

    .public-option-grid,
    .public-grid-2,
    .public-grid-3,
    .public-kpi-row,
    .public-mini-grid {
        grid-template-columns: 1fr;
    }

    .public-option-card {
        min-height: 0;
    }

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

    .public-step-kicker {
        grid-column: 2;
        margin-top: 2px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================
   Marketing Page (Consulenti del Lavoro)
   Page-scoped styles: .marketing-page / .mkt-*
   ========================================= */

body.marketing-page.public-shell {
    background:
        radial-gradient(900px 520px at 50% -20%, rgba(0, 0, 0, 0.035), transparent 62%),
        #f5f5f7;
}

body.marketing-page.public-shell::before {
    opacity: 0.08;
    background-image: none;
    mask-image: none;
}

.marketing-page .public-wrap {
    width: min(1120px, calc(100% - 28px));
    padding-top: 16px;
}

.marketing-page .mkt-topbar {
    position: sticky;
    top: 10px;
    z-index: 30;
    padding: 10px 12px;
    border-radius: 16px;
    border: none;
    background: rgba(251, 251, 253, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.marketing-page .mkt-topbar .public-brand {
    padding: 6px 10px;
    border-radius: 14px;
}

.marketing-page .mkt-topbar .public-logo-stack .logo-main {
    font-size: 26px;
}

.marketing-page .mkt-topbar .public-logo-stack .logo-sub {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.marketing-page .public-hero {
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.marketing-page .public-hero-inner {
    padding: 72px 0 36px;
}

.marketing-page .public-hero h1 {
    max-width: 18ch;
}

.marketing-page .public-hero-grid {
    gap: 28px;
    align-items: center;
}

.marketing-page .mkt-kicker {
    margin: 0 0 14px;
    color: rgba(45, 43, 42, 0.68);
    font: 700 12px/1 var(--c-font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.marketing-page .mkt-hero-visual {
    position: relative;
    border-radius: 24px;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    max-width: 460px;
    margin-left: auto;
}

.marketing-page .mkt-hero-stat-label {
    color: rgba(45, 43, 42, 0.62);
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.marketing-page .mkt-hero-stat-value {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.marketing-page .mkt-hero-stat-value.mkt-hero-stat-ba {
    align-items: center;
    gap: 10px;
}

.marketing-page .mkt-hero-stat-value .n.is-pres {
    color: rgba(217, 112, 74, 0.98);
}

.marketing-page .mkt-hero-arrow {
    width: 58px;
    height: 1px;
    background: rgba(45, 43, 42, 0.20);
    position: relative;
    margin: 0 2px;
}

.marketing-page .mkt-hero-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(45, 43, 42, 0.20);
    border-top: 2px solid rgba(45, 43, 42, 0.20);
    transform: rotate(45deg);
}

.marketing-page .mkt-hero-stat-value .n {
    font-family: var(--c-font-head);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    font-size: clamp(54px, 5.5vw, 84px);
    color: rgba(45, 43, 42, 0.94);
}

.marketing-page .mkt-hero-stat-value .u {
    font-family: var(--c-font-head);
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 20px;
    color: rgba(45, 43, 42, 0.72);
}

.marketing-page .mkt-hero-stat-note {
    margin-top: 8px;
    color: rgba(45, 43, 42, 0.62);
    font-size: 12px;
    line-height: 1.45;
}

.marketing-page .mkt-hero-footnote {
    margin-top: 14px;
    color: rgba(45, 43, 42, 0.55);
    font-size: 12px;
    line-height: 1.35;
}

.marketing-page .mkt-glance {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.marketing-page .mkt-glance-item {
    padding: 14px 4px 14px 14px;
    border-left: 2px solid rgba(45, 43, 42, 0.12);
}

.marketing-page .mkt-glance-item .k {
    color: rgba(45, 43, 42, 0.62);
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.marketing-page .mkt-glance-item .t {
    margin-top: 10px;
    font-family: var(--c-font-head);
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 18px;
    line-height: 1.05;
    color: rgba(45, 43, 42, 0.94);
    max-width: 28ch;
}

.marketing-page .mkt-glance-item .d {
    margin-top: 8px;
    color: rgba(45, 43, 42, 0.66);
    font-size: 13px;
    line-height: 1.45;
    max-width: 44ch;
}

.marketing-page .mkt-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "copy visual";
    gap: 44px;
    align-items: center;
}

.marketing-page .mkt-feature-grid.is-reverse {
    grid-template-areas: "visual copy";
}

.marketing-page .mkt-feature-copy {
    grid-area: copy;
}

.marketing-page .mkt-vignette {
    grid-area: visual;
}

.marketing-page .mkt-feature-copy h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    max-width: 22ch;
}

.marketing-page .mkt-vignette {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.08);
}

.marketing-page .mkt-vignette-desktop {
    padding: 16px 16px 14px;
    background:
        radial-gradient(420px 200px at 0% 0%, rgba(217, 112, 74, 0.10), transparent 72%),
        rgba(255, 255, 255, 0.86);
}

.marketing-page .mkt-vig-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.marketing-page .mkt-vig-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 7px 10px;
    border: 1px solid rgba(45, 43, 42, 0.08);
    background: rgba(255, 255, 255, 0.7);
    color: rgba(45, 43, 42, 0.70);
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.marketing-page .mkt-vig-pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(217, 112, 74, 0.95);
    box-shadow: 0 0 0 5px rgba(217, 112, 74, 0.12);
}

.marketing-page .mkt-vig-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marketing-page .mkt-vig-chip {
    border-radius: 999px;
    padding: 7px 10px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(0, 0, 0, 0.03);
    color: rgba(45, 43, 42, 0.68);
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.marketing-page .mkt-vig-btn {
    border-radius: 999px;
    padding: 8px 12px;
    background: rgba(217, 112, 74, 0.92);
    color: white;
    font: 700 11px/1 var(--c-font-body);
    box-shadow: 0 10px 20px rgba(217, 112, 74, 0.22);
}

.marketing-page .mkt-vig-body {
    margin-top: 14px;
    border-radius: 18px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.7);
    padding: 12px;
    display: grid;
    gap: 10px;
}

.marketing-page .mkt-vig-row {
    display: grid;
    grid-template-columns: 84px 1fr 30px;
    gap: 10px;
    align-items: center;
}

.marketing-page .mkt-vig-name {
    color: rgba(45, 43, 42, 0.78);
    font-weight: 650;
    font-size: 13px;
}

.marketing-page .mkt-vig-cells {
    display: flex;
    gap: 6px;
}

.marketing-page .mkt-vig-cells .c {
    width: 14px;
    height: 14px;
    border-radius: 5px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(0, 0, 0, 0.03);
}

.marketing-page .mkt-vig-cells .c.ok {
    background: rgba(95, 127, 117, 0.14);
}

.marketing-page .mkt-vig-cells .c.ex {
    background: rgba(217, 112, 74, 0.22);
}

.marketing-page .mkt-vig-badge {
    justify-self: end;
    width: 26px;
    height: 20px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 112, 74, 0.22);
    background: rgba(217, 112, 74, 0.10);
    color: rgba(45, 43, 42, 0.72);
    font: 800 12px/1 var(--c-font-head);
}

.marketing-page .mkt-vig-foot {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    color: rgba(45, 43, 42, 0.62);
    font-size: 12px;
}

.marketing-page .mkt-vig-foot-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marketing-page .mkt-vig-foot-item .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.14);
}

.marketing-page .mkt-vig-foot-item .dot.ex {
    background: rgba(217, 112, 74, 0.85);
}

.marketing-page .mkt-vig-foot-item .dot.ok {
    background: rgba(95, 127, 117, 0.78);
}

.marketing-page .mkt-vignette-phone {
    padding: 18px;
    background:
        radial-gradient(460px 280px at 20% 0%, rgba(95, 127, 117, 0.14), transparent 70%),
        radial-gradient(420px 240px at 100% 0%, rgba(217, 112, 74, 0.12), transparent 68%),
        linear-gradient(180deg, rgba(41, 35, 33, 0.96), rgba(29, 25, 24, 0.97));
    border-color: rgba(255, 255, 255, 0.06);
}

.marketing-page .mkt-phone {
    width: min(360px, 100%);
    margin: 0 auto;
    border-radius: 28px;
    padding: 14px 14px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 26px 56px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.marketing-page .mkt-phone-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 6px 0;
    color: rgba(245, 239, 231, 0.92);
}

.marketing-page .mkt-phone-title {
    font: 800 15px/1 var(--c-font-head);
    letter-spacing: -0.02em;
}

.marketing-page .mkt-phone-sub {
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 239, 231, 0.66);
}

.marketing-page .mkt-phone-chips {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 6px;
}

.marketing-page .mkt-phone-chips .chip {
    border-radius: 999px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 239, 231, 0.84);
    font-size: 12px;
    line-height: 1;
    font-weight: 650;
}

.marketing-page .mkt-phone-card {
    margin-top: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    padding: 12px;
    color: rgba(245, 239, 231, 0.9);
}

.marketing-page .mkt-phone-card .k {
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 239, 231, 0.62);
}

.marketing-page .mkt-phone-card .v {
    margin-top: 8px;
    font: 800 16px/1.1 var(--c-font-head);
    letter-spacing: -0.02em;
}

.marketing-page .mkt-phone-card .s {
    margin-top: 6px;
    color: rgba(245, 239, 231, 0.68);
    font-size: 12px;
    line-height: 1.35;
}

.marketing-page .mkt-phone-chat {
    margin-top: 12px;
    display: grid;
    gap: 8px;
    padding: 0 6px;
}

.marketing-page .mkt-phone-chat .bubble {
    max-width: 90%;
    border-radius: 16px;
    padding: 10px 12px;
    font-size: 12px;
    line-height: 1.35;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.marketing-page .mkt-phone-chat .bubble.in {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 239, 231, 0.86);
}

.marketing-page .mkt-phone-chat .bubble.out {
    justify-self: end;
    background: rgba(217, 112, 74, 0.22);
    border-color: rgba(217, 112, 74, 0.25);
    color: rgba(255, 238, 225, 0.92);
}

.marketing-page .mkt-phone-compose {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 0 6px 6px;
}

.marketing-page .mkt-phone-compose .field {
    border-radius: 999px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(245, 239, 231, 0.55);
    font-size: 12px;
}

.marketing-page .mkt-phone-compose .send {
    border-radius: 999px;
    padding: 10px 12px;
    background: rgba(217, 112, 74, 0.88);
    border: 1px solid rgba(217, 112, 74, 0.35);
    color: white;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 14px 26px rgba(217, 112, 74, 0.22);
}

.marketing-page .mkt-final-cta {
    margin-top: 72px;
}

.mkt-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 16px;
    align-items: start;
}

.mkt-display {
    margin-top: 2px;
    font-family: var(--c-font-head);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.95;
    font-size: clamp(34px, 5vw, 62px);
    max-width: 14ch;
    color: #2d2b2a;
}

.mkt-display span {
    color: #1f1d1c;
    position: relative;
    display: inline;
    background: linear-gradient(180deg, transparent 62%, rgba(217, 112, 74, 0.14) 62%);
    border-radius: 8px;
}

.mkt-lead {
    margin: 16px 0 0;
    max-width: 58ch;
    color: #504b47;
    font-size: 16px;
    line-height: 1.52;
}

.mkt-hero-panel {
    position: relative;
}

.mkt-panel-frame {
    border-radius: 22px;
    padding: 16px;
    border: 1px solid rgba(45, 43, 42, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 242, 233, 0.88));
    box-shadow: 0 18px 40px rgba(71, 49, 36, 0.08);
    position: relative;
    overflow: hidden;
}

.mkt-panel-frame::before {
    content: "";
    position: absolute;
    inset: auto -60px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(217, 112, 74, 0.12), transparent 70%);
    pointer-events: none;
}

.mkt-panel-head {
    position: relative;
    z-index: 1;
}

.mkt-panel-kicker {
    font: 700 11px/1 var(--c-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8e837a;
}

.mkt-panel-title {
    margin-top: 10px;
    font-family: var(--c-font-head);
    font-size: 28px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #2b2827;
    max-width: 16ch;
}

.mkt-panel-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.mkt-panel-card {
    border-radius: 15px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.78);
    padding: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.mkt-panel-card h3 {
    margin: 8px 0 0;
    font-family: var(--c-font-head);
    font-size: 17px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.mkt-panel-card p {
    margin: 7px 0 0;
    color: #5a5551;
    font-size: 13px;
    line-height: 1.38;
}

.mkt-panel-card-accent {
    grid-column: 1 / -1;
    background:
        radial-gradient(260px 120px at 0% 0%, rgba(217, 112, 74, 0.09), transparent 70%),
        rgba(255, 255, 255, 0.82);
    border-color: rgba(217, 112, 74, 0.12);
}

.mkt-card-tag,
.mkt-bento-tag,
.mkt-side-card-kicker,
.mkt-mini-label,
.mkt-final-kicker,
.mkt-step-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8f837a;
}

.mkt-card-tag::before,
.mkt-bento-tag::before,
.mkt-side-card-kicker::before,
.mkt-mini-label::before,
.mkt-final-kicker::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(217, 112, 74, 0.7);
}

.mkt-panel-note {
    margin-top: 12px;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.75);
    padding: 13px;
}

.mkt-note-quote {
    font-family: var(--c-font-display);
    color: #403630;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.mkt-note-sub {
    margin-top: 8px;
    color: #6a645f;
    font-size: 12px;
    line-height: 1.4;
}

.marketing-page .mkt-section {
    margin-top: 64px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.marketing-page .public-hero+.mkt-section {
    margin-top: 40px;
}

.mkt-section-head {
    margin-bottom: 22px;
}

.mkt-section-head h2 {
    font-size: clamp(24px, 3vw, 38px);
    line-height: 0.96;
    letter-spacing: -0.035em;
    max-width: 22ch;
}

.marketing-page .mkt-subhead {
    margin: 10px 0 0;
    max-width: 72ch;
    color: rgba(45, 43, 42, 0.66);
    font-size: 16px;
    line-height: 1.55;
}

.mkt-bento {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.mkt-bento-card {
    border-radius: 22px;
    border: none;
    background: rgba(255, 255, 255, 0.72);
    padding: 18px;
    box-shadow: none;
    min-height: 170px;
}

.mkt-bento-card h3 {
    margin: 10px 0 0;
    font-family: var(--c-font-head);
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #2d2b2a;
}

.mkt-bento-card p {
    margin: 10px 0 0;
    color: #55504c;
    font-size: 14px;
    line-height: 1.46;
}

.marketing-page .mkt-bento-metric {
    margin-top: 14px;
    border-radius: 0;
    padding: 0 0 0 12px;
    background: transparent;
    border-left: 2px solid rgba(217, 112, 74, 0.55);
}

.marketing-page .mkt-bento-metric .m {
    font-family: var(--c-font-head);
    font-weight: 850;
    letter-spacing: -0.02em;
    color: rgba(45, 43, 42, 0.92);
    line-height: 1.05;
}

.marketing-page .mkt-bento-metric .s {
    margin-top: 6px;
    color: rgba(45, 43, 42, 0.62);
    font-size: 12px;
    line-height: 1.4;
}

/* Consulenti landing: ROI proof panel */
.marketing-page .mkt-roi {
    margin-top: 22px;
}

.marketing-page .mkt-roi-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 22px;
    align-items: start;
    border-radius: 26px;
    padding: 22px;
    background:
        radial-gradient(560px 240px at 0% 0%, rgba(217, 112, 74, 0.07), transparent 72%),
        rgba(255, 255, 255, 0.76);
}

.marketing-page .mkt-roi-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(45, 43, 42, 0.62);
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.marketing-page .mkt-roi-copy h3 {
    margin: 10px 0 0;
    font-family: var(--c-font-head);
    font-size: clamp(22px, 2.8vw, 34px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: rgba(45, 43, 42, 0.94);
    max-width: 24ch;
}

.marketing-page .mkt-roi-lead {
    margin: 12px 0 0;
    color: rgba(45, 43, 42, 0.66);
    font-size: 15px;
    line-height: 1.55;
    max-width: 68ch;
}

.marketing-page .mkt-roi-note {
    margin: 12px 0 0;
    color: rgba(45, 43, 42, 0.58);
    font-size: 13px;
    line-height: 1.45;
}

.marketing-page .mkt-roi-chart {
    position: relative;
    border-radius: 22px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.marketing-page .mkt-roi-chart-k {
    color: rgba(45, 43, 42, 0.58);
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.marketing-page .mkt-roi-beforeafter {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 14px;
}

.marketing-page .mkt-roi-step {
    border-radius: 18px;
    padding: 14px 14px 12px;
    background: rgba(0, 0, 0, 0.028);
    text-align: center;
}

.marketing-page .mkt-roi-step.is-pres {
    background: rgba(217, 112, 74, 0.08);
}

.marketing-page .mkt-roi-step .k {
    color: rgba(45, 43, 42, 0.62);
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.marketing-page .mkt-roi-step .n {
    margin-top: 10px;
    font-family: var(--c-font-head);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.9;
    font-size: clamp(44px, 4.2vw, 64px);
    color: rgba(45, 43, 42, 0.94);
}

.marketing-page .mkt-roi-step .u {
    margin-top: 6px;
    color: rgba(45, 43, 42, 0.70);
    font: 800 13px/1 var(--c-font-body);
}

.marketing-page .mkt-roi-arrow {
    width: 56px;
    height: 1px;
    background: rgba(45, 43, 42, 0.20);
    position: relative;
}

.marketing-page .mkt-roi-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(45, 43, 42, 0.20);
    border-top: 2px solid rgba(45, 43, 42, 0.20);
    transform: rotate(45deg);
}

.marketing-page .mkt-roi-delta {
    margin-top: 14px;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.035);
    color: rgba(45, 43, 42, 0.86);
}

.marketing-page .mkt-roi-delta .n {
    font-family: var(--c-font-head);
    font-weight: 900;
    letter-spacing: -0.03em;
    font-size: 22px;
    line-height: 1;
}

.marketing-page .mkt-roi-delta .u {
    font-family: var(--c-font-head);
    font-weight: 850;
    letter-spacing: -0.02em;
    font-size: 14px;
    color: rgba(45, 43, 42, 0.72);
}

.marketing-page .mkt-roi-delta .s {
    margin-left: 4px;
    color: rgba(45, 43, 42, 0.62);
    font-size: 12px;
    line-height: 1.2;
}

.marketing-page .mkt-benefits {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 0;
    border-top: none;
}

.marketing-page .mkt-summary .mkt-benefits {
    margin-top: 18px;
    gap: 28px;
}

.marketing-page .mkt-detail-link {
    display: inline-flex;
    margin-top: 18px;
    color: rgba(45, 43, 42, 0.78);
    text-decoration: none;
    font-weight: 650;
}

.marketing-page .mkt-detail-link:hover {
    color: rgba(45, 43, 42, 0.92);
}

.marketing-page .mkt-benefit h3 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: rgba(45, 43, 42, 0.94);
}

.marketing-page .mkt-benefit p {
    margin: 10px 0 0;
    color: rgba(45, 43, 42, 0.66);
    font-size: 14px;
    line-height: 1.5;
    max-width: 64ch;
}

.mkt-bento-card ul {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 7px;
}

.mkt-bento-card li {
    position: relative;
    padding-left: 16px;
    color: #59534f;
    font-size: 13px;
    line-height: 1.33;
}

.mkt-bento-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(217, 112, 74, 0.85);
}

.mkt-span-2 {
    grid-column: span 2;
}

.mkt-tone-brand {
    background:
        radial-gradient(420px 180px at 5% 0%, rgba(217, 112, 74, 0.10), transparent 70%),
        rgba(255, 255, 255, 0.76);
}

.mkt-tone-ink {
    background:
        radial-gradient(280px 120px at 96% 0%, rgba(95, 127, 117, 0.12), transparent 70%),
        linear-gradient(180deg, rgba(41, 35, 33, 0.96), rgba(35, 29, 28, 0.97));
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 34px rgba(38, 29, 25, 0.18);
}

.mkt-tone-ink .mkt-bento-tag,
.mkt-tone-ink h3,
.mkt-tone-ink p,
.mkt-tone-ink li {
    color: #f5efe7;
}

.mkt-tone-ink .mkt-bento-tag::before,
.mkt-tone-soft .mkt-bento-tag::before {
    background: rgba(255, 255, 255, 0.7);
}

.mkt-tone-ink p,
.mkt-tone-ink li {
    color: rgba(245, 239, 231, 0.88);
}

.mkt-tone-ink li::before {
    background: rgba(255, 255, 255, 0.75);
}

.mkt-tone-soft {
    background:
        linear-gradient(180deg, rgba(246, 247, 244, 0.85), rgba(255, 255, 255, 0.86));
}

.mkt-showcase {
    position: relative;
    border-radius: 20px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background:
        radial-gradient(500px 200px at 0% 0%, rgba(217, 112, 74, 0.07), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(247, 243, 236, 0.86));
    padding: 14px;
}

.mkt-showcase-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 14px;
    align-items: start;
}

.mkt-device-shot,
.mkt-desktop-shot {
    position: relative;
    overflow: visible;
    background: rgba(255, 255, 255, 0.9);
}

.mkt-device-shot {
    padding: 14px;
    border-radius: 18px;
}

.mkt-device-frame {
    border-radius: 26px;
    padding: 16px 14px 14px;
    background: linear-gradient(180deg, #0d1730, #09132a 55%, #081022);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 22px 44px rgba(10, 16, 32, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    max-width: 330px;
    margin: 0 auto;
    position: relative;
}

.mkt-device-notch {
    width: 110px;
    height: 18px;
    border-radius: 0 0 12px 12px;
    background: rgba(5, 8, 16, 0.95);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.mkt-device-frame img {
    display: block;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(6, 11, 24, 0.28);
}

.mkt-sticker {
    position: absolute;
    padding: 8px 10px;
    border-radius: 12px;
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #2d2b2a;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(45, 43, 42, 0.08);
    box-shadow: 0 12px 22px rgba(63, 45, 34, 0.08);
    transform: rotate(-4deg);
}

.mkt-sticker-left {
    left: -8px;
    top: 22px;
}

.mkt-desktop-stack {
    display: grid;
    gap: 14px;
}

.mkt-desktop-shot {
    border-radius: 18px;
    overflow: hidden;
}

.mkt-window-bar {
    height: 34px;
    border-bottom: 1px solid rgba(45, 43, 42, 0.06);
    background: linear-gradient(180deg, rgba(251, 248, 241, 0.98), rgba(247, 243, 236, 0.96));
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
}

.mkt-window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(45, 43, 42, 0.15);
}

.mkt-window-bar em {
    margin-left: 6px;
    font-style: normal;
    font: 600 12px/1 var(--c-font-body);
    color: #6b645e;
}

.mkt-desktop-shot img {
    width: 100%;
    display: block;
    background: #f3efe7;
}

.mkt-showcase-rail {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mkt-rail-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.74);
    padding: 11px 12px;
}

.mkt-rail-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 3px;
    background: radial-gradient(circle at 35% 35%, #f2c1aa, #d9704a 70%);
    box-shadow: 0 0 0 4px rgba(217, 112, 74, 0.11);
}

.mkt-rail-item strong {
    display: block;
    color: #2d2b2a;
    font: 700 13px/1.1 var(--c-font-body);
}

.mkt-rail-item span {
    display: block;
    margin-top: 4px;
    color: #5f5954;
    font-size: 12px;
    line-height: 1.35;
}

.mkt-flow-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 14px;
    align-items: start;
}

.mkt-timeline {
    display: grid;
    gap: 10px;
}

.mkt-timeline-step {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    border-radius: 16px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    box-shadow: 0 10px 22px rgba(70, 49, 36, 0.04);
}

.mkt-step-index {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(217, 112, 74, 0.12);
    border: 1px solid rgba(217, 112, 74, 0.20);
    color: #b85f3d;
    font: 700 12px/1 var(--c-font-mono);
}

.mkt-timeline-step h3 {
    margin: 1px 0 0;
    font-family: var(--c-font-head);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #2d2b2a;
}

.mkt-timeline-step p {
    margin: 8px 0 0;
    color: #56514d;
    font-size: 14px;
    line-height: 1.42;
}

.mkt-step-kicker {
    margin-top: 6px;
    color: #8f837a;
    white-space: nowrap;
}

.mkt-side-column {
    display: grid;
    gap: 10px;
}

.mkt-side-card-large {
    border-radius: 18px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background:
        radial-gradient(260px 110px at 0% 0%, rgba(217, 112, 74, 0.08), transparent 70%),
        rgba(255, 255, 255, 0.84);
    padding: 14px;
    box-shadow: 0 10px 24px rgba(70, 49, 36, 0.05);
}

.mkt-side-card-large h3 {
    margin: 10px 0 0;
    font-family: var(--c-font-head);
    font-size: 24px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #2d2b2a;
}

.mkt-side-card-large ul {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.mkt-side-card-large li {
    position: relative;
    padding-left: 15px;
    color: #5b5651;
    font-size: 13px;
    line-height: 1.35;
}

.mkt-side-card-large li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(217, 112, 74, 0.85);
}

.mkt-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mkt-mini-insight {
    border-radius: 16px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.78);
    padding: 12px;
    box-shadow: 0 8px 18px rgba(70, 49, 36, 0.04);
}

.mkt-mini-title {
    margin-top: 8px;
    font-family: var(--c-font-head);
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #2d2b2a;
}

.mkt-mini-insight p {
    margin: 7px 0 0;
    color: #5d5752;
    font-size: 12px;
    line-height: 1.36;
}

.mkt-final-cta {
    margin-top: 16px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background:
        radial-gradient(320px 180px at 0% 0%, rgba(217, 112, 74, 0.24), transparent 75%),
        radial-gradient(360px 180px at 100% 0%, rgba(95, 127, 117, 0.18), transparent 75%),
        linear-gradient(180deg, #2a2320 0%, #211b19 100%);
    box-shadow: 0 24px 54px rgba(33, 26, 23, 0.28);
    padding: 18px;
    color: #f6efe7;
}

.mkt-final-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 16px;
    align-items: center;
}

.mkt-final-kicker {
    color: rgba(255, 238, 225, 0.8);
}

.mkt-final-kicker::before {
    background: rgba(217, 112, 74, 0.95);
}

.mkt-final-cta h2 {
    margin: 10px 0 0;
    font-family: var(--c-font-head);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: #f7f0e9;
    max-width: 19ch;
}

.mkt-final-cta p {
    margin: 12px 0 0;
    color: rgba(247, 240, 233, 0.82);
    font-size: 14px;
    line-height: 1.48;
    max-width: 60ch;
}

.mkt-final-actions {
    justify-self: end;
    width: min(360px, 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    backdrop-filter: blur(10px);
    display: grid;
    gap: 10px;
}

.mkt-final-actions .public-primary-btn,
.mkt-final-actions .public-secondary-btn {
    justify-content: center;
    width: 100%;
}

.mkt-final-actions .public-secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #f8f2eb;
    border-color: rgba(255, 255, 255, 0.12);
}

.mkt-final-actions .public-secondary-btn:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

.mkt-final-footnote {
    color: rgba(247, 240, 233, 0.74);
    font-size: 12px;
    line-height: 1.36;
}

.mkt-page-footer {
    margin-top: 34px;
    padding: 22px 0 26px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.marketing-page .mkt-footer-copy {
    display: block;
    color: rgba(45, 43, 42, 0.58);
    font-size: 13px;
    line-height: 1.4;
}

.marketing-page .mkt-footer-byline {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.04);
    color: rgba(45, 43, 42, 0.62);
    font: 700 11px/1 var(--c-font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1180px) {

    .mkt-hero-grid,
    .mkt-flow-grid,
    .mkt-final-grid {
        grid-template-columns: 1fr;
    }

    .marketing-page .mkt-feature-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "visual";
        gap: 22px;
    }

    .marketing-page .mkt-feature-grid.is-reverse {
        grid-template-areas:
            "copy"
            "visual";
    }

    .marketing-page .mkt-glance {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mkt-panel-title {
        max-width: none;
    }

    .mkt-final-actions {
        justify-self: stretch;
    }

    .mkt-showcase-grid {
        grid-template-columns: 1fr;
    }

    .mkt-device-frame {
        max-width: 360px;
    }
}

@media (max-width: 980px) {
    .mkt-bento {
        grid-template-columns: 1fr 1fr;
    }

    .mkt-showcase-rail {
        grid-template-columns: 1fr;
    }

    .mkt-panel-grid {
        grid-template-columns: 1fr;
    }

    .mkt-panel-card-accent {
        grid-column: auto;
    }

    .mkt-mini-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .marketing-page .public-wrap {
        width: min(1260px, calc(100% - 16px));
        padding-top: 10px;
    }

    .marketing-page .mkt-topbar {
        top: 6px;
        padding: 10px;
        border-radius: 16px;
    }

    .marketing-page .public-nav {
        width: 100%;
        gap: 6px;
    }

    .marketing-page .public-nav a {
        flex: 1 1 auto;
        justify-content: center;
        text-align: center;
    }

    .marketing-page .mkt-final-cta {
        padding: 14px;
        border-radius: 20px;
    }

    .mkt-display {
        font-size: clamp(30px, 9vw, 42px);
        max-width: none;
    }

    .mkt-lead {
        font-size: 14px;
    }

    .mkt-panel-frame,
    .mkt-side-card-large,
    .mkt-bento-card,
    .mkt-device-shot,
    .mkt-final-actions {
        padding: 12px;
    }

    .mkt-bento {
        grid-template-columns: 1fr;
    }

    .mkt-span-2 {
        grid-column: auto;
    }

    .mkt-bento-card {
        min-height: 0;
    }

    .mkt-timeline-step {
        grid-template-columns: auto 1fr;
    }

    .mkt-step-kicker {
        grid-column: 2;
        margin-top: 2px;
    }

    .mkt-window-bar em {
        max-width: 60%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mkt-sticker-left {
        left: 6px;
        top: 10px;
        transform: rotate(-3deg) scale(0.92);
        transform-origin: left top;
    }

    .mkt-note-quote {
        font-size: 17px;
    }
}

/* =========================================
   Landing Page (index.html) - spacious premium layout
   ========================================= */

body.landing-page.public-shell {
    background:
        radial-gradient(800px 420px at 8% -8%, rgba(217, 112, 74, 0.12), transparent 68%),
        radial-gradient(860px 420px at 100% 2%, rgba(95, 127, 117, 0.10), transparent 70%),
        linear-gradient(180deg, #fbfaf7 0%, #f7f3ea 58%, #f5f1e8 100%);
}

.landing-page .public-wrap {
    width: min(1280px, calc(100% - 28px));
    padding-top: 16px;
    padding-bottom: 26px;
}

.landing-page .public-header {
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    background: rgba(251, 249, 244, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 24px rgba(80, 56, 40, 0.05);
}

.landing-main {
    margin-top: 14px;
    display: grid;
    gap: 14px;
}

.landing-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background:
        radial-gradient(560px 220px at 4% 0%, rgba(217, 112, 74, 0.12), transparent 70%),
        radial-gradient(540px 240px at 96% 0%, rgba(95, 127, 117, 0.10), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(250, 246, 238, 0.92));
    box-shadow: 0 24px 58px rgba(77, 54, 40, 0.08), 0 6px 18px rgba(77, 54, 40, 0.04);
    padding: 22px;
}

.landing-hero::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    right: -80px;
    top: -110px;
    background: radial-gradient(circle, rgba(217, 112, 74, 0.15), transparent 70%);
    pointer-events: none;
    filter: blur(8px);
}

.landing-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 18px;
    align-items: start;
}

.landing-copy {
    padding: 4px 2px 6px;
}

.landing-title {
    margin: 8px 0 0;
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(34px, 4.8vw, 68px);
    line-height: 0.93;
    letter-spacing: -0.045em;
    color: #2b2928;
    max-width: 11.5ch;
}

.landing-lead {
    margin: 16px 0 0;
    max-width: 56ch;
    color: #55504c;
    font-size: 16px;
    line-height: 1.55;
}

.landing-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.landing-proof-row {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

.landing-proof-pill {
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.76);
    padding: 10px 12px;
    box-shadow: 0 8px 18px rgba(66, 48, 37, 0.04);
}

.landing-proof-pill span {
    display: block;
    color: #8f837a;
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-proof-pill strong {
    display: block;
    margin-top: 7px;
    color: #2d2b2a;
    font: 700 13px/1.3 var(--c-font-body);
}

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

.landing-visual-stage {
    border-radius: 22px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background:
        radial-gradient(420px 180px at 0% 0%, rgba(217, 112, 74, 0.07), transparent 72%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 243, 235, 0.88));
    padding: 14px;
    box-shadow: 0 18px 40px rgba(73, 52, 39, 0.06);
    display: grid;
    grid-template-columns: 1fr 220px;
    grid-template-rows: auto auto;
    gap: 12px;
    align-items: start;
}

.landing-shot {
    border-radius: 18px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.88);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(70, 49, 36, 0.05);
}

.landing-shot img {
    display: block;
    width: 100%;
    height: auto;
    background: #f3efe7;
}

.landing-shot-main {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.landing-window-bar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    background: linear-gradient(180deg, rgba(251, 248, 241, 0.98), rgba(247, 243, 236, 0.95));
    border-bottom: 1px solid rgba(45, 43, 42, 0.06);
}

.landing-window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(45, 43, 42, 0.14);
}

.landing-window-bar em {
    margin-left: 6px;
    font-style: normal;
    color: #6b645e;
    font: 600 12px/1 var(--c-font-body);
}

.landing-shot-phone {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 10px;
    display: grid;
    align-content: start;
    gap: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(248, 244, 237, 0.94));
}

.landing-phone-frame {
    border-radius: 22px;
    padding: 10px;
    background: linear-gradient(180deg, #0c1731, #091227);
    box-shadow: 0 18px 34px rgba(8, 14, 27, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.landing-phone-frame img {
    border-radius: 14px;
}

.landing-shot-detail {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.landing-shot-caption {
    padding: 9px 10px 10px;
    color: #5b5651;
    font-size: 12px;
    line-height: 1.32;
}

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

.landing-choice-card {
    min-height: 240px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.9));
    box-shadow: 0 18px 42px rgba(76, 53, 39, 0.07), 0 4px 12px rgba(76, 53, 39, 0.03);
    padding: 18px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--c-spring), box-shadow var(--c-transition-normal), border-color var(--c-transition-normal);
}

.landing-choice-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 112, 74, 0.18);
    box-shadow: 0 22px 46px rgba(76, 53, 39, 0.09), 0 6px 14px rgba(76, 53, 39, 0.04);
}

.landing-choice-tag {
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(246, 241, 233, 0.8);
    color: #8f837a;
    padding: 6px 10px;
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-choice-card h2 {
    margin: 4px 0 0;
    font-family: var(--c-font-head);
    font-size: 24px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #2d2b2a;
}

.landing-choice-card p {
    margin: 0;
    color: #5b5651;
    font-size: 15px;
    line-height: 1.46;
    max-width: 30ch;
}

.landing-choice-footer {
    margin-top: auto;
    padding-top: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #d06843;
    font-weight: 600;
    font-size: 14px;
}

.landing-choice-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #d06843;
    border: 1px solid rgba(217, 112, 74, 0.12);
    background: rgba(217, 112, 74, 0.06);
}

.landing-choice-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.landing-meta {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: stretch;
}

.landing-meta-card {
    border-radius: 16px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.72);
    padding: 12px 14px;
    box-shadow: 0 10px 22px rgba(70, 49, 36, 0.04);
}

.landing-meta-kicker {
    color: #8f837a;
    font: 700 10px/1 var(--c-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.landing-meta-card p {
    margin: 8px 0 0;
    color: #56514d;
    font-size: 13px;
    line-height: 1.4;
}

.landing-meta-badge {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-meta-badge code {
    font-family: var(--c-font-mono);
    font-size: 11px;
    color: #6b645e;
    border-radius: 999px;
    border: 1px solid rgba(45, 43, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
    padding: 8px 12px;
}

@media (max-width: 1120px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
    }

    .landing-title {
        max-width: 13ch;
    }

    .landing-visual-stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .landing-shot-main,
    .landing-shot-phone,
    .landing-shot-detail {
        grid-column: auto;
        grid-row: auto;
    }

    .landing-shot-phone {
        max-width: 340px;
        justify-self: center;
    }

    .landing-choices {
        grid-template-columns: 1fr;
    }

    .landing-choice-card {
        min-height: 0;
    }

    .landing-meta {
        grid-template-columns: 1fr;
    }

    .landing-meta-badge {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .landing-page .public-wrap {
        width: min(1280px, calc(100% - 16px));
        padding-top: 10px;
    }

    .landing-page .public-header {
        padding: 10px;
        border-radius: 16px;
    }

    .landing-page .public-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .landing-hero {
        padding: 14px;
        border-radius: 20px;
    }

    .landing-title {
        font-size: clamp(30px, 9vw, 44px);
        max-width: none;
    }

    .landing-lead {
        font-size: 14px;
        line-height: 1.48;
    }

    .landing-actions {
        margin-top: 14px;
    }

    .landing-actions .public-primary-btn,
    .landing-actions .public-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .landing-visual-stage {
        padding: 10px;
        border-radius: 16px;
        gap: 10px;
    }

    .landing-window-bar em {
        max-width: 65%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .landing-choice-card {
        padding: 14px;
        border-radius: 16px;
    }

    .landing-choice-card h2 {
        font-size: 21px;
    }

    .landing-choice-card p {
        font-size: 14px;
    }
}

/* =========================================
   Landing Page v2 (serious enterprise marketing)
   ========================================= */

body.landing-page-v2.public-shell {
    background:
        radial-gradient(860px 360px at 10% -10%, rgba(217, 112, 74, 0.09), transparent 72%),
        radial-gradient(760px 320px at 96% 0%, rgba(95, 127, 117, 0.08), transparent 70%),
        linear-gradient(180deg, #faf8f3 0%, #f6f2e8 62%, #f3efe4 100%);
}

.landing-page-v2 .public-wrap {
    width: min(1280px, calc(100% - 28px));
    padding-top: 14px;
    padding-bottom: 28px;
}

.landing-page-v2 .public-header {
    position: sticky;
    top: 10px;
    z-index: 20;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(250, 248, 241, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 22px rgba(72, 52, 39, 0.05);
}

.v2-landing-main {
    margin-top: 14px;
    display: grid;
    gap: 14px;
}

.v2l-hero {
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    background:
        radial-gradient(540px 220px at 3% 0%, rgba(217, 112, 74, 0.10), transparent 70%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.92));
    box-shadow: 0 24px 54px rgba(74, 53, 40, 0.07), 0 6px 18px rgba(74, 53, 40, 0.04);
    padding: 22px;
}

.v2l-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 20px;
    align-items: start;
}

.v2l-copy {
    padding: 4px 2px 2px;
}

.v2l-title {
    margin: 10px 0 0;
    font-family: var(--c-font-head);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.94;
    font-size: clamp(36px, 5vw, 76px);
    max-width: 10.7ch;
    color: #272524;
}

.v2l-lead {
    margin: 16px 0 0;
    max-width: 54ch;
    color: #57524e;
    font-size: 16px;
    line-height: 1.54;
}

.v2l-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.v2l-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.v2l-points li {
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.74);
    padding: 12px 14px;
    color: #5b5652;
    font-size: 14px;
    line-height: 1.42;
    box-shadow: 0 8px 18px rgba(70, 49, 36, 0.04);
}

.v2l-points strong {
    color: #2e2b2a;
    font-weight: 700;
}

.v2l-visual {
    min-width: 0;
    position: relative;
    padding-top: 4px;
}

.v2l-desktop-card {
    border-radius: 20px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 38px rgba(73, 52, 39, 0.07);
    overflow: hidden;
}

.v2l-window-bar {
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(45, 43, 42, 0.06);
    background: linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(246, 241, 234, 0.96));
}

.v2l-window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(45, 43, 42, 0.14);
}

.v2l-window-bar em {
    margin-left: 6px;
    color: #6e6761;
    font-style: normal;
    font: 600 12px/1 var(--c-font-body);
}

.v2l-desktop-card img {
    display: block;
    width: 100%;
    height: auto;
    background: #f2eee5;
}

.v2l-floating-phone {
    position: absolute;
    right: 14px;
    top: 48px;
    width: 198px;
    display: grid;
    gap: 8px;
}

.v2l-phone-shell {
    border-radius: 22px;
    padding: 10px;
    background: linear-gradient(180deg, #0c1731, #091227);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 38px rgba(9, 14, 26, 0.28);
}

.v2l-phone-shell img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.v2l-note {
    justify-self: start;
    border-radius: 999px;
    border: 1px solid rgba(45, 43, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    padding: 6px 10px;
    color: #6c655f;
    font: 700 10px/1 var(--c-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.v2l-side-note {
    margin-top: 12px;
    margin-right: 212px;
    border-radius: 16px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.78);
    padding: 13px 14px;
    box-shadow: 0 10px 20px rgba(70, 49, 36, 0.04);
}

.v2l-side-note-kicker {
    color: #8f837a;
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v2l-side-note p {
    margin: 8px 0 0;
    color: #57524e;
    font-size: 13px;
    line-height: 1.42;
}

.v2l-decision {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 243, 236, 0.9));
    box-shadow: 0 20px 44px rgba(73, 52, 39, 0.06);
    padding: 18px;
}

.v2l-decision-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.v2l-decision-head h2 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 32px;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #2c2a29;
}

.v2l-decision-head p {
    margin: 8px 0 0;
    color: #5e5853;
    font-size: 14px;
    line-height: 1.45;
    max-width: 72ch;
}

.v2l-text-link {
    color: #cf6945;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.v2l-text-link:hover {
    color: #b85f3d;
}

.v2l-decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr minmax(260px, 0.8fr);
    gap: 12px;
    align-items: stretch;
}

.v2l-entry-card,
.v2l-support-card {
    border-radius: 18px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(70, 49, 36, 0.04);
}

.v2l-entry-card {
    text-decoration: none;
    color: inherit;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--c-spring), box-shadow var(--c-transition-normal), border-color var(--c-transition-normal);
}

.v2l-entry-card:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 112, 74, 0.16);
    box-shadow: 0 16px 30px rgba(70, 49, 36, 0.06);
}

.v2l-entry-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.v2l-entry-tag {
    border-radius: 999px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(247, 242, 234, 0.86);
    color: #8f837a;
    padding: 6px 10px;
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v2l-entry-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 112, 74, 0.12);
    background: rgba(217, 112, 74, 0.06);
    color: #cf6945;
}

.v2l-entry-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.v2l-entry-card h3,
.v2l-support-card h3 {
    margin: 2px 0 0;
    font-family: var(--c-font-head);
    font-size: 26px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #2d2b2a;
}

.v2l-entry-card p,
.v2l-support-card p {
    margin: 0;
    color: #5b5651;
    font-size: 14px;
    line-height: 1.46;
}

.v2l-entry-footer {
    margin-top: auto;
    padding-top: 4px;
    color: #cf6945;
    font-weight: 600;
    font-size: 14px;
}

.v2l-support-card {
    padding: 16px;
    background:
        radial-gradient(280px 140px at 100% 0%, rgba(95, 127, 117, 0.08), transparent 72%),
        rgba(255, 255, 255, 0.78);
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
}

.v2l-support-kicker,
.v2l-confidence-kicker {
    color: #8f837a;
    font: 700 10px/1 var(--c-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.v2l-support-card .public-secondary-btn {
    align-self: flex-start;
}

.v2l-confidence {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: stretch;
}

.v2l-confidence-item {
    border-radius: 16px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 20px rgba(70, 49, 36, 0.04);
    padding: 12px 14px;
}

.v2l-confidence-item p {
    margin: 8px 0 0;
    color: #59544f;
    font-size: 13px;
    line-height: 1.4;
}

.v2l-confidence-badge {
    align-self: center;
    justify-self: start;
}

.v2l-confidence-badge code {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(45, 43, 42, 0.08);
    background: rgba(255, 255, 255, 0.74);
    padding: 8px 12px;
    color: #6d6660;
    font: 700 11px/1 var(--c-font-mono);
}

@media (max-width: 1200px) {
    .v2l-hero-grid {
        grid-template-columns: 1fr;
    }

    .v2l-title {
        max-width: 12ch;
    }

    .v2l-visual {
        padding-top: 0;
    }

    .v2l-floating-phone {
        width: 184px;
    }

    .v2l-side-note {
        margin-right: 198px;
    }

    .v2l-decision-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v2l-support-card {
        grid-column: 1 / -1;
    }

    .v2l-confidence {
        grid-template-columns: 1fr 1fr;
    }

    .v2l-confidence-badge {
        grid-column: 1 / -1;
    }
}

@media (max-width: 880px) {
    .v2l-floating-phone {
        position: static;
        width: min(220px, 100%);
        margin-top: 12px;
    }

    .v2l-side-note {
        margin-right: 0;
    }

    .v2l-visual {
        display: grid;
        gap: 10px;
    }

    .v2l-decision-grid {
        grid-template-columns: 1fr;
    }

    .v2l-entry-card h3,
    .v2l-support-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 720px) {
    .landing-page-v2 .public-wrap {
        width: min(1280px, calc(100% - 16px));
        padding-top: 10px;
        padding-bottom: 18px;
    }

    .landing-page-v2 .public-header {
        top: 6px;
        padding: 10px;
        border-radius: 16px;
    }

    .v2-landing-main {
        margin-top: 10px;
        gap: 10px;
    }

    .v2l-hero,
    .v2l-decision {
        padding: 14px;
        border-radius: 18px;
    }

    .v2l-title {
        font-size: clamp(30px, 11vw, 46px);
        max-width: none;
    }

    .v2l-lead {
        font-size: 14px;
        line-height: 1.46;
    }

    .v2l-actions .public-primary-btn,
    .v2l-actions .public-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .v2l-points li {
        padding: 10px 12px;
        font-size: 13px;
    }

    .v2l-window-bar em {
        max-width: 60%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .v2l-note {
        font-size: 9px;
    }

    .v2l-decision-head h2 {
        font-size: 24px;
    }

    .v2l-decision-head p {
        font-size: 13px;
    }

    .v2l-text-link {
        font-size: 13px;
    }

    .v2l-entry-card,
    .v2l-support-card,
    .v2l-confidence-item {
        padding: 12px;
        border-radius: 14px;
    }

    .v2l-confidence {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Enterprise Landing (index.html current)
   ========================================= */

body.landing-page-v2.public-shell {
    background:
        radial-gradient(860px 380px at 10% -12%, rgba(217, 112, 74, 0.08), transparent 72%),
        radial-gradient(760px 320px at 94% 0%, rgba(95, 127, 117, 0.07), transparent 72%),
        linear-gradient(180deg, #faf8f3 0%, #f6f2e8 62%, #f2eee2 100%);
}

.landing-page-v2 .public-wrap {
    width: min(1260px, calc(100% - 28px));
    padding-top: 14px;
    padding-bottom: 24px;
}

.landing-page-v2 .public-header {
    position: sticky;
    top: 10px;
    z-index: 30;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: rgba(250, 248, 241, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 22px rgba(70, 50, 38, 0.05);
}

.enterprise-landing-main {
    margin-top: 14px;
    display: grid;
    gap: 14px;
}

.enterprise-hero,
.enterprise-decision,
.enterprise-secondary {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.91), rgba(248, 243, 235, 0.91));
    box-shadow: 0 20px 48px rgba(73, 52, 39, 0.06), 0 6px 16px rgba(73, 52, 39, 0.03);
}

.enterprise-hero {
    padding: 20px;
}

.enterprise-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 22px;
    align-items: start;
}

.enterprise-copy {
    padding: 4px 2px 0;
}

.enterprise-title {
    margin: 10px 0 0;
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(34px, 4.8vw, 66px);
    line-height: 0.94;
    letter-spacing: -0.045em;
    color: #262423;
    max-width: 11ch;
}

.enterprise-lead {
    margin: 16px 0 0;
    color: #58534e;
    font-size: 16px;
    line-height: 1.52;
    max-width: 56ch;
}

.enterprise-actions {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.enterprise-facts {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.enterprise-facts>div {
    border-radius: 12px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.72);
    padding: 10px 12px;
    color: #59544f;
    font-size: 13px;
    line-height: 1.38;
}

.enterprise-facts strong {
    color: #2d2b2a;
}

.enterprise-proof {
    min-width: 0;
    display: grid;
    gap: 10px;
}

.enterprise-proof-main {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 30px rgba(73, 52, 39, 0.05);
}

.enterprise-window-bar {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border-bottom: 1px solid rgba(45, 43, 42, 0.06);
    background: linear-gradient(180deg, rgba(250, 247, 240, 0.98), rgba(246, 241, 234, 0.96));
}

.enterprise-window-bar span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(45, 43, 42, 0.14);
}

.enterprise-window-bar em {
    margin-left: 6px;
    color: #6b645f;
    font-style: normal;
    font: 600 12px/1 var(--c-font-body);
}

.enterprise-proof-main img {
    width: 100%;
    display: block;
    background: #f2eee5;
}

.enterprise-proof-bottom {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 10px;
    align-items: start;
}

.enterprise-phone-card,
.enterprise-message-card {
    border-radius: 16px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 22px rgba(72, 51, 38, 0.04);
}

.enterprise-phone-card {
    padding: 10px;
}

.enterprise-phone-shell {
    border-radius: 18px;
    padding: 8px;
    background: linear-gradient(180deg, #0c1731, #091227);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 26px rgba(8, 14, 26, 0.22);
}

.enterprise-phone-shell img {
    display: block;
    width: 100%;
    border-radius: 12px;
}

.enterprise-caption {
    margin-top: 8px;
    color: #5f5954;
    font-size: 12px;
    line-height: 1.32;
}

.enterprise-message-card {
    padding: 12px 14px;
    display: grid;
    gap: 8px;
    align-content: start;
}

.enterprise-message-kicker,
.enterprise-confidence-kicker {
    color: #8f837a;
    font: 700 10px/1 var(--c-font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.enterprise-message-card p {
    margin: 0;
    color: #57524d;
    font-size: 13px;
    line-height: 1.42;
    max-width: 46ch;
}

.enterprise-text-link {
    color: #cf6945;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.enterprise-text-link:hover {
    color: #b85f3d;
}

.enterprise-decision {
    padding: 18px;
}

.enterprise-section-head {
    margin-bottom: 12px;
}

.enterprise-section-head h2 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 30px;
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #2b2928;
}

.enterprise-section-head p {
    margin: 8px 0 0;
    color: #5d5752;
    font-size: 14px;
    line-height: 1.42;
    max-width: 72ch;
}

.enterprise-entry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.enterprise-entry-card {
    border-radius: 18px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 22px rgba(72, 51, 38, 0.04);
    padding: 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform var(--c-spring), border-color var(--c-transition-normal), box-shadow var(--c-transition-normal);
}

.enterprise-entry-card:hover {
    transform: translateY(-2px);
    border-color: rgba(217, 112, 74, 0.16);
    box-shadow: 0 14px 28px rgba(72, 51, 38, 0.06);
}

.enterprise-entry-tag {
    align-self: flex-start;
    border-radius: 999px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(246, 241, 233, 0.86);
    color: #8f837a;
    padding: 6px 10px;
    font: 700 10px/1 var(--c-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.enterprise-entry-card h3 {
    margin: 2px 0 0;
    font-family: var(--c-font-head);
    font-size: 26px;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #2d2b2a;
}

.enterprise-entry-card p {
    margin: 0;
    color: #5a5550;
    font-size: 14px;
    line-height: 1.44;
    max-width: 34ch;
}

.enterprise-entry-footer {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #cf6945;
    font-weight: 600;
    font-size: 14px;
}

.enterprise-entry-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 112, 74, 0.12);
    background: rgba(217, 112, 74, 0.06);
    color: #cf6945;
}

.enterprise-entry-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.enterprise-secondary {
    padding: 14px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 14px;
    align-items: center;
}

.enterprise-secondary-thumb {
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(72, 51, 38, 0.04);
}

.enterprise-secondary-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

.enterprise-secondary-copy {
    display: grid;
    gap: 10px;
    align-content: start;
}

.enterprise-secondary-copy h2 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 28px;
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #2d2b2a;
    max-width: 20ch;
}

.enterprise-secondary-copy p {
    margin: 0;
    color: #5b5651;
    font-size: 14px;
    line-height: 1.45;
    max-width: 62ch;
}

.enterprise-secondary-copy .public-secondary-btn {
    justify-self: start;
}

.enterprise-confidence {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
}

.enterprise-confidence-item {
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.70);
    padding: 11px 12px;
    box-shadow: 0 8px 16px rgba(72, 51, 38, 0.035);
}

.enterprise-confidence-item p {
    margin: 7px 0 0;
    color: #5e5953;
    font-size: 12px;
    line-height: 1.36;
}

.enterprise-confidence-badge {
    align-self: center;
    justify-self: start;
}

.enterprise-confidence-badge code {
    display: inline-block;
    border-radius: 999px;
    border: 1px solid rgba(45, 43, 42, 0.08);
    background: rgba(255, 255, 255, 0.74);
    padding: 8px 12px;
    color: #6c655f;
    font: 700 11px/1 var(--c-font-mono);
}

@media (max-width: 1180px) {
    .enterprise-hero-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-title {
        max-width: 12ch;
    }

    .enterprise-secondary {
        grid-template-columns: 1fr;
    }

    .enterprise-secondary-thumb {
        max-width: 520px;
    }

    .enterprise-confidence {
        grid-template-columns: 1fr 1fr;
    }

    .enterprise-confidence-badge {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .enterprise-proof-bottom {
        grid-template-columns: 1fr;
    }

    .enterprise-phone-card {
        max-width: 220px;
    }

    .enterprise-entry-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-section-head h2 {
        font-size: 24px;
    }
}

@media (max-width: 720px) {
    .landing-page-v2 .public-wrap {
        width: min(1260px, calc(100% - 16px));
        padding-top: 10px;
        padding-bottom: 16px;
    }

    .landing-page-v2 .public-header {
        top: 6px;
        padding: 10px;
        border-radius: 16px;
    }

    .enterprise-landing-main {
        margin-top: 10px;
        gap: 10px;
    }

    .enterprise-hero,
    .enterprise-decision,
    .enterprise-secondary {
        padding: 14px;
        border-radius: 18px;
    }

    .enterprise-title {
        font-size: clamp(30px, 10vw, 46px);
        max-width: none;
    }

    .enterprise-lead {
        font-size: 14px;
        line-height: 1.46;
    }

    .enterprise-actions .public-primary-btn,
    .enterprise-actions .public-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .enterprise-facts>div {
        font-size: 12px;
        padding: 9px 10px;
    }

    .enterprise-window-bar em {
        max-width: 58%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .enterprise-entry-card,
    .enterprise-secondary-copy,
    .enterprise-confidence-item {
        border-radius: 12px;
    }

    .enterprise-entry-card {
        padding: 12px;
    }

    .enterprise-entry-card h3 {
        font-size: 22px;
    }

    .enterprise-entry-card p,
    .enterprise-secondary-copy p {
        font-size: 13px;
    }

    .enterprise-secondary-copy h2 {
        font-size: 22px;
    }

    .enterprise-confidence {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Marketing Page v2 (consulenti-del-lavoro)
   Clean, professional, trustworthy
   ========================================= */

.mkt-hero-copy {
    max-width: 720px;
}

.mkt-shift-section {
    padding: 28px 24px;
}

.mkt-shift-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
}

.mkt-shift-col {
    text-align: center;
}

.mkt-shift-label {
    color: #cf6945;
    font: 700 12px/1 var(--c-font-mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mkt-shift-text {
    margin: 0;
    color: #4a4541;
    font-size: 16px;
    line-height: 1.5;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.mkt-shift-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(45, 43, 42, 0.12), transparent);
}

.mkt-shift-conclusion {
    margin-top: 28px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(45, 43, 42, 0.06);
}

.mkt-shift-conclusion strong {
    display: block;
    font-family: var(--c-font-head);
    font-size: 24px;
    letter-spacing: -0.02em;
    color: #2d2b2a;
    margin-bottom: 8px;
}

.mkt-shift-conclusion span {
    color: #5a5550;
    font-size: 14px;
    line-height: 1.5;
    max-width: 48ch;
    display: inline-block;
}

.mkt-setup-section {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.mkt-setup-card {
    border-radius: 24px;
    border: 1px solid rgba(217, 112, 74, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(252, 247, 239, 0.95));
    box-shadow: 0 20px 48px rgba(217, 112, 74, 0.08), 0 6px 18px rgba(217, 112, 74, 0.04);
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.mkt-setup-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    right: -100px;
    top: -120px;
    background: radial-gradient(circle, rgba(217, 112, 74, 0.08), transparent 70%);
    pointer-events: none;
}

.mkt-setup-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.mkt-setup-title {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: clamp(26px, 3.5vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #2d2b2a;
}

.mkt-setup-text {
    margin: 12px 0 0;
    color: #55504c;
    font-size: 15px;
    line-height: 1.5;
}

.mkt-setup-highlight {
    margin-top: 20px;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    border-radius: 999px;
    background: rgba(217, 112, 74, 0.08);
    padding: 10px 18px;
}

.mkt-setup-time {
    font-family: var(--c-font-head);
    font-size: 18px;
    font-weight: 700;
    color: #cf6945;
}

.mkt-setup-desc {
    color: #6a645f;
    font-size: 14px;
}

.mkt-setup-text-secondary {
    margin-top: 16px;
}

.mkt-setup-note {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(45, 43, 42, 0.06);
    background: rgba(255, 255, 255, 0.7);
    color: #5a5550;
    font-size: 14px;
    line-height: 1.45;
    font-style: italic;
}

.mkt-section-header {
    margin-bottom: 20px;
}

.mkt-section-title {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1;
    letter-spacing: -0.03em;
    color: #2d2b2a;
}

.mkt-section-subtitle {
    margin: 10px 0 0;
    color: #5a5550;
    font-size: 14px;
    line-height: 1.45;
}

.mkt-benefits-list {
    display: grid;
    gap: 2px;
}

.mkt-benefit-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(45, 43, 42, 0.06);
}

.mkt-benefit-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mkt-benefit-item h3 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #2d2b2a;
}

.mkt-benefit-item p {
    margin: 6px 0 0;
    color: #5a5550;
    font-size: 14px;
    line-height: 1.45;
}

.mkt-timeline-simple {
    display: grid;
    gap: 0;
}

.mkt-timeline-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(45, 43, 42, 0.06);
    align-items: start;
}

.mkt-timeline-item:last-child {
    border-bottom: none;
}

.mkt-timeline-num {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(217, 112, 74, 0.08);
    border: 1px solid rgba(217, 112, 74, 0.15);
    color: #cf6945;
    font: 700 16px/1 var(--c-font-head);
}

.mkt-timeline-content h3 {
    margin: 0;
    font-family: var(--c-font-head);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #2d2b2a;
}

.mkt-timeline-content p {
    margin: 6px 0 0;
    color: #5a5550;
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 900px) {
    .mkt-shift-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mkt-shift-divider {
        width: 60%;
        height: 1px;
        justify-self: center;
    }

    .mkt-shift-section {
        padding: 24px 20px;
    }
}

@media (max-width: 720px) {
    .mkt-hero-copy {
        text-align: center;
    }

    .mkt-setup-card {
        padding: 20px;
    }

    .mkt-shift-conclusion strong {
        font-size: 20px;
    }

}

/* Consulenti landing: abstract flow */
.marketing-page .mkt-abstract-flow {
    margin-top: 12px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
}

.marketing-page .mkt-abstract-flow::before {
    display: none;
}

.marketing-page .mkt-flow-node {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: none;
}

.marketing-page .mkt-flow-node::after {
    display: none;
}

.marketing-page .mkt-flow-node:last-child::after {
    display: none;
}

.marketing-page .mkt-flow-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #b95f3d;
    background: rgba(217, 112, 74, 0.10);
    border: none;
}

.marketing-page .mkt-flow-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.marketing-page .mkt-flow-copy strong {
    display: block;
    font-family: var(--c-font-head);
    font-size: 16px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #2d2b2a;
}

.marketing-page .mkt-flow-copy span {
    display: block;
    margin-top: 6px;
    color: #5b5551;
    font-size: 12px;
    line-height: 1.35;
}

.marketing-page .mkt-flow-note {
    margin: 10px 0 0;
    color: #6b645e;
    font-size: 12px;
    line-height: 1.4;
}

@media (max-width: 1080px) {
    .marketing-page .mkt-abstract-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .marketing-page .mkt-abstract-flow::before {
        display: none;
    }
}

@media (max-width: 720px) {
    .marketing-page .public-hero-inner {
        padding: 26px 0 12px;
    }

    .marketing-page .mkt-hero-visual {
        padding: 16px 16px 14px;
    }

    .marketing-page .mkt-hero-stat-value {
        justify-content: center;
    }

    .marketing-page .mkt-hero-stat-note {
        text-align: center;
    }

    .marketing-page .mkt-hero-arrow {
        width: 42px;
    }

    .marketing-page .mkt-roi-inner {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .marketing-page .mkt-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .marketing-page .mkt-roi-beforeafter {
        grid-template-columns: 1fr;
    }

    .marketing-page .mkt-roi-arrow {
        display: none;
    }

    .marketing-page .mkt-roi-delta {
        justify-content: center;
        width: fit-content;
    }

    .marketing-page .mkt-abstract-flow {
        grid-template-columns: 1fr;
    }

    .marketing-page .mkt-abstract-flow::before {
        display: none;
    }

    .marketing-page .mkt-flow-node::after {
        display: none;
    }
}

/* =========================================
   Premium Marketing Page v3 (Apple/Tesla style)
   Clean, spacious, high-impact
   ========================================= */

/* Premium Hero - Pain Recognition */
.mkt-hero-premium .public-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 48px;
    align-items: center;
    padding: 48px 32px;
}

.mkt-hero-content {
    max-width: 600px;
}

.mkt-hero-premium .mkt-kicker {
    margin-bottom: 16px;
    color: rgba(45, 43, 42, 0.6);
    font: 700 13px/1 var(--c-font-mono);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mkt-hero-premium h1 {
    margin: 0;
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #1d1d1f;
    max-width: 14ch;
}

.mkt-hero-premium .mkt-lead {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.58;
    color: #424245;
    max-width: 52ch;
}

.mkt-hero-premium .public-cta-row {
    margin-top: 28px;
}

/* Premium Stat Block - Apple-style big number */
.mkt-hero-stat-premium {
    text-align: center;
    padding: 40px 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 250, 252, 0.92));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.mkt-stat-big {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.mkt-stat-number {
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(72px, 10vw, 120px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #1d1d1f;
    background: linear-gradient(180deg, #1d1d1f 0%, #424245 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mkt-stat-unit {
    font-family: var(--c-font-head);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 32px);
    color: #6e6e73;
    letter-spacing: -0.02em;
}

.mkt-hero-stat-premium .mkt-stat-label {
    margin-top: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.3;
}

.mkt-hero-stat-premium .mkt-stat-note {
    margin-top: 8px;
    font-size: 13px;
    color: #6e6e73;
    line-height: 1.4;
}

/* Full-bleed utility for sections inside .public-wrap */
.mkt-insight,
.mkt-beats,
.mkt-number-section,
.mkt-studio-view {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Core Insight Section - Full-width statement */
.mkt-insight {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.mkt-insight-inner {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.mkt-insight h2 {
    margin: 0;
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #1d1d1f;
}

.mkt-insight-lead {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #424245;
    max-width: 64ch;
    margin-left: auto;
    margin-right: auto;
}

/* Three Beats Section - How it works */
.mkt-beats {
    padding: 80px 0;
    background: #ffffff;
}

.mkt-beats-header {
    text-align: center;
    margin-bottom: 56px;
}

.mkt-beats-header h2 {
    margin: 0;
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1d1d1f;
}

.mkt-beats-header .mkt-subhead {
    margin-top: 12px;
    font-size: 16px;
    color: #6e6e73;
}

.mkt-beats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.mkt-beat {
    padding: 32px 28px;
    border-radius: 20px;
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mkt-beat:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.mkt-beat-number {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, var(--p-brand), var(--p-brand-strong));
    color: white;
    font: 800 20px/1 var(--c-font-head);
    box-shadow: 0 8px 20px rgba(217, 112, 74, 0.3);
    margin-bottom: 20px;
}

.mkt-beat h3 {
    margin: 0;
    font-family: var(--c-font-head);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.mkt-beat p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.55;
    color: #424245;
}

/* Studio View Section */
.mkt-studio-view {
    padding: 80px 0;
    background: linear-gradient(180deg, #f5f5f7 0%, #ffffff 100%);
}

.mkt-studio-view .mkt-feature-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 56px;
}

.mkt-studio-view .mkt-feature-copy h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    max-width: 16ch;
}

/* Two Tools Visual — replaces vignette in studio-view */
.mkt-two-tools-visual {
    grid-area: visual;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mkt-tool-card {
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 252, 0.92));
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mkt-tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}

.mkt-tool-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
}

.mkt-tool-title {
    margin: 0;
    font-family: var(--c-font-head);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1d1d1f;
}

.mkt-tool-desc {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #424245;
}

@media (max-width: 1080px) {
    .mkt-two-tools-visual {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 720px) {
    .mkt-two-tools-visual {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mkt-tool-card {
        padding: 22px 18px;
    }
}

/* The Number Section - Clean Apple-style stat */
.mkt-number-section {
    padding: 100px 0;
    background: #1d1d1f;
    text-align: center;
}

.mkt-number-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.mkt-number-beforeafter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
}

.mkt-number-step {
    text-align: center;
}

.mkt-number-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.mkt-number-value {
    display: block;
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(48px, 8vw, 80px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: #86868b;
}

.mkt-number-unit {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #86868b;
    font-weight: 600;
}

.mkt-number-step-pres .mkt-number-label {
    color: rgba(217, 112, 74, 0.9);
}

.mkt-number-step-pres .mkt-number-value {
    color: #f5f5f7;
}

.mkt-number-step-pres .mkt-number-unit {
    color: #f5f5f7;
}

.mkt-number-arrow {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #86868b, #f5f5f7);
    position: relative;
}

.mkt-number-arrow::after {
    content: "";
    position: absolute;
    right: -1px;
    top: -5px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #f5f5f7;
    border-top: 2px solid #f5f5f7;
    transform: rotate(45deg);
}

.mkt-number-section h2 {
    margin: 0;
    font-family: var(--c-font-head);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: #f5f5f7;
}

.mkt-number-lead {
    margin-top: 16px;
    font-size: 18px;
    color: #86868b;
}

.mkt-number-detail {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #6e6e73;
}

.mkt-number-detail strong {
    color: #f5f5f7;
    font-weight: 600;
}

/* Responsive for Premium v3 */
@media (max-width: 1080px) {
    .mkt-hero-premium .public-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mkt-hero-content {
        max-width: 100%;
    }

    .mkt-hero-premium h1 {
        max-width: none;
    }

    .mkt-hero-premium .mkt-lead {
        max-width: 64ch;
        margin-left: auto;
        margin-right: auto;
    }

    .mkt-hero-premium .public-cta-row {
        justify-content: center;
    }

    .mkt-hero-stat-premium {
        max-width: 400px;
        margin: 0 auto;
    }

    .mkt-beats-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .mkt-studio-view .mkt-feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .mkt-number-beforeafter {
        flex-direction: column;
        gap: 16px;
    }

    .mkt-number-arrow {
        width: 2px;
        height: 32px;
        background: linear-gradient(180deg, #86868b, #f5f5f7);
    }

    .mkt-number-arrow::after {
        right: -4px;
        top: auto;
        bottom: -1px;
        transform: rotate(135deg);
    }
}

@media (max-width: 720px) {
    .mkt-hero-premium .public-hero-inner {
        padding: 32px 20px;
    }

    .mkt-hero-premium h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .mkt-hero-premium .mkt-lead {
        font-size: 15px;
    }

    .mkt-hero-stat-premium {
        padding: 28px 20px;
    }

    .mkt-stat-number {
        font-size: 72px;
    }

    .mkt-stat-unit {
        font-size: 20px;
    }

    .mkt-insight {
        padding: 56px 0;
    }

    .mkt-insight h2 {
        font-size: clamp(24px, 7vw, 36px);
    }

    .mkt-insight-lead {
        font-size: 16px;
    }

    .mkt-beats {
        padding: 56px 0;
    }

    .mkt-beats-header {
        margin-bottom: 36px;
    }

    .mkt-beat {
        padding: 24px 20px;
    }

    .mkt-studio-view {
        padding: 56px 0;
    }

    .mkt-number-section {
        padding: 64px 0;
    }

    .mkt-number-section h2 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .mkt-number-value {
        font-size: 56px;
    }
}
