:root {
    --dv-ink: #0b0b0b;
    --dv-ink-2: #171717;
    --dv-muted: #666666;
    --dv-muted-dark: rgba(255, 255, 255, 0.66);
    --dv-line: rgba(11, 11, 11, 0.12);
    --dv-line-dark: rgba(255, 255, 255, 0.14);
    --dv-paper: #ffffff;
    --dv-soft: #f5f7fb;
    --dv-soft-2: #e9eef7;
    --dv-dark: #070a12;
    --dv-dark-2: #101828;
    --dv-dark-gradient:
        radial-gradient(circle at 14% 10%, rgba(37, 98, 244, 0.22), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(255, 178, 63, 0.1), transparent 30%),
        linear-gradient(135deg, #070a12 0%, #101828 58%, #070a12 100%);
    --dv-accent: #2562f4;
    --dv-accent-dark: #164bd6;
    --dv-accent-soft: rgba(37, 98, 244, 0.12);
    --dv-warm: #ffb23f;
    --dv-warm-dark: #e58b12;
    --dv-warm-soft: rgba(255, 178, 63, 0.16);
    --dv-whatsapp: #25d366;
    --dv-whatsapp-hover: #5ee98f;
    --dv-radius: 28px;
    --dv-radius-sm: 16px;
    --dv-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    color: var(--dv-ink);
    background: var(--dv-soft);
    font-family: "Manrope", sans-serif;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: #ffffff;
    background: var(--dv-accent);
}

img,
svg,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

p {
    margin-bottom: 24px;
    color: var(--dv-muted);
}

h1,
h2,
h3,
h4 {
    color: var(--dv-ink);
    font-weight: 650;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.95;
}

h2 {
    font-size: clamp(34px, 4.6vw, 68px);
    line-height: 1;
}

h3 {
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.12;
}

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(11, 11, 11, 0.1);
    background: rgba(245, 247, 251, 0.9);
    backdrop-filter: blur(22px);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.nav__brand,
.footer__logo {
    display: inline-flex;
    align-items: center;
    color: var(--dv-ink);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.brand-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    margin-right: 10px;
    display: block;
}

.nav__menu-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.nav__menu-head,
.nav__toggle,
.nav__overlay {
    display: none;
}

.nav__menu,
.footer__links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__menu li,
.footer__links li {
    list-style: none;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: rgba(11, 11, 11, 0.68);
    font-size: 14px;
    line-height: 1;
    font-weight: 650;
}

.nav__link:hover {
    color: var(--dv-ink);
}

.nav__cta {
    white-space: nowrap;
}

.ghost-button,
.cta__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 1px solid var(--dv-ink);
    border-radius: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
}

.ghost-button.white-btn,
.ghost-button--light {
    color: #ffffff;
    background: var(--dv-accent);
    border-color: var(--dv-accent);
    box-shadow: 0 14px 34px rgba(37, 98, 244, 0.28);
}

.header .ghost-button.white-btn {
    color: #ffffff;
    background: var(--dv-accent);
    border-color: var(--dv-accent);
}

.ghost-button--dark,
.ghost-button.colored-btn,
.cta__submit {
    color: var(--dv-ink);
    background: var(--dv-warm);
    border-color: var(--dv-warm);
}

.ghost-button:hover,
.cta__submit:hover {
    transform: translateY(-2px);
}

.header .ghost-button.white-btn:hover,
.ghost-button.white-btn:hover,
.ghost-button--light:hover,
.ghost-button--dark:hover,
.ghost-button.colored-btn:hover,
.cta__submit:hover {
    color: #ffffff;
    background: var(--dv-accent-dark);
    border-color: var(--dv-accent-dark);
}

.home-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: var(--dv-dark-gradient);
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 48% 20%, #000 0%, transparent 70%);
}

.home-hero__grid {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
    gap: 56px;
    align-items: center;
    padding-top: 74px;
    padding-bottom: 92px;
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.home-hero__heading {
    max-width: 760px;
    margin-bottom: 28px;
    color: #ffffff;
}

.home-hero__line {
    display: inline-block;
    white-space: nowrap;
}

.home-hero__lead {
    max-width: 540px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.45;
    letter-spacing: -0.018em;
}

.home-hero__actions,
.hero__button-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.home-hero__actions--whatsapp {
    align-items: flex-start;
}

.home-hero__messenger-note {
    max-width: 430px;
    margin-top: 16px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.55;
}

.ghost-button--whatsapp {
    gap: 10px;
    color: var(--dv-ink);
    background: var(--dv-whatsapp);
    border-color: var(--dv-whatsapp);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.22);
}

.ghost-button--whatsapp::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230b0b0b' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 2 131.5 2 253.9c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ghost-button--whatsapp:hover {
    color: var(--dv-ink);
    background: var(--dv-whatsapp-hover);
    border-color: var(--dv-whatsapp-hover);
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28);
}

.home-hero .ghost-button--dark {
    color: var(--dv-ink);
    background: var(--dv-warm);
    border-color: var(--dv-warm);
    box-shadow: 0 14px 34px rgba(255, 178, 63, 0.18);
}

.home-hero .ghost-button--dark:hover {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 178, 63, 0.64);
}

.hero-dashboard-mockup {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(720px, calc(100% + 28px));
    max-width: calc(100% + 28px);
    margin-top: 260px;
    margin-left: -28px;
    margin-right: 0;
}

.hero-dashboard-mockup img,
.hero-dashboard-mockup svg {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 34px;
    filter: saturate(1.08) contrast(1.03);
}

.hero-dashboard-signal {
    position: absolute;
    z-index: 3;
    min-width: 154px;
    padding: 15px 17px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), 0 0 0 7px rgba(37, 98, 244, 0.08);
    backdrop-filter: blur(18px);
    color: var(--dv-ink);
    font-family: "Manrope", sans-serif;
}

.hero-dashboard-mockup__badge {
    top: 22px;
    right: 18px;
}

.hero-dashboard-signal--profit {
    top: 18px;
    left: 18px;
    min-width: 188px;
    background: rgba(255, 178, 63, 0.94);
    border-color: rgba(255, 255, 255, 0.64);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24), 0 0 0 8px rgba(255, 178, 63, 0.1);
}

.hero-dashboard-signal--cpl {
    top: 50%;
    right: 18px;
    min-width: 168px;
    background: rgba(255, 241, 242, 0.9);
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 58px rgba(127, 29, 29, 0.18), 0 0 0 7px rgba(244, 63, 94, 0.08);
    transform: translateY(-50%);
}

.hero-dashboard-signal--cr {
    right: 18px;
    bottom: 22px;
    min-width: 154px;
    background: rgba(239, 246, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.72);
}

.hero-dashboard-signal--waste {
    left: 18px;
    bottom: 22px;
    min-width: 188px;
    background: rgba(17, 24, 39, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.28), 0 0 0 8px rgba(37, 98, 244, 0.08);
    color: #ffffff;
}

.hero-dashboard-signal span {
    display: block;
    margin-bottom: 8px;
    color: rgba(11, 11, 11, 0.58);
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
}

.hero-dashboard-signal strong {
    display: block;
    color: var(--dv-accent);
    font-size: 30px;
    line-height: 1;
}

.hero-dashboard-signal--profit span {
    color: rgba(17, 24, 39, 0.62);
}

.hero-dashboard-signal--profit strong {
    color: var(--dv-ink);
}

.hero-dashboard-signal--cpl strong {
    color: #e11d48;
}

.hero-dashboard-signal--cr strong {
    color: var(--dv-accent);
}

.hero-dashboard-signal--waste span {
    color: rgba(255, 255, 255, 0.62);
}

.hero-dashboard-signal--waste strong {
    color: #ffffff;
    font-size: 28px;
}

.prediction-visual {
    position: relative;
    margin-top: 112px;
    min-height: 510px;
}

.prediction-visual__halo {
    position: absolute;
    inset: 44px 4% 86px 5%;
    border-radius: 44px;
    background: rgba(255, 255, 255, 0.08);
    filter: blur(4px);
}

.prediction-card {
    position: relative;
    color: var(--dv-ink);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 28px;
    box-shadow: 0 32px 120px rgba(0, 0, 0, 0.32);
}

.prediction-card--main {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    min-height: 362px;
    padding: 24px;
}

.prediction-card__top,
.prediction-card__metrics,
.prediction-card--side {
    font-family: "JetBrains Mono", monospace;
}

.prediction-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 22px;
    color: rgba(11, 11, 11, 0.56);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.prediction-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.prediction-card__metrics div {
    padding: 16px;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 18px;
    background: var(--dv-soft);
}

.prediction-card__metrics div:nth-child(2) {
    border-color: rgba(37, 98, 244, 0.26);
    background: #ffffff;
}

.prediction-card__metrics div:nth-child(3) {
    border-color: rgba(255, 178, 63, 0.34);
    background: #ffffff;
}

.prediction-card__metrics span,
.prediction-card--side span,
.prediction-card--side small {
    display: block;
    color: rgba(11, 11, 11, 0.55);
    font-size: 12px;
    line-height: 1.35;
}

.prediction-card__metrics strong,
.prediction-card--side strong {
    display: block;
    margin-top: 8px;
    color: var(--dv-ink);
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.prediction-chart {
    display: block;
    width: 100%;
    height: auto;
    margin: 2px 0 0;
    border: 1px solid rgba(11, 11, 11, 0.08);
    border-radius: 22px;
    background: #ffffff;
}

.prediction-card--side {
    position: absolute;
    z-index: 2;
    width: 232px;
    padding: 20px;
    border-radius: 22px;
}

.prediction-card--side strong {
    margin: 10px 0 6px;
    font-size: 26px;
}

.prediction-card--top {
    top: 0;
    right: 32px;
    border-color: rgba(37, 98, 244, 0.28);
    background: #ffffff;
}

.prediction-card--bottom {
    left: -18px;
    bottom: 0;
    border-color: rgba(255, 178, 63, 0.36);
    background: #ffffff;
}

.structured-section,
.bordered {
    position: relative;
    padding: 104px 0;
    scroll-margin-top: 92px;
}

.structured-section--dark {
    color: #ffffff;
    background: var(--dv-dark);
}

.structured-section--soft,
.cases-home {
    background: var(--dv-soft);
}

.services-home {
    color: #ffffff;
    background: var(--dv-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-home h2 {
    color: #ffffff;
}

.services-home .section-head p {
    color: var(--dv-muted-dark);
}

.problem-section {
    position: relative;
    padding: 96px 0 104px;
    border-bottom: 1px solid var(--dv-line);
    background: var(--dv-soft);
    scroll-margin-top: 92px;
}

.problem-section__inner {
    display: grid;
    gap: 36px;
}

.problem-section__head {
    max-width: 980px;
}

.problem-section__kicker {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--dv-accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.problem-section__head h2 {
    margin-bottom: 18px;
}

.problem-section__head p {
    max-width: 820px;
    margin-bottom: 0;
    color: rgba(11, 11, 11, 0.68);
    font-size: clamp(19px, 2vw, 24px);
    line-height: 1.48;
    letter-spacing: -0.02em;
}

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

.problem-card {
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.06);
}

.problem-card:nth-child(2) {
    background: #ffffff;
}

.problem-card:nth-child(3) {
    background: #ffffff;
}

.problem-card__number {
    margin-bottom: 22px;
    color: rgba(11, 11, 11, 0.32);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.problem-card h3 {
    margin-bottom: 16px;
    font-size: clamp(20px, 1.6vw, 25px);
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.problem-card p {
    margin-bottom: 0;
    color: rgba(11, 11, 11, 0.66);
    font-size: 16px;
    line-height: 1.55;
}

.problem-section__final {
    display: grid;
    grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 28px 30px;
    border: 1px solid var(--dv-accent);
    border-radius: 28px;
    color: #ffffff;
    background: var(--dv-accent);
    box-shadow: 0 22px 64px rgba(37, 98, 244, 0.24);
}

.problem-section__final:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 28px 76px rgba(37, 98, 244, 0.3);
}

.problem-section__final-label {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 650;
    line-height: 1;
    letter-spacing: -0.055em;
}

.problem-section__final strong {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 600;
    line-height: 1.42;
    letter-spacing: -0.02em;
}

.problem-section__final-link {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 14px;
    color: var(--dv-ink);
    background: #ffffff;
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.problem-section__final-link::after {
    content: "->";
    margin-left: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
}

.section-head {
    max-width: 820px;
    margin-bottom: 48px;
}

.section-head--center {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

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

.section-head p {
    max-width: 780px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.55;
}

.section-head--center p {
    margin-right: auto;
    margin-left: auto;
}

.structured-section--dark h2,
.structured-section--dark h3 {
    color: #ffffff;
}

.structured-section--dark p {
    color: var(--dv-muted-dark);
}

.services-demo-dashboard {
    position: relative;
    height: clamp(680px, 64vw, 820px);
    min-height: 680px;
    margin-top: 46px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.32);
}

.services-demo-dashboard iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.workflow-section {
    color: #ffffff;
    overflow: hidden;
    background: var(--dv-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.workflow-section .section-head {
    margin-bottom: 0;
}

.workflow-section h2 {
    color: #ffffff;
}

.workflow-section .section-head p {
    color: rgba(255, 255, 255, 0.68);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--dv-line-dark);
    border-radius: var(--dv-radius);
    overflow: hidden;
}

.capability-card {
    min-height: 250px;
    padding: 34px;
    border-right: 1px solid var(--dv-line-dark);
    border-bottom: 1px solid var(--dv-line-dark);
    background: rgba(255, 255, 255, 0.035);
}

.capability-card__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    color: #8fb1ff;
    background: rgba(255, 255, 255, 0.06);
}

.capability-card__icon svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.capability-card__icon--funnel,
.capability-card__icon--spend {
    color: var(--dv-warm);
}

.capability-card__icon--forecast,
.capability-card__icon--sync {
    color: #37ef78;
}

.capability-card__icon--report {
    color: #dce8ff;
}

.capability-card:nth-child(3n) {
    border-right: 0;
}

.capability-card:nth-last-child(-n + 3) {
    border-bottom: 0;
}

.capability-card h3 {
    margin-bottom: 18px;
}

.capability-card p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.58;
}

.story-section {
    padding: 112px 0;
    background: var(--dv-soft);
}

.story-section__grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    gap: 70px;
    align-items: center;
}

.story-section__content h2 {
    margin-bottom: 26px;
}

.story-section__content p {
    max-width: 660px;
    font-size: 21px;
    line-height: 1.58;
}

.story-section__visual {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--dv-radius);
    background: var(--dv-soft-2);
    box-shadow: inset 0 0 0 1px rgba(11, 11, 11, 0.08), var(--dv-shadow);
}

.data-flow-visual {
    display: block;
    width: min(100%, 620px);
    height: auto;
}

.flow-bg {
    fill: #ffffff;
    stroke: rgba(11, 11, 11, 0.1);
}

.flow-grid {
    fill: none;
    stroke: rgba(11, 11, 11, 0.08);
    stroke-width: 1;
}

.source-node rect,
.dashboard-node rect:first-child {
    fill: #0b0b0b;
}

.source-node--blue rect {
    stroke: rgba(37, 98, 244, 0.78);
    stroke-width: 2;
}

.source-node--warm rect {
    stroke: rgba(255, 178, 63, 0.82);
    stroke-width: 2;
}

.source-node text,
.processor-node text,
.dashboard-node text {
    fill: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.source-node .node-muted,
.dashboard-node .node-muted {
    fill: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}

.processor-node rect {
    fill: #ffffff;
    stroke: rgba(37, 98, 244, 0.28);
}

.processor-node circle {
    fill: var(--dv-accent);
}

.processor-node path {
    stroke: var(--dv-warm);
    stroke-width: 4;
    stroke-linecap: round;
}

.processor-node text {
    fill: #0b0b0b;
    font-family: "JetBrains Mono", monospace;
    font-size: 18px;
    text-anchor: middle;
}

.dashboard-node rect:not(:first-child) {
    fill: rgba(255, 255, 255, 0.92);
    stroke: rgba(255, 255, 255, 0.18);
}

.dashboard-node path {
    fill: none;
    stroke: var(--dv-warm);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.services-flow {
    margin-top: 54px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.workflow-section .services-flow {
    margin-top: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.services-flow__visual {
    display: block;
    width: 100%;
    height: auto;
}

.workflow-section .services-flow__visual {
    border-radius: 0;
}

.services-flow text {
    font-family: "Manrope", sans-serif;
}

.services-flow__connectors line {
    opacity: 1;
    stroke: #dce8ff;
    vector-effect: non-scaling-stroke;
}

.services-flow__dashboard-shell {
    fill: #ffffff;
    stroke: #b9c6d8;
    stroke-width: 2.5;
}

.services-flow__chart line {
    stroke: #cbd5e1;
    stroke-width: 2;
}

.services-flow__source-card {
    fill: url(#servicesFlowCard);
    stroke: #b9c6d8;
    stroke-width: 2;
}

.services-flow__source-icon-bg {
    stroke: #d5dee9;
    stroke-width: 2;
}

.services-flow__source-title {
    fill: #0b1220;
    font-size: 18px;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.services-flow__source-subtitle {
    fill: #344054;
    font-size: 13px;
    font-weight: 760;
}

.services-flow__source path,
.services-flow__source rect,
.services-flow__source circle {
    vector-effect: non-scaling-stroke;
}

.services-flow__source path[fill="none"],
.services-flow__source rect[fill="#FFFFFF"] {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.clients__row,
.solutions__row,
.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.clients__grid,
.solutions__grid {
    margin-top: 42px;
}

.solution-groups {
    display: grid;
    gap: 52px;
}

.solution-group {
    padding-top: 32px;
    border-top: 1px solid var(--dv-line);
}

.solution-group__head {
    display: grid;
    grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 26px;
}

.solution-group__head h3,
.solution-group__head p {
    margin-bottom: 0;
}

.solution-card,
.clients__cell {
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(11, 11, 11, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.solution-card:hover,
.clients__cell:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 11, 11, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.solution-card__preview {
    position: relative;
    aspect-ratio: 16 / 10;
    margin: -26px -26px 26px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    border-bottom: 1px solid rgba(11, 11, 11, 0.08);
    background: #101010;
}

.solution-card__preview::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.08);
}

.solution-card__preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.04) contrast(1.02);
}

.solution-card__preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.solution-card h3,
.clients__cell h3 {
    margin-bottom: 16px;
}

.clients__cell-p {
    margin-bottom: 26px;
    color: var(--dv-muted);
    font-size: 17px;
    line-height: 1.58;
}

.solution-card__links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.card-link,
.text-link,
.arrow-hover {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 8px;
    color: var(--dv-accent);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    border-bottom: 1px solid currentColor;
}

.card-link:hover,
.text-link:hover,
.arrow-hover:hover {
    color: var(--dv-accent-dark);
}

.card-link::after,
.text-link::after,
.arrow-hover::after {
    content: "->";
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    transition: transform 180ms ease;
}

.card-link:hover::after,
.text-link:hover::after,
.arrow-hover:hover::after {
    transform: translateX(4px);
}

.link-text {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.link-text.arrow {
    display: none;
}

.section-link-wrap {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.whatsapp-strip {
    margin-top: 0;
    padding: 72px 0 92px;
    background: var(--dv-soft);
}

.whatsapp-strip--soft {
    margin-top: 0;
}

.whatsapp-strip__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 24px 28px;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 70px rgba(15, 23, 42, 0.08);
}

.whatsapp-strip__copy {
    max-width: 820px;
}

.whatsapp-strip__kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--dv-accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.whatsapp-strip h2 {
    margin-bottom: 8px;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.08;
}

.whatsapp-strip p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(11, 11, 11, 0.66);
    font-size: 16px;
    line-height: 1.52;
}

.whatsapp-strip__button {
    flex: 0 0 auto;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid rgba(34, 197, 94, 0.72);
    border-radius: 14px;
    color: #06130a;
    background: #22c55e;
    box-shadow: 0 18px 44px rgba(34, 197, 94, 0.18);
    font-size: 14px;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.whatsapp-strip__button::before {
    content: "";
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.24);
}

.whatsapp-strip__button:hover {
    transform: translateY(-2px);
    color: #06130a;
    background: #4dff8d;
    box-shadow: 0 24px 54px rgba(34, 197, 94, 0.24);
}

.placeholder-card {
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-style: dashed;
    color: rgba(11, 11, 11, 0.45);
    text-align: center;
}

.gs-hero__grid {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
    gap: 44px;
    align-items: center;
    padding-top: 90px;
    padding-bottom: 96px;
}

.gs-hero__content {
    max-width: 760px;
}

.gs-hero .home-hero__heading {
    max-width: 760px;
    font-size: clamp(48px, 5.7vw, 88px);
    line-height: 0.98;
}

.gs-hero-portrait {
    position: relative;
    min-height: 620px;
}

.gs-hero-portrait__panel {
    position: relative;
    min-height: 620px;
    /* hide image edges so it blends with hero background */
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    isolation: isolate;
}

.gs-hero-portrait__panel img {
    position: absolute;
    right: 7%;
    bottom: 124px;
    z-index: 2;
    width: min(78%, 460px);
    height: auto;
    border-radius: 0;
    clip-path: inset(0);
    filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.34));
    mask-image: radial-gradient(ellipse at 50% 44%, #000 0 58%, rgba(0, 0, 0, 0.9) 66%, rgba(0, 0, 0, 0.22) 82%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 44%, #000 0 58%, rgba(0, 0, 0, 0.9) 66%, rgba(0, 0, 0, 0.22) 82%, transparent 100%);
}

.gs-hero-metric {
    position: absolute;
    z-index: 4;
    padding: 16px;
    border: 1px solid rgba(11, 11, 11, 0.06);
    border-radius: 12px;
    color: var(--dv-ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.13);
    backdrop-filter: blur(10px);
}

.gs-hero-metric span {
    display: block;
    color: rgba(11, 11, 11, 0.78);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.06;
}

.gs-hero-metric strong {
    display: block;
    margin-top: 8px;
    font-size: 25px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.04em;
}

.gs-hero-metric b {
    color: #00b969;
    font-size: 20px;
    font-weight: 850;
    line-height: 1;
}

.gs-hero-metric--revenue {
    top: 317px;
    left: 8px;
    width: 186px;
}

.gs-hero-metric--revenue b {
    position: absolute;
    top: 17px;
    right: 14px;
}

.gs-hero-metric--conversion {
    bottom: 94px;
    left: 36px;
    width: 218px;
}

.gs-hero-metric--conversion strong {
    font-size: 23px;
}

.gs-hero-metric--conversion em {
    color: rgba(11, 11, 11, 0.35);
    font-style: normal;
}

.gs-hero-metric--conversion b {
    position: absolute;
    top: 17px;
    right: 14px;
}

.gs-hero-metric--leads {
    right: 2px;
    bottom: 40px;
    width: 200px;
    padding-bottom: 34px;
}

.gs-hero-metric__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.gs-hero-bars {
    height: 84px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: end;
    margin-top: 14px;
}

.gs-hero-bars i {
    position: relative;
    display: block;
    height: var(--bar);
    min-height: 32px;
    border-radius: 8px 8px 3px 3px;
    background: linear-gradient(180deg, #6f73ff 0%, #5458db 100%);
}

.gs-hero-bars small {
    position: absolute;
    right: -8px;
    bottom: -18px;
    left: -8px;
    color: rgba(11, 11, 11, 0.72);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.ghost-button--outline-light {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.36);
    background: rgba(255, 255, 255, 0.06);
}

.ghost-button--outline-light:hover {
    color: var(--dv-ink);
    background: #ffffff;
    border-color: #ffffff;
}

.gs-hero-map {
    display: block;
    width: 100%;
    height: auto;
}

.gs-hero-map text {
    font-family: "Manrope", sans-serif;
}

.gs-hero-map__links path {
    fill: none;
    stroke: rgba(37, 98, 244, 0.26);
    stroke-width: 2.2;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

.gs-hero-map__center rect {
    fill: var(--dv-dark-2);
    stroke: rgba(255, 255, 255, 0.28);
    stroke-width: 1.5;
}

.gs-hero-map__center text:first-of-type {
    fill: #ffffff;
    font-size: 24px;
    font-weight: 850;
    text-anchor: middle;
}

.gs-hero-map__center text:last-of-type {
    fill: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 650;
    text-anchor: middle;
}

.gs-hero-map__node rect {
    fill: #ffffff;
    stroke: rgba(11, 11, 11, 0.1);
    stroke-width: 1.4;
}

.gs-hero-map__node path,
.gs-hero-map__node rect:not(:first-child) {
    fill: none;
    stroke: var(--dv-accent);
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gs-hero-map__node text:first-of-type {
    fill: var(--dv-ink);
    font-size: 17px;
    font-weight: 850;
}

.gs-hero-map__node text:last-of-type {
    fill: rgba(11, 11, 11, 0.56);
    font-size: 13px;
    font-weight: 650;
}

.gs-case-card__label {
    color: var(--dv-accent);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.gs-services {
    background: #ffffff;
    color: var(--dv-ink);
    border-bottom: 1px solid var(--dv-line);
}

.gs-services h2,
.gs-services h3 {
    color: var(--dv-ink);
}

.gs-services .section-head p {
    color: var(--dv-muted);
}

.gs-services__grid,
.gs-products__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.gs-service-card,
.gs-product-card,
.gs-case-card {
    min-height: 100%;
    padding: 28px;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 24px;
    background: var(--dv-soft);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.055);
}

.gs-service-card__icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: #16213a;
}

.gs-service-card__icon svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gs-service-card__icon--analytics,
.gs-service-card__icon--apps {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    background: #1d2944;
}

.gs-service-card__icon--integrations,
.gs-service-card__icon--support {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    background: #172b43;
}

.gs-service-card__icon--ai {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.08);
    background: #241f43;
}

.gs-service-card h3,
.gs-product-card h3,
.gs-product-card h4,
.gs-case-card h3 {
    margin-bottom: 14px;
    font-size: clamp(22px, 2vw, 29px);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.gs-service-card p,
.gs-product-card p,
.gs-case-card p {
    margin-bottom: 22px;
    color: rgba(11, 11, 11, 0.66);
    font-size: 16px;
    line-height: 1.58;
}

.gs-service-card__content ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gs-service-card__content li {
    position: relative;
    padding-left: 22px;
    color: var(--dv-ink);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.42;
}

.gs-service-card__content li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dv-warm);
    transform: translateY(-50%);
}

.gs-service-card__link {
    margin-top: 24px;
}

.gs-products {
    background: #ffffff;
}

.gs-products__group {
    display: grid;
    gap: 22px;
}

.gs-products__group + .gs-products__group {
    margin-top: 56px;
}

.gs-products__title {
    margin-bottom: 0;
    color: var(--dv-ink);
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.08;
}

.gs-product-card {
    background: #ffffff;
}

.gs-product-card--software {
    background: var(--dv-soft);
}

.gs-product-card__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.gs-product-card__logo {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    border-radius: 12px;
    color: #ffffff;
    background: var(--dv-ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 800;
}

.gs-product-card:nth-child(2) .gs-product-card__logo {
    background: var(--dv-accent);
}

.gs-product-card:nth-child(3) .gs-product-card__logo {
    color: var(--dv-ink);
    background: var(--dv-warm);
}

.gs-products__grid--software .gs-product-card__logo {
    background: #16213a;
}

.gs-products__grid--software .gs-product-card:nth-child(2n) .gs-product-card__logo {
    background: var(--dv-accent);
}

.gs-products__grid--software .gs-product-card:nth-child(3n) .gs-product-card__logo {
    color: #ffffff;
    background: #1d2944;
}

.gs-product-card__brand strong {
    color: var(--dv-ink);
    font-size: 18px;
    line-height: 1;
}

.gs-case-card {
    background:
        linear-gradient(135deg, rgba(37, 98, 244, 0.09), transparent 46%),
        #ffffff;
}

.gs-case-card__label {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--dv-accent);
}

.cta {
    padding: 104px 0;
    color: #ffffff;
    background: var(--dv-dark);
}

.cta__container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
    gap: 74px;
    align-items: start;
}

.cta__person {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    margin-bottom: 24px;
    padding: 10px 16px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(16px);
}

.cta__person img {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border-radius: 14px;
    object-fit: cover;
    object-position: 50% 28%;
}

.cta__person strong,
.cta__person span {
    display: block;
}

.cta__person strong {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.15;
}

.cta__person span {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.subhero__heading {
    max-width: 700px;
    margin-bottom: 22px;
    color: #ffffff;
}

.subhero__subheading {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 22px;
    line-height: 1.52;
}

.offices {
    display: grid;
    gap: 16px;
    max-width: 560px;
    margin-top: 42px;
}

.office {
    padding: 20px 0;
    border-top: 1px solid var(--dv-line-dark);
}

.office__title {
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 750;
}

.office__address,
.office__contacts {
    color: rgba(255, 255, 255, 0.62);
    font-size: 16px;
    line-height: 1.58;
}

.cta__wrapper {
    padding: 26px;
    border: 1px solid var(--dv-line-dark);
    border-radius: var(--dv-radius);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(18px);
}

.cta__contact-options {
    margin-bottom: 22px;
}

.cta__contact-options--aside {
    max-width: 460px;
    margin-bottom: 0;
}

.cta__contact-title {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 750;
}

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

.cta__contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 16px;
    color: var(--dv-ink);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: transform var(--dv-transition), background var(--dv-transition), border-color var(--dv-transition);
}

.cta__contact-link:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
}

.cta__contact-link svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    fill: currentColor;
}

.cta__contact-link--whatsapp::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-right: 8px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230b0b0b' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 2 131.5 2 253.9c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.cta__contact-link--whatsapp {
    background: #25d366;
    border-color: #25d366;
}

.cta__contact-link--whatsapp:hover {
    background: #5ee98f;
    border-color: #5ee98f;
}

.cta__contact-link--telegram {
    color: #ffffff;
    background: #229ed9;
    border-color: #229ed9;
}

.cta__contact-link--telegram:hover {
    color: #ffffff;
    background: #42b7ee;
    border-color: #42b7ee;
}

.cta__form-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 700;
}

.cta__form-divider::before,
.cta__form-divider::after {
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.16);
    content: "";
}

.cta__form-title {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    font-weight: 800;
}

.cta__form {
    display: block;
    width: 100%;
    min-height: 52px;
    margin-bottom: 14px;
    padding: 14px 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    outline: 0;
}

.cta__form::placeholder {
    color: rgba(255, 255, 255, 0.52);
}

.cta__form:focus {
    border-color: rgba(37, 98, 244, 0.82);
    background: rgba(255, 255, 255, 0.12);
}

.cta__policy {
    margin: 18px 0 22px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13px;
    line-height: 1.55;
}

.cta__submit {
    width: 100%;
    color: #ffffff;
    background: var(--dv-accent);
    border-color: var(--dv-accent);
    box-shadow: 0 18px 44px rgba(37, 98, 244, 0.24);
}

.cta__submit:hover {
    color: var(--dv-ink);
    background: var(--dv-warm);
    border-color: var(--dv-warm);
}

.faq-section {
    padding: 104px 0;
    color: var(--dv-ink);
    background: var(--dv-soft);
}

.faq-section__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 70px;
    align-items: start;
}

.faq-section__head {
    position: sticky;
    top: 110px;
}

.faq-section__head h2 {
    max-width: 520px;
    margin-bottom: 20px;
    color: var(--dv-ink);
}

.faq-section__head p {
    max-width: 440px;
    margin-bottom: 0;
    color: var(--dv-muted);
    font-size: 19px;
    line-height: 1.56;
}

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

.faq-item {
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 22px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.055);
}

.faq-item[open] {
    background: #ffffff;
    border-color: rgba(37, 98, 244, 0.2);
}

.faq-item summary {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    color: var(--dv-ink);
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary span {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.faq-item summary i {
    position: relative;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(11, 11, 11, 0.12);
    border-radius: 50%;
}

.faq-item summary i::before,
.faq-item summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: var(--dv-warm);
    transform: translate(-50%, -50%);
}

.faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: opacity 180ms ease;
}

.faq-item[open] summary i::after {
    opacity: 0;
}

.faq-item p {
    max-width: 820px;
    margin: -4px 24px 24px;
    color: var(--dv-muted);
    font-size: 17px;
    line-height: 1.62;
}

.footer {
    padding: 84px 0 42px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--dv-dark-gradient);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__wrapper {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(170px, 0.8fr));
    gap: 48px;
    margin-bottom: 58px;
}

.footer__logo {
    margin-bottom: 22px;
    color: #ffffff;
}

.footer__description {
    max-width: 340px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 16px;
    line-height: 1.65;
}

.footer__telegram {
    display: inline-flex;
    margin-top: 8px;
    color: var(--dv-warm);
    font-weight: 750;
    border-bottom: 1px solid currentColor;
}

.footer__subhead {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer__link,
.footer__contact,
.footer__bottom-link {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
    line-height: 1.55;
}

.footer__link {
    display: block;
    margin-bottom: 12px;
}

.footer__link:hover,
.footer__contact a:hover,
.footer__bottom-link:hover,
.footer__telegram:hover {
    color: var(--dv-warm);
}

.footer__contact {
    display: block;
    margin-bottom: 12px;
}

.footer__contact strong {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 750;
}

.footer__contact-actions {
    display: grid;
    gap: 10px;
    justify-items: start;
    margin-top: 2px;
}

.footer__contact-link {
    width: 210px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.footer__contact-link::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: currentColor;
}

.footer__contact-link--telegram {
    color: #ffffff;
    background: #229ed9;
    border-color: #229ed9;
}

.footer__contact-link--telegram::before {
    background: #ffffff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 4.35 18.5 19.42c-.24 1.07-.87 1.33-1.76.83l-4.86-3.58-2.35 2.26c-.26.26-.48.48-.98.48l.35-4.95 9.01-8.14c.39-.35-.09-.54-.6-.19L6.17 13.15 1.37 11.65C.33 11.32.31 10.61 1.59 10.11L20.37 2.88c.87-.32 1.63.19 1.33 1.47Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 4.35 18.5 19.42c-.24 1.07-.87 1.33-1.76.83l-4.86-3.58-2.35 2.26c-.26.26-.48.48-.98.48l.35-4.95 9.01-8.14c.39-.35-.09-.54-.6-.19L6.17 13.15 1.37 11.65C.33 11.32.31 10.61 1.59 10.11L20.37 2.88c.87-.32 1.63.19 1.33 1.47Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer__contact-link--whatsapp {
    color: var(--dv-ink);
    background: var(--dv-whatsapp);
    border-color: var(--dv-whatsapp);
}

.footer__contact-link--whatsapp::before {
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 448 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%230b0b0b' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 101.5 32 2 131.5 2 253.9c0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.footer__contact-link:hover {
    transform: translateY(-2px);
}

.footer__contact-link--telegram:hover {
    color: #ffffff;
    background: #35aee2;
    border-color: #35aee2;
}

.footer__contact-link--whatsapp:hover {
    color: var(--dv-ink);
    background: var(--dv-whatsapp-hover);
    border-color: var(--dv-whatsapp-hover);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.46);
    font-size: 14px;
}

.footer__links {
    justify-content: flex-end;
    gap: 22px;
}

.internal-page {
    min-height: 240px;
    padding: 96px 0;
    background: var(--dv-soft);
}

.content-page {
    max-width: 1180px;
}

.content-page--article {
    max-width: 920px;
}

.thanks-page {
    min-height: calc(100vh - 280px);
    padding: 118px 0;
    background: var(--dv-ink);
    color: #fff;
}

.thanks-page__container {
    display: flex;
    justify-content: center;
}

.thanks-page__card {
    width: min(760px, 100%);
    padding: clamp(32px, 6vw, 72px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 34px;
    background:
        radial-gradient(circle at 20% 0%, rgba(77, 255, 141, 0.16), transparent 38%),
        rgba(255, 255, 255, 0.04);
    text-align: center;
}

.thanks-page__eyebrow {
    margin: 0 0 18px;
    color: var(--dv-accent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.thanks-page h1 {
    margin: 0 auto 20px;
    max-width: 620px;
    color: #fff;
    font-size: clamp(44px, 7vw, 84px);
    line-height: 0.96;
}

.thanks-page p {
    margin: 0 auto 34px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 20px;
    line-height: 1.6;
}

.content-entry h1 {
    margin-bottom: 28px;
    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;
}

.entry-content {
    color: var(--dv-muted);
}

.entry-content > * {
    margin-top: 0;
    margin-bottom: 28px;
}

.entry-content > *:last-child {
    margin-bottom: 0;
}

.entry-content p,
.entry-content li {
    color: var(--dv-muted);
    font-size: 19px;
    line-height: 1.72;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 52px;
    margin-bottom: 20px;
    letter-spacing: -0.035em;
}

.entry-content h2 {
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.08;
}

.entry-content h3 {
    font-size: clamp(26px, 2.3vw, 34px);
    line-height: 1.14;
}

.entry-content h4 {
    font-size: 22px;
    line-height: 1.25;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 30px;
    padding-left: 24px;
}

.entry-content li {
    margin-bottom: 10px;
}

.entry-content a {
    color: var(--dv-ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.entry-content figure {
    margin: 38px 0;
}

.entry-content .wp-block-image img {
    width: 100%;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 24px;
    box-shadow: var(--dv-shadow);
}

.entry-content .case-article__figure img,
.entry-content .case-article__gallery img {
    display: block;
    width: 100%;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 18px;
    box-shadow: var(--dv-shadow);
}

.entry-content .case-article__figure {
    margin: 34px 0 42px;
}

.entry-content .case-article__summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 34px 0;
}

.entry-content .case-article__summary-item {
    padding: 22px;
    border: 1px solid rgba(11, 11, 11, 0.1);
    border-radius: 18px;
    background: #ffffff;
}

.entry-content .case-article__summary-item strong {
    display: block;
    margin-bottom: 10px;
    color: var(--dv-ink);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.entry-content .case-article__summary-item p {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
}

.entry-content .case-article__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 38px 0;
}

.entry-content figcaption {
    margin-top: 12px;
    color: rgba(11, 11, 11, 0.48);
    font-size: 14px;
    line-height: 1.45;
}

.entry-content blockquote {
    margin: 38px 0;
    padding: 26px 30px;
    border-left: 3px solid var(--dv-ink);
    border-radius: 0 18px 18px 0;
    background: var(--dv-soft);
}

.entry-content table {
    width: 100%;
    margin: 38px 0;
    border-collapse: collapse;
    overflow: hidden;
}

.entry-content th,
.entry-content td {
    padding: 13px 15px;
    border: 1px solid rgba(11, 11, 11, 0.14);
    text-align: left;
    vertical-align: top;
}

.entry-content th {
    color: var(--dv-ink);
    background: var(--dv-soft);
    font-weight: 800;
}

.pagination,
.nav-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 42px;
}

.page-numbers {
    min-width: 38px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--dv-line);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
}

.page-numbers.current,
.page-numbers:hover {
    color: #ffffff;
    background: var(--dv-ink);
    border-color: var(--dv-ink);
}

@media (max-width: 1120px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 72px;
    }

    .gs-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 44px;
        padding-top: 72px;
    }

    .home-hero__content {
        max-width: 900px;
    }

    .gs-hero__content {
        max-width: 900px;
    }

    .gs-hero-portrait {
        width: min(100%, 720px);
        min-height: 620px;
        margin: 0 auto;
    }

    .hero-dashboard-mockup {
        width: min(100%, 960px);
        margin-top: 34px;
        margin-left: auto;
        margin-right: auto;
        transform: none;
    }

    .hero-dashboard-mockup__badge {
        top: 18px;
        right: 18px;
    }

    .hero-dashboard-signal--profit {
        top: 18px;
        left: 18px;
    }

    .hero-dashboard-signal--cpl {
        top: 50%;
        right: 18px;
    }

    .hero-dashboard-signal--cr {
        right: 18px;
        bottom: 18px;
    }

    .hero-dashboard-signal--waste {
        left: 18px;
        bottom: 18px;
    }

    .prediction-visual {
        margin-top: 44px;
        min-height: 560px;
        max-width: 760px;
    }

    .capability-grid,
    .problem-section__grid,
    .clients__row,
    .solutions__row,
    .archive-grid,
    .gs-services__grid,
    .gs-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-card:nth-child(3n) {
        border-right: 1px solid var(--dv-line-dark);
    }

    .capability-card:nth-child(2n) {
        border-right: 0;
    }

    .capability-card:nth-last-child(-n + 3) {
        border-bottom: 1px solid var(--dv-line-dark);
    }

    .capability-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .story-section__grid,
    .faq-section__grid,
    .cta__container {
        grid-template-columns: 1fr;
    }

    .faq-section__head {
        position: static;
    }

    .footer__wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    html.has-mobile-menu {
        overflow: hidden;
    }

    .entry-content .case-article__summary,
    .entry-content .case-article__gallery {
        grid-template-columns: 1fr;
    }

    .gs-hero-portrait {
        width: min(100%, 560px);
        min-height: 560px;
    }

    .gs-hero-portrait__panel {
        min-height: 560px;
        border-radius: 0;
    }

    .gs-hero-portrait__panel img {
        right: 4%;
        bottom: 96px;
        width: min(76%, 380px);
    }

    .gs-hero-metric--revenue {
        top: 136px;
        left: 18px;
    }

    .gs-hero-metric--conversion {
        bottom: 88px;
        left: 18px;
    }

    .gs-hero-metric--leads {
        right: 18px;
        bottom: -42px;
        padding-bottom: 30px;
    }

    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open .header {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 120;
    }

    body.mobile-menu-open main,
    body.mobile-menu-open .footer {
        filter: blur(14px) saturate(0.78);
        transform: translateZ(0);
        pointer-events: none;
        user-select: none;
    }

    body {
        font-size: 17px;
    }

    .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nav {
        min-height: auto;
        padding: 16px 0;
        align-items: center;
    }

    .nav__brand {
        position: relative;
        z-index: 102;
    }

    .nav__toggle {
        position: relative;
        z-index: 102;
        width: 48px;
        height: 48px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        border: 1px solid rgba(11, 11, 11, 0.12);
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
        cursor: pointer;
    }

    .nav__toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--dv-ink);
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .nav__toggle[aria-expanded="true"] span:first-child {
        transform: translateY(4.5px) rotate(45deg);
    }

    .nav__toggle[aria-expanded="true"] span:last-child {
        transform: translateY(-4.5px) rotate(-45deg);
    }

    .nav__overlay {
        position: fixed;
        inset: 0;
        z-index: 100;
        display: none;
        background: rgba(5, 5, 5, 0.58);
        backdrop-filter: blur(10px) saturate(0.78);
        -webkit-backdrop-filter: blur(10px) saturate(0.78);
    }

    .nav__menu-wrap {
        position: fixed;
        z-index: 101;
        top: 80px;
        right: 0;
        left: 0;
        width: auto;
        max-height: calc(100vh - 80px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 22px;
        padding: 22px 18px 26px;
        border-top: 1px solid rgba(11, 11, 11, 0.08);
        border-bottom: 1px solid rgba(11, 11, 11, 0.08);
        background: #ffffff;
        box-shadow: 0 34px 110px rgba(0, 0, 0, 0.28);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav__menu-wrap.is-open,
    body.mobile-menu-open .nav__menu-wrap {
        display: flex !important;
    }

    .nav__overlay.is-open,
    body.mobile-menu-open .nav__overlay {
        display: block !important;
    }

    .nav__menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid rgba(11, 11, 11, 0.08);
        border-bottom: 1px solid rgba(11, 11, 11, 0.08);
    }

    .nav__link {
        min-height: 58px;
        justify-content: space-between;
        border-bottom: 1px solid rgba(11, 11, 11, 0.08);
        color: var(--dv-ink);
        font-size: 24px;
        font-weight: 750;
        letter-spacing: -0.04em;
    }

    .nav__menu li:last-child .nav__link {
        border-bottom: 0;
    }

    .nav__link::after {
        content: "";
        width: 9px;
        height: 9px;
        border-top: 2px solid var(--dv-accent);
        border-right: 2px solid var(--dv-accent);
        transform: rotate(45deg);
    }

    .nav__cta {
        width: 100%;
        min-height: 56px;
        font-size: 16px;
    }

    .home-hero__grid,
    .gs-hero__grid,
    .problem-section,
    .structured-section,
    .bordered,
    .story-section,
    .faq-section,
    .cta,
    .internal-page {
        padding-top: 64px;
        padding-bottom: 70px;
    }

    .home-hero__grid {
        gap: 0;
    }

    .gs-hero__grid {
        gap: 30px;
    }

    .home-hero__lead,
    .problem-section__head p,
    .section-head p,
    .faq-section__head p,
    .story-section__content p,
    .subhero__subheading {
        font-size: 18px;
    }

    .home-hero__actions,
    .hero__button-wrapper {
        width: min(100%, 360px);
        flex-direction: column;
        align-items: stretch;
        justify-self: center;
    }

    .gs-hero .home-hero__actions {
        width: 100%;
        max-width: 420px;
        align-items: stretch;
        margin-top: 22px;
    }

    .home-hero__content {
        display: contents;
    }

    .home-hero__heading {
        order: 1;
        margin-bottom: 14px;
    }

    .home-hero__lead {
        order: 2;
        margin-bottom: 0;
    }

    .hero-dashboard-mockup {
        order: 3;
        width: 95vw;
        margin-top: 16px;
        margin-right: calc(50% - 47.5vw);
        margin-left: calc(50% - 47.5vw);
        left: auto;
        transform: none;
        border-radius: 22px;
    }

    .home-hero__actions {
        order: 4;
        margin-top: 14px;
    }

    .home-hero__messenger-note {
        order: 5;
        width: min(100%, 360px);
        margin: 10px auto 0;
        color: rgba(255, 255, 255, 0.64);
        font-size: 14px;
        text-align: center;
    }

    .hero-dashboard-mockup img,
    .hero-dashboard-mockup svg {
        border-radius: 22px;
    }

    .hero-dashboard-signal {
        min-width: 136px;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .hero-dashboard-mockup__badge {
        right: 18px;
        top: 18px;
    }

    .hero-dashboard-signal--profit,
    .hero-dashboard-signal--cpl,
    .hero-dashboard-signal--cr,
    .hero-dashboard-signal--waste {
        display: none;
    }

    .hero-dashboard-signal span {
        font-size: 9px;
    }

    .hero-dashboard-signal strong {
        font-size: 28px;
    }

    .prediction-visual {
        margin-top: 0;
        min-height: auto;
    }

    .prediction-card--main,
    .prediction-card--side {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .prediction-card--main {
        min-height: auto;
    }

    .prediction-card--side {
        margin-top: 14px;
    }

    .services-flow {
        margin-top: 30px;
        margin-right: -18px;
        margin-left: -18px;
        padding: 0;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .services-demo-dashboard {
        height: 560px;
        min-height: 560px;
        margin-top: 30px;
        border-radius: 22px;
    }

    .workflow-section .services-flow {
        margin-top: 30px;
        margin-right: -18px;
        margin-left: -18px;
        padding: 0;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .services-flow__visual {
        width: 920px;
        max-width: none;
    }

    .whatsapp-strip {
        margin-top: 0;
        padding: 56px 0 64px;
    }

    .whatsapp-strip__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 22px;
        border-radius: 22px;
    }

    .whatsapp-strip__button {
        width: 100%;
        min-height: 54px;
    }

    .prediction-card__metrics,
    .capability-grid,
    .problem-section__grid,
    .clients__row,
    .solutions__row,
    .archive-grid,
    .gs-services__grid,
    .gs-products__grid,
    .solution-group__head,
    .footer__wrapper {
        grid-template-columns: 1fr;
    }

    .gs-service-card,
    .gs-product-card,
    .gs-case-card {
        border-radius: 20px;
    }

    .faq-section__grid {
        gap: 30px;
    }

    .faq-item summary {
        min-height: 66px;
        padding: 18px 18px;
    }

    .faq-item p {
        margin: -2px 18px 20px;
        font-size: 16px;
    }

    .capability-grid {
        border-radius: 22px;
    }

    .problem-section__inner {
        gap: 28px;
    }

    .problem-card {
        min-height: auto;
        padding: 22px;
        border-radius: 22px;
    }

    .problem-card__number {
        margin-bottom: 18px;
    }

    .problem-section__final {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
        border-radius: 22px;
    }

    .problem-section__final-link {
        width: 100%;
        min-height: 50px;
    }

    .capability-card,
    .capability-card:nth-child(2n),
    .capability-card:nth-child(3n),
    .capability-card:nth-last-child(-n + 2),
    .capability-card:nth-last-child(-n + 3) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--dv-line-dark);
    }

    .capability-card:last-child {
        border-bottom: 0;
    }

    .story-section__visual {
        min-height: 360px;
        padding: 12px;
    }

    .footer__bottom,
    .footer__links {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 36px;
    }

    .home-hero__grid {
        padding-top: 50px;
        gap: 0;
    }

    .gs-hero__grid {
        padding-top: 50px;
        gap: 24px;
    }

    .gs-hero-portrait {
        min-height: 520px;
        margin-right: -8px;
        margin-left: -8px;
    }

    .gs-hero-portrait__panel {
        min-height: 520px;
        border-radius: 0;
    }

    .gs-hero-portrait__panel img {
        right: 0;
        bottom: 74px;
        width: min(78%, 310px);
    }

    .gs-hero-metric {
        padding: 12px;
        border-radius: 11px;
    }

    .gs-hero-metric span {
        font-size: 11px;
    }

    .gs-hero-metric strong {
        font-size: 20px;
    }

    .gs-hero-metric b {
        font-size: 17px;
    }

    .gs-hero-metric--revenue {
        top: 120px;
        left: 12px;
        width: 166px;
    }

    .gs-hero-metric--conversion {
        bottom: 82px;
        left: 12px;
        width: 188px;
    }

    .gs-hero-metric--conversion strong {
        font-size: 19px;
    }

    .gs-hero-metric--leads {
        right: 12px;
        bottom: -34px;
        width: 170px;
        padding-bottom: 28px;
    }

    .gs-hero-bars {
        height: 72px;
        gap: 8px;
    }

    .hero-dashboard-mockup {
        width: 95vw;
        margin-top: 14px;
        margin-left: calc(50% - 47.5vw);
        margin-right: calc(50% - 47.5vw);
    }

    .hero-dashboard-mockup__badge {
        top: 10px;
        right: 10px;
        min-width: 118px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .hero-dashboard-signal span {
        margin-bottom: 6px;
        font-size: 8px;
    }

    .hero-dashboard-signal strong {
        font-size: 22px;
    }

    .home-hero__messenger-note {
        width: min(100%, 340px);
    }

    .whatsapp-strip {
        margin-top: 0;
        padding: 48px 0 56px;
    }

    .whatsapp-strip__inner {
        margin-right: -2px;
        margin-left: -2px;
        padding: 20px;
        border-radius: 18px;
    }

    .whatsapp-strip h2 {
        font-size: 26px;
    }

    .prediction-card--main,
    .solution-card,
    .clients__cell,
    .gs-service-card,
    .gs-product-card,
    .gs-case-card,
    .cta__wrapper {
        padding: 20px;
        border-radius: 20px;
    }

    .cta__contact-buttons {
        grid-template-columns: 1fr;
    }

    .solution-card__preview {
        margin: -20px -20px 22px;
        border-radius: 20px 20px 0 0;
    }

    .prediction-card__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 560px) {
    .gs-hero .home-hero__heading {
        font-size: 44px;
    }
}

h1,
h2,
h3,
h4,
.nav__brand,
.footer__logo,
.home-hero__lead,
.section-head p,
.problem-section__head p,
.problem-section__final-label,
.problem-section__final strong,
.faq-item summary span,
.subhero__subheading,
.gs-case-card__label {
    letter-spacing: 0;
}
