* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

h1,
.keep-large,
.keep-large-2 {
    font-family: "Dela Gothic One", sans-serif;
    font-weight: 500;
}

body {
    font-family: "Quicksand", sans-serif;
    color: black;
    line-height: 1.6;
    overflow-x: hidden;
    touch-action: pan-y pinch-zoom;
}

html {
    scroll-behavior: smooth;
}

.fas,
.fa-solid {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.fab,
.fa-brands {
    font-family: 'Font Awesome 6 Brands';
    font-weight: 400;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: -2;
}

.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.02) 0%, transparent 60%);
    z-index: -1;
    animation: gradientMove 20s ease infinite;
    pointer-events: none;
}

@keyframes gradientMove {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3) rotate(3deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
}

.cherry-can-fixed {
    position: fixed;
    top: 71%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    z-index: 300;
    pointer-events: auto;
    filter: drop-shadow(0 50px 70px rgba(0, 0, 0, 0.6));
    will-change: transform;
    transition: none;
    width: 295px;
    height: 295px;
}

.cherry-can-fixed img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.reset-can-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
}

.reset-can-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.reset-can-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.craft-section {
    width: 100%;
    background: #f4f4f6db;
    backdrop-filter: blur(7px);
    padding: 3rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 500;
    position: relative;
}

.craft-container {
    display: flex;
    flex-direction: unset;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 600px;
    width: 100%;
}

.craft-logo {
    width: 180px;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.craft-text {
    font-family: "Quicksand", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #1a1a1a;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
}


/* Адаптация для мобильных */

@media (max-width: 768px) {
    .craft-section {
        padding: 1rem 1rem;
        padding-top: 3rem;
    }
    .craft-logo {
        width: 60%;
        margin: 2rem;
    }
    .craft-text {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .craft-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .craft-text {
        font-size: 1.6rem;
    }
}

.description {
    padding: 7rem 2rem 9rem;
    background: #ededf1;
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.description-container {
    max-width: 950px;
    margin: 0 auto;
}

.bullets {
    list-style: none;
    margin: 2rem 0 1rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.3rem;
}

.bullets li {
    width: 60%;
    padding: 1.3rem 2.2rem;
    background: rgb(255 255 255);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    transition: background 0.25s, border 0.25s, transform 2s cubic-bezier(0.22, 0.97, 0.33, 1.05);
    box-shadow: 0 20px 35px -18px rgba(0, 0, 0, 0.7);
    transform: translateX(80%);
    will-change: transform;
}

.bullets li.reveal-down {
    transform: translateX(0);
}

.bullets li.highlight-bullet {
    background: rgb(132 97 160 / 88%);
    border-left: 4px solid #e9c0ff;
}

.bullet-header {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.bullet-icon {
    display: inline-block;
    margin-right: 0.8rem;
    font-size: 2rem;
    vertical-align: middle;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.bullets li strong {
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: black;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    flex: 1;
    word-break: break-word;
}

.bullets li p {
    color: rgb(29, 29, 31);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-top: 0.5rem;
    word-break: break-word;
}

.bullets li.highlight-bullet strong {
    background: linear-gradient(135deg, #ffe4b5, #f5b0ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signature-line {
    text-align: right;
    margin-top: 3rem;
    font-weight: 300;
    color: black;
    letter-spacing: 2px;
    font-size: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.5rem 1.5rem;
}

.signature-line span:not(:last-child)::after {
    content: "·";
    margin-left: 1.5rem;
    opacity: 0.5;
}

.features {
    z-index: 500;
    position: relative;
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    z-index: 500;
    position: relative;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgb(189 189 196 / 47%);
    backdrop-filter: blur(7px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    border-radius: 30px;
    transform: scale(0.9);
}

.feature-card i {
    font-size: 3rem;
    color: black;
    margin-bottom: 0.8rem;
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-card p {
    color: black;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-image-section {
    position: relative;
    width: 100%;
    min-height: 158vh;
    display: flex;
    align-items: center;
    z-index: 400;
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

.image-content {
    position: relative;
    z-index: 3;
    width: 50%;
    max-width: 600px;
    color: #333;
    padding: 4rem;
    animation: fadeInLeft 1.2s ease-out;
}

.image-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
}

.image-content p {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 500px;
    color: #333;
}

.image-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 202vh;
    background-image: url('../images/man.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    z-index: 1000;
    will-change: transform;
    pointer-events: none;
    border-bottom-left-radius: 60px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 10;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 350px;
}

.hero .hero-content h1 {
    color: #484848;
    text-align: left;
    font-size: 2.5rem;
    letter-spacing: 3px;
    line-height: 1.3;
}

.hero .hero-content p {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: #000000;
    max-width: 500px;
    margin-top: 2rem;
}

.hero-title-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    animation: slideFromRight 1s ease-out forwards;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(30vw);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.keep-large,
.keep-large-2 {
    font-size: 120px !important;
    line-height: 0.9;
    text-transform: uppercase;
    transform: skewX(-16deg);
    color: #5b5c5b!important;
    text-shadow: 3px 3px 0 #b2d9a6, 5px 5px 0 #708d67, 10px 10px 30px rgba(0, 0, 0, 0.2);
}

.keep-large {
    z-index: 2;
}

.keep-large-2 {
    position: absolute;
    color: #75a662;
    z-index: 0;
    margin-right: 220px;
    margin-top: 25px;
    animation: fadeInScale 1.2s ease-out forwards;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateX(-70vw) kewX(-16deg);
    }
    60% {
        opacity: 1;
        transform: translateX(3vw) kewX(-26deg);
    }
    100% {
        opacity: 1;
        transform: translateX(80vh) kewX(-16deg);
    }
}

.keep-sublines {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    padding-top: 30px;
    transform: skewX(-16deg);
}

.keep-sublines span {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: black;
    line-height: 1.2;
    white-space: nowrap;
}

.cta-button {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgb(3 82 0 / 60%);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.4s;
    border-radius: 50px;
    z-index: 400;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: green;
    color: green;
    transform: translateY(-2px);
}

.cherry-can-desktop {
    position: fixed;
    top: 71%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    z-index: 300;
    pointer-events: auto;
    filter: drop-shadow(0 50px 70px rgba(0, 0, 0, 0.6));
    width: 325px;
    height: 325px;
    display: block;
}

.cherry-can-desktop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.cherry-can-mobile {
    display: none;
}

@media (max-width: 768px) {
    .keep-large {
        text-shadow: none;
    }
    .cherry-can-fixed {
        display: none;
    }
    .cherry-can-mobile {
        display: block;
        position: relative;
        width: 280px;
        height: 280px;
        margin: 2rem auto;
        filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.3));
        margin-top: 2rem;
        transform: scale(1.3);
    }
    .cherry-can-mobile img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}