:root {
    --grafite: #333334;
    --lime: #c4d033;
    --gray: #818385;
    --blue: #4f5aa1;
    --turquoise: #7bbbb2;
    --accent: #7bbbb2;
    --accent-text: #3f7771;
    --green: #73af54;
    --ink: #232426;
    --paper: #f5f6ef;
    --white: #ffffff;
    --line: rgba(51, 51, 52, .16);
    --dark-line: rgba(255, 255, 255, .14);
    --shadow: 0 24px 70px rgba(21, 22, 24, .16);
    --radius: 8px;
    --header-height: 88px;
    --type-hero: clamp(2.75rem, 3.35vw, 4rem);
    --type-page-title: clamp(2.5rem, 3.1vw, 3.5rem);
    --type-product-title: clamp(2.25rem, 2.8vw, 3.25rem);
    --type-section-title: clamp(1.9rem, 2.3vw, 2.75rem);
    --type-subtitle: clamp(1.35rem, 1.7vw, 1.75rem);
    --type-body: clamp(1rem, 1.05vw, 1.125rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: Inter, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(51, 51, 52, .045) 1px, transparent 1px),
        linear-gradient(120deg, rgba(123, 187, 178, .06), transparent 42%, rgba(196, 208, 51, .08));
    background-size: 24px 24px, cover;
}

img {
    display: block;
    max-width: 100%;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

a {
    color: inherit;
}

h1,
h2,
h3,
.btn,
.eyebrow,
.section-label,
.site-nav {
    font-family: Raleway, Arial, sans-serif;
    letter-spacing: 0;
}

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

h1 {
    max-width: 760px;
    margin-bottom: 1.35rem;
    color: var(--grafite);
    font-size: var(--type-page-title);
    font-weight: 900;
    line-height: 1;
}

h2 {
    margin-bottom: 1rem;
    color: var(--grafite);
    font-size: var(--type-section-title);
    font-weight: 900;
    line-height: 1.08;
}

h3 {
    margin-bottom: .8rem;
    color: var(--grafite);
    font-size: var(--type-subtitle);
    font-weight: 800;
    line-height: 1.2;
}

p {
    color: #54575a;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.sr-only,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    z-index: 100;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    padding: .75rem 1rem;
    left: 1rem;
    top: 1rem;
    color: var(--grafite);
    background: var(--accent);
    border-radius: var(--radius);
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 40;
    inset: 0 0 auto;
    border-bottom: 1px solid rgba(51, 51, 52, .1);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    min-height: 88px;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
}

.brand img,
.footer-brand img {
    width: 226px;
    height: auto;
    object-fit: contain;
}

.footer-brand img {
    width: 170px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.45rem;
    color: var(--grafite);
    font-size: .94rem;
    font-weight: 800;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    text-decoration: none;
}

.site-nav a:hover {
    color: var(--accent-text);
}

.nav-group {
    position: relative;
}

.nav-parent {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.nav-parent::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    padding: .65rem .45rem .45rem;
    background: #fff;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(51, 51, 52, .14);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 30;
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.nav-submenu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: .62rem .75rem;
    border-radius: calc(var(--radius) - 2px);
    color: var(--grafite);
}

.nav-submenu a:hover,
.nav-submenu a:focus {
    color: var(--grafite);
    background: rgba(123, 187, 178, .18);
}

.nav-cta {
    min-height: 48px;
    padding: .78rem 1.05rem;
    color: var(--white);
    background: var(--accent-text);
    border-radius: var(--radius);
}

.nav-cta:hover {
    color: var(--white) !important;
    filter: brightness(1.04);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(51, 51, 52, .18);
    border-radius: var(--radius);
    background: rgba(51, 51, 52, .04);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--grafite);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .82rem 1.28rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    color: var(--white);
    background: var(--accent-text);
    box-shadow: 0 16px 36px rgba(63, 119, 113, .22);
}

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

.btn:active {
    transform: translateY(0);
}

.btn-secondary {
    color: var(--grafite);
    background: rgba(255, 255, 255, .72);
    border-color: rgba(51, 51, 52, .18);
}

.btn-dark {
    color: var(--white);
    background: var(--grafite);
}

.btn-outline {
    color: var(--grafite);
    border-color: rgba(51, 51, 52, .18);
    background: #ffffff;
}

.hero {
    position: relative;
    min-height: min(660px, calc(100vh - var(--header-height)));
    padding: 124px 0 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 28%, rgba(196, 208, 51, .22), transparent 17rem),
        radial-gradient(circle at 84% 76%, rgba(123, 187, 178, .16), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f6f7f1 56%, #eef4f2 100%);
}

.subhero {
    position: relative;
    padding: 150px 0 76px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(196, 208, 51, .22), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f6f7f1 100%);
}

.subhero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(51, 51, 52, .055) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .055) 1px, transparent 1px);
    background-size: 64px 64px;
}

.subhero .container {
    position: relative;
    z-index: 1;
}

.subhero h1 {
    color: var(--grafite);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .38;
    background-image:
        linear-gradient(90deg, rgba(51, 51, 52, .06) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 98px 0 0;
    pointer-events: none;
    opacity: .3;
    background-image:
        linear-gradient(90deg, rgba(63, 119, 113, .16) 1px, transparent 1px),
        linear-gradient(rgba(63, 119, 113, .12) 1px, transparent 1px);
    background-size: 104px 104px;
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 72%, transparent);
}

.hero-orbit {
    position: absolute;
    right: -150px;
    bottom: -230px;
    width: 380px;
    height: 380px;
    border: 28px solid rgba(196, 208, 51, .52);
    border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.hero-orbit::before {
    inset: 78px;
    border: 2px solid rgba(51, 51, 52, .16);
}

.hero-orbit::after {
    inset: 156px;
    background: rgba(79, 90, 161, .28);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
    gap: 2.6rem;
    align-items: center;
}

.hero h1 {
    max-width: 760px;
    font-size: var(--type-hero);
    line-height: 1;
    letter-spacing: -.035em;
    margin-bottom: 1rem;
}

.eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .8rem;
    color: var(--accent-text);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow::before,
.section-label::before {
    content: "";
    width: 25px;
    height: 25px;
    border: 7px solid currentColor;
    border-radius: 50%;
}

.hero-lead {
    max-width: 770px;
    margin-bottom: 1.45rem;
    color: #4e5254;
    font-size: var(--type-body);
    line-height: 1.65;
}

.hero-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}

.hero-note {
    max-width: 620px;
    margin-top: 1.45rem;
    color: #64686b;
    font-size: .95rem;
}

.hero-visual {
    padding: 1rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--shadow);
}

.brand-panel {
    min-height: 430px;
    display: grid;
    align-content: end;
    overflow: hidden;
    position: relative;
}

.brand-system {
    position: absolute;
    inset: 1rem;
}

.brand-system::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background-image:
        linear-gradient(90deg, rgba(51, 51, 52, .08) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .08) 1px, transparent 1px);
    background-size: 52px 52px;
    opacity: .55;
}

.brand-system span {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.brand-system span:nth-child(1) {
    width: 236px;
    height: 236px;
    right: 8%;
    top: 6%;
    border: 28px solid var(--lime);
}

.brand-system span:nth-child(2) {
    width: 144px;
    height: 144px;
    left: 9%;
    top: 24%;
    border: 20px solid var(--turquoise);
}

.brand-system span:nth-child(3) {
    width: 96px;
    height: 96px;
    right: 24%;
    bottom: 28%;
    background: var(--blue);
    opacity: .74;
}

.brand-system span:nth-child(4) {
    width: 18px;
    height: 18px;
    left: 44%;
    top: 49%;
    box-shadow:
        0 0 0 14px var(--lime),
        72px -42px 0 0 var(--green),
        112px 56px 0 0 var(--turquoise),
        -86px 68px 0 0 var(--blue),
        -124px -54px 0 0 var(--lime);
    background: var(--white);
}

.signal-list {
    position: relative;
    z-index: 2;
    display: grid;
    gap: .65rem;
    margin-top: 1rem;
    color: #55585a;
    font-size: .93rem;
}

.signal-list span {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.signal-list span::before {
    content: "";
    flex: 0 0 11px;
    width: 11px;
    height: 11px;
    background: var(--accent);
    border-radius: 50%;
}

.section {
    padding: 82px 0;
}

.section-intro {
    background: var(--paper);
}

.section-muted {
    background: #f8f9f4;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 3rem;
    align-items: start;
}

.lead-block p {
    font-size: 1.08rem;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2.6rem;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section:not(.dark-section) .section-label {
    color: var(--accent-text);
}

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

.products-summary {
    background: #ffffff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.product-card {
    display: grid;
    align-content: start;
    min-height: 360px;
    padding: 1.55rem;
    border: 1px solid var(--line);
    border-top: 6px solid var(--accent);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.product-card h3 {
    font-size: 1.45rem;
}

.product-name {
    display: inline-flex;
    width: max-content;
    margin-bottom: 1rem;
    padding: .36rem .55rem;
    color: var(--grafite);
    background: rgba(123, 187, 178, .24);
    border-radius: var(--radius);
    font-family: Raleway, Arial, sans-serif;
    font-size: .82rem;
    font-weight: 900;
}

.product-card ul,
.product-detail ul,
.integration-flow {
    display: grid;
    gap: .55rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.product-card li,
.product-detail li {
    display: flex;
    gap: .55rem;
    color: #55585a;
}

.product-card li::before,
.product-detail li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: .45rem;
    border-radius: 50%;
    background: var(--accent);
}

.product-dash {
    border-top-color: var(--blue);
}

.product-dash .product-name {
    color: var(--white);
    background: var(--blue);
}

.product-checklist {
    border-top-color: var(--turquoise);
}

.product-checklist .product-name {
    background: rgba(123, 187, 178, .26);
}

.product-telemarketing {
    border-top-color: var(--green);
}

.product-telemarketing .product-name {
    background: rgba(115, 175, 84, .22);
}

.text-link,
.product-link {
    align-self: end;
    margin-top: 1.3rem;
}

.text-link {
    color: var(--accent-text);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.product-detail-list {
    display: grid;
    gap: 1.25rem;
}

.product-detail {
    display: grid;
    scroll-margin-top: 96px;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--line);
    border-left: 8px solid var(--accent);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.product-detail.product-dash {
    border-left-color: var(--blue);
}

.product-detail.product-checklist {
    border-left-color: var(--turquoise);
}

.product-detail > .detail-benefits,
.product-detail > .detail-examples {
    grid-column: 1 / -1;
}

.detail-panel {
    padding: 1.25rem;
    border-radius: var(--radius);
    background: #f8f9f4;
}

.detail-panel h3:not(:first-child) {
    margin-top: 1.25rem;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 1.4rem;
}

.detail-benefits ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.tag-list span {
    padding: .45rem .65rem;
    color: var(--grafite);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    font-weight: 700;
}

.integration-section {
    background: #f8f9f4;
}

.integration-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.integration-flow article {
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.integration-flow span {
    display: block;
    margin-bottom: .7rem;
    color: var(--blue);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.integration-note {
    max-width: 760px;
    margin: 1.2rem auto 0;
    text-align: center;
    color: #55595c;
    font-size: 1rem;
    line-height: 1.55;
}

.solutions-hero {
    position: relative;
    padding: 128px 0 58px;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 18%, rgba(196, 208, 51, .2), transparent 18rem),
        radial-gradient(circle at 88% 74%, rgba(123, 187, 178, .18), transparent 16rem),
        linear-gradient(135deg, #ffffff 0%, #f7f8f3 58%, #eef5f3 100%);
}

.solutions-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(51, 51, 52, .05) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .05) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, #000, #000 76%, transparent);
}

.solutions-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    gap: 3rem;
    align-items: center;
}

.solutions-hero h1 {
    max-width: 760px;
    font-size: var(--type-page-title);
    line-height: 1;
}

.solutions-hero .hero-lead {
    max-width: 720px;
    color: #45494c;
    font-size: 1.22rem;
    line-height: 1.62;
}

.solutions-map {
    position: relative;
    min-height: 500px;
}

.map-line {
    position: absolute;
    inset: 72px 54px 76px;
    border: 2px solid rgba(51, 51, 52, .12);
    border-left: 0;
    border-radius: 0 999px 999px 0;
}

.map-line::before,
.map-line::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--accent);
}

.map-line::before {
    width: 18px;
    height: 18px;
    left: -9px;
    top: -10px;
}

.map-line::after {
    width: 12px;
    height: 12px;
    right: 36px;
    bottom: -7px;
    background: var(--turquoise);
}

.solution-node {
    position: absolute;
    display: grid;
    gap: .22rem;
    width: 198px;
    min-height: 122px;
    padding: 1.1rem;
    color: var(--grafite);
    text-decoration: none;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 40px rgba(51, 51, 52, .1);
}

.solution-node::before {
    content: "";
    width: 30px;
    height: 30px;
    border: 8px solid var(--accent);
    border-radius: 50%;
}

.solution-node strong {
    font-family: Raleway, Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
}

.solution-node span {
    color: #4f5356;
    font-weight: 700;
}

.node-auto {
    top: 18px;
    left: 8px;
}

.node-dash {
    top: 42px;
    right: 0;
}

.node-dash::before {
    border-color: var(--blue);
}

.node-checklist {
    left: 36px;
    bottom: 28px;
}

.node-checklist::before {
    border-color: var(--turquoise);
}

.node-telemarketing {
    right: 0;
    bottom: 22px;
}

.node-telemarketing::before {
    border-color: var(--green);
}

.solutions-products {
    padding: 22px 0 0;
}

.product-detail-list {
    gap: 0;
}

.product-detail {
    scroll-margin-top: 104px;
    display: block;
    padding: 76px 0 82px;
    border: 0;
    border-radius: 0;
    background:
        radial-gradient(circle at 84% 20%, rgba(196, 208, 51, .14), transparent 17rem),
        #ffffff;
}

.product-detail.product-dash {
    background:
        radial-gradient(circle at 14% 26%, rgba(79, 90, 161, .13), transparent 18rem),
        #f6f7fb;
}

.product-detail.product-checklist {
    background:
        radial-gradient(circle at 84% 30%, rgba(123, 187, 178, .2), transparent 18rem),
        #ffffff;
}

.product-detail.product-telemarketing {
    background:
        radial-gradient(circle at 84% 24%, rgba(115, 175, 84, .18), transparent 18rem),
        #f8faf6;
}

.product-inner {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .78fr);
    gap: 2.8rem;
    align-items: center;
}

.product-detail.product-dash .product-copy {
    grid-column: 2;
}

.product-detail.product-dash .product-visual {
    grid-column: 1;
    grid-row: 1;
}

.product-copy h2 {
    max-width: 760px;
    margin-bottom: .85rem;
    font-size: var(--type-product-title);
    line-height: 1.02;
}

.product-copy > p {
    max-width: 760px;
    color: #464a4d;
    font-size: var(--type-body);
    line-height: 1.65;
}

.detail-info-grid {
    display: grid;
    gap: .95rem;
    margin-top: 1.25rem;
}

.detail-info-grid section {
    padding: 1.08rem 1.18rem 1.08rem 1.25rem;
    border-left: 4px solid rgba(196, 208, 51, .9);
    background: rgba(248, 249, 244, .96);
}

.product-dash .detail-info-grid section {
    border-left-color: var(--blue);
}

.product-checklist .detail-info-grid section {
    border-left-color: var(--turquoise);
}

.product-telemarketing .detail-info-grid section {
    border-left-color: var(--green);
}

.detail-info-grid h3 {
    margin-bottom: .42rem;
    font-size: 1.08rem;
}

.detail-info-grid p {
    max-width: 680px;
    color: #4d5154;
    font-size: .99rem;
    line-height: 1.58;
}

.product-visual {
    position: relative;
    min-height: 430px;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(51, 51, 52, .055) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .055) 1px, transparent 1px),
        #ffffff;
    background-size: 48px 48px;
}

.visual-ring {
    position: absolute;
    width: 236px;
    height: 236px;
    right: -52px;
    top: -38px;
    border: 28px solid var(--lime);
    border-radius: 50%;
}

.product-dash .visual-ring {
    border-color: var(--blue);
}

.product-checklist .visual-ring {
    border-color: var(--turquoise);
}

.product-telemarketing .visual-ring {
    border-color: var(--green);
}

.visual-ring::before,
.visual-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.visual-ring::before {
    width: 120px;
    height: 120px;
    left: -92px;
    bottom: -86px;
    border: 18px solid var(--turquoise);
}

.visual-ring::after {
    width: 16px;
    height: 16px;
    left: -18px;
    top: 118px;
    box-shadow:
        48px 68px 0 var(--green),
        106px 18px 0 var(--blue),
        154px 96px 0 var(--lime),
        -34px 112px 0 var(--turquoise);
    background: var(--lime);
}

.visual-card {
    position: absolute;
    left: 26px;
    right: 26px;
    padding: 1.05rem 1.1rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 14px 28px rgba(51, 51, 52, .09);
}

.visual-card-main {
    top: 132px;
}

.visual-card-main strong {
    display: block;
    color: var(--grafite);
    font-family: Raleway, Arial, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
}

.visual-card-main span {
    color: #4f5356;
    font-size: 1rem;
    line-height: 1.45;
}

.visual-card-small {
    right: auto;
    width: max-content;
    max-width: calc(100% - 56px);
    color: var(--grafite);
    font-size: .96rem;
    font-weight: 800;
}

.visual-card-small:nth-of-type(3) {
    top: 244px;
}

.visual-card-small:nth-of-type(4) {
    top: 302px;
    left: 58px;
}

.visual-card-small:nth-of-type(5) {
    top: 360px;
}

.detail-benefits,
.detail-examples {
    grid-column: 1 / -1;
}

.detail-benefits {
    margin-top: .15rem;
}

.detail-benefits h3,
.detail-examples h3 {
    margin-bottom: .85rem;
}

.detail-benefits ul {
    max-width: 980px;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: .7rem 1rem;
    margin-top: 0;
}

.detail-benefits li {
    min-height: 34px;
    align-items: flex-start;
    color: #474b4e;
    font-size: 1rem;
    line-height: 1.45;
}

.product-dash .detail-benefits li::before {
    background: var(--blue);
}

.product-checklist .detail-benefits li::before {
    background: var(--turquoise);
}

.product-telemarketing .detail-benefits li::before {
    background: var(--green);
}

.benefits-more {
    margin-top: .65rem;
}

.benefits-more summary {
    width: max-content;
    max-width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--blue);
    font-family: Raleway, Arial, sans-serif;
    font-size: .95rem;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.benefits-more summary::-webkit-details-marker {
    display: none;
}

.benefits-more summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
}

.benefits-more[open] summary::after {
    transform: translateY(2px) rotate(225deg);
}

.benefits-more summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.benefits-extra {
    overflow: hidden;
}

.benefits-more ul {
    margin-top: .45rem;
}

.detail-examples {
    max-width: 980px;
    margin-top: .2rem;
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(79, 90, 161, .14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
}

.detail-examples p {
    max-width: 720px;
}

.examples-note {
    margin-top: .85rem;
    color: #55595c;
    font-size: .98rem;
    line-height: 1.55;
}

.integration-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(196, 208, 51, .16), transparent 18rem),
        #f8f9f2;
}

.integration-flow {
    position: relative;
    gap: 1.15rem;
}

.integration-flow::before {
    content: "";
    position: absolute;
    left: 16%;
    right: 16%;
    top: 34px;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), var(--blue), var(--turquoise), var(--green));
}

.integration-flow article {
    position: relative;
    padding: 2.25rem 1.45rem 1.55rem;
}

.integration-flow article span {
    padding-left: 2.45rem;
    font-size: 1rem;
}

.integration-flow article::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 1.45rem;
    width: 22px;
    height: 22px;
    border: 6px solid var(--lime);
    border-radius: 50%;
    background: #ffffff;
}

.integration-flow article:nth-child(2)::before {
    border-color: var(--blue);
}

.integration-flow article:nth-child(3)::before {
    border-color: var(--turquoise);
}

.integration-flow article:nth-child(4)::before {
    border-color: var(--green);
}

.s3auto-hero {
    position: relative;
    padding: 130px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(196, 208, 51, .22), transparent 19rem),
        radial-gradient(circle at 88% 82%, rgba(123, 187, 178, .16), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f7f8f3 56%, #edf4f1 100%);
}

.s3auto-hero::before,
.s3auto-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(51, 51, 52, .045) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .045) 1px, transparent 1px);
    background-size: 58px 58px;
}

.s3auto-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(420px, .86fr);
    gap: 3.2rem;
    align-items: center;
}

.s3auto-hero h1 {
    max-width: 780px;
    font-size: var(--type-page-title);
    line-height: 1;
}

.s3auto-hero .hero-lead {
    max-width: 720px;
    color: #464a4d;
    font-size: var(--type-body);
    line-height: 1.65;
}

.s3auto-map {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(196, 208, 51, .1), transparent 14rem),
        linear-gradient(90deg, rgba(51, 51, 52, .055) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .055) 1px, transparent 1px),
        rgba(255, 255, 255, .78);
    background-size: cover, 50px 50px, 50px 50px, cover;
    box-shadow: 0 22px 54px rgba(51, 51, 52, .12);
}

.s3auto-map::before,
.s3auto-map::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.s3auto-map::before {
    width: 330px;
    height: 330px;
    right: -98px;
    top: -76px;
    border: 34px solid rgba(196, 208, 51, .82);
}

.s3auto-map::after {
    width: 172px;
    height: 172px;
    left: -54px;
    bottom: -46px;
    border: 24px solid rgba(123, 187, 178, .72);
}

.s3auto-core {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    width: 210px;
    min-height: 132px;
    display: grid;
    align-content: center;
    gap: .28rem;
    padding: 1.25rem;
    color: var(--grafite);
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 42px rgba(51, 51, 52, .12);
    transform: translate(-50%, -50%);
}

.s3auto-core strong {
    font-family: Raleway, Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
}

.s3auto-core span {
    color: #53575a;
    line-height: 1.35;
}

.s3auto-node {
    position: absolute;
    z-index: 2;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: .55rem .72rem;
    color: var(--grafite);
    border: 1px solid rgba(51, 51, 52, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 26px rgba(51, 51, 52, .09);
    font-weight: 800;
}

.s3auto-node::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-right: .48rem;
    border-radius: 50%;
    background: var(--accent);
}

.node-1 { left: 8%; top: 13%; }
.node-2 { right: 9%; top: 18%; }
.node-3 { left: 6%; top: 43%; }
.node-4 { right: 6%; top: 47%; }
.node-5 { left: 14%; bottom: 17%; }
.node-6 { right: 14%; bottom: 15%; }
.node-7 { left: 35%; top: 6%; }
.node-8 { left: 38%; bottom: 5%; }

.s3auto-section {
    position: relative;
    padding: 82px 0;
    overflow: hidden;
    background: #ffffff;
}

.s3auto-section > .container {
    position: relative;
    z-index: 1;
}

.s3auto-section .section-heading p {
    color: #4d5154;
    font-size: 1.08rem;
    line-height: 1.62;
}

.s3auto-problem,
.routine-section {
    background: #f8f9f4;
}

.problem-grid,
.area-detail-grid,
.benefit-cloud {
    display: grid;
    gap: .85rem;
}

.problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
}

.problem-grid span,
.benefit-cloud li {
    display: flex;
    align-items: flex-start;
    gap: .62rem;
    min-height: 46px;
    padding: .78rem .85rem;
    color: #474b4e;
    border: 1px solid rgba(51, 51, 52, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
    font-weight: 700;
}

.problem-grid span::before,
.benefit-cloud li::before {
    content: "";
    flex: 0 0 11px;
    width: 11px;
    height: 11px;
    margin-top: .38rem;
    border-radius: 50%;
    background: var(--lime);
}

.area-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.area-detail-grid article {
    min-height: 185px;
    padding: 1.35rem;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    background: rgba(248, 249, 244, .96);
}

.area-detail-grid p {
    color: #4f5356;
}

.s3auto-benefits {
    background:
        radial-gradient(circle at 10% 20%, rgba(196, 208, 51, .14), transparent 18rem),
        #ffffff;
}

.benefit-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    margin: 0;
    list-style: none;
}

.routine-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.routine-flow span {
    position: relative;
    min-height: 96px;
    display: grid;
    place-items: center;
    padding: 1rem;
    color: var(--grafite);
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: #ffffff;
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
    text-align: center;
}

.routine-flow span:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -18px;
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.branches-section {
    background:
        radial-gradient(circle at 82% 20%, rgba(123, 187, 178, .16), transparent 18rem),
        #ffffff;
}

.branch-visual {
    min-height: 320px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
    align-content: center;
}

.branch-visual span,
.branch-visual strong {
    min-height: 88px;
    display: grid;
    place-items: center;
    padding: 1rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 30px rgba(51, 51, 52, .08);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
    text-align: center;
}

.branch-visual strong {
    grid-column: 1 / -1;
    color: var(--grafite);
    background: rgba(123, 187, 178, .22);
}

.dash-callout {
    background: #f6f7fb;
}

.callout-box,
.final-box {
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 18px 44px rgba(51, 51, 52, .09);
}

.callout-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
}

.callout-box h2 {
    max-width: 820px;
    margin-bottom: .7rem;
    font-size: var(--type-section-title);
}

.callout-box p {
    max-width: 720px;
}

.s3auto-final {
    padding: 82px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(196, 208, 51, .18), transparent 18rem),
        #f8f9f4;
}

.final-box {
    padding: 2.4rem;
    text-align: center;
}

.final-box h2 {
    max-width: 860px;
    margin-right: auto;
    margin-left: auto;
    font-size: var(--type-section-title);
}

.final-box p {
    max-width: 720px;
    margin: 0 auto 1.5rem;
    color: #4d5154;
    font-size: 1.08rem;
}

.final-box .hero-actions {
    justify-content: center;
}

.s3dash-hero {
    position: relative;
    padding: 130px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(79, 90, 161, .2), transparent 19rem),
        radial-gradient(circle at 88% 82%, rgba(123, 187, 178, .14), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f6f7fb 58%, #eef4f2 100%);
}

.s3dash-hero::before,
.s3dash-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(79, 90, 161, .055) 1px, transparent 1px),
        linear-gradient(rgba(79, 90, 161, .045) 1px, transparent 1px);
    background-size: 58px 58px;
}

.s3dash-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(420px, .86fr);
    gap: 3.2rem;
    align-items: center;
}

.s3dash-hero h1 {
    max-width: 790px;
    font-size: var(--type-page-title);
    line-height: 1;
}

.s3dash-hero .hero-lead {
    max-width: 720px;
    color: #464a4d;
    font-size: var(--type-body);
    line-height: 1.65;
}

.s3dash-hero .eyebrow,
.s3dash-section .section-label,
.s3dash-final .eyebrow {
    color: var(--accent-text);
}

.dash-panel {
    position: relative;
    min-height: 520px;
    padding: 1.4rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(51, 51, 52, .05) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .05) 1px, transparent 1px),
        rgba(255, 255, 255, .82);
    background-size: 50px 50px;
    box-shadow: 0 22px 54px rgba(51, 51, 52, .12);
}

.demo-label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    margin-bottom: .9rem;
    padding: .38rem .58rem;
    color: var(--blue);
    border-radius: var(--radius);
    background: rgba(79, 90, 161, .1);
    font-family: Raleway, Arial, sans-serif;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.dash-card {
    position: relative;
    z-index: 2;
    padding: 1.1rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 32px rgba(51, 51, 52, .1);
}

.dash-card-wide {
    min-height: 112px;
}

.dash-card strong {
    display: block;
    margin-bottom: .8rem;
    color: var(--grafite);
    font-family: Raleway, Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
}

.dash-card span {
    display: block;
    width: 76%;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--blue), var(--turquoise));
}

.dash-bars {
    position: absolute;
    z-index: 2;
    left: 7%;
    bottom: 12%;
    width: 46%;
    height: 210px;
    display: flex;
    align-items: end;
    gap: .75rem;
    padding: 1rem;
    border: 1px solid rgba(51, 51, 52, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .84);
}

.dash-bars span {
    flex: 1;
    min-width: 18px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--blue), rgba(79, 90, 161, .42));
}

.dash-bars span:nth-child(1) { height: 42%; }
.dash-bars span:nth-child(2) { height: 64%; }
.dash-bars span:nth-child(3) { height: 52%; }
.dash-bars span:nth-child(4) { height: 78%; }
.dash-bars span:nth-child(5) { height: 68%; }

.dash-ring {
    position: absolute;
    z-index: 1;
    right: -42px;
    top: 118px;
    width: 250px;
    height: 250px;
    border: 34px solid rgba(79, 90, 161, .82);
    border-radius: 50%;
}

.dash-ring::after {
    content: "";
    position: absolute;
    left: -72px;
    bottom: -56px;
    width: 128px;
    height: 128px;
    border: 20px solid rgba(123, 187, 178, .76);
    border-radius: 50%;
}

.dash-chip {
    position: absolute;
    z-index: 3;
    right: 8%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: .62rem .8rem;
    color: var(--grafite);
    border: 1px solid rgba(51, 51, 52, .1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 28px rgba(51, 51, 52, .09);
    font-weight: 800;
}

.dash-chip:nth-of-type(4) { top: 44%; }
.dash-chip:nth-of-type(5) { top: 57%; }
.dash-chip:nth-of-type(6) { top: 70%; }

.s3dash-section {
    position: relative;
    padding: 82px 0;
    overflow: hidden;
    background: #ffffff;
}

.s3dash-section > .container {
    position: relative;
    z-index: 1;
}

.s3dash-section .section-heading p {
    color: #4d5154;
    font-size: 1.08rem;
    line-height: 1.62;
}

.s3dash-problem,
.dash-benefits {
    background: #f6f7fb;
}

.dash-problem-grid span::before,
.dash-benefit-cloud li::before {
    background: var(--blue);
}

.dash-flow {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .9rem;
}

.dash-flow article {
    min-height: 178px;
    display: grid;
    align-content: start;
    gap: .8rem;
    padding: 1.15rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
}

.dash-flow span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--blue);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.dash-flow p {
    color: #4d5154;
}

.dash-areas {
    background: #ffffff;
}

.dash-area-grid article {
    border-left-color: var(--blue);
    background: rgba(246, 247, 251, .9);
}

.dash-note {
    max-width: 820px;
    margin: 1.2rem auto 0;
    text-align: center;
}

.branch-view-section {
    background:
        radial-gradient(circle at 82% 20%, rgba(79, 90, 161, .13), transparent 18rem),
        #ffffff;
}

.dash-branch-visual strong {
    background: rgba(79, 90, 161, .12);
}

.auto-callout {
    background: #f8f9f4;
}

.s3dash-final {
    padding: 82px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(79, 90, 161, .16), transparent 18rem),
        #f6f7fb;
}

.s3check-hero {
    position: relative;
    padding: 130px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(123, 187, 178, .24), transparent 19rem),
        radial-gradient(circle at 88% 82%, rgba(196, 208, 51, .12), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f4faf8 58%, #eef4f2 100%);
}

.s3check-hero::before,
.s3check-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(123, 187, 178, .06) 1px, transparent 1px),
        linear-gradient(rgba(123, 187, 178, .05) 1px, transparent 1px);
    background-size: 58px 58px;
}

.s3check-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(420px, .86fr);
    gap: 3.2rem;
    align-items: center;
}

.s3check-hero h1 {
    max-width: 780px;
    font-size: var(--type-page-title);
    line-height: 1;
}

.s3check-hero .hero-lead {
    max-width: 720px;
    color: #464a4d;
    font-size: var(--type-body);
    line-height: 1.65;
}

.s3check-hero .eyebrow,
.s3check-section .section-label,
.s3check-final .eyebrow {
    color: var(--accent-text);
}

.check-flow-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    align-content: center;
    gap: .9rem;
    padding: 2rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(51, 51, 52, .05) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .05) 1px, transparent 1px),
        rgba(255, 255, 255, .84);
    background-size: 50px 50px;
    box-shadow: 0 22px 54px rgba(51, 51, 52, .12);
}

.check-flow-visual::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -64px;
    width: 280px;
    height: 280px;
    border: 32px solid rgba(123, 187, 178, .82);
    border-radius: 50%;
}

.check-flow-visual span {
    position: relative;
    z-index: 1;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1rem;
    color: var(--grafite);
    border: 1px solid rgba(51, 51, 52, .11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 28px rgba(51, 51, 52, .08);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.check-flow-visual span::before {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 7px solid var(--turquoise);
    border-radius: 50%;
}

.s3check-section {
    position: relative;
    padding: 82px 0;
    overflow: hidden;
    background: #ffffff;
}

.s3check-section > .container {
    position: relative;
    z-index: 1;
}

.s3check-section .section-heading p {
    color: #4d5154;
    font-size: 1.08rem;
    line-height: 1.62;
}

.s3check-problem,
.check-benefits,
.history-record {
    background: #f4faf8;
}

.check-problem-grid span::before,
.check-benefit-cloud li::before {
    background: var(--turquoise);
}

.check-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .95rem;
}

.check-steps article {
    min-height: 205px;
    padding: 1.25rem;
    border-left: 4px solid var(--turquoise);
    border-radius: var(--radius);
    background: rgba(244, 250, 248, .92);
}

.check-steps span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: .8rem;
    color: var(--grafite);
    border-radius: 50%;
    background: rgba(123, 187, 178, .34);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.check-steps p {
    color: #4f5356;
}

.photo-section,
.client-section {
    background: #ffffff;
}

.photo-visual {
    min-height: 300px;
    display: grid;
    gap: .85rem;
    align-content: center;
}

.photo-visual span {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 28px rgba(51, 51, 52, .08);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.photo-visual span::before {
    content: "";
    width: 26px;
    height: 26px;
    margin-right: .75rem;
    border: 7px solid var(--turquoise);
    border-radius: 50%;
}

.check-history strong {
    background: rgba(123, 187, 178, .18);
}

.s3check-final {
    padding: 82px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(123, 187, 178, .2), transparent 18rem),
        #f4faf8;
}

.s3checklist-page .btn-primary {
    background: var(--accent);
}

.tele-hero {
    position: relative;
    padding: 130px 0 72px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, rgba(115, 175, 84, .22), transparent 19rem),
        radial-gradient(circle at 88% 82%, rgba(196, 208, 51, .12), transparent 18rem),
        linear-gradient(135deg, #ffffff 0%, #f8faf6 58%, #eef4f2 100%);
}

.tele-hero::before,
.tele-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(115, 175, 84, .06) 1px, transparent 1px),
        linear-gradient(rgba(115, 175, 84, .05) 1px, transparent 1px);
    background-size: 58px 58px;
}

.tele-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(420px, .86fr);
    gap: 3.2rem;
    align-items: center;
}

.tele-hero h1 {
    max-width: 760px;
    font-size: var(--type-page-title);
    line-height: 1;
}

.tele-hero .hero-lead {
    max-width: 720px;
    color: #464a4d;
    font-size: var(--type-body);
    line-height: 1.65;
}

.tele-hero .eyebrow,
.tele-section .section-label,
.tele-final .eyebrow {
    color: var(--accent-text);
}

.tele-flow-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 2rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(51, 51, 52, .05) 1px, transparent 1px),
        linear-gradient(rgba(51, 51, 52, .05) 1px, transparent 1px),
        rgba(255, 255, 255, .84);
    background-size: 50px 50px;
    box-shadow: 0 22px 54px rgba(51, 51, 52, .12);
}

.tele-flow-visual::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -64px;
    width: 280px;
    height: 280px;
    border: 32px solid rgba(115, 175, 84, .78);
    border-radius: 50%;
}

.tele-flow-visual span {
    position: relative;
    z-index: 1;
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .95rem 1rem;
    color: var(--grafite);
    border: 1px solid rgba(51, 51, 52, .11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 28px rgba(51, 51, 52, .08);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.tele-flow-visual span::before {
    content: "";
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 7px solid var(--green);
    border-radius: 50%;
}

.tele-section {
    position: relative;
    padding: 82px 0;
    overflow: hidden;
    background: #ffffff;
}

.tele-section > .container {
    position: relative;
    z-index: 1;
}

.tele-section .section-heading p {
    color: #4d5154;
    font-size: 1.08rem;
    line-height: 1.62;
}

.tele-problem,
.tele-benefits,
.tele-returns {
    background: #f8faf6;
}

.tele-problem-grid span::before,
.tele-benefit-cloud li::before {
    background: var(--green);
}

.tele-steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: .95rem;
}

.tele-steps article {
    min-height: 230px;
    padding: 1.2rem;
    border-left: 4px solid var(--green);
    border-radius: var(--radius);
    background: rgba(248, 250, 246, .94);
}

.tele-steps span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: .8rem;
    color: var(--grafite);
    border-radius: 50%;
    background: rgba(115, 175, 84, .28);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.tele-steps p {
    color: #4f5356;
}

.tele-history-visual {
    min-height: 300px;
    display: grid;
    gap: .85rem;
    align-content: center;
}

.tele-history-visual span {
    min-height: 76px;
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(51, 51, 52, .12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 28px rgba(51, 51, 52, .08);
    font-family: Raleway, Arial, sans-serif;
    font-weight: 900;
}

.tele-history-visual span::before {
    content: "";
    width: 26px;
    height: 26px;
    margin-right: .75rem;
    border: 7px solid var(--green);
    border-radius: 50%;
}

.tele-team-visual strong {
    background: rgba(115, 175, 84, .18);
}

.tele-final {
    padding: 82px 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(115, 175, 84, .18), transparent 18rem),
        #f8faf6;
}

.area-card,
.support-grid article {
    min-height: 220px;
    padding: 1.45rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .8);
}

.card-mark {
    display: block;
    width: 40px;
    height: 40px;
    margin-bottom: 1.2rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--grafite) 0 24%, transparent 25%),
        conic-gradient(var(--lime), var(--turquoise), var(--blue), var(--green), var(--lime));
}

.dark-section {
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 18%, rgba(123, 187, 178, .14), transparent 18rem),
        linear-gradient(180deg, #ffffff 0%, #f7f8f3 100%);
}

.dark-section h2,
.dark-section h3 {
    color: var(--grafite);
}

.dark-section p,
.dark-section li {
    color: #55585a;
}

.dark-lead {
    font-size: 1.08rem;
}

.principle-list {
    display: grid;
    gap: .85rem;
    padding: 0;
    margin: 1.5rem 0 0;
    list-style: none;
}

.principle-list li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .82);
}

.principle-list li::before {
    content: "";
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: .35rem;
    border: 4px solid var(--accent);
    border-radius: 50%;
}

.timeline {
    display: grid;
    gap: 0;
}

.history-section {
    background:
        radial-gradient(circle at 8% 8%, rgba(123, 187, 178, .14), transparent 18rem),
        linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.history-section .section-label {
    color: var(--accent-text);
}

.timeline-item {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 1.5rem;
    padding: 1.35rem 0;
    border-top: 1px solid var(--line);
}

.timeline-item time {
    color: var(--accent-text);
    font-family: Raleway, Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
}

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

.support-grid article {
    border-left: 5px solid var(--accent);
}

.contact-section {
    background:
        radial-gradient(circle at 90% 12%, rgba(123, 187, 178, .16), transparent 17rem),
        #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.contact-copy,
.contact-form {
    border-radius: var(--radius);
}

.contact-copy {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 2rem;
    color: var(--grafite);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .88);
}

.contact-copy::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border: 28px solid var(--lime);
    border-radius: 50%;
    opacity: .75;
    z-index: 0;
}

.contact-copy h2,
.contact-copy p,
.contact-copy .section-label,
.contact-links {
    position: relative;
    z-index: 1;
}

.contact-copy h2,
.contact-copy p {
    color: var(--grafite);
}

.contact-links {
    display: grid;
    gap: .75rem;
    margin-top: 1.5rem;
}

.contact-links a {
    color: var(--accent-text);
    font-weight: 700;
    text-decoration: none;
}

.contact-links span {
    color: #55585a;
    font-weight: 700;
}

.contact-form {
    padding: 2rem;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .86);
}

.contact-direct {
    display: grid;
    align-content: center;
    gap: 1rem;
}

.contact-direct h3 {
    max-width: 24rem;
    margin: 0;
    color: var(--grafite);
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.04;
}

.contact-direct p {
    max-width: 30rem;
    margin: 0;
    color: #55585a;
}

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

.field {
    display: grid;
    gap: .4rem;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    color: var(--grafite);
    font-weight: 700;
    font-size: .9rem;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: .85rem .95rem;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(123, 187, 178, .28);
    border-color: var(--accent);
}

.form-actions {
    margin-top: 1.2rem;
    align-items: center;
}

.form-actions .btn {
    min-width: 146px;
}

.form-status {
    width: 100%;
    margin: .85rem 0 0;
    color: #636669;
    font-size: .9rem;
    line-height: 1.45;
}

.form-trap {
    height: 0;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

.site-footer {
    padding: 40px 0;
    color: #55585a;
    border-top: 1px solid var(--line);
    background: #ffffff;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(180px, .8fr) minmax(0, 1fr) auto;
    gap: 1.8rem;
    align-items: center;
}

.footer-brand p,
.site-footer p {
    margin: .55rem 0 0;
    color: #4f5356;
    font-size: 1rem;
    line-height: 1.5;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.15rem;
    justify-content: center;
}

.site-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: var(--grafite);
    font-weight: 700;
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--accent-text);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
    }
}

@media (max-width: 980px) {
    h1 {
        font-size: clamp(2.6rem, 7vw, 4.25rem);
    }

    h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .hero-grid,
    .split,
    .solutions-hero-grid,
    .s3auto-hero-grid,
    .s3dash-hero-grid,
    .s3check-hero-grid,
    .tele-hero-grid,
    .product-inner,
    .product-detail,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

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

    .hero-visual {
        max-width: 760px;
    }

    .solutions-hero {
        padding-top: 122px;
    }

    .solutions-map,
    .product-visual,
    .s3auto-map,
    .dash-panel,
    .check-flow-visual,
    .tele-flow-visual {
        max-width: 720px;
    }

    .product-visual {
        min-height: 390px;
    }

    .product-detail.product-dash .product-copy,
    .product-detail.product-dash .product-visual {
        grid-column: auto;
        grid-row: auto;
    }

    .area-grid,
    .product-grid,
    .detail-benefits ul,
    .integration-flow,
    .area-detail-grid,
    .routine-flow,
    .dash-flow,
    .check-steps,
    .tele-steps,
    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .routine-flow span:nth-child(2)::after {
        display: none;
    }

    .brand-panel { max-width: 760px; }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: .6rem 20px 1rem;
        background: rgba(255, 255, 255, .98);
        border-bottom: 1px solid rgba(51, 51, 52, .1);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
    }

    .site-nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    .site-nav a {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav-group {
        display: grid;
    }

    .nav-parent::after {
        display: none;
    }

    .nav-submenu {
        position: static;
        display: grid;
        min-width: 0;
        padding: 0 0 .35rem .9rem;
        border: 0;
        border-left: 2px solid rgba(123, 187, 178, .65);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        visibility: visible;
    }

    .nav-submenu a {
        min-height: 40px;
        padding: .45rem .65rem;
    }

    .nav-cta {
        justify-content: center;
        margin-top: .45rem;
    }

    .brand-panel { min-height: 420px; }

    .solutions-map {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .8rem;
    }

    .map-line {
        display: none;
    }

    .solution-node {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .product-detail {
        padding: 72px 0;
    }

    .s3auto-section,
    .s3auto-final,
    .s3dash-section,
    .s3dash-final,
    .s3check-section,
    .s3check-final,
    .tele-section,
    .tele-final {
        padding: 64px 0;
    }

    .s3auto-map {
        min-height: 460px;
    }

    .dash-panel,
    .check-flow-visual,
    .tele-flow-visual {
        min-height: 460px;
    }

    .callout-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-inner {
        gap: 2rem;
    }

    .product-copy h2 {
        font-size: clamp(2.25rem, 6vw, 3.45rem);
    }

    .detail-benefits ul {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .integration-flow::before {
        display: none;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 70px;
    }

    .brand img {
        width: 164px;
    }

    .hero {
        padding-top: 104px;
        padding-bottom: 48px;
    }

    .hero-orbit {
        display: none;
    }

    h1 {
        font-size: clamp(2.6rem, 12vw, 3.4rem);
        line-height: 1;
    }

    h2 {
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.08;
    }

    .hero-lead {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-actions,
    .form-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .area-grid,
    .product-grid,
    .detail-benefits ul,
    .integration-flow,
    .area-detail-grid,
    .problem-grid,
    .benefit-cloud,
    .routine-flow,
    .dash-flow,
    .check-steps,
    .tele-steps,
    .support-grid,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 66px 0;
    }

    .subhero {
        padding: 112px 0 56px;
    }

    .solutions-hero {
        padding: 104px 0 48px;
    }

    .s3auto-hero {
        padding: 104px 0 48px;
    }

    .s3dash-hero,
    .s3check-hero,
    .tele-hero {
        padding: 104px 0 48px;
    }

    .s3auto-hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.4rem);
        line-height: 1;
    }

    .s3dash-hero h1,
    .s3check-hero h1,
    .tele-hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.4rem);
        line-height: 1;
    }

    .s3auto-hero .hero-lead {
        font-size: 1.05rem;
        line-height: 1.58;
    }

    .s3dash-hero .hero-lead,
    .s3check-hero .hero-lead,
    .tele-hero .hero-lead {
        font-size: 1.05rem;
        line-height: 1.58;
    }

    .solutions-hero h1 {
        font-size: clamp(2.6rem, 12vw, 3.4rem);
        line-height: 1;
    }

    .solutions-hero .hero-lead {
        font-size: 1.05rem;
        line-height: 1.58;
    }

    .solutions-map {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: .6rem;
    }

    .solution-node {
        width: 100%;
        min-height: 78px;
        padding: .8rem .9rem;
    }

    .solution-node::before {
        width: 24px;
        height: 24px;
        border-width: 6px;
    }

    .solution-node strong {
        font-size: 1.08rem;
    }

    .product-detail {
        padding: 54px 0;
    }

    .s3auto-map {
        min-height: auto;
        display: grid;
        gap: .62rem;
        padding: 1rem;
        box-shadow: none;
    }

    .s3auto-map::before,
    .s3auto-map::after {
        display: none;
    }

    .s3auto-core,
    .s3auto-node {
        position: static;
        transform: none;
        width: 100%;
    }

    .s3auto-core {
        min-height: 96px;
    }

    .s3auto-node {
        min-height: 44px;
    }

    .dash-panel {
        min-height: 390px;
    }

    .dash-ring {
        width: 190px;
        height: 190px;
        right: -70px;
    }

    .dash-bars {
        left: 1rem;
        bottom: 1rem;
        width: calc(100% - 2rem);
        height: 150px;
    }

    .dash-chip {
        right: 1rem;
    }

    .check-flow-visual {
        min-height: auto;
        padding: 1rem;
    }

    .tele-flow-visual {
        min-height: auto;
        padding: 1rem;
    }

    .check-flow-visual::before,
    .tele-flow-visual::before {
        display: none;
    }

    .area-detail-grid article {
        min-height: 0;
    }

    .dash-flow article,
    .check-steps article {
        min-height: 0;
    }

    .tele-steps article {
        min-height: 0;
    }

    .routine-flow span:not(:last-child)::after {
        display: none;
    }

    .final-box,
    .callout-box {
        padding: 1.25rem;
    }

    .product-visual {
        min-height: 340px;
    }

    .visual-ring {
        width: 210px;
        height: 210px;
        right: -70px;
    }

    .visual-card {
        left: 18px;
        right: 18px;
    }

    .visual-card-main {
        top: 112px;
    }

    .visual-card-small:nth-of-type(3) {
        top: 220px;
    }

    .visual-card-small:nth-of-type(4) {
        top: 274px;
        left: 34px;
    }

    .visual-card-small:nth-of-type(5) {
        top: 328px;
    }

    .detail-info-grid section,
    .detail-examples {
        padding: .95rem;
    }

    .detail-info-grid p,
    .product-copy > p {
        font-size: 1rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: .25rem;
    }

    .brand-panel {
        min-height: 330px;
        padding: .85rem;
    }

    .brand-system {
        inset: .85rem;
    }

    .brand-system span:nth-child(1) {
        width: 170px;
        height: 170px;
        top: 20px;
        right: -18px;
        border-width: 22px;
    }

    .brand-system span:nth-child(2) {
        width: 112px;
        height: 112px;
        top: 88px;
        left: 28px;
        border-width: 16px;
    }

    .brand-system span:nth-child(3) {
        width: 82px;
        height: 82px;
        right: 28%;
        bottom: 30%;
        opacity: .62;
    }

    .brand-system span:nth-child(4) {
        left: 45%;
        top: 50%;
        box-shadow:
            0 0 0 11px var(--lime),
            56px -36px 0 0 var(--green),
            82px 44px 0 0 var(--turquoise),
            -64px 54px 0 0 var(--blue),
            -92px -44px 0 0 var(--lime);
    }

    .signal-list {
        gap: .55rem;
        padding: .9rem;
        border: 1px solid rgba(51, 51, 52, .08);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, .76);
        backdrop-filter: blur(3px);
    }

    .contact-copy::after {
        right: -96px;
        bottom: -98px;
        width: 178px;
        height: 178px;
        border-width: 22px;
        opacity: .24;
    }

    .contact-copy,
    .contact-form {
        padding: 1.35rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .site-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 32px 0 28px;
    }

    .footer-inner {
        gap: 1.25rem;
    }

    .footer-brand img {
        width: 150px;
    }

    .footer-brand p,
    .site-footer p {
        max-width: 28rem;
        margin-top: .45rem;
        font-size: .95rem;
        line-height: 1.45;
    }

    .site-footer nav {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .45rem .8rem;
    }

    .site-footer a {
        min-height: 38px;
        align-items: center;
        font-size: .94rem;
        line-height: 1.2;
    }
}
