@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --clr-black: #000000;
    --clr-white: #ffffff;
    --clr-red: #ff2400;
    --clr-gray-dark: #1a1a1a;
    --clr-gray-mid: #cfd1d5;
    --clr-gray-light: #a5a7ac;
    --ff-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-primary);
    color: var(--clr-black);
    background: var(--clr-white);
    line-height: 1;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

input, textarea, button {
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    --padding-right: 15px;
    --padding-left: 15px;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 15px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    width: 100%;
    height: 100%;
    padding-right: var(--padding-right);
    padding-left: var(--padding-left);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

@media only screen and (min-width: 576px) {
    .container { max-width: 540px; }
}

@media only screen and (min-width: 768px) {
    .container { max-width: 720px; }
}

@media only screen and (min-width: 992px) {
    .container { max-width: 960px; }
}

@media only screen and (min-width: 1280px) {
    .container { max-width: 1280px; }
}

@media only screen and (min-width: 1640px) {
    .container { max-width: calc(97% - 2px); }
}

@media (min-width: 1921px) {
    .container { max-width: 1894px; }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 20px 0;
    background: transparent;
}

.header-container {
    max-width: 1894px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-box {
    background: var(--clr-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 40px;
}

@media only screen and (min-width: 992px) {
    .header-wrapper {
        height: 100px;
    }
}

.header-diagonal {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 15%;
    background: var(--clr-black);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 10;
}

@media only screen and (min-width: 1280px) {
    .header-diagonal {
        width: 300px;
    }
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 11;
}

.logo svg {
    width: 130px;
    height: 27px;
    color: var(--clr-black);
}

.nav {
    display: none;
    position: relative;
    z-index: 11;
}

@media only screen and (min-width: 992px) {
    .nav {
        display: flex;
        align-items: center;
        gap: 40px;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--clr-black);
    transition: color 0.3s ease-in-out;
}

.nav-link:hover {
    color: var(--clr-red);
}

.header-actions {
    display: none;
    position: relative;
    z-index: 11;
}

@media only screen and (min-width: 992px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 0;
    }
}

.btn-header {
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 55px;
    padding: 0 55px 0 40px;
    background-color: transparent;
    border: 1px solid var(--clr-black);
    clip-path: polygon(36px 0, calc(100% - 5px) 0, calc(100% - 58px) 100%, 0 100%, 0 36px);
    margin-right: -37px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.13px;
    color: var(--clr-black);
    overflow: hidden;
}

@media only screen and (min-width: 1640px) {
    .btn-header {
        font-size: 13px;
        padding: 0 55px 0 50px;
    }
}

.btn-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-150%);
    width: 150%;
    height: 100%;
    background-color: var(--clr-white);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 0 100%);
    transition: transform 0.3s ease-in-out;
}

.btn-header:hover:before {
    transform: translateX(-50%);
}

.btn-header:hover {
    color: var(--clr-black);
}

.btn-header-last {
    height: 55px;
    padding: 0 58px 0 65px;
    background-color: transparent;
    border: 1px solid var(--clr-black);
    clip-path: polygon(37px 0, 100% 0, 100% 100%, 0 100%, 0 37px);
    margin-right: 0;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 11;
}

@media only screen and (min-width: 992px) {
    .burger { display: none; }
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--clr-black);
    transition: all 0.3s ease-in-out;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    height: calc(100vh - 120px);
    background: var(--clr-white);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 40px 20px;
    overflow-y: auto;
    z-index: 9998;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-link {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--clr-black);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 177px 0 80px;
    background: var(--clr-white);
    overflow: hidden;
}

@media only screen and (min-width: 992px) {
    .hero { padding: 200px 0 100px; }
}

.hero-diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--clr-black);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    z-index: 1;
}

.hero-diagonal-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.02) 20px,
        rgba(255, 255, 255, 0.02) 40px
    );
}

.hero-container {
    grid-template-rows: 1fr;
    position: relative;
    z-index: 2;
    align-items: center;
}

.hero-image {
    grid-column: 1 / 7;
    position: relative;
    z-index: 3;
}

@media only screen and (max-width: 991px) {
    .hero-image {
        grid-column: 1 / -1;
        margin-bottom: 40px;
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    clip-path: polygon(40px 0, 100% 0, calc(100% - 40px) 100%, 0 100%, 0 40px);
}

.hero-content {
    grid-column: 7 / -1;
    z-index: 3;
}

@media only screen and (max-width: 991px) {
    .hero-content {
        grid-column: 1 / -1;
    }
}

.hero-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--clr-red);
    color: var(--clr-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.hero-title {
    font-size: 50px;
    line-height: 1.1;
    color: var(--clr-black);
    font-weight: 700;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .hero-title { font-size: 64px; }
}

@media only screen and (min-width: 992px) {
    .hero-title { font-size: 78px; }
}

.hero-description {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: -0.07px;
    color: #333333;
    margin-bottom: 40px;
    max-width: 500px;
}

@media only screen and (min-width: 992px) {
    .hero-description {
        font-size: 16px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--clr-white);
    text-align: center;
    overflow: hidden;
    border: 2px solid var(--clr-black);
    clip-path: polygon(14.5px 0, 100% 0, 100% calc(100% - 14.5px), calc(100% - 14.5px) 100%, 0 100%, 0 14.5px);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--clr-black);
}

@media only screen and (min-width: 992px) {
    .btn {
        border: 4px solid var(--clr-black);
        clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
        padding: 13px 40px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: -0.12px;
    }
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-150%);
    width: 150%;
    height: 100%;
    background-color: var(--clr-black);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 0 100%);
    transition: transform 0.3s ease-in-out;
}

.btn:hover:before {
    transform: translateX(-50%);
}

.btn:hover {
    color: var(--clr-white);
}

.btn-secondary {
    background-color: var(--clr-black);
    border-color: var(--clr-red);
    color: var(--clr-white);
}

.btn-secondary:before {
    background-color: var(--clr-white);
}

.btn-secondary:hover {
    color: var(--clr-black);
}

.section-image {
    padding: 60px 0;
}

@media only screen and (min-width: 992px) {
    .section-image {
        padding: 80px 0;
    }
}

.image-full {
    grid-column: 1 / -1;
    position: relative;
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
    overflow: hidden;
}

.image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.section {
    padding: 80px 0;
}

@media only screen and (min-width: 768px) {
    .section { padding: 100px 0; }
}

@media only screen and (min-width: 1280px) {
    .section { padding: 120px 0; }
}

.section-bg-gray {
    background: var(--clr-gray-mid);
}

.section-bg-diagonal {
    position: relative;
    background: var(--clr-black);
    padding: 100px 0 60px;
}

.section-bg-diagonal:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.02) 20px,
        rgba(255, 255, 255, 0.02) 40px
    );
}

.section-header {
    grid-column: 1 / -1;
    margin-bottom: 60px;
}

@media only screen and (min-width: 576px) {
    .section-header { grid-column: 2 / -2; }
}

@media only screen and (min-width: 1280px) {
    .section-header { grid-column: 2 / 8; }
}

.section-title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    .section-title { font-size: 48px; }
}

@media only screen and (min-width: 992px) {
    .section-title { font-size: 64px; }
}

.section-title-white {
    color: var(--clr-white);
}

.section-description {
    font-size: 14px;
    line-height: 1.36;
    letter-spacing: -0.07px;
    color: var(--clr-black);
}

@media only screen and (min-width: 992px) {
    .section-description {
        font-size: 16px;
        line-height: 1.4;
    }
}

.section-description-white {
    color: rgba(255, 255, 255, 0.8);
}

.cards-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media only screen and (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media only screen and (min-width: 1280px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: var(--clr-white);
    border: 2px solid var(--clr-gray-mid);
    padding: 40px 30px;
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 1280px) {
    .card {
        clip-path: polygon(45px 0, 100% 0, 100% calc(100% - 45px), calc(100% - 45px) 100%, 0 100%, 0 45px);
    }
}

.card:hover {
    border-color: var(--clr-black);
    transform: translateY(-5px);
    box-shadow: 19px 28.2px 45.1px 0.9px rgba(0, 0, 0, 0.11);
}

.card-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--clr-black);
    color: var(--clr-white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) {
    .card-tag { font-size: 12px; }
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.09px;
    color: var(--clr-black);
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) {
    .card-title {
        font-size: 27px;
        line-height: 1.47;
        letter-spacing: -0.15px;
    }
}

.card-text {
    font-size: 13px;
    line-height: 1.28;
    letter-spacing: -0.06px;
    color: #525252;
}

@media only screen and (min-width: 992px) {
    .card-text {
        font-size: 15px;
        line-height: 1.38;
        letter-spacing: -0.08px;
    }
}

.stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--clr-red);
    line-height: 1;
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    .stat-number { font-size: 64px; }
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-black);
}

.footer-cta {
    position: relative;
    z-index: 2;
}

.footer-cta-content {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media only screen and (min-width: 992px) {
    .footer-cta-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.footer-cta-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-white);
}

.footer-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-footer {
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 70px;
    padding: 0 40px;
    background-color: transparent;
    border: 4px solid var(--clr-red);
    clip-path: polygon(30px 0, calc(100% - 10px) 0, calc(100% - 80px) 100%, 0 100%, 0 30px);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-white);
    overflow: hidden;
    margin-right: -50px;
}

.btn-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-150%);
    width: 150%;
    height: 100%;
    background-color: var(--clr-white);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, calc(100% - 70px) 100%, 0 100%);
    transition: transform 0.3s ease-in-out;
}

.btn-footer:hover:before {
    transform: translateX(-50%);
}

.btn-footer:hover {
    color: var(--clr-black);
}

.btn-footer-last {
    height: 70px;
    padding: 0 60px 0 80px;
    border: 4px solid var(--clr-red);
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
    margin-right: 0;
}

.footer {
    background: var(--clr-black);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-bg-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

@media only screen and (min-width: 992px) {
    .footer-bg-text {
        font-size: 300px;
    }
}

@media only screen and (min-width: 1640px) {
    .footer-bg-text {
        font-size: 450px;
    }
}

.footer-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

@media only screen and (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo svg {
    width: 130px;
    height: 27px;
    color: var(--clr-white);
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-white);
    margin-bottom: 20px;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease-in-out;
}

.footer-link:hover {
    color: var(--clr-red);
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media only screen and (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--clr-white);
    border-top: 4px solid var(--clr-black);
    padding: 30px 20px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--clr-black);
}

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    color: #525252;
    margin-bottom: 20px;
}

.cookie-categories {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--clr-gray-mid);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.cookie-categories.show {
    display: flex;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-checkbox {
    width: 20px;
    height: 20px;
}

.cookie-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-black);
}

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

.btn-cookie {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--clr-black);
    background: transparent;
    color: var(--clr-black);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn-cookie:hover {
    background: var(--clr-black);
    color: var(--clr-white);
}

.btn-cookie-primary {
    background: var(--clr-black);
    color: var(--clr-white);
}

.btn-cookie-primary:hover {
    background: var(--clr-red);
    border-color: var(--clr-red);
}

/* =================================================================
   CSS СТИЛИ ДЛЯ СЕКЦИИ ФОРМЫ MASTERCLASS
   Добавьте эти стили в конец вашего blueprint/contrast.css
   ================================================================= */

.form-container {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    clip-path: polygon(40px 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%, 0 40px);
}

@media only screen and (min-width: 768px) {
    .form-wrapper {
        padding: 60px 60px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--clr-white);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    font-size: 15px;
    font-weight: 400;
    color: var(--clr-black);
    transition: all 0.3s ease-in-out;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-textarea:focus {
    background: var(--clr-white);
    border-color: var(--clr-red);
    outline: none;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    font-family: var(--ff-primary);
}

.form-submit {
    margin-top: 40px;
    text-align: center;
}

.btn-form {
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: var(--clr-white);
    border: 4px solid var(--clr-white);
    clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
    padding: 16px 60px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--clr-black);
    cursor: pointer;
    overflow: hidden;
    font-family: var(--ff-primary);
}

.btn-form:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-150%);
    width: 150%;
    height: 100%;
    background-color: var(--clr-red);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, calc(100% - 55px) 100%, 0 100%);
    transition: transform 0.3s ease-in-out;
}

.btn-form:hover:before {
    transform: translateX(-50%);
}

.btn-form:hover {
    color: var(--clr-white);
    border-color: var(--clr-red);
}

@media only screen and (max-width: 767px) {
    .btn-form {
        width: 100%;
        padding: 14px 40px;
    }
}