* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Alfa Slab One', cursive;
    background-image: url('images/backgroundmain.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header {
    background: #fff;
    border-bottom: 1.5px solid #000;
    padding: 0 40px;
    height: 140px;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-left: 220px;
}

.logo {
    font-size: 64px;
    color: #000;
    text-decoration: none;
}

.nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.nav a {
    font-size: 32px;
    text-decoration: none;
    color: #000;
    transition: opacity 0.2s;
}

.nav a:hover {
    opacity: 0.6;
}

.header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-right: 220px;
}

.login {
    font-size: 32px;
    color: #000;
    cursor: pointer;
    transition: opacity 0.2s;
}

.login:hover {
    opacity: 0.6;
}

.btn-register {
    font-family: 'Alfa Slab One', cursive;
    width: 241px;
    height: 48px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 32px;
    border: 1.5px solid #000;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-register:hover {
    background: #fff;
    color: #000;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.hero h1 {
    font-size: 64px;
}

.hero p {
    font-size: 40px;
    margin-top: 20px;
}

.btn-main {
    font-family: 'Alfa Slab One', cursive;
    margin-top: 40px;
    width: 328px;
    height: 64px;
    background: #000;
    color: #fff;
    font-size: 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-main:hover {
    opacity: 0.8;
}

/* инфо блоки*/
.container-block {
    max-width: 1360px;
    margin: 100px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-box {
    display: flex;
    flex-direction: row;
    border: 1px solid #000;
    border-radius: 25px;
    height: 450px;
    overflow: hidden;
    background: #fff;
}

.info-box.reverse {
    flex-direction: row-reverse;
}

.left {
    flex: 0 0 50%;
    position: relative;
}

.purple { background: #BF47DD; }
.green  { background: #A8D374; }
.blue   { background: #6CA0E5; }

.right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 60px;
}

.right h2 {
    font-size: 48px;
}

.right p {
    font-size: 32px;
    margin-top: 20px;
    max-width: 520px;
}

.profile-img {
    position: absolute;
    width: 170px;
    height: 392px;
    object-fit: cover;
    top: 29px;
}

.profile-img.img1 { left: 149px; }
.profile-img.img2 { left: 373px; }

.sales-img {
    position: absolute;
    width: 578px;
    height: 379px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.stat-img {
    position: absolute;
    width: 476px;
    height: 379px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.influencers {
    text-align: center;
    margin-top: 100px;
}

.influencers h2 {
    font-size: 48px;
}

.influencers p {
    font-size: 32px;
    margin-top: 10px;
}

.tags {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.tags-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tags-row div {
    padding: 10px 20px;
    border: 1px solid #000;
    border-radius: 8px;
    font-size: 24px;
}

.cta {
    margin-top: 100px;
    background: #6CA0E5;
    height: 336px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    font-size: 48px;
    max-width: 1052px;
    line-height: 1.2;
}

.btn-try {
    font-family: 'Alfa Slab One', cursive;
    margin-top: 40px;
    width: 328px;
    height: 64px;
    background: #fff;
    font-size: 40px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-try:hover {
    opacity: 0.8;
}

.footer {
    max-width: 1360px;
    margin: 80px auto;
    border: 1.5px solid #000;
    border-radius: 16px;
    padding: 40px;
    background: #fff;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-left h3 {
    font-size: 24px;
    max-width: 400px;
    line-height: 1.4;
}

.email-box {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.email-box input {
    font-family: 'Alfa Slab One', cursive;
    width: 280px;
    height: 34px;
    border: 1.5px solid #000;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
}

.send-btn {
    width: 34px;
    height: 34px;
    background: #BF47DD;
    border: 1.5px solid #000;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.send-btn:hover {
    opacity: 0.8;
}

.footer-brand {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.copyright {
    font-size: 28px;
}

.footer-logo {
    font-size: 32px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: center;
}

.footer-nav a {
    font-size: 24px;
    text-decoration: none;
    color: #000;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.6;
}

.socials {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.socials img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}