:root {
    --sodo-navy: #14213d;
    --sodo-ink: #111827;
    --sodo-muted: #667085;
    --sodo-line: #dfe5ee;
    --sodo-mist: #f4f7fb;
    --sodo-white: #ffffff;
    --sodo-coral: #ff6257;
    --sodo-blue: #4da3ff;
    --sodo-green: #35d6a1;
    --sodo-blue-strong: #2563eb;
    --sodo-shadow: 0 24px 60px rgba(20, 33, 61, 0.14);
    --sodo-shell: 1180px;
}

html {
    scroll-behavior: smooth;
}

body.sodo-site-body {
    margin: 0 !important;
    padding: 0 !important;
    background: var(--sodo-white) !important;
    color: var(--sodo-ink) !important;
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0;
    overflow-x: hidden;
}

body.sodo-site-body * {
    box-sizing: border-box;
}

body.sodo-site-body img {
    max-width: 100%;
    height: auto;
}

.sodo-site {
    min-height: 100vh;
    background: var(--sodo-white);
    color: var(--sodo-ink);
}

.sodo-site a {
    color: inherit;
    text-decoration: none;
}

.sodo-site button,
.sodo-site input,
.sodo-site select,
.sodo-site textarea {
    font: inherit;
    letter-spacing: 0;
}

.sodo-site h1,
.sodo-site h2,
.sodo-site h3,
.sodo-site p {
    margin-top: 0;
}

.sodo-site h1,
.sodo-site h2,
.sodo-site h3 {
    color: var(--sodo-ink);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.sodo-shell {
    width: min(calc(100% - 48px), var(--sodo-shell));
    margin-inline: auto;
}

.sodo-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.sodo-skip-link {
    position: fixed;
    z-index: 99999;
    top: 10px;
    left: 10px;
    padding: 10px 14px;
    background: var(--sodo-navy);
    color: var(--sodo-white) !important;
    transform: translateY(-140%);
}

.sodo-skip-link:focus {
    transform: translateY(0);
}

.sodo-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 76px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(223, 229, 238, 0.8);
    transition: box-shadow 180ms ease;
}

.admin-bar .sodo-header {
    top: 32px;
}

.sodo-header.is-scrolled {
    box-shadow: 0 10px 34px rgba(20, 33, 61, 0.08);
}

.sodo-header-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 34px;
}

.sodo-brand {
    display: inline-flex;
    width: 174px;
    height: 48px;
    align-items: center;
    flex: 0 0 auto;
}

.sodo-brand img {
    display: block;
    width: 174px;
}

.sodo-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

.sodo-nav a {
    position: relative;
    padding: 24px 0;
    color: #475467;
    font-size: 15px;
    font-weight: 600;
}

.sodo-nav a::after {
    position: absolute;
    right: 0;
    bottom: 14px;
    left: 0;
    height: 2px;
    background: var(--sodo-coral);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 160ms ease, transform 160ms ease;
}

.sodo-nav a:hover,
.sodo-nav a.is-active {
    color: var(--sodo-ink);
}

.sodo-nav a.is-active::after,
.sodo-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.sodo-nav-login,
.sodo-nav-demo {
    display: none !important;
}

.sodo-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sodo-login-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sodo-navy);
    font-size: 15px;
    font-weight: 650;
}

.sodo-login-link .sodo-icon {
    width: 18px;
    height: 18px;
}

.sodo-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.sodo-button-primary {
    background: var(--sodo-blue-strong);
    color: var(--sodo-white) !important;
}

.sodo-button-primary:hover {
    background: #1d4ed8;
}

.sodo-button-secondary {
    border-color: #cfd7e4;
    background: var(--sodo-white);
    color: var(--sodo-navy) !important;
}

.sodo-button-secondary:hover {
    border-color: var(--sodo-navy);
}

.sodo-button-small {
    min-height: 42px;
    padding: 0 17px;
    font-size: 14px;
}

.sodo-button-white {
    background: var(--sodo-white);
    color: var(--sodo-navy) !important;
}

.sodo-button-full {
    width: 100%;
}

.sodo-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--sodo-line);
    border-radius: 6px;
    background: var(--sodo-white);
    color: var(--sodo-navy);
}

.sodo-menu-toggle .sodo-icon {
    width: 23px;
    height: 23px;
}

.sodo-menu-close {
    display: none;
}

.sodo-menu-toggle[aria-expanded="true"] .sodo-menu-open {
    display: none;
}

.sodo-menu-toggle[aria-expanded="true"] .sodo-menu-close {
    display: inline-flex;
}

.sodo-hero {
    overflow: hidden;
    padding: 82px 0 42px;
    background: var(--sodo-white);
}

.sodo-hero-copy {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.sodo-eyebrow,
.sodo-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--sodo-blue-strong);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: 0;
    text-transform: uppercase;
}

.sodo-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sodo-green);
    box-shadow: 0 0 0 5px rgba(53, 214, 161, 0.15);
}

.sodo-hero h1 {
    margin-bottom: 10px;
    color: var(--sodo-navy);
    font-size: 62px;
}

.sodo-hero-statement {
    margin-bottom: 20px;
    color: var(--sodo-ink);
    font-size: 43px;
    font-weight: 700;
    line-height: 1.12;
}

.sodo-hero-description {
    max-width: 770px;
    margin: 0 auto 28px;
    color: var(--sodo-muted);
    font-size: 20px;
    line-height: 1.55;
}

.sodo-hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.sodo-hero-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 26px;
    margin-top: 24px;
}

.sodo-hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
}

.sodo-hero-points .sodo-icon {
    width: 17px;
    height: 17px;
    color: #16a77a;
}

.sodo-product-stage {
    position: relative;
    max-width: 1100px;
    margin: 54px auto 0;
    padding: 0 36px 34px 0;
}

.sodo-product-stage::before {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 0;
    width: 68%;
    height: 72%;
    border: 1px solid #d9e3f0;
    background: var(--sodo-mist);
    content: "";
}

.sodo-product-window {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 515px;
    border: 1px solid #cfd8e6;
    border-radius: 8px;
    background: var(--sodo-white);
    box-shadow: var(--sodo-shadow);
}

.sodo-window-bar {
    display: grid;
    grid-template-columns: 170px minmax(240px, 1fr) 190px;
    align-items: center;
    height: 62px;
    padding: 0 18px;
    border-bottom: 1px solid var(--sodo-line);
    background: var(--sodo-white);
    gap: 20px;
}

.sodo-window-brand,
.sodo-window-user {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--sodo-navy);
}

.sodo-window-brand img {
    width: 27px;
}

.sodo-window-search {
    overflow: hidden;
    height: 35px;
    padding: 7px 14px;
    border: 1px solid #e1e7f0;
    border-radius: 5px;
    background: #f8fafc;
    color: #98a2b3;
    font-size: 12px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sodo-window-user {
    justify-self: end;
}

.sodo-window-user > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sodo-navy);
    color: var(--sodo-white);
    font-size: 11px;
    font-weight: 700;
}

.sodo-window-user div {
    display: grid;
    line-height: 1.15;
}

.sodo-window-user strong {
    font-size: 12px;
}

.sodo-window-user small {
    color: #98a2b3;
    font-size: 10px;
}

.sodo-window-layout {
    display: grid;
    grid-template-columns: 178px 1fr;
    min-height: 452px;
}

.sodo-window-sidebar {
    padding: 21px 12px;
    background: var(--sodo-navy);
    color: #bfc9dc;
}

.sodo-window-sidebar div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 43px;
    padding: 0 11px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.sodo-window-sidebar .sodo-icon {
    width: 17px;
    height: 17px;
}

.sodo-window-sidebar .is-current {
    background: rgba(255, 255, 255, 0.11);
    color: var(--sodo-white);
}

.sodo-window-main {
    min-width: 0;
    padding: 26px 28px;
    background: #f7f9fc;
}

.sodo-window-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sodo-window-heading div {
    display: grid;
}

.sodo-window-heading small {
    color: #98a2b3;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.sodo-window-heading strong {
    color: var(--sodo-ink);
    font-size: 21px;
}

.sodo-window-heading button {
    height: 35px;
    padding: 0 13px;
    border: 0;
    border-radius: 5px;
    background: var(--sodo-blue-strong);
    color: var(--sodo-white);
    font-size: 11px;
    font-weight: 700;
}

.sodo-window-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.sodo-window-metrics > div {
    display: grid;
    min-height: 88px;
    padding: 12px 14px;
    border: 1px solid #e0e6ef;
    border-radius: 6px;
    background: var(--sodo-white);
}

.sodo-window-metrics span {
    color: #667085;
    font-size: 10px;
}

.sodo-window-metrics strong {
    color: var(--sodo-navy);
    font-size: 24px;
    line-height: 1.1;
}

.sodo-window-metrics small {
    color: #16a77a;
    font-size: 9px;
}

.sodo-lead-table {
    overflow: hidden;
    border: 1px solid #e0e6ef;
    border-radius: 6px;
    background: var(--sodo-white);
}

.sodo-lead-row {
    display: grid;
    grid-template-columns: 1.45fr .72fr .9fr .8fr .7fr;
    align-items: center;
    min-height: 64px;
    padding: 0 14px;
    border-bottom: 1px solid #edf0f5;
    gap: 8px;
    color: #475467;
    font-size: 10px;
}

.sodo-lead-row:last-child {
    border-bottom: 0;
}

.sodo-lead-head {
    min-height: 34px;
    background: #fafbfc;
    color: #98a2b3;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.sodo-lead-row > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sodo-lead-row i {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef3ff;
    color: var(--sodo-blue-strong);
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
}

.sodo-lead-row b {
    display: grid;
    color: var(--sodo-ink);
    font-size: 10px;
}

.sodo-lead-row b small {
    color: #98a2b3;
    font-size: 8px;
    font-weight: 500;
}

.sodo-lead-row em {
    display: inline-flex;
    width: fit-content;
    min-height: 22px;
    align-items: center;
    padding: 0 7px;
    border-radius: 4px;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.sodo-source-meta {
    background: #fff0ee;
    color: #d94239;
}

.sodo-source-web {
    background: #eaf3ff;
    color: #2563eb;
}

.sodo-source-wa {
    background: #e9faf4;
    color: #138763;
}

.sodo-stage-talk {
    background: #fff7e6;
    color: #a45f00;
}

.sodo-stage-new {
    background: #eff4ff;
    color: #3157b7;
}

.sodo-stage-meet {
    background: #ecfdf3;
    color: #137a50;
}

.sodo-message-popover {
    position: absolute;
    z-index: 2;
    right: -12px;
    bottom: 0;
    width: 310px;
    padding: 16px;
    border: 1px solid #d9e2ed;
    border-radius: 7px;
    background: var(--sodo-white);
    box-shadow: 0 20px 45px rgba(20, 33, 61, 0.18);
}

.sodo-message-head {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    gap: 9px;
}

.sodo-message-avatar {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--sodo-blue-strong);
    font-size: 11px;
    font-weight: 700;
}

.sodo-message-head div {
    display: grid;
    line-height: 1.2;
}

.sodo-message-head strong {
    font-size: 12px;
}

.sodo-message-head small {
    color: #98a2b3;
    font-size: 9px;
}

.sodo-online {
    width: 8px;
    height: 8px;
    margin-left: auto;
    border-radius: 50%;
    background: var(--sodo-green);
}

.sodo-message-bubble {
    margin-left: 24px;
    padding: 10px 12px;
    border-radius: 6px 6px 0 6px;
    background: #e9faf4;
    color: #24423a;
    font-size: 10px;
    line-height: 1.45;
}

.sodo-message-status {
    display: flex;
    align-items: center;
    margin-top: 12px;
    gap: 7px;
    color: #7a8495;
    font-size: 9px;
}

.sodo-message-status .sodo-icon {
    width: 14px;
    height: 14px;
    color: var(--sodo-coral);
}

.sodo-signal-band {
    padding: 32px 0 68px;
}

.sodo-signal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--sodo-line);
}

.sodo-signal-grid > div {
    padding: 34px 34px 0 0;
}

.sodo-signal-grid > div + div {
    padding-left: 34px;
    border-left: 1px solid var(--sodo-line);
}

.sodo-step-number {
    display: block;
    margin-bottom: 25px;
    color: var(--sodo-coral);
    font-size: 13px;
    font-weight: 800;
}

.sodo-signal-grid h2 {
    margin-bottom: 10px;
    font-size: 23px;
}

.sodo-signal-grid p {
    margin-bottom: 0;
    color: var(--sodo-muted);
    font-size: 15px;
}

.sodo-section {
    padding: 104px 0;
}

.sodo-section-light {
    background: var(--sodo-mist);
}

.sodo-section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    margin-bottom: 52px;
    gap: 80px;
}

.sodo-section-heading h2,
.sodo-ai-intro h2,
.sodo-reliability h2 {
    max-width: 700px;
    margin-bottom: 0;
    font-size: 43px;
}

.sodo-section-heading > p {
    margin-bottom: 3px;
    color: var(--sodo-muted);
    font-size: 17px;
}

.sodo-channel-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.sodo-channel-list {
    display: grid;
}

.sodo-channel-list article {
    display: grid;
    grid-template-columns: 50px 1fr;
    padding: 25px 0;
    border-bottom: 1px solid #d9e1eb;
    gap: 18px;
}

.sodo-channel-list article:first-child {
    padding-top: 0;
}

.sodo-channel-list article:last-child {
    border-bottom: 0;
}

.sodo-feature-icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.sodo-feature-icon .sodo-icon {
    width: 22px;
    height: 22px;
}

.sodo-feature-coral {
    background: #fff0ee;
    color: #d94239;
}

.sodo-feature-green {
    background: #e8faf4;
    color: #168665;
}

.sodo-feature-blue {
    background: #eaf3ff;
    color: #2563eb;
}

.sodo-channel-list h3 {
    margin-bottom: 6px;
    font-size: 20px;
}

.sodo-channel-list p {
    margin-bottom: 0;
    color: var(--sodo-muted);
    font-size: 15px;
}

.sodo-timeline-panel {
    overflow: hidden;
    border: 1px solid #d8e0eb;
    border-radius: 8px;
    background: var(--sodo-white);
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.1);
}

.sodo-timeline-header {
    display: flex;
    align-items: center;
    min-height: 82px;
    padding: 0 25px;
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-timeline-header > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.sodo-timeline-header > div span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf3ff;
    color: var(--sodo-blue-strong);
    font-size: 11px;
    font-weight: 700;
}

.sodo-timeline-header em {
    margin-left: auto;
    padding: 5px 8px;
    border-radius: 4px;
    background: #e9faf4;
    color: #147b5b;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.sodo-timeline {
    margin: 0;
    padding: 30px 28px;
    list-style: none;
}

.sodo-timeline li {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    min-height: 78px;
    gap: 14px;
}

.sodo-timeline li::before {
    position: absolute;
    top: 14px;
    bottom: -2px;
    left: 6px;
    width: 1px;
    background: #dce4ed;
    content: "";
}

.sodo-timeline li:last-child {
    min-height: 46px;
}

.sodo-timeline li:last-child::before {
    display: none;
}

.sodo-timeline li > i {
    position: relative;
    z-index: 1;
    width: 13px;
    height: 13px;
    margin-top: 3px;
    border: 3px solid var(--sodo-white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #dce4ed;
}

.sodo-timeline .is-new > i {
    background: var(--sodo-coral);
}

.sodo-timeline .is-message > i {
    background: var(--sodo-green);
}

.sodo-timeline .is-owner > i {
    background: var(--sodo-blue);
}

.sodo-timeline .is-calendar > i {
    background: var(--sodo-navy);
}

.sodo-timeline li div {
    display: grid;
    align-content: start;
}

.sodo-timeline li strong {
    color: var(--sodo-ink);
    font-size: 14px;
}

.sodo-timeline li span {
    color: #98a2b3;
    font-size: 12px;
}

.sodo-ai-band {
    background: var(--sodo-navy);
    color: var(--sodo-white);
}

.sodo-ai-band .sodo-shell {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 80px;
}

.sodo-ai-intro h2 {
    color: var(--sodo-white);
}

.sodo-ai-intro > p {
    margin: 22px 0 26px;
    color: #c5cee0;
    font-size: 17px;
}

.sodo-ai-band .sodo-kicker {
    color: var(--sodo-green);
}

.sodo-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--sodo-white) !important;
    font-weight: 700;
}

.sodo-text-link .sodo-icon {
    width: 18px;
    height: 18px;
}

.sodo-ai-report {
    overflow: hidden;
    min-height: 465px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 8px;
    background: var(--sodo-white);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
    color: var(--sodo-ink);
}

.sodo-report-top {
    display: flex;
    align-items: center;
    min-height: 86px;
    padding: 0 26px;
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-report-top > div {
    display: flex;
    align-items: center;
    gap: 13px;
}

.sodo-report-top > div > span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #e8faf4;
    color: #168665;
}

.sodo-report-top div div {
    display: grid;
    line-height: 1.2;
}

.sodo-report-top small {
    color: #98a2b3;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.sodo-report-top strong {
    font-size: 17px;
}

.sodo-report-top em {
    margin-left: auto;
    padding: 5px 9px;
    border-radius: 4px;
    background: #e8faf4;
    color: #147b5b;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.sodo-report-tabs {
    display: flex;
    padding: 0 26px;
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-report-tabs button {
    position: relative;
    padding: 17px 18px 15px 0;
    border: 0;
    background: transparent;
    color: #7a8495;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
}

.sodo-report-tabs button + button {
    padding-left: 18px;
}

.sodo-report-tabs button.is-active {
    color: var(--sodo-blue-strong);
}

.sodo-report-tabs button.is-active::after {
    position: absolute;
    right: 18px;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--sodo-blue-strong);
    content: "";
}

.sodo-report-tabs button + button.is-active::after {
    left: 18px;
}

.sodo-report-content {
    display: none;
    min-height: 310px;
    padding: 32px 28px;
}

.sodo-report-content.is-active {
    display: block;
}

.sodo-report-score {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-report-score > strong {
    display: inline-flex;
    width: 88px;
    height: 88px;
    align-items: center;
    justify-content: center;
    border: 9px solid #d8f6eb;
    border-top-color: var(--sodo-green);
    border-radius: 50%;
    color: var(--sodo-navy);
    font-size: 28px;
}

.sodo-report-score > span {
    display: grid;
    color: var(--sodo-navy);
    font-size: 17px;
    font-weight: 700;
}

.sodo-report-score small {
    color: #168665;
    font-size: 11px;
    font-weight: 600;
}

.sodo-report-note {
    margin-top: 25px;
    padding: 17px 18px;
    border-left: 4px solid var(--sodo-coral);
    background: #fff7f6;
}

.sodo-report-note b {
    font-size: 12px;
}

.sodo-report-note p {
    margin: 5px 0 0;
    color: #5e6878;
    font-size: 13px;
}

.sodo-staff-row,
.sodo-opportunity {
    display: grid;
    grid-template-columns: 1fr 50px 1.4fr;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid var(--sodo-line);
    gap: 12px;
    font-size: 13px;
}

.sodo-staff-row b {
    color: var(--sodo-blue-strong);
    font-size: 18px;
}

.sodo-staff-row em {
    color: var(--sodo-muted);
    font-size: 11px;
    font-style: normal;
}

.sodo-opportunity {
    grid-template-columns: 54px 1fr;
}

.sodo-opportunity span {
    color: var(--sodo-coral);
    font-size: 28px;
    font-weight: 800;
}

.sodo-opportunity p {
    margin: 0;
    color: var(--sodo-muted);
    font-size: 13px;
}

.sodo-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--sodo-line);
    border-left: 1px solid var(--sodo-line);
}

.sodo-feature-grid article {
    min-height: 260px;
    padding: 34px;
    border-right: 1px solid var(--sodo-line);
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-feature-grid article > span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border-radius: 6px;
    background: var(--sodo-mist);
    color: var(--sodo-blue-strong);
}

.sodo-section-light .sodo-feature-grid article > span {
    background: var(--sodo-white);
}

.sodo-feature-grid h3 {
    margin-bottom: 9px;
    font-size: 20px;
}

.sodo-feature-grid p {
    margin-bottom: 0;
    color: var(--sodo-muted);
    font-size: 15px;
}

.sodo-reliability {
    background: #f0faf7;
}

.sodo-reliability-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.sodo-reliability p {
    margin: 22px 0 0;
    color: var(--sodo-muted);
    font-size: 17px;
}

.sodo-retry-visual {
    padding: 16px 28px;
    border: 1px solid #cde7de;
    border-radius: 8px;
    background: var(--sodo-white);
}

.sodo-retry-visual > div {
    display: flex;
    align-items: center;
    min-height: 82px;
    border-bottom: 1px solid #e3eee9;
    gap: 15px;
}

.sodo-retry-visual > div:last-child {
    border-bottom: 0;
}

.sodo-retry-visual > div > .sodo-icon,
.sodo-retry-visual > div > .sodo-loader {
    width: 30px;
    height: 30px;
    padding: 6px;
    border-radius: 50%;
}

.sodo-retry-visual .is-complete > .sodo-icon {
    background: #e4f8f0;
    color: #168665;
}

.sodo-retry-visual > div:last-child > .sodo-icon {
    background: #eaf3ff;
    color: var(--sodo-blue-strong);
}

.sodo-retry-visual span {
    display: grid;
}

.sodo-retry-visual strong {
    font-size: 14px;
}

.sodo-retry-visual small {
    color: var(--sodo-muted);
    font-size: 12px;
}

.sodo-loader {
    position: relative;
    border: 3px solid #e5ecf4;
    border-top-color: var(--sodo-coral);
}

.sodo-faq-section {
    background: var(--sodo-white);
}

.sodo-faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    align-items: start;
    gap: 90px;
}

.sodo-faq-layout > div:first-child {
    position: sticky;
    top: 118px;
}

.sodo-faq-layout h2 {
    margin-bottom: 18px;
    font-size: 40px;
}

.sodo-faq-layout > div:first-child p {
    color: var(--sodo-muted);
    font-size: 16px;
}

.sodo-faq-list {
    border-top: 1px solid var(--sodo-line);
}

.sodo-faq-list details {
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-faq-list summary {
    position: relative;
    padding: 25px 46px 25px 0;
    color: var(--sodo-ink);
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    list-style: none;
}

.sodo-faq-list summary::-webkit-details-marker {
    display: none;
}

.sodo-faq-list summary::before,
.sodo-faq-list summary::after {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 15px;
    height: 2px;
    background: var(--sodo-blue-strong);
    content: "";
    transform: translateY(-50%);
}

.sodo-faq-list summary::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 160ms ease;
}

.sodo-faq-list details[open] summary::after {
    transform: translateY(-50%) rotate(0);
}

.sodo-faq-list details p {
    max-width: 700px;
    margin: -5px 0 24px;
    color: var(--sodo-muted);
    font-size: 15px;
}

.sodo-cta-band {
    padding: 68px 0;
    background: var(--sodo-blue-strong);
    color: var(--sodo-white);
}

.sodo-cta-band .sodo-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.sodo-cta-band span {
    display: block;
    margin-bottom: 8px;
    color: #dce7ff;
    font-size: 14px;
    font-weight: 700;
}

.sodo-cta-band h2 {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--sodo-white);
    font-size: 34px;
}

.sodo-footer {
    padding: 72px 0 28px;
    background: #0f1a30;
    color: #c3ccdc;
}

.sodo-footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding-bottom: 54px;
    gap: 60px;
}

.sodo-footer-brand img {
    width: 175px;
    filter: brightness(0) invert(1);
}

.sodo-footer-brand p {
    margin: 15px 0 0;
    color: #aab5c8;
}

.sodo-footer-main > div:not(.sodo-footer-brand) {
    display: grid;
    align-content: start;
    gap: 9px;
}

.sodo-footer-main strong {
    margin-bottom: 6px;
    color: var(--sodo-white);
    font-size: 13px;
}

.sodo-footer-main a {
    color: #aab5c8;
    font-size: 13px;
}

.sodo-footer-main a:hover {
    color: var(--sodo-white);
}

.sodo-footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #8f9bb0;
    font-size: 12px;
}

.sodo-whatsapp-float {
    position: fixed;
    z-index: 999;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #20bd74;
    box-shadow: 0 12px 28px rgba(20, 33, 61, 0.2);
    color: var(--sodo-white) !important;
}

.sodo-whatsapp-float .sodo-icon {
    width: 25px;
    height: 25px;
}

.sodo-subhero {
    padding: 100px 0 92px;
    border-bottom: 1px solid var(--sodo-line);
    background: var(--sodo-white);
}

.sodo-subhero .sodo-shell {
    max-width: 980px;
    margin-left: max(24px, calc((100% - var(--sodo-shell)) / 2));
}

.sodo-subhero h1 {
    max-width: 940px;
    margin-bottom: 24px;
    font-size: 58px;
}

.sodo-subhero p {
    max-width: 780px;
    margin-bottom: 30px;
    color: var(--sodo-muted);
    font-size: 20px;
}

.sodo-feature-detail {
    padding-top: 48px;
}

.sodo-detail-row {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    min-height: 540px;
    padding: 72px 0;
    border-bottom: 1px solid var(--sodo-line);
    gap: 90px;
}

.sodo-detail-row.is-reverse .sodo-detail-copy {
    order: 2;
}

.sodo-detail-copy > span {
    display: block;
    margin-bottom: 18px;
    color: var(--sodo-coral);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.sodo-detail-copy h2 {
    margin-bottom: 20px;
    font-size: 39px;
}

.sodo-detail-copy p {
    margin-bottom: 0;
    color: var(--sodo-muted);
    font-size: 17px;
}

.sodo-detail-visual {
    border: 1px solid #d8e0eb;
    border-radius: 8px;
    background: var(--sodo-mist);
    box-shadow: 0 22px 52px rgba(20, 33, 61, 0.09);
}

.sodo-inbox-visual {
    padding: 22px;
}

.sodo-inbox-visual > div {
    display: grid;
    grid-template-columns: 12px 1fr auto;
    align-items: center;
    min-height: 86px;
    padding: 0 18px;
    border-bottom: 1px solid var(--sodo-line);
    background: var(--sodo-white);
    gap: 15px;
}

.sodo-inbox-visual > div:first-child {
    border-radius: 6px 6px 0 0;
}

.sodo-inbox-visual > div:last-child {
    border-bottom: 0;
    border-radius: 0 0 6px 6px;
}

.sodo-inbox-visual i {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sodo-dot-coral {
    background: var(--sodo-coral);
}

.sodo-dot-green {
    background: var(--sodo-green);
}

.sodo-dot-blue {
    background: var(--sodo-blue);
}

.sodo-inbox-visual span {
    display: grid;
}

.sodo-inbox-visual strong {
    font-size: 14px;
}

.sodo-inbox-visual small {
    color: var(--sodo-muted);
    font-size: 11px;
}

.sodo-inbox-visual em {
    padding: 4px 8px;
    border-radius: 4px;
    background: var(--sodo-mist);
    color: var(--sodo-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.sodo-pipeline-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 370px;
    padding: 22px;
    gap: 12px;
}

.sodo-pipeline-visual > div {
    padding: 15px 12px;
    border-top: 3px solid var(--sodo-blue);
    background: #eef3fa;
}

.sodo-pipeline-visual > div:nth-child(2) {
    border-top-color: var(--sodo-coral);
}

.sodo-pipeline-visual > div:nth-child(3) {
    border-top-color: var(--sodo-green);
}

.sodo-pipeline-visual > div > strong {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
}

.sodo-pipeline-visual > div > span {
    display: grid;
    margin-bottom: 10px;
    padding: 13px;
    border: 1px solid #dce3ed;
    border-radius: 5px;
    background: var(--sodo-white);
}

.sodo-pipeline-visual b {
    font-size: 11px;
}

.sodo-pipeline-visual small {
    color: var(--sodo-muted);
    font-size: 9px;
}

.sodo-chat-visual {
    min-height: 390px;
    padding: 45px 38px;
    background: #edf8f4;
}

.sodo-chat-visual > div {
    width: fit-content;
    max-width: 78%;
    margin-bottom: 17px;
    padding: 15px 17px;
    border-radius: 7px;
    font-size: 14px;
}

.sodo-chat-visual .from-customer {
    background: var(--sodo-white);
}

.sodo-chat-visual .from-team {
    margin-left: auto;
    background: #d8f6ea;
}

.sodo-chat-visual > small {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
    gap: 8px;
    color: #168665;
    font-size: 11px;
}

.sodo-chat-visual > small .sodo-icon {
    width: 15px;
    height: 15px;
}

.sodo-ai-subhero {
    background: #f0faf7;
}

.sodo-ai-page {
    padding-top: 72px;
}

.sodo-ai-dashboard {
    overflow: hidden;
    border: 1px solid #d6dee9;
    border-radius: 8px;
    background: var(--sodo-white);
    box-shadow: var(--sodo-shadow);
}

.sodo-ai-dashboard-head {
    display: flex;
    align-items: center;
    min-height: 94px;
    padding: 0 34px;
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-ai-dashboard-head > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sodo-ai-dashboard-head > div > span {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: #e8faf4;
    color: #168665;
}

.sodo-ai-dashboard-head div div {
    display: grid;
}

.sodo-ai-dashboard-head small {
    color: var(--sodo-muted);
    font-size: 11px;
}

.sodo-ai-dashboard-head strong {
    font-size: 19px;
}

.sodo-ai-dashboard-head em {
    margin-left: auto;
    color: var(--sodo-muted);
    font-size: 12px;
    font-style: normal;
}

.sodo-ai-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--sodo-line);
}

.sodo-ai-kpis > div {
    display: grid;
    padding: 30px 34px;
    border-right: 1px solid var(--sodo-line);
}

.sodo-ai-kpis > div:last-child {
    border-right: 0;
}

.sodo-ai-kpis span {
    color: var(--sodo-muted);
    font-size: 12px;
}

.sodo-ai-kpis strong {
    color: var(--sodo-navy);
    font-size: 35px;
}

.sodo-ai-kpis small {
    color: #168665;
    font-size: 11px;
}

.sodo-ai-insights {
    padding: 18px 34px 34px;
}

.sodo-ai-insights article {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    min-height: 120px;
    border-bottom: 1px solid var(--sodo-line);
    gap: 18px;
}

.sodo-ai-insights article:last-child {
    border-bottom: 0;
}

.sodo-ai-insights article > span {
    color: var(--sodo-coral);
    font-size: 13px;
    font-weight: 800;
}

.sodo-ai-insights h3 {
    margin-bottom: 6px;
    font-size: 17px;
}

.sodo-ai-insights p {
    max-width: 720px;
    margin-bottom: 0;
    color: var(--sodo-muted);
    font-size: 13px;
}

.sodo-ai-insights em {
    padding: 6px 9px;
    border-radius: 4px;
    background: var(--sodo-mist);
    color: var(--sodo-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
}

.sodo-ai-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #d9e1eb;
    border-left: 1px solid #d9e1eb;
}

.sodo-ai-capabilities article {
    min-height: 230px;
    padding: 34px;
    border-right: 1px solid #d9e1eb;
    border-bottom: 1px solid #d9e1eb;
}

.sodo-ai-capabilities article > span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 6px;
    background: var(--sodo-white);
    color: var(--sodo-blue-strong);
}

.sodo-ai-capabilities h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.sodo-ai-capabilities p {
    margin-bottom: 0;
    color: var(--sodo-muted);
    font-size: 14px;
}

.sodo-contact-page {
    padding: 92px 0 110px;
    background: var(--sodo-mist);
}

.sodo-contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
    gap: 90px;
}

.sodo-contact-copy {
    position: sticky;
    top: 120px;
}

.sodo-contact-copy h1 {
    margin-bottom: 22px;
    font-size: 50px;
}

.sodo-contact-copy > p {
    color: var(--sodo-muted);
    font-size: 18px;
}

.sodo-contact-points {
    display: grid;
    margin-top: 36px;
    gap: 22px;
}

.sodo-contact-points > div {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 13px;
}

.sodo-contact-points .sodo-icon {
    margin-top: 3px;
    color: #168665;
}

.sodo-contact-points span {
    display: grid;
}

.sodo-contact-points strong {
    font-size: 15px;
}

.sodo-contact-points small {
    color: var(--sodo-muted);
    font-size: 13px;
}

.sodo-direct-contact {
    display: grid;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid #d8e0eb;
    gap: 5px;
}

.sodo-direct-contact span {
    color: var(--sodo-muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sodo-direct-contact a {
    color: var(--sodo-blue-strong);
    font-size: 15px;
    font-weight: 650;
}

.sodo-contact-form-wrap {
    padding: 38px;
    border: 1px solid #d9e1eb;
    border-radius: 8px;
    background: var(--sodo-white);
    box-shadow: 0 22px 50px rgba(20, 33, 61, 0.08);
}

.sodo-contact-form {
    display: grid;
    gap: 20px;
}

.sodo-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sodo-contact-form label {
    display: grid;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
}

.sodo-contact-form input,
.sodo-contact-form select,
.sodo-contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid #cfd8e5;
    border-radius: 5px;
    outline: 0;
    background: var(--sodo-white);
    color: var(--sodo-ink);
    font-size: 15px;
    font-weight: 500;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.sodo-contact-form textarea {
    min-height: 118px;
    resize: vertical;
}

.sodo-contact-form input:focus,
.sodo-contact-form select:focus,
.sodo-contact-form textarea:focus {
    border-color: var(--sodo-blue-strong);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.sodo-form-consent {
    margin: -8px 0 0;
    color: var(--sodo-muted);
    font-size: 11px;
    text-align: center;
}

.sodo-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    white-space: nowrap !important;
}

.sodo-form-notice {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding: 14px 16px;
    border-radius: 5px;
    gap: 10px;
    font-size: 13px;
}

.sodo-form-notice span {
    display: grid;
}

.sodo-form-notice.is-success {
    background: #e8faf4;
    color: #126d52;
}

.sodo-form-notice.is-error {
    background: #fff0ee;
    color: #a93630;
}

.sodo-legal-page {
    padding: 86px 0 110px;
}

.sodo-legal-layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 780px);
    align-items: start;
    gap: 90px;
}

.sodo-legal-layout aside {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 4px;
}

.sodo-legal-layout aside > span {
    margin-bottom: 10px;
    color: var(--sodo-muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.sodo-legal-layout aside a {
    padding: 10px 12px;
    border-left: 2px solid transparent;
    color: var(--sodo-muted);
    font-size: 14px;
    font-weight: 600;
}

.sodo-legal-layout aside a.is-active {
    border-left-color: var(--sodo-coral);
    background: var(--sodo-mist);
    color: var(--sodo-ink);
}

.sodo-legal-layout article h1 {
    margin-bottom: 24px;
    font-size: 50px;
}

.sodo-legal-layout article > p {
    color: var(--sodo-muted);
    font-size: 17px;
}

.sodo-legal-layout article h2 {
    margin: 45px 0 12px;
    font-size: 24px;
}

.sodo-legal-layout article a {
    color: var(--sodo-blue-strong);
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .sodo-nav {
        gap: 20px;
    }

    .sodo-header-actions .sodo-login-link span {
        display: none;
    }

    .sodo-product-stage {
        max-width: 1000px;
    }

    .sodo-channel-layout,
    .sodo-ai-band .sodo-shell,
    .sodo-reliability-grid,
    .sodo-contact-layout {
        gap: 54px;
    }

    .sodo-section-heading {
        gap: 50px;
    }

    .sodo-lead-row {
        grid-template-columns: 1.5fr .8fr .9fr .8fr;
    }

    .sodo-lead-row > span:last-child {
        display: none;
    }
}

@media (max-width: 900px) {
    .admin-bar .sodo-header {
        top: 46px;
    }

    .sodo-header {
        height: 70px;
    }

    .sodo-brand,
    .sodo-brand img {
        width: 154px;
    }

    .sodo-menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .sodo-header-actions {
        display: none;
    }

    .sodo-nav {
        position: absolute;
        z-index: 10;
        top: 69px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--sodo-line);
        background: var(--sodo-white);
        box-shadow: 0 18px 30px rgba(20, 33, 61, 0.11);
    }

    .sodo-nav.is-open {
        display: grid;
    }

    .sodo-nav a {
        padding: 14px 0;
        border-bottom: 1px solid #edf0f5;
    }

    .sodo-nav a::after {
        display: none;
    }

    .sodo-nav .sodo-nav-login,
    .sodo-nav .sodo-nav-demo {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
        padding: 13px;
        border: 1px solid #cfd8e5;
        border-radius: 6px;
        color: var(--sodo-navy);
        font-size: 14px;
        font-weight: 700;
    }

    .sodo-nav .sodo-nav-demo {
        margin-top: 8px;
        border-color: var(--sodo-blue-strong);
        background: var(--sodo-blue-strong);
        color: var(--sodo-white);
    }

    .sodo-hero {
        padding-top: 64px;
    }

    .sodo-hero h1 {
        font-size: 54px;
    }

    .sodo-hero-statement {
        font-size: 37px;
    }

    .sodo-product-stage {
        padding-right: 24px;
    }

    .sodo-product-window {
        min-height: 475px;
    }

    .sodo-window-bar {
        grid-template-columns: 135px 1fr;
    }

    .sodo-window-user {
        display: none;
    }

    .sodo-window-layout {
        grid-template-columns: 138px 1fr;
    }

    .sodo-window-main {
        padding: 22px 20px;
    }

    .sodo-message-popover {
        right: -4px;
        width: 280px;
    }

    .sodo-signal-grid {
        grid-template-columns: 1fr;
    }

    .sodo-signal-grid > div,
    .sodo-signal-grid > div + div {
        padding: 28px 0;
        border-bottom: 1px solid var(--sodo-line);
        border-left: 0;
    }

    .sodo-step-number {
        margin-bottom: 12px;
    }

    .sodo-section {
        padding: 82px 0;
    }

    .sodo-section-heading,
    .sodo-channel-layout,
    .sodo-ai-band .sodo-shell,
    .sodo-reliability-grid,
    .sodo-contact-layout {
        grid-template-columns: 1fr;
    }

    .sodo-section-heading {
        align-items: start;
        gap: 22px;
    }

    .sodo-section-heading h2,
    .sodo-ai-intro h2,
    .sodo-reliability h2 {
        font-size: 38px;
    }

    .sodo-channel-layout,
    .sodo-ai-band .sodo-shell,
    .sodo-reliability-grid {
        gap: 44px;
    }

    .sodo-faq-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sodo-faq-layout > div:first-child {
        position: static;
    }

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

    .sodo-cta-band .sodo-shell {
        align-items: flex-start;
        flex-direction: column;
    }

    .sodo-footer-main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .sodo-footer-brand {
        grid-column: 1 / -1;
    }

    .sodo-subhero {
        padding: 78px 0 72px;
    }

    .sodo-subhero .sodo-shell {
        margin-inline: auto;
    }

    .sodo-subhero h1 {
        font-size: 48px;
    }

    .sodo-detail-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sodo-detail-row.is-reverse .sodo-detail-copy {
        order: initial;
    }

    .sodo-contact-copy {
        position: static;
    }

    .sodo-contact-layout {
        gap: 48px;
    }

    .sodo-legal-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sodo-legal-layout aside {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .sodo-legal-layout aside > span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .sodo-shell {
        width: min(calc(100% - 32px), var(--sodo-shell));
    }

    .sodo-hero {
        padding: 52px 0 28px;
    }

    .sodo-eyebrow,
    .sodo-kicker {
        font-size: 11px;
    }

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

    .sodo-hero-statement {
        font-size: 31px;
    }

    .sodo-hero-description {
        font-size: 17px;
    }

    .sodo-hero-actions {
        display: grid;
    }

    .sodo-hero-actions .sodo-button {
        width: 100%;
    }

    .sodo-hero-points {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .sodo-product-stage {
        margin-top: 38px;
        padding: 0 0 20px;
    }

    .sodo-product-stage::before {
        right: -16px;
        width: 80%;
    }

    .sodo-product-window {
        min-height: 410px;
    }

    .sodo-window-bar {
        grid-template-columns: 100px 1fr;
        height: 52px;
        padding: 0 11px;
        gap: 8px;
    }

    .sodo-window-brand strong {
        font-size: 12px;
    }

    .sodo-window-search {
        height: 32px;
        font-size: 9px;
    }

    .sodo-window-layout {
        display: block;
        min-height: 360px;
    }

    .sodo-window-sidebar {
        display: none;
    }

    .sodo-window-main {
        min-height: 360px;
        padding: 17px 12px;
    }

    .sodo-window-heading {
        margin-bottom: 13px;
    }

    .sodo-window-heading strong {
        font-size: 16px;
    }

    .sodo-window-metrics {
        gap: 6px;
    }

    .sodo-window-metrics > div {
        min-height: 70px;
        padding: 9px;
    }

    .sodo-window-metrics strong {
        font-size: 19px;
    }

    .sodo-window-metrics small {
        display: none;
    }

    .sodo-lead-row {
        grid-template-columns: 1.5fr .75fr .8fr;
        padding: 0 9px;
    }

    .sodo-lead-row > span:nth-child(4),
    .sodo-lead-row > span:nth-child(5) {
        display: none;
    }

    .sodo-message-popover {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 24px);
        margin: -58px 12px 0;
    }

    .sodo-signal-band {
        padding-top: 24px;
    }

    .sodo-section {
        padding: 66px 0;
    }

    .sodo-section-heading {
        margin-bottom: 35px;
    }

    .sodo-section-heading h2,
    .sodo-ai-intro h2,
    .sodo-reliability h2 {
        font-size: 32px;
    }

    .sodo-section-heading > p,
    .sodo-ai-intro > p,
    .sodo-reliability p {
        font-size: 16px;
    }

    .sodo-channel-list article {
        grid-template-columns: 42px 1fr;
        gap: 14px;
    }

    .sodo-feature-icon {
        width: 42px;
        height: 42px;
    }

    .sodo-timeline-header {
        padding: 0 17px;
    }

    .sodo-timeline {
        padding: 25px 20px;
    }

    .sodo-ai-report {
        min-height: 430px;
    }

    .sodo-report-top,
    .sodo-report-tabs,
    .sodo-report-content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .sodo-report-tabs button {
        flex: 1;
        padding-right: 4px;
        padding-left: 4px;
        font-size: 10px;
    }

    .sodo-report-tabs button + button {
        padding-left: 4px;
    }

    .sodo-report-tabs button.is-active::after,
    .sodo-report-tabs button + button.is-active::after {
        right: 4px;
        left: 4px;
    }

    .sodo-feature-grid,
    .sodo-ai-capabilities {
        grid-template-columns: 1fr;
    }

    .sodo-feature-grid article {
        min-height: 220px;
        padding: 28px;
    }

    .sodo-feature-grid article > span {
        margin-bottom: 24px;
    }

    .sodo-retry-visual {
        padding: 10px 17px;
    }

    .sodo-faq-layout h2 {
        font-size: 32px;
    }

    .sodo-faq-list summary {
        padding-top: 21px;
        padding-bottom: 21px;
        font-size: 15px;
    }

    .sodo-cta-band {
        padding: 54px 0;
    }

    .sodo-cta-band h2 {
        font-size: 28px;
    }

    .sodo-footer {
        padding-top: 54px;
    }

    .sodo-footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 38px 24px;
    }

    .sodo-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .sodo-subhero {
        padding: 60px 0 58px;
    }

    .sodo-subhero h1 {
        font-size: 38px;
    }

    .sodo-subhero p {
        font-size: 17px;
    }

    .sodo-detail-row {
        min-height: 0;
        padding: 55px 0;
    }

    .sodo-detail-copy h2 {
        font-size: 32px;
    }

    .sodo-pipeline-visual {
        min-height: 330px;
        padding: 12px;
        gap: 7px;
    }

    .sodo-pipeline-visual > div {
        padding: 11px 7px;
    }

    .sodo-pipeline-visual > div > span {
        padding: 9px 7px;
    }

    .sodo-chat-visual {
        padding: 34px 20px;
    }

    .sodo-ai-dashboard-head {
        align-items: flex-start;
        min-height: 120px;
        padding: 24px;
        flex-direction: column;
        gap: 12px;
    }

    .sodo-ai-dashboard-head em {
        margin-left: 0;
    }

    .sodo-ai-kpis {
        grid-template-columns: 1fr;
    }

    .sodo-ai-kpis > div {
        padding: 22px 24px;
        border-right: 0;
        border-bottom: 1px solid var(--sodo-line);
    }

    .sodo-ai-insights {
        padding: 10px 24px 24px;
    }

    .sodo-ai-insights article {
        grid-template-columns: 30px 1fr;
        padding: 22px 0;
    }

    .sodo-ai-insights em {
        grid-column: 2;
        width: fit-content;
    }

    .sodo-contact-page {
        padding: 62px 0 78px;
    }

    .sodo-contact-copy h1 {
        font-size: 39px;
    }

    .sodo-contact-form-wrap {
        padding: 24px 18px;
    }

    .sodo-form-row {
        grid-template-columns: 1fr;
    }

    .sodo-legal-page {
        padding: 60px 0 80px;
    }

    .sodo-legal-layout aside {
        grid-template-columns: 1fr;
    }

    .sodo-legal-layout article h1 {
        font-size: 39px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .sodo-button,
    .sodo-header {
        transition: none;
    }
}
