:root {
    --gcub-ink: #07111f;
    --gcub-navy: #101f36;
    --gcub-blue: #1473f8;
    --gcub-cyan: #2ce6ff;
    --gcub-lime: #c7ff4a;
    --gcub-mint: #1fd88f;
    --gcub-paper: #f5f8fc;
    --gcub-line: rgba(16, 31, 54, .12);
}

body {
    margin: 0;
    background: var(--gcub-paper);
}

.header.header--index {
    background: rgba(248, 251, 255, .78);
    border-bottom: 1px solid rgba(20, 115, 248, .13);
    box-shadow: 0 18px 46px rgba(16, 31, 54, .07);
    backdrop-filter: blur(22px) saturate(1.2);
}

.header.header--index .header__items {
    align-items: center;
}

.header.header--index .header__logo svg {
    width: 212px;
    height: auto;
}

.header.header--index .header__navbar {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.header.header--index .header__navbar-list {
    gap: 34px;
}

.header.header--index .header__navbar-item > a {
    position: relative;
    color: rgba(16, 31, 54, .74);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: color .2s ease;
}

.header.header--index .header__navbar-item > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -12px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--gcub-blue);
    opacity: 0;
    transform: scaleX(.4);
    transform-origin: center;
    transition: opacity .2s ease, transform .2s ease;
}

.header.header--index .header__navbar-item:hover > a {
    color: var(--gcub-blue);
}

.header.header--index .header__navbar-item:hover > a::after {
    opacity: 1;
    transform: scaleX(1);
}

.header.header--index .header__navbar-number a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 14px;
    border: 1px solid rgba(16, 31, 54, .1);
    border-radius: 8px;
    color: rgba(16, 31, 54, .82);
    background: rgba(255, 255, 255, .42);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.header.header--index > .container > .header__items > .button {
    min-height: 52px;
    padding: 13px 26px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--gcub-blue);
    box-shadow: 0 16px 34px rgba(20, 115, 248, .24);
    font-weight: 900;
    line-height: 1.05;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.header.header--index > .container > .header__items > .button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(20, 115, 248, .28);
    background: #0f68e3;
}

.header.header--index .header__dropdown-wrapper {
    border: 1px solid rgba(16, 31, 54, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 26px 70px rgba(16, 31, 54, .14);
    backdrop-filter: blur(18px);
}

.gcub-home {
    color: var(--gcub-ink);
    background: var(--gcub-paper);
    overflow: hidden;
}

.gcub-home *,
.gcub-home *::before,
.gcub-home *::after {
    box-sizing: border-box;
}

.gcub-wrap {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1600px) {
    .gcub-wrap {
        max-width: 1500px;
    }
}

.gcub-hero {
    position: relative;
    min-height: 680px;
    padding: 118px 0 118px;
    color: var(--gcub-ink);
    background:
        radial-gradient(circle at 18% 10%, rgba(20, 115, 248, .16), transparent 30%),
        radial-gradient(circle at 82% 18%, rgba(199, 255, 74, .22), transparent 30%),
        linear-gradient(115deg, rgba(20,115,248,.08), transparent 38%),
        linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

.gcub-hero::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: auto -12% -58px -12%;
    height: 118px;
    background: var(--gcub-paper);
    transform: rotate(-1.4deg);
    transform-origin: center;
}

.gcub-hero__grid {
    position: absolute;
    inset: 0;
    opacity: .42;
    background-image:
        linear-gradient(rgba(16,31,54,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,31,54,.055) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.gcub-hero__inner {
    position: relative;
    z-index: 2;
    display: block;
}

.gcub-hero__content {
    text-align: center;
}

.gcub-hero h1 {
    max-width: 1320px;
    margin: 0;
    font-size: var(--gcub-type-h1, clamp(52px, 5vw, 80px));
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
    text-wrap: balance;
}

.gcub-hero h1 span {
    display: block;
}

.gcub-hero h1 span:nth-child(2) {
    padding-left: clamp(0px, 6vw, 92px);
}

.gcub-hero h1 span:nth-child(3) {
    padding-left: clamp(0px, 14vw, 206px);
}

.gcub-hero__lead {
    max-width: 760px;
    margin: 32px auto 0;
    color: rgba(7,17,31,.68);
    font-size: 24px;
    line-height: 1.45;
}

.gcub-hero__actions,
.gcub-section__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.gcub-button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font: inherit;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gcub-button:hover {
    transform: translateY(-2px);
}

.gcub-button--primary {
    color: #fff;
    background: var(--gcub-blue);
    box-shadow: 0 18px 44px rgba(20, 115, 248, .2);
}

.gcub-button--ghost {
    color: var(--gcub-ink);
    border-color: rgba(16,31,54,.14);
    background: rgba(255,255,255,.7);
}

.gcub-button--light {
    color: #fff;
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.08);
}

.gcub-hero__signal {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 980px;
    margin: 48px auto 0;
    overflow: hidden;
    border: 1px solid rgba(16,31,54,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.48);
    box-shadow: 0 24px 70px rgba(16,31,54,.08);
    backdrop-filter: blur(16px);
}

.gcub-hero__signal::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(20,115,248,.07), transparent 38%, rgba(199,255,74,.12));
}

.gcub-hero__signal div {
    position: relative;
    min-height: 116px;
    padding: 22px 28px;
    border-right: 1px solid rgba(16,31,54,.1);
}

.gcub-hero__signal div::after {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: .48;
}

.gcub-hero__signal div:nth-child(1)::after {
    right: 22px;
    bottom: 16px;
    width: 86px;
    height: 56px;
    background:
        radial-gradient(circle, rgba(20,115,248,.32) 0 2px, transparent 3px) 0 0 / 28px 28px,
        linear-gradient(90deg, transparent 13px, rgba(20,115,248,.14) 14px, transparent 15px) 0 0 / 28px 28px,
        linear-gradient(transparent 13px, rgba(20,115,248,.14) 14px, transparent 15px) 0 0 / 28px 28px;
    mask-image: linear-gradient(135deg, transparent 0%, #000 34%, #000 72%, transparent 100%);
}

.gcub-hero__signal div:last-child {
    border-right: 0;
}

.gcub-hero__signal strong {
    position: relative;
    z-index: 1;
    display: block;
    color: var(--gcub-blue);
    font-size: clamp(36px, 4vw, 54px);
    line-height: .9;
    font-weight: 900;
}

.gcub-hero__signal span {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 210px;
    margin: 12px auto 0;
    color: rgba(7,17,31,.64);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.gcub-client-cloud span {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    border: 1px solid var(--gcub-line);
    border-radius: 8px;
    background: #f9fbff;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.gcub-client-cloud span:hover {
    border-color: rgba(20,115,248,.22);
    background: #fff;
    box-shadow: 0 18px 48px rgba(16,31,54,.08);
    transform: translateY(-2px);
}

.gcub-client-cloud img {
    display: block;
    width: 100%;
    max-width: 168px;
    max-height: 48px;
    object-fit: contain;
    opacity: .86;
    transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}

.gcub-client-cloud span:hover img {
    opacity: 1;
    transform: scale(1.03);
}

.gcub-client-cloud span:nth-child(1) img {
    max-width: 126px;
}

.gcub-client-cloud span:nth-child(4) img {
    max-width: 132px;
}

.gcub-client-cloud span:nth-child(5) img {
    max-width: 150px;
}

.gcub-client-cloud span:nth-child(6) img {
    max-width: 142px;
}

.gcub-client-cloud span:nth-child(8) img {
    max-width: 154px;
}

.gcub-client-cloud span:nth-child(10) img {
    max-width: 158px;
}

.gcub-client-cloud span:nth-child(2) img,
.gcub-client-cloud span:nth-child(3) img,
.gcub-client-cloud span:nth-child(7) img,
.gcub-client-cloud span:nth-child(9) img {
    transform: scale(1.14);
}

.gcub-client-cloud span:nth-child(2):hover img,
.gcub-client-cloud span:nth-child(3):hover img,
.gcub-client-cloud span:nth-child(7):hover img,
.gcub-client-cloud span:nth-child(9):hover img {
    transform: scale(1.18);
}

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

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

.gcub-section--services {
    position: relative;
    z-index: 3;
    padding-top: 92px;
}

.gcub-section__head {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 22px 16px;
    align-items: start;
    margin-bottom: 42px;
}

.gcub-section__head > h2 {
    grid-column: 1 / span 6;
    min-width: 0;
}

.gcub-section__head > p {
    grid-column: 8 / span 5;
    max-width: 560px;
    padding-top: 10px;
}

.gcub-section__head--title-only {
    display: block;
    max-width: 1080px;
    margin-bottom: 50px;
}

.gcub-section__head--title-only h2 {
    max-width: 980px;
}

.gcub-section__head h2,
.gcub-proof__intro h2,
.gcub-clients h2,
.gcub-final h2 {
    margin: 0;
    color: var(--gcub-ink);
    font-size: var(--gcub-type-h2, clamp(38px, 4vw, 64px));
    line-height: 1;
    font-weight: 900;
    text-wrap: balance;
}

.gcub-section__head p,
.gcub-proof__intro p,
.gcub-final p {
    margin: 0;
    color: rgba(7,17,31,.68);
    font-size: 18px;
    line-height: 1.55;
    text-wrap: pretty;
}

.gcub-section__head--dark h2,
.gcub-section__head--dark p {
    color: #fff;
}

.gcub-section__head--dark p {
    color: rgba(255,255,255,.68);
}

.gcub-section__head--compact {
    display: block;
    max-width: 820px;
}

.gcub-section__head--compact p {
    max-width: 720px;
    margin-top: 18px;
    padding-top: 0;
}

.gcub-services {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.gcub-service {
    display: flex;
    grid-column: span 3;
    min-height: 320px;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid var(--gcub-line);
    border-radius: 8px;
    color: var(--gcub-ink);
    background: #fff;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.gcub-service:hover,
.gcub-case:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(16,31,54,.14);
}

.gcub-service--wide {
    grid-column: span 6;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(20,115,248,.94), rgba(31,216,143,.84)),
        var(--gcub-blue);
}

.gcub-service:nth-child(4),
.gcub-service:nth-child(5) {
    grid-column: span 6;
    min-height: 240px;
}

.gcub-service:not(.gcub-service--wide):hover {
    border-color: rgba(20,115,248,.22);
    background: #fbfdff;
}

.gcub-service__num {
    color: var(--gcub-blue);
    font-weight: 900;
}

.gcub-service--wide .gcub-service__num {
    color: var(--gcub-lime);
}

.gcub-service h3,
.gcub-proof-card h3,
.gcub-process h3 {
    margin: 22px 0 10px;
    font-size: var(--gcub-type-h3, clamp(26px, 2.25vw, 34px));
    line-height: 1.08;
    font-weight: 900;
    text-wrap: balance;
}

.gcub-proof-card h3,
.gcub-process h3 {
    margin-top: 0;
}

.gcub-proof-card h3 {
    margin-bottom: 0;
}

.gcub-service p,
.gcub-proof-card p,
.gcub-process p,
.gcub-case p {
    margin: 0;
    color: rgba(7,17,31,.64);
    font-size: 16px;
    line-height: 1.45;
}

.gcub-service--wide p {
    color: rgba(255,255,255,.76);
}

.gcub-proof-card p {
    max-width: 360px;
}

.gcub-service__link {
    margin-top: 28px;
    color: var(--gcub-blue);
    font-weight: 900;
}

.gcub-service--wide .gcub-service__link {
    color: #fff;
}

.gcub-section--cases {
    color: #fff;
    background:
        radial-gradient(circle at 10% 0%, rgba(20,115,248,.24), transparent 33%),
        linear-gradient(180deg, #0b1728 0%, #07111f 52%, #0a1626 100%);
}

.gcub-cases {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
    gap: 18px;
}

.gcub-case {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 330px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 32px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    background: #101f36;
    transition: transform .2s ease, box-shadow .2s ease;
}

.gcub-case--large {
    grid-row: span 2;
    min-height: 700px;
}

.gcub-case img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .35s ease;
}

.gcub-case:hover img {
    transform: scale(1.06);
}

.gcub-case::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,17,31,.04), rgba(7,17,31,.9)),
        linear-gradient(90deg, rgba(7,17,31,.5), transparent 70%);
}

.gcub-case--large::after {
    background:
        linear-gradient(180deg, rgba(7,17,31,.02), rgba(7,17,31,.92)),
        linear-gradient(90deg, rgba(7,17,31,.62), transparent 74%);
}

.gcub-case > *:not(img) {
    position: relative;
    z-index: 1;
}

.gcub-case__tag {
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 10px;
    border-radius: 8px;
    color: #06111f;
    background: var(--gcub-lime);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.gcub-case h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: var(--gcub-type-h2, clamp(38px, 4vw, 64px));
    line-height: 1.02;
    font-weight: 900;
    text-wrap: balance;
}

.gcub-case:not(.gcub-case--large) h3 {
    font-size: var(--gcub-type-h3, clamp(26px, 2.25vw, 34px));
}

.gcub-case p {
    max-width: 520px;
    color: rgba(255,255,255,.78);
    overflow-wrap: anywhere;
}

.gcub-case__facts {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
}

.gcub-case__facts span {
    display: inline-flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.11);
    font-size: 13px;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.gcub-case__facts b {
    color: #fff;
    font-weight: 900;
}

.gcub-case-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
    padding: 26px 28px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.045));
}

.gcub-case-cta p {
    margin: 0;
    color: rgba(255,255,255,.8);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 800;
}

.gcub-case-cta .gcub-button {
    min-width: 240px;
}

.awz_cookies_sett__message {
    right: 28px !important;
    bottom: 28px !important;
    left: auto !important;
    width: min(390px, calc(100vw - 56px)) !important;
    border: 1px solid rgba(16,31,54,.1) !important;
    border-radius: 8px !important;
    color: var(--gcub-ink) !important;
    background: rgba(255,255,255,.9) !important;
    box-shadow: 0 18px 46px rgba(16,31,54,.16) !important;
    backdrop-filter: blur(18px) !important;
}

.awz_cookies_sett__row {
    gap: 10px !important;
    padding: 11px 12px !important;
}

.awz_cookies_sett__col {
    color: rgba(7,17,31,.72) !important;
    font-size: 10px !important;
    line-height: 1.28 !important;
}

.awz_cookies_sett__col a {
    color: var(--gcub-blue) !important;
}

.awz_cookies_sett__col__right {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
    gap: 6px !important;
}

.awz_cookies_sett__btn {
    margin: 0 !important;
    padding: 6px 9px !important;
    border: 1px solid rgba(16,31,54,.12) !important;
    border-radius: 6px !important;
    color: var(--gcub-ink) !important;
    background: #fff !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
}

.awz_cookies_sett__btn:first-child {
    border-color: transparent !important;
    background: var(--gcub-lime) !important;
}

.gcub-proof {
    display: block;
}

.gcub-proof__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 34px;
    align-items: end;
}

.gcub-proof__intro > h2,
.gcub-proof__intro > p {
    grid-column: 1;
}

.gcub-proof__intro > .gcub-proof__metric {
    grid-column: 2;
    grid-row: 1 / span 2;
}

.gcub-proof__intro p {
    max-width: 760px;
    margin-top: 18px;
}

.gcub-proof__metric {
    display: grid;
    gap: 8px;
    max-width: none;
    margin-top: 0;
    padding: 0 0 0 28px;
    border-top: 0;
    border-left: 1px solid var(--gcub-line);
}

.gcub-proof__metric strong {
    color: var(--gcub-blue);
    font-size: clamp(46px, 4.8vw, 68px);
    line-height: .9;
    font-weight: 900;
}

.gcub-proof__metric span {
    color: rgba(7,17,31,.68);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.gcub-proof__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
    border-top: 1px solid var(--gcub-line);
}

.gcub-proof__list::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 25%;
    height: 1px;
    background: linear-gradient(90deg, var(--gcub-blue), rgba(20,115,248,0));
    transform-origin: left center;
    animation: gcub-process-line 4.8s ease-in-out infinite;
}

.gcub-proof-card {
    position: relative;
    display: block;
    min-height: 190px;
    padding: 52px 22px 0 0;
}

.gcub-proof-card h3 {
    margin-bottom: 12px;
}

.gcub-proof-card::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 0;
    width: 17px;
    height: 17px;
    border: 4px solid var(--gcub-paper);
    border-radius: 50%;
    background: var(--gcub-blue);
    box-shadow: 0 0 0 0 rgba(20,115,248,.28);
    transform: scale(1);
    transform-origin: center;
    animation: gcub-process-pulse 4.8s ease-in-out infinite;
}

.gcub-proof-card:nth-child(2)::before {
    animation-delay: 1.2s;
}

.gcub-proof-card:nth-child(3)::before {
    animation-delay: 2.4s;
}

.gcub-proof-card:nth-child(4)::before {
    animation-delay: 3.6s;
}

.gcub-proof-card span,
.gcub-process span {
    color: var(--gcub-blue);
    font-size: 14px;
    font-weight: 900;
}

.gcub-proof-card span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.gcub-section--process {
    background:
        linear-gradient(180deg, #f6f9fd 0%, #eaf1f8 100%);
}

.gcub-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin: 54px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.gcub-process::before {
    content: "";
    position: absolute;
    top: 22px;
    right: 18px;
    left: 18px;
    height: 1px;
    background: var(--gcub-line);
}

.gcub-process::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 18px;
    width: 25%;
    height: 1px;
    background: linear-gradient(90deg, var(--gcub-blue), rgba(20,115,248,0));
    transform-origin: left center;
    animation: gcub-process-line 4.8s ease-in-out infinite;
}

.gcub-process li {
    position: relative;
    min-height: 230px;
    padding: 70px 24px 24px;
    border: 1px solid rgba(16,31,54,.08);
    border-radius: 8px;
    background: rgba(255,255,255,.46);
}

.gcub-process li::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 20px;
    width: 17px;
    height: 17px;
    border: 4px solid #eaf1f8;
    border-radius: 50%;
    background: var(--gcub-blue);
    box-shadow: 0 0 0 0 rgba(20,115,248,.28);
    transform: scale(1);
    transform-origin: center;
    animation: gcub-process-pulse 4.8s ease-in-out infinite;
}

.gcub-process li::after {
    content: "";
    position: absolute;
    top: 22px;
    left: 37px;
    width: calc(100% - 56px);
    height: 1px;
    background: linear-gradient(90deg, rgba(20,115,248,.34), rgba(20,115,248,0));
    opacity: 0;
    transform-origin: left center;
    animation: gcub-process-segment 4.8s ease-in-out infinite;
}

.gcub-process li:nth-child(2)::before {
    animation-delay: 1.2s;
}

.gcub-process li:nth-child(2)::after {
    animation-delay: 1.2s;
}

.gcub-process li:nth-child(3)::before {
    animation-delay: 2.4s;
}

.gcub-process li:nth-child(3)::after {
    animation-delay: 2.4s;
}

.gcub-process li:nth-child(4)::before {
    animation-delay: 3.6s;
}

.gcub-process li:nth-child(4)::after {
    animation-delay: 3.6s;
}

.gcub-process span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

@keyframes gcub-process-pulse {
    0%,
    18%,
    100% {
        box-shadow: 0 0 0 0 rgba(20,115,248,0);
        transform: scale(1);
    }

    8% {
        box-shadow: 0 0 0 11px rgba(20,115,248,.1);
        transform: scale(1.26);
    }
}

@keyframes gcub-process-segment {
    0%,
    18%,
    100% {
        opacity: 0;
        transform: scaleX(.28);
    }

    8% {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes gcub-process-line {
    0%,
    100% {
        opacity: .5;
        transform: translateX(0) scaleX(.72);
    }

    25% {
        opacity: .7;
        transform: translateX(100%) scaleX(.86);
    }

    50% {
        opacity: .7;
        transform: translateX(200%) scaleX(.86);
    }

    75% {
        opacity: .5;
        transform: translateX(300%) scaleX(.72);
    }
}

@media (prefers-reduced-motion: reduce) {
    .gcub-process::after,
    .gcub-process li::before,
    .gcub-process li::after {
        animation: none;
    }
}

.gcub-section--clients {
    background:
        linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}

.gcub-clients {
    display: grid;
    grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr);
    gap: 54px;
    align-items: center;
}

.gcub-client-cloud {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    align-content: flex-start;
}

.gcub-client-cloud span {
    min-height: 102px;
    background: #fff;
}

.gcub-client-cloud img {
    max-width: 178px;
    max-height: 54px;
}

.gcub-client-cloud span:nth-child(1) img {
    max-width: 136px;
}

.gcub-client-cloud span:nth-child(4) img {
    max-width: 144px;
}

.gcub-client-cloud span:nth-child(5) img {
    max-width: 160px;
}

.gcub-client-cloud span:nth-child(6) img {
    max-width: 154px;
}

.gcub-client-cloud span:nth-child(8) img {
    max-width: 166px;
}

.gcub-client-cloud span:nth-child(10) img {
    max-width: 168px;
}

.gcub-final {
    padding: 104px 0 114px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 14%, rgba(199,255,74,.22), transparent 30%),
        linear-gradient(135deg, #07111f 0%, #102642 100%);
}

.gcub-final__inner {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(280px, .32fr);
    gap: 42px;
    align-items: stretch;
}

.gcub-final h2,
.gcub-final p {
    color: #fff;
}

.gcub-final p {
    max-width: 720px;
    color: rgba(255,255,255,.82);
}

.gcub-final__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 760px;
    margin-top: 28px;
}

.gcub-final__tags span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    color: rgba(255,255,255,.82);
    background: rgba(255,255,255,.08);
    font-weight: 800;
}

.gcub-final__action {
    display: flex;
    min-height: 210px;
    align-items: center;
    justify-content: center;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
}

.gcub-final__action .gcub-button {
    width: 100%;
    max-width: 300px;
    min-height: 66px;
}

body .footer {
    color: var(--gcub-navy);
    background: #f5f8fc !important;
}

body .footer .container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}

body .footer__wrapper {
    background: transparent !important;
}

body .footer__menu {
    padding: 58px 0 34px;
    border-top: 1px solid rgba(16,31,54,.08);
}

body .footer__menu-navbar {
    gap: 34px;
}

body .footer__list-item,
body .footer__list-item a,
body .footer a {
    color: rgba(16,31,54,.78);
    text-decoration: none;
}

body .footer__list-item--bold,
body .footer__list-item--bold a,
body .footer__menu-item > a {
    color: var(--gcub-navy);
    font-weight: 900;
}

body .footer__list-item {
    margin-bottom: 12px;
}

body .footer__bottom,
body .footer__contacts {
    border-color: rgba(16,31,54,.08);
}

@media (max-width: 1180px) {
    .gcub-hero__inner,
    .gcub-section__head,
    .gcub-proof,
    .gcub-clients,
    .gcub-final__inner {
        grid-template-columns: 1fr;
    }

    .gcub-section__head > h2,
    .gcub-section__head > p {
        grid-column: 1;
    }

    .gcub-section__head > p {
        padding-top: 0;
    }

    .gcub-section__head--title-only {
        max-width: 880px;
    }

    .gcub-section--services {
        padding-top: 92px;
    }

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

    .gcub-service,
    .gcub-service:nth-child(4),
    .gcub-service:nth-child(5),
    .gcub-service--wide {
        grid-column: auto;
        min-height: 280px;
    }

    .gcub-cases {
        grid-template-columns: 1fr;
    }

    .gcub-case--large {
        grid-row: auto;
        min-height: 440px;
    }

    .gcub-case-cta {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .gcub-proof__intro {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gcub-proof__intro > h2,
    .gcub-proof__intro > p,
    .gcub-proof__intro > .gcub-proof__metric {
        grid-column: 1;
        grid-row: auto;
    }

    .gcub-proof__metric {
        width: min(320px, 100%);
        margin-top: 10px;
        padding: 24px 0 0;
        border-top: 1px solid var(--gcub-line);
        border-left: 0;
    }

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

    .gcub-proof-card {
        grid-template-columns: none;
    }

    .gcub-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .gcub-process::before,
    .gcub-process::after,
    .gcub-process li::after {
        display: none;
    }

    .gcub-process li {
        padding: 44px 18px 0 0;
    }

    .gcub-client-cloud {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .gcub-wrap {
        width: 100%;
        max-width: none;
        padding: 0 14px;
    }

    .header.header--index {
        background: #f5f8fc;
    }

    .header.header--index.header--fixed {
        height: 72px !important;
        padding: 0 !important;
        background: rgba(245,248,252,.94) !important;
    }

    .header.header--index.header--fixed .header__items {
        height: 72px !important;
        align-items: center !important;
    }

    .header.header--index .header__logo {
        display: block !important;
        opacity: 1;
    }

    .header.header--index .header__mobile-logo {
        display: none !important;
    }

    .header.header--index > .container .button {
        display: none;
    }

    .header.header--index .header__logo svg {
        width: 164px;
        max-width: 42vw;
    }

    .header.header--index .header__mobile-sidebar {
        right: 12px;
        left: auto;
        top: 16px !important;
        width: auto;
        min-width: 54px;
        padding: 7px 10px;
        border: 1px solid rgba(16,31,54,.1);
        border-radius: 8px;
        background: rgba(255,255,255,.9);
        box-shadow: 0 14px 34px rgba(16,31,54,.16);
        backdrop-filter: blur(14px);
    }

    .header.header--index .header__mobile-sidebar .header__submit-button,
    .header.header--index .header__mobile-sidebar .header__whatsapp-button,
    .header.header--index .header__mobile-sidebar .header__call-button {
        display: none;
    }

    .awz_cookies_sett__message {
        display: none !important;
    }

    .awz_cookies_sett__row {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        width: auto !important;
        gap: 6px !important;
        padding: 6px 7px !important;
    }

    .awz_cookies_sett__col {
        width: auto !important;
        max-height: 38px !important;
        overflow: hidden !important;
        font-size: 7px !important;
        line-height: 1.15 !important;
    }

    .awz_cookies_sett__col__right {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        gap: 3px !important;
    }

    .awz_cookies_sett__btn {
        margin: 0 !important;
        min-width: 62px !important;
        padding: 3px 5px !important;
        border-radius: 6px !important;
        font-size: 8px !important;
        line-height: 1.1 !important;
    }

    .gcub-hero {
        min-height: auto;
        padding: 44px 0 52px;
    }

    .gcub-hero::after {
        display: none;
    }

    .gcub-hero h1 {
        font-size: var(--gcub-type-h1-mobile, clamp(34px, 10vw, 44px));
        line-height: 1.02;
    }

    .gcub-hero h1 span:nth-child(2),
    .gcub-hero h1 span:nth-child(3) {
        padding-left: 0;
    }

    .gcub-hero__lead {
        font-size: 18px;
    }

    .gcub-hero__signal {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        margin-top: 28px;
    }

    .gcub-hero__signal div {
        min-height: 0;
        padding: 14px 8px;
        border-right: 1px solid rgba(16,31,54,.1);
        border-bottom: 0;
    }

    .gcub-hero__signal div::after {
        right: 8px;
        bottom: 8px;
        opacity: .22;
        transform: scale(.68);
        transform-origin: right bottom;
    }

    .gcub-hero__signal div:last-child {
        border-right: 0;
    }

    .gcub-hero__signal strong {
        font-size: 28px;
    }

    .gcub-hero__signal span {
        max-width: none;
        margin-top: 7px;
        font-size: 11px;
        line-height: 1.2;
    }

    .gcub-hero__actions,
    .gcub-section__footer {
        flex-direction: column;
    }

    .gcub-button {
        width: 100%;
    }

    .gcub-section {
        padding: 62px 0;
    }

    .gcub-section--services {
        padding-top: 44px;
    }

    .gcub-section__head {
        gap: 18px;
        margin-bottom: 24px;
    }

    .gcub-section__head--title-only {
        margin-bottom: 28px;
    }

    .gcub-section__head h2,
    .gcub-proof__intro h2,
    .gcub-clients h2,
    .gcub-final h2 {
        font-size: var(--gcub-type-h2-mobile, clamp(30px, 8.5vw, 36px));
        line-height: 1.04;
    }

    .gcub-service h3,
    .gcub-proof-card h3,
    .gcub-process h3 {
        font-size: var(--gcub-type-h3-mobile, clamp(23px, 6.2vw, 28px));
    }

    .gcub-services {
        grid-template-columns: 1fr;
    }

    .gcub-proof__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
        border-top: 0;
    }

    .gcub-proof__list::before {
        display: none;
    }

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

    .gcub-service,
    .gcub-service:nth-child(4),
    .gcub-service:nth-child(5),
    .gcub-service--wide {
        grid-column: auto;
        min-height: 0;
    }

    .gcub-service,
    .gcub-proof-card,
    .gcub-process li {
        min-height: 0;
        padding: 22px;
    }

    .gcub-service:nth-child(4),
    .gcub-service:nth-child(5) {
        display: grid;
        gap: 10px;
        padding: 18px;
    }

    .gcub-service:nth-child(4) h3,
    .gcub-service:nth-child(5) h3 {
        margin: 0;
        font-size: var(--gcub-type-h3-mobile, clamp(23px, 6.2vw, 28px));
    }

    .gcub-service:nth-child(4) .gcub-service__link,
    .gcub-service:nth-child(5) .gcub-service__link {
        margin-top: 0;
    }

    .gcub-service:nth-child(4) p,
    .gcub-service:nth-child(5) p {
        font-size: 14px;
        line-height: 1.35;
    }

    .gcub-proof-card {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 154px;
        padding: 34px 12px 14px;
        border: 1px solid rgba(16,31,54,.08);
        border-radius: 8px;
        background: rgba(255,255,255,.5);
    }

    .gcub-proof__metric {
        max-width: none;
    }

    .gcub-proof-card::before {
        top: 12px;
        left: 12px;
        width: 13px;
        height: 13px;
        border-width: 3px;
    }

    .gcub-proof-card h3 {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 1.08;
    }

    .gcub-proof-card p {
        max-width: none;
        font-size: 12px;
        line-height: 1.28;
    }

    .gcub-process {
        gap: 10px;
        margin-top: 22px;
    }

    .gcub-process li {
        min-height: 154px;
        padding: 34px 12px 14px;
        border: 1px solid rgba(16,31,54,.08);
        border-radius: 8px;
        background: rgba(255,255,255,.5);
    }

    .gcub-process li::before {
        top: 12px;
        left: 12px;
        width: 13px;
        height: 13px;
        border-width: 3px;
    }

    .gcub-process li:last-child {
        border-bottom: 1px solid rgba(16,31,54,.08);
    }

    .gcub-process h3 {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 1.08;
    }

    .gcub-process p {
        font-size: 12px;
        line-height: 1.28;
    }

    .gcub-client-cloud {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .gcub-clients {
        gap: 26px;
    }

    .gcub-client-cloud span {
        min-height: 74px;
        padding: 14px 16px;
    }

    .gcub-client-cloud img {
        max-width: 136px;
        max-height: 38px;
    }

    .gcub-case,
    .gcub-case--large {
        min-height: 300px;
        padding: 22px;
    }

    .gcub-case:not(.gcub-case--large) {
        min-height: 250px;
    }

    .gcub-case p {
        font-size: 14px;
        line-height: 1.35;
    }

    .gcub-case__facts {
        gap: 6px;
        margin-top: 14px;
    }

    .gcub-case__facts span {
        min-height: 34px;
        padding: 6px 9px;
        font-size: 11px;
    }

    .gcub-case-cta {
        gap: 16px;
        margin-top: 18px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .gcub-case-cta p {
        display: none;
    }

    .gcub-case-cta .gcub-button {
        width: 100%;
        min-width: 0;
    }

    .gcub-case h3,
    .gcub-case:not(.gcub-case--large) h3 {
        font-size: var(--gcub-type-h3-mobile, clamp(23px, 6.2vw, 28px));
    }

    .gcub-final__action {
        min-height: 150px;
        padding: 18px;
    }
}

@media (max-width: 420px) {
    .gcub-hero h1 {
        font-size: var(--gcub-type-h1-mobile, clamp(34px, 10vw, 44px));
    }

    .gcub-hero__signal {
        grid-template-columns: 1fr;
    }

    .gcub-hero__signal div {
        min-height: 112px;
        padding: 18px 16px;
        border-right: 0;
        border-bottom: 1px solid rgba(16,31,54,.1);
    }

    .gcub-hero__signal div::after {
        right: 16px;
        bottom: 14px;
        opacity: .3;
        transform: scale(.76);
    }

    .gcub-hero__signal div:last-child {
        border-bottom: 0;
    }

    .gcub-hero__signal span {
        max-width: 230px;
    }
}

@media (max-width: 767px) {
    .gcub-proof__list,
    .gcub-process {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }

    .gcub-proof-card,
    .gcub-process li {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        padding: 30px 24px 24px !important;
        overflow: visible !important;
    }

    .gcub-proof-card h3,
    .gcub-process h3 {
        max-width: 100% !important;
        margin-bottom: 12px !important;
        font-size: clamp(29px, 8.2vw, 36px) !important;
        line-height: 1.08 !important;
        overflow: visible !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        hyphens: none !important;
    }

    .gcub-proof-card p,
    .gcub-process p {
        max-width: 100% !important;
        font-size: 18px !important;
        line-height: 1.38 !important;
        overflow: visible !important;
    }

    .gcub-proof-card::before,
    .gcub-process li::before {
        top: 14px !important;
        left: 24px !important;
    }

    .gcub-clients h2 {
        font-size: clamp(36px, 10vw, 46px) !important;
        line-height: 1.06 !important;
    }
}

/* Home page design-system pass: keep the main page aligned with global tokens. */
.gcub-home .gcub-hero {
    padding: clamp(80px, 7vw, 112px) 0 clamp(72px, 6vw, 96px) !important;
}

.gcub-home .gcub-hero__title {
    max-width: 1320px;
    font-size: var(--gcub-type-display, clamp(46px, 5.2vw, 74px)) !important;
    line-height: .98 !important;
    letter-spacing: 0 !important;
    font-weight: 900 !important;
    text-wrap: balance;
}

.gcub-home .gcub-hero__lead {
    margin-top: var(--gcub-space-6, 24px) !important;
    font-size: var(--gcub-type-body-lg, 19px) !important;
    line-height: 1.45 !important;
}

.gcub-home .gcub-section,
.gcub-home .gcub-proof,
.gcub-home .gcub-clients,
.gcub-home .gcub-cases,
.gcub-home .gcub-final {
    padding-top: var(--gcub-section-y, 96px) !important;
    padding-bottom: var(--gcub-section-y, 96px) !important;
}

.gcub-home .gcub-section__head h2,
.gcub-home .gcub-proof__intro h2,
.gcub-home .gcub-clients h2,
.gcub-home .gcub-final h2 {
    font-size: var(--gcub-type-h2, clamp(30px, 2.8vw, 42px)) !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
}

.gcub-home .gcub-service h3,
.gcub-home .gcub-proof-card h3,
.gcub-home .gcub-process h3,
.gcub-home .gcub-case h3 {
    font-size: var(--gcub-type-h3, clamp(23px, 1.8vw, 29px)) !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
}

.gcub-home .gcub-service p,
.gcub-home .gcub-proof-card p,
.gcub-home .gcub-process p,
.gcub-home .gcub-case p {
    font-size: var(--gcub-type-body, 16.5px) !important;
    line-height: 1.58 !important;
}

.gcub-home .gcub-service,
.gcub-home .gcub-proof-card,
.gcub-home .gcub-process li,
.gcub-home .gcub-case,
.gcub-home .gcub-hero__signal {
    border-radius: var(--gcub-radius-md, 8px) !important;
}

@media (max-width: 767px) {
    .gcub-home .gcub-hero {
        padding: 48px 0 56px !important;
    }

    .gcub-home .gcub-hero__title {
        font-size: var(--gcub-type-display-mobile, clamp(34px, 9vw, 42px)) !important;
        line-height: 1.02 !important;
    }

    .gcub-home .gcub-hero__lead {
        margin-top: var(--gcub-space-5, 20px) !important;
        font-size: var(--gcub-type-body-mobile, 16px) !important;
        line-height: 1.5 !important;
    }

    .gcub-home .gcub-section,
    .gcub-home .gcub-proof,
    .gcub-home .gcub-clients,
    .gcub-home .gcub-cases,
    .gcub-home .gcub-final {
        padding-top: var(--gcub-section-y, 64px) !important;
        padding-bottom: var(--gcub-section-y, 64px) !important;
    }

    .gcub-home .gcub-section__head h2,
    .gcub-home .gcub-proof__intro h2,
    .gcub-home .gcub-clients h2,
    .gcub-home .gcub-final h2 {
        font-size: var(--gcub-type-h2-mobile, clamp(26px, 7vw, 31px)) !important;
        line-height: 1.08 !important;
    }

    .gcub-home .gcub-service h3,
    .gcub-home .gcub-proof-card h3,
    .gcub-home .gcub-process h3,
    .gcub-home .gcub-case h3 {
        font-size: var(--gcub-type-h3-mobile, clamp(22px, 5.8vw, 25px)) !important;
        line-height: 1.12 !important;
    }
}

/* Home cookie notice should follow the global compact pattern. */
body .awz_cookies_sett__message {
    right: var(--gcub-space-6, 24px) !important;
    bottom: var(--gcub-space-6, 24px) !important;
    left: auto !important;
    width: min(420px, calc(100vw - 48px)) !important;
    max-height: none !important;
    border-radius: var(--gcub-radius-md, 8px) !important;
}

body .awz_cookies_sett__row {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: var(--gcub-space-3, 12px) !important;
    align-items: center !important;
    padding: var(--gcub-space-3, 12px) !important;
}

body .awz_cookies_sett__col {
    max-height: none !important;
    font-size: 10.5px !important;
    line-height: 1.25 !important;
}

body .awz_cookies_sett__btn {
    padding: 6px 10px !important;
    font-size: 10.5px !important;
}

@media (max-width: 767px) {
    body .awz_cookies_sett__message {
        right: 10px !important;
        bottom: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-height: 58px !important;
    }

    body .awz_cookies_sett__row {
        gap: 8px !important;
        padding: 7px 8px !important;
    }

    body .awz_cookies_sett__col {
        max-height: 36px !important;
        overflow: hidden !important;
        font-size: 8.5px !important;
        line-height: 1.15 !important;
    }

    body .awz_cookies_sett__btn {
        padding: 6px 9px !important;
        font-size: 9.5px !important;
    }

    body .awz_cookies_sett__btn:not(:first-child) {
        display: none !important;
    }
}

/* Home final rhythm layer: same 8px system as the rest of the site. */
.gcub-home .gcub-home__container,
.gcub-home .container,
body .footer .container {
    width: min(calc(100% - var(--gcub-gutter, 64px)), var(--gcub-container, 1500px)) !important;
    max-width: var(--gcub-container, 1500px) !important;
}

.gcub-home .gcub-hero {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}

.gcub-home .gcub-hero__title {
    max-width: 1240px;
    font-size: var(--gcub-type-display, clamp(42px, 4.7vw, 68px)) !important;
    line-height: 1 !important;
}

.gcub-home .gcub-hero__lead {
    max-width: 760px;
    margin-top: 24px !important;
    font-size: var(--gcub-type-body-lg, 18px) !important;
    line-height: 1.5 !important;
}

.gcub-home .gcub-hero__actions {
    margin-top: 32px !important;
    gap: 16px !important;
}

.gcub-home .gcub-hero__signal {
    margin-top: 48px !important;
}

.gcub-home .gcub-section,
.gcub-home .gcub-proof,
.gcub-home .gcub-clients,
.gcub-home .gcub-cases,
.gcub-home .gcub-final {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
}

.gcub-home .gcub-section__head,
.gcub-home .gcub-proof__intro,
.gcub-home .gcub-cases__head {
    margin-bottom: 32px !important;
}

.gcub-home .gcub-section__head h2,
.gcub-home .gcub-proof__intro h2,
.gcub-home .gcub-clients h2,
.gcub-home .gcub-final h2 {
    font-size: var(--gcub-type-h2, clamp(30px, 2.65vw, 40px)) !important;
    line-height: 1.08 !important;
}

.gcub-home .gcub-service h3,
.gcub-home .gcub-proof-card h3,
.gcub-home .gcub-process h3,
.gcub-home .gcub-case h3 {
    font-size: var(--gcub-type-h3, clamp(22px, 1.65vw, 28px)) !important;
    line-height: 1.14 !important;
}

.gcub-home .gcub-service p,
.gcub-home .gcub-proof-card p,
.gcub-home .gcub-process p,
.gcub-home .gcub-case p {
    font-size: var(--gcub-type-body, 16px) !important;
    line-height: 1.62 !important;
}

.gcub-home .gcub-services__grid,
.gcub-home .gcub-proof__list,
.gcub-home .gcub-process,
.gcub-home .gcub-cases__grid {
    gap: 24px !important;
}

.gcub-home .gcub-service,
.gcub-home .gcub-proof-card,
.gcub-home .gcub-process li,
.gcub-home .gcub-case {
    padding: 32px !important;
    border-radius: 8px !important;
}

@media (max-width: 767px) {
    .gcub-home .gcub-home__container,
    .gcub-home .container,
    body .footer .container {
        width: min(calc(100% - var(--gcub-gutter, 32px)), var(--gcub-container, 1500px)) !important;
    }

    .gcub-home .gcub-hero {
        padding-top: 48px !important;
        padding-bottom: 64px !important;
    }

    .gcub-home .gcub-hero__title {
        font-size: var(--gcub-type-display-mobile, clamp(34px, 9vw, 40px)) !important;
        line-height: 1.04 !important;
    }

    .gcub-home .gcub-hero__lead {
        margin-top: 16px !important;
        font-size: var(--gcub-type-body, 16px) !important;
    }

    .gcub-home .gcub-hero__actions {
        margin-top: 24px !important;
        gap: 16px !important;
    }

    .gcub-home .gcub-hero__signal {
        margin-top: 32px !important;
    }

    .gcub-home .gcub-section,
    .gcub-home .gcub-proof,
    .gcub-home .gcub-clients,
    .gcub-home .gcub-cases,
    .gcub-home .gcub-final {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    .gcub-home .gcub-service,
    .gcub-home .gcub-proof-card,
    .gcub-home .gcub-process li,
    .gcub-home .gcub-case {
        padding: 24px !important;
    }

    .gcub-home .gcub-services__grid,
    .gcub-home .gcub-proof__list,
    .gcub-home .gcub-process,
    .gcub-home .gcub-cases__grid {
        gap: 16px !important;
    }
}

/* Mobile vertical rhythm normalization for home sections */
@media (max-width: 767px) {
    html body .main .gcub-home .gcub-section,
    html body .main .gcub-home .gcub-section--cases,
    html body .main .gcub-home .gcub-section--light,
    html body .main .gcub-home .gcub-section--clients {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    html body .main .gcub-home .gcub-section--services {
        padding-top: 40px !important;
        padding-bottom: 48px !important;
    }

    html body .main .gcub-home .gcub-section__head {
        margin-bottom: 20px !important;
    }
}


/* Desktop vertical rhythm: avoid doubled section padding on home nested blocks */
@media (min-width: 1024px) {
    html body .main .gcub-home {
        --gcub-desktop-section-y: 80px;
    }

    html body .main .gcub-home .gcub-section,
    html body .main .gcub-home .gcub-section--light,
    html body .main .gcub-home .gcub-section--cases,
    html body .main .gcub-home .gcub-section--clients,
    html body .main .gcub-home .gcub-final {
        padding-top: var(--gcub-desktop-section-y) !important;
        padding-bottom: var(--gcub-desktop-section-y) !important;
    }

    html body .main .gcub-home .gcub-proof,
    html body .main .gcub-home .gcub-clients,
    html body .main .gcub-home .gcub-cases {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    html body .main .gcub-home .gcub-section__head,
    html body .main .gcub-home .gcub-proof__intro,
    html body .main .gcub-home .gcub-cases__head {
        margin-bottom: 36px !important;
    }
}
