/* Base styles */
:root {
    /* Основные цвета */
    --color-text: #222;
    --color-heading: #b56170;
    --color-accent-green: #5b6c42;
    --color-bg-light: #f6f3ee;

    --font-heading: 'Roboto', sans-serif;
    --box-shadow: 0 8px 20px rgba(62, 50, 37, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    font-size: 1.8rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 15px;
    position: relative;
}

.section-title {
    margin-bottom: 2.5rem;
    padding-bottom: 0.5rem;
    max-width: 600px;
    color: var(--color-heading);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    text-align: center;
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: var(--color-accent-green);
    color: white;
}

.btn-primary:hover {
    background-color: #46694c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

/* Header */
.header {
    background-color: var(--color-bg-light);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}


.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header__content {
    width: 55%;
    position: relative;
    z-index: 2;
}

.header__image {
    width: 40%;
    position: relative;
    z-index: 2;
}

.header__image-mobile {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    @media (min-width: 992px) {
        display: none;
    }
}

.soup-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.soup-image-mobile {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: transform 0.5s ease;
}

.soup-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.header__subtitle {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
}

.header__title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    letter-spacing: -1px;
    color: var(--color-heading);
}

.header__subtitle {
    margin-bottom: 15px;
}

.header__content .header__details {
    margin-bottom: 15px;
}

.header__details {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.header__details span {
    font-weight: 400;
    letter-spacing: .4px;
    margin-right: 10px;
}

.header__details i {
    color: var(--color-accent-green);
    margin-right: 5px;
}


.header__description, .header__cta-text {
    line-height: 1.4;
    font-weight: 500;
    max-width: 600px;
    letter-spacing: .7px;
    line-height: 1;
}

.header__cta {
    margin-top: 30px;
}

.header__cta .btn {
    margin-top: 40px;
}

/* About Author Section */
.about-author {
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: hidden;
}

/* Декоративные элементы для блока about-author */
.about-author::before,
.about-author::after,
.about-author .deco-circle-1,
.about-author .deco-circle-2 {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
    opacity: 0.8;
}

.about-author::before {
    width: 250px;
    height: 250px;
    background-color: rgba(75, 116, 81, 0.15);
    top: -80px;
    right: -80px;
    animation: floatCircle 8s infinite ease-in-out;
}

.about-author::after {
    width: 200px;
    height: 200px;
    background-color: rgba(167, 108, 95, 0.15);
    bottom: -60px;
    left: -60px;
    animation: floatCircle 6s infinite ease-in-out reverse;
}

.about-author .deco-circle-1 {
    width: 120px;
    height: 120px;
    background-color: rgba(227, 168, 132, 0.2);
    top: 30%;
    right: 10%;
    animation: floatCircle 5s infinite ease-in-out;
}

.about-author .deco-circle-2 {
    width: 80px;
    height: 80px;
    background-color: rgba(75, 116, 81, 0.2);
    bottom: 20%;
    right: 30%;
    animation: floatCircle 7s infinite ease-in-out;
}

.about-author__content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-author__text {
    flex: 0 0 60%;
}

.about-author__text p {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    animation: fadeInText 0.8s ease-in-out forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-play-state: paused;
}

.about-author__text p:nth-child(1) {
    animation-delay: 0.2s;
}

.about-author__text p:nth-child(2) {
    animation-delay: 0.4s;
}

.about-author__text p:nth-child(3) {
    animation-delay: 0.6s;
}

.about-author__list {
    margin: 1.5rem 0;
    padding-left: 10px;
    animation: fadeInText 0.8s ease-in-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-play-state: paused;
}

.about-author__list li {
    position: relative;
    margin-bottom: 12px;
}

.about-author__list li i {
    color: var(--color-accent-green);
    margin-right: 10px;
    animation: pulseIcon 2s infinite;
}

.about-author__highlight {
    font-weight: 600;
    color: var(--color-accent-green);
    animation: fadeInHighlight 1s ease-in-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-play-state: paused;
}

/* Steps Section */
.steps {
    /* padding: 80px 0; */
    position: relative;
}


.steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background-color: var(--color-bg-light);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-left: 2px solid var(--color-accent-green);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


.step-card__number {
    color: var(--color-accent-green);
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.step-card__content p {
    margin-bottom: 0.8rem;
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent-green);
    font-weight: bold;
}


/* Benefits Section */
.benefits {
    /* padding: 80px 0; */
    background-color: var(--color-bg-light);
}

.benefits__content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits__image {
    flex: 1;
}

.benefits__image img {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 10px solid white;
    transform: rotate(-2deg);
    max-width: 90%;
    display: block;
    margin: 0 auto;
}

.benefits__list {
    flex: 1;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.benefit-item i {
    color: var(--color-accent-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* CTA Section */
.cta {
    background-color: var(--color-bg-light);
}

.cta__text {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 50px;
    background-color: #fff;;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
    position: relative;
    line-height: 1.6;
}

.cta__text-highlight {
    color: var(--color-heading)
}

.cta__text::before,
.cta__text::after {
    content: '"';
    font-size: 3rem;
    color: var(--color-accent-green);
    opacity: 0.3;
    position: absolute;
}

.cta__text::before {
    top: 10px;
    left: 20px;
}

.cta__text::after {
    bottom: 10px;
    right: 20px;
}

.cta .btn {
    max-width: 325px;
    display: block;
    margin: 2rem auto 0;
    padding: 6px 10px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #222;
    color: white;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__info {
    margin: 0 auto;
}

.footer__info p {
    margin-bottom: 5px;
}

.footer__info a {
    color: var(--color-accent-green);
}

/* Decorative elements */
.decorative-leaf {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.15;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234b7451'%3E%3Cpath d='M17,8C8,10 5.9,16.17 3.82,21.34L5.71,22L6.66,19.7C7.14,19.87 7.64,20 8,20C19,20 22,3 22,3C21,5 14,5.25 9,6.25C4,7.25 2,11.5 2,13.5C2,15.5 3.75,17.25 3.75,17.25C7,8 17,8 17,8Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Media Queries */
@media (max-width: 992px) {
    .benefits__content {
        flex-direction: column;
    }
    
    .benefits__image {
        margin-bottom: 40px;
    }
    
    .about-author__content {
        flex-direction: column;
    }
    
    /* .about-author__image {
        width: 70%;
        margin: 0 auto 40px;
    } */
    
    .about-author__text {
        width: 100%;
    }
    
    .footer__content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__logo {
        margin-bottom: 20px;
    }

    .header .container {
        flex-direction: column;
    }
    
    .header__content, .header__image {
        width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }
    .header__details {
        margin: 0 auto;
        justify-content: center;
    }
    .header__description {
        margin: 0 auto;
    }

    .header__cta-text {
        margin: 0 auto;
        max-width: 600px;
        text-align: center;
    }

    .header__image {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    section {
        padding: 60px 15px;
    }
    
    .steps__grid {
        grid-template-columns: 1fr;
    }

    .header {
        padding: 50px 0 70px;
    }
    
    .header__title {
        font-size: 2.5rem;
    }
    
    .header__description {
        font-size: 1rem;
    }

    .about-author::before {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }
    
    .about-author::after {
        width: 150px;
        height: 150px;
        bottom: -40px;
        left: -40px;
    }
    
    .about-author .deco-circle-1 {
        width: 100px;
        height: 100px;
        top: 20%;
        right: 5%;
    }
    
    .about-author .deco-circle-2 {
        width: 60px;
        height: 60px;
        bottom: 15%;
        right: 15%;
    }
}

@media (max-width: 576px) {
    h3 {
        font-size: 1.3rem;
    }
    
    p {
        letter-spacing: .4px;
    }

    li {    
        letter-spacing: .4px;
    }

    section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .btn {
        padding: 14px 26px;
        line-height: 1.4;
    }

    .header {
        padding: 20px 0 20px;
    }

    .header__content {
        margin-bottom: 20px;
    }
    
    .header__title {
        font-size: 2.4rem;
        line-height: .9;
    }

    .header__subtitle {
        font-size: 1.1rem;
        letter-spacing: .9px;
        text-align: center;
        margin: 0 auto;
        line-height: 1.1;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    
    .header__details {
        gap: 1px;
    }
    .header__details span {
        letter-spacing: -.7px;
    }

    .header__cta .btn {
        margin-top: 20px;
    }

    .steps__grid {
        gap: 20px;
    }

    .step-card__number {
        font-size: 1.5rem;
    }

    .step-card__content p {
        letter-spacing: .4px;
    }

    .benefits__content {
        flex-direction: column-reverse;
        gap: 20px;
    }
    .benefits__image {
        margin-bottom: 20px;
    }

    .cta__highlight {
        font-size: 1.3rem;
    }

    .about-author {
        padding: 40px 0;
    }

    
    .about-author__text p,
    .about-author__list li {
        line-height: 1.4;
    }
    
    .cta {
        padding-top: 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInHighlight {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 10px rgba(75, 116, 81, 0.2);
    }
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #5c8c63;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom animation classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(30px);
}

.animate-fade-right {
    opacity: 0;
    transform: translateX(-30px);
}

.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

/* Animated elements with visible class */
.animate-fade-up.visible {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left.visible {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right.visible {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-fade-up.visible.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-fade-up.visible.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-fade-up.visible.animate-delay-300 {
    animation-delay: 0.3s;
}

@keyframes floatCircle {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

