/* SEO page design aligned to responsive Figma frames.
   Breakpoints follow design notes: >1440, 1440, 990, 667, 393. */

body._seo,
html._seo {
    overflow: auto !important;
    height: auto !important;
    position: relative !important;
}

.home_marketing_main.seo_marketing_main {
    background: #f7f7f9;
}

/*
 * automatan-2.css sets `section > div { width: 1280px; margin: 40px auto; }` for legacy pages.
 * SEO sections live inside `.seo_page_container`; that fixed width forces card grids wider than
 * the padded container and clips the right column (e.g. ~1291px viewports).
 */
.home_marketing_main.seo_marketing_main section > div {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.seo_page_container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 75px 120px;
    box-sizing: border-box;
    color: #111111;
    font-family: "Helvetica", "Helvetica Neue", Arial, sans-serif;
}

/* One line; if content is wider than the row, JS adds .seo_page_breadcrumb_hidden (see seo_transformation.js). */
.seo_page_breadcrumb {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 0 45px;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 24px;
    color: #242424;
    display: flex;
    justify-content: center;
}

.seo_page_breadcrumb_inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.seo_page_breadcrumb_inner > * {
    flex-shrink: 0;
}

.seo_page_breadcrumb_hidden {
    display: none;
}

.seo_page_breadcrumb_item_current {
    white-space: nowrap;
}

.seo_page_breadcrumb_sep {
    color: #666666;
    font-size: 12px;
}

.seo_hero_section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.seo_hero_title {
    margin: 0 auto;
    width: 100%;
    max-width: 850px;
    box-sizing: border-box;
    color: #3F3F3F;
    text-align: center;
    font-family: Helvetica;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 72px;
    letter-spacing: 0.123px;
}

.seo_hero_summary {
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
    /* font-size: 18px; */
    /* line-height: 27px; */
    /* font-weight: 400; */
    /* color: #333333; */
    color: #3F3F3F;
    text-align: center;
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.449px;
}

.seo_hero_buttons {
    width: 356px;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Hero CTAs — Figma SEO page: 52px height, padding 14px 28px, radius 50px, gap 6px between label and icon. */
.seo_hero_cta {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 52px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
}

.seo_hero_cta_primary {
    background: #4c68ff;
    color: #ffffff;
    border-color: transparent;
}

a.seo_hero_cta_primary:link,
a.seo_hero_cta_primary:visited {
    background: #4c68ff;
    color: #ffffff;
    text-decoration: none;
}

/* Hover only: pressed/focused state keeps base fill so “Analyze Now” does not flash darker on click. */
.seo_hero_cta_primary:hover {
    background: #3d56e6;
    color: #ffffff;
    border-color: transparent;
    outline: none;
    text-decoration: none;
}

.seo_hero_cta_primary:focus-visible {
    background: #4c68ff;
    color: #ffffff;
    border-color: transparent;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    text-decoration: none;
}

.seo_hero_cta_primary:focus:not(:focus-visible),
.seo_hero_cta_primary:active {
    background: #4c68ff;
    color: #ffffff;
    border-color: transparent;
    outline: none;
    text-decoration: none;
}

/* Same footprint as primary; outline style per Figma. */
.seo_hero_cta_secondary {
    background: #ffffff;
    color: #111111;
    border-color: #d2d2d2;
}

.seo_hero_cta_secondary:visited {
    color: #111111;
    text-decoration: none;
}

.seo_hero_cta_secondary:hover,
.seo_hero_cta_secondary:focus-visible,
.seo_hero_cta_secondary:focus,
.seo_hero_cta_secondary:active {
    border-color: #b9b9b9;
    outline: none;
    color: #111111;
    text-decoration: none;
    background: #ffffff;
}

.seo_button {
    height: 52px;
    border-radius: 12px;
    border: 1px solid transparent;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s ease;
    box-sizing: border-box;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.seo_button_secondary {
    background: #ffffff;
    color: #111111;
    border-color: #d2d2d2;
}

.seo_button_secondary:hover,
.seo_button_secondary:focus-visible,
.seo_button_secondary:focus,
.seo_button_secondary:active {
    border-color: #d2d2d2;
    background: #f5f5f5;
    color: #111111;
    outline: none;
    text-decoration: none;
}

.seo_missing_data {
    color: #858585;
    font-style: italic;
}

.seo_section_title {
    margin: 0 auto;
    width: 100%;
    max-width: 850px;
    box-sizing: border-box;
    color: #3F3F3F;
    text-align: center;
    font-family: Helvetica;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.352px;
}

.seo_decision_outcomes_section,
.seo_solutions_section,
.seo_apps_section,
.seo_insights_section,
.seo_stakeholders_section {
    width: 100%;
    margin-top: 100px;
    top: auto;
    min-height: auto;
}

.seo_decision_outcomes_section .seo_section_title {
    color: #3F3F3F;
    text-align: center;
    font-family: Helvetica;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.352px;
}

.seo_solutions_overview,
.seo_insights_overview,
.seo_apps_overview,
.seo_stakeholders_overview {
    margin: 20px auto 0;
    text-align: center;
    color: #333333;
}

.seo_solutions_overview,
.seo_insights_overview,
.seo_apps_overview {
    max-width: 900px;
    color: #3F3F3F;
    text-align: center;
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.44px;
}

.seo_stakeholders_overview {
    max-width: 900px;
    color: #3F3F3F;
    text-align: center;
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.44px;
}

/* Flex (not grid) so the last partial row centers — Figma: flex-wrap + justify-content: center, gap row/col. */
.seo_decision_outcomes_list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    gap: 30px 20px;
    min-width: 0;
}

.seo_decision_outcome_item {
    flex: 0 1 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    padding: 25px;
    flex-direction: column;
    gap: 25px;
    border-radius: 7px;
    border: 1px solid #BFBFBF;
    background: #FFF;
}

.seo_decision_outcome_heading,
.seo_solution_heading {
    overflow-wrap: anywhere;
}

.seo_decision_outcome_heading {
    margin: 0;
    color: #3F3F3F;
    font-family: Helvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.449px;
}

.seo_decision_outcome_body {
    color: #3F3F3F;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.15px;
}

/* Solutions — Figma: card max 357px, padding 25px, radius 7px, border #BFBFBF, inner gap 16px; header row icon 20×20 + title, 64px min row height. */
.seo_solutions_list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    gap: 30px 20px;
    min-width: 0;
}

.seo_solution_item {
    box-sizing: border-box;
    /* Up to 3 per row; card width capped at 357px (Figma). */
    flex: 0 1 auto;
    width: min(357px, calc((100% - 40px) / 3));
    max-width: min(357px, calc((100% - 40px) / 3));
    min-width: 0;
    border: 1px solid #bfbfbf;
    border-radius: 7px;
    background: #ffffff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.seo_solution_card_main {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}

.seo_solution_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    min-height: 64px;
}

/* Figma: 40×40 box, 1px #DCDCD8 border, 10px radius, bullseye centered (#3F3F3F). */
.seo_solution_icon {
    flex-shrink: 0;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border: 1px solid #dcdcd8;
    border-radius: 10px;
    background: #ffffff;
    color: #3f3f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.seo_solution_heading {
    margin: 0;
    flex: 1;
    min-width: 0;
    line-height: 1.35;
    text-align: left;
    color: #3F3F3F;
    font-family: Helvetica;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.07px;
}

.seo_solution_body {
    margin: 0;
    text-align: left;
    color: #3F3F3F;
    font-family: Helvetica;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.312px;
}

.seo_solution_cta {
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    background: #4c68ff;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease;
}

/* Beats global `a:visited` in automatan.css (purple) which has higher specificity than `.seo_solution_cta` alone. */
a.seo_solution_cta:link,
a.seo_solution_cta:visited {
    background: #4c68ff;
    color: #ffffff;
    text-decoration: none;
    outline: none;
}

.seo_solution_cta:hover {
    background: #3d56e6;
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

.seo_solution_cta:focus-visible {
    background: #4c68ff;
    color: #ffffff;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    text-decoration: none;
}

.seo_solution_cta:focus:not(:focus-visible),
.seo_solution_cta:active {
    background: #4c68ff;
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

/* Apps — Figma: 2-col grid, 22px gaps; card radius 7px, border #DCDCD8, padding 25px, inner gap 20px, centered incomplete rows. */
.seo_apps_list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: flex-start;
    gap: 22px;
    min-width: 0;
}

.seo_app_item {
    box-sizing: border-box;
    flex: 0 1 auto;
    width: min(589px, calc((100% - 22px) / 2));
    max-width: min(589px, calc((100% - 22px) / 2));
    min-width: 0;
    border: 1px solid #dcdcd8;
    border-radius: 7px;
    background: #ffffff;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.seo_app_header {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: stretch;
    gap: 16px;
    min-height: 40px;
}

.seo_app_icon_box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border: 1px solid #dcdcd8;
    border-radius: 4.63px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
}

/* Icons from utils_apps.config_apps (same PNGs as workspace connect app / get_app_icon). */
.seo_app_icon_box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.seo_app_heading {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 20px;
    line-height: 32px;
    font-weight: 700;
    color: #3f3f3f;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    text-align: left;
    letter-spacing: 0.07px;
}

.seo_app_body {
    margin: 0;
    align-self: stretch;
    width: 100%;
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    color: #3f3f3f;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: -0.312px;
    text-align: center;
}

.seo_app_cta {
    margin-top: auto;
    align-self: stretch;
    width: 100%;
    box-sizing: border-box;
    min-height: 44px;
    padding: 10px 28px;
    border-radius: 50px;
    border: none;
    background: #4c6bff;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s ease;
}

.seo_app_cta:hover,
.seo_app_cta:focus-visible,
.seo_app_cta:focus,
.seo_app_cta:active {
    background: #3d56e6;
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

/* Insights — Figma: centered block max 1200px; cards row + Try pill #4C6BFF; gap 20px between cards */
.seo_insights_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.seo_insights_section .seo_insights_list,
.seo_insights_section .seo_insights_load_more_wrap {
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.seo_insights_section .seo_insights_overview {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.seo_insights_list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.seo_insight_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px;
    box-sizing: border-box;
    border: 1px solid #bfbfbf;
    border-radius: 7px;
    background: #ffffff;
    min-height: 0;
}

.seo_insight_content {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.seo_insight_heading {
    margin: 0;
    color: #3f3f3f;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.312px;
}

.seo_insight_summary {
    margin: 8px 0 0;
    color: #3f3f3f;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.15px;
}

.seo_insight_cta {
    flex-shrink: 0;
    box-sizing: border-box;
    min-width: 75px;
    min-height: 44px;
    padding: 10px 24px;
    border: none;
    border-radius: 50px;
    background: #4c6bff;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

a.seo_insight_cta:link,
a.seo_insight_cta:visited {
    background: #4c6bff;
    color: #ffffff;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.seo_insight_cta:hover,
.seo_insight_cta:focus-visible,
.seo_insight_cta:focus,
.seo_insight_cta:active {
    background: #3d56e6;
    color: #ffffff;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

.seo_insights_load_more_wrap {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.seo_insights_load_more_button {
    min-width: 200px;
}

.seo_stakeholders_cta_wrap {
    margin: 24px auto 0;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    box-sizing: border-box;
}

/* Figma: blue rect CTA, 10px 20px padding, 6px gap to arrow; no state decoration */
.seo_stakeholders_insights_cta {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    min-height: 44px;
    border: none;
    border-radius: 6px;
    background: #4c6bff;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.seo_stakeholders_insights_cta:hover,
.seo_stakeholders_insights_cta:focus,
.seo_stakeholders_insights_cta:focus-visible,
.seo_stakeholders_insights_cta:active {
    background: #3d56e6;
    color: #ffffff;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

a.seo_stakeholders_insights_cta:link,
a.seo_stakeholders_insights_cta:visited {
    background: #4c6bff;
    color: #ffffff;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}

/* Stakeholder cards — Figma: 2-col grid max 1200px, gap 20px; card #BFBFBF border, 7px radius, 25px pad, title/body gap 16px */
.seo_stakeholders_list {
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    min-width: 0;
}

.seo_stakeholder_item {
    box-sizing: border-box;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 25px;
    border: 1px solid #bfbfbf;
    border-radius: 7px;
    background: #ffffff;
    overflow: hidden;
    text-align: left;
}

.seo_stakeholder_heading {
    margin: 0;
    padding: 0;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.312px;
    color: #3f3f3f;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-word;
}

.seo_stakeholder_body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.15px;
    color: #3f3f3f;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    min-height: 0;
}

/* Ready to Review — full-width CTA before footer (Figma: background #1976D2, flex column gap 30px) */
.seo_ready_review_section {
    width: 100%;
    box-sizing: border-box;
    background: #4C68FF;
    padding: 80px 24px;
}

.seo_ready_review_inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-sizing: border-box;
}

.seo_ready_review_title {
    margin: 0;
    max-width: 850px;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    letter-spacing: 0.352px;
}

.seo_ready_review_subtitle {
    margin: 0;
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32.5px;
    letter-spacing: -0.449px;
}

.seo_ready_review_actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.seo_ready_review_cta {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    white-space: nowrap;
    border: 2px solid transparent;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: opacity 0.2s ease;
}

.seo_ready_review_cta_primary {
    background: #ffffff;
    color: #1976d2;
    border-color: #ffffff;
}

.seo_ready_review_cta_secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.seo_ready_review_cta_primary:visited {
    color: #1976d2;
    text-decoration: none;
}

.seo_ready_review_cta_secondary:visited {
    color: #ffffff;
    text-decoration: none;
}

.seo_ready_review_cta_primary:hover,
.seo_ready_review_cta_primary:focus-visible,
.seo_ready_review_cta_primary:focus,
.seo_ready_review_cta_primary:active {
    opacity: 1;
    outline: none;
    text-decoration: none;
    background: #ffffff;
    color: #1976d2;
    border-color: #ffffff;
}

.seo_ready_review_cta_secondary:hover,
.seo_ready_review_cta_secondary:focus-visible,
.seo_ready_review_cta_secondary:focus,
.seo_ready_review_cta_secondary:active {
    opacity: 1;
    outline: none;
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

a.seo_solution_cta,
a.seo_app_cta {
    text-decoration: none;
}

a.seo_insight_cta {
    text-decoration: none;
    color: #ffffff;
}

/* <= 1440: fixed content stays centered (already max 1200). */
@media (max-width: 1440px) {
    .seo_page_container {
        padding-left: 120px;
        padding-right: 120px;
    }
}

/* <= 990: desktop header breaks; content becomes narrower. */
@media (max-width: 990px) {
    .seo_page_container {
        padding-left: 74px;
        padding-right: 74px;
    }

    .seo_solutions_list .seo_solution_item {
        width: min(357px, calc((100% - 20px) / 2));
        max-width: min(357px, calc((100% - 20px) / 2));
    }
}

/* Insights: stack copy + Try when horizontal space is tight */
@media (max-width: 640px) {
    .seo_insight_item {
        flex-direction: column;
        align-items: stretch;
    }

    .seo_insight_cta {
        align-self: flex-start;
        width: auto;
        min-width: 75px;
    }
}

/* <= 667: cards expand with fewer columns. */
@media (max-width: 667px) {
    .seo_page_container {
        padding-left: 67px;
        padding-right: 67px;
    }

    .seo_hero_section {
        width: 100%;
        max-width: 900px;
    }

    .seo_decision_outcomes_list .seo_decision_outcome_item {
        flex: 0 1 100%;
        max-width: 100%;
    }

    .seo_solutions_list .seo_solution_item {
        width: min(357px, calc((100% - 20px) / 2));
        max-width: min(357px, calc((100% - 20px) / 2));
    }

    .seo_apps_list .seo_app_item {
        width: 100%;
        max-width: 100%;
    }

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

    .seo_ready_review_section {
        padding: 56px 20px;
    }

    .seo_ready_review_title {
        font-size: 34px;
        line-height: 42px;
    }

    .seo_ready_review_subtitle {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.35px;
    }

    .seo_ready_review_actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 16px;
    }

    .seo_ready_review_cta {
        width: 100%;
    }
}

/* <= 393: narrow mobile layout. */
@media (max-width: 393px) {
    .seo_page_container {
        padding-left: 29px;
        padding-right: 29px;
    }

    .seo_page_breadcrumb {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 24px;
    }

    .seo_page_breadcrumb_inner {
        gap: 6px;
    }

    .seo_hero_section {
        width: 100%;
        max-width: 900px;
    }

    .seo_hero_buttons {
        width: 100%;
        max-width: 356px;
        gap: 10px;
    }

    .seo_button,
    .seo_hero_cta {
        font-size: 16px;
    }

    .seo_section_title {
        font-size: 40px;
        line-height: 48px;
    }

    .seo_solutions_list .seo_solution_item {
        width: 100%;
        max-width: 100%;
    }

    .seo_ready_review_section {
        padding: 48px 16px;
    }

    .seo_ready_review_title {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: 0.2px;
    }

    .seo_ready_review_subtitle {
        font-size: 18px;
        line-height: 26px;
    }

}
