:root {
    --blue: #236798;
    --blue-dark: #195382;
    --ink: #0d1218;
    --text: #515457;
    --muted: #eef6f8;
    --white: #ffffff;
    --green: #1aaf99;
    --green-dark: #158a78;
    --red: #e22d2d;
    --red-dark: #aa2121;
    --pink: #cd467c;
    --shadow: 0 22px 45px rgba(8, 42, 68, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Poppins, Montserrat, Arial, sans-serif;
    line-height: 1.5;
}

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

a {
    color: inherit;
}

.container {
    width: min(100% - 40px, 1280px);
    margin-inline: auto;
}

.narrow {
    width: min(100% - 40px, 880px);
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 8px;
    z-index: 20;
    transform: translateY(-140%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 6px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(13, 18, 24, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    width: 190px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-anydesk {
    color: var(--white);
    background: var(--red);
}

.button-anydesk:hover,
.button-anydesk:focus-visible {
    background: var(--red-dark);
}

.button-whatsapp {
    color: var(--white);
    background: var(--green);
    box-shadow: 0 14px 28px rgba(26, 175, 153, 0.24);
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
    background: var(--green-dark);
}

.button-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.button-light:hover,
.button-light:focus-visible {
    background: rgba(255, 255, 255, 0.22);
}

.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 82px 0 78px;
    color: var(--white);
    background: linear-gradient(110deg, var(--blue) 0%, var(--blue) 56%, var(--blue-dark) 100%);
    border-radius: 0 0 32px 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: center;
    gap: 58px;
}

.eyebrow {
    margin: 0 0 12px;
    color: inherit;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    opacity: 0.84;
}

.hero h1,
.page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-family: Arial, sans-serif;
    font-size: 60px;
    line-height: 1.02;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 680px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 24px;
}

.benefits {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: var(--white);
    font-size: 22px;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.support-panel {
    justify-self: end;
    width: min(100%, 430px);
    display: grid;
    justify-items: end;
    gap: 22px;
    text-align: right;
}

.support-panel img {
    width: 200px;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.16));
}

.support-panel p {
    max-width: 340px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 24px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    width: min(100%, 300px);
    min-height: 62px;
    padding: 14px 20px;
    color: var(--white);
    background: var(--green);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    transition: background-color 180ms ease, transform 180ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.clients-section {
    position: relative;
    z-index: 1;
    margin-top: -32px;
    padding: 78px 0 76px;
    background: var(--white);
    border-radius: 32px 32px 0 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.section-heading .eyebrow {
    color: var(--blue);
}

.section-heading h2,
.contact-band h2,
.policy-content h2 {
    margin: 0;
    color: var(--ink);
    font-family: Arial, sans-serif;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: 0;
}

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

.client-logo {
    min-height: 122px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
    border: 1px solid #e5edf1;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(13, 18, 24, 0.05);
}

.client-logo img {
    width: 100%;
    max-width: 220px;
    object-fit: contain;
}

.contact-band {
    padding: 52px 0;
    background: var(--muted);
}

.contact-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.contact-band p {
    max-width: 620px;
    margin: 10px 0 0;
    font-size: 18px;
}

.page-hero {
    padding: 95px 0 80px;
    color: var(--white);
    background: linear-gradient(110deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 0 0 32px 32px;
}

.policy-content {
    padding: 64px 0 78px;
}

.policy-content p,
.policy-content li {
    font-size: 18px;
}

.policy-content h2 {
    margin-top: 38px;
    margin-bottom: 14px;
    font-size: 28px;
}

.policy-content ul {
    padding-left: 22px;
}

.policy-content .button {
    margin-top: 18px;
}

.site-footer {
    color: var(--white);
    background: var(--blue);
}

.footer-inner {
    min-height: 210px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    align-items: center;
    gap: 32px;
    padding: 46px 0;
}

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

.footer-brand p {
    max-width: 360px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.footer-links,
.footer-copy {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-copy a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-copy a:hover,
.footer-copy a:focus-visible {
    color: #dff7f3;
}

.footer-copy {
    justify-items: end;
    text-align: right;
    color: rgba(255, 255, 255, 0.84);
}

.cookie-notice {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 30;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    max-width: 920px;
    margin-inline: auto;
    padding: 16px;
    color: var(--white);
    background: var(--blue);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cookie-notice.is-visible {
    display: flex;
}

.cookie-notice p {
    margin: 0;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.button-cookie {
    min-height: 40px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--pink);
}

.button-cookie:hover,
.button-cookie:focus-visible {
    background: #b8386b;
}

@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding-top: 118px;
    }

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

    .hero-copy,
    .hero h1,
    .hero-lead {
        margin-inline: auto;
    }

    .benefits {
        width: min(100%, 620px);
        margin-inline: auto;
        text-align: left;
    }

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

    .support-panel {
        justify-self: center;
        justify-items: center;
        text-align: center;
    }

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

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

    .footer-copy {
        grid-column: 1 / -1;
        justify-items: start;
        text-align: left;
    }
}

@media (max-width: 720px) {
    .container,
    .narrow {
        width: min(100% - 32px, 1280px);
    }

    .header-inner {
        min-height: 76px;
        gap: 12px;
    }

    .brand {
        width: 138px;
    }

    .button {
        min-height: 42px;
        padding: 10px 14px;
        font-size: 12px;
    }

    .button-anydesk span {
        max-width: 92px;
        line-height: 1.1;
    }

    .hero {
        padding: 74px 0 66px;
        border-radius: 0 0 24px 24px;
    }

    .hero-grid {
        gap: 48px;
    }

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

    .hero-lead,
    .benefits,
    .support-panel p {
        font-size: 19px;
    }

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

    .support-panel img {
        width: 170px;
    }

    .whatsapp-link {
        width: min(100%, 290px);
        font-size: 18px;
    }

    .clients-section {
        padding: 66px 0 62px;
        border-radius: 24px 24px 0 0;
    }

    .section-heading h2,
    .contact-band h2 {
        font-size: 32px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .client-logo {
        min-height: 104px;
        padding: 14px;
    }

    .contact-band-inner,
    .footer-inner,
    .cookie-notice {
        display: grid;
    }

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

    .footer-brand img {
        margin-inline: auto;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .footer-links,
    .footer-copy {
        justify-items: center;
        text-align: center;
    }

    .page-hero {
        padding: 74px 0 62px;
        border-radius: 0 0 24px 24px;
    }

    .policy-content {
        padding: 52px 0 62px;
    }

    .cookie-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 440px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}
