
@import url('https://fonts.cdnfonts.com/css/gilroy-bold');

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

body {
    font-family: 'Gilroy-Bold', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #3D3D3D;
    background: #fff;
}
.container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    z-index: 9;
}

.header {
    background: white;
    padding: 20px 0;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    color: #3171DE;
    text-decoration: none;
}

.btn-primary {
    background: #3171DE;
    color: white;
    padding: 12px 50px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: #245ec1;
    transform: translateY(-2px);
}

.hero {
    position: relative;
}

.hero .container {
    padding: 190px 60px;
    position: relative;
    margin: 20px auto;
}
.hero .container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 50px;
    width: 100%;
    height: 100%;
    background: url(img/header-image.png) no-repeat right;
    background-size: contain;
    opacity: 0.8;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
}

.hero-text p {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.section {
    padding: 0;
}

.section-title {
    font-family: 'Gilroy-Bold', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: #2c3e50;
    text-transform: uppercase;
}

#features {
    padding-top: 0;
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
}
.figure-title {
    display: flex;
    justify-content: center;
    align-items: center;
}
.figure-title svg {
    margin-right: 40px;
}
svg.figure-green,
svg.figure-blue {
    position: absolute;
    z-index: 1;
}
#features .figure-green {
    top: 450px;
    right: 10vw;
}
#features .figure-blue {
    top: 650px;
    left: 10vw;
}
.participants .figure-green {
    top: 260px;
    left: -5vw;
}
.participants .figure-blue {
    top: 220px;
    right: -5vw;
}
.guarantee-section .figure-green {
    bottom: -100px;
    right: 0;
}
.feature-card {
    position: relative;
    z-index: 9;
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 0; /* Растягивается равномерно */
    min-width: 380px; /* Минимальная ширина */
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.icon-location svg { color: #10b981; }
.icon-bank svg { color: #4A90E2; }
.icon-money svg { color: #f59e0b; }
.icon-shield svg { color: #ef4444; }
.icon-home svg { color: #8b5cf6; }

.feature-card h3 {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
    line-height: 1.5;
}

.feature-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.highlight {
    font-family: 'Gilroy-Bold', sans-serif;
    color: #4A90E2;
}

.participants .container {
    max-width: 1100px;
}

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

.participant-card {
    /*background: #f8f9fa;*/
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}
.participant-card h3 {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 1.6em;
    max-width: 240px;
    margin: auto;
}

.participant-icon {
    width: 244px;
    height: 244px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.guarantee-section {
    position: relative;
    background: #fff;
    padding: 100px 0;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.money-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.money-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.guarantee-text h2 {*/
/*	font-size: 3rem;*/
/*	font-weight: 700;*/
/*	margin-bottom: 40px;*/
/*	color: #2c3e50;*/
/*	line-height: 1.2;*/
/*}*/

.guarantee-list {
    list-style: none;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #555;
    min-height: 100px;
}

.guarantee-number {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 700;
    opacity: 0.2;
}

/* Цветные цифры */
.guarantee-list li:nth-child(1) .guarantee-number {
    color: #3171DE;
}

.guarantee-list li:nth-child(2) .guarantee-number {
    color: #FF6929;
}

.guarantee-list li:nth-child(3) .guarantee-number {
    color: #55C255;
}

.guarantee-list li:nth-child(4) .guarantee-number {
    color: #FFB929;
}

.guarantee-text-content {
    flex: 1;
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 2.1rem;
}

.contact {
    padding: 60px 0;
    text-align: center;
    color: white;
    padding-bottom: 200px;
}

.contact h2 {
    width: 80%;
    margin: 0 auto 10px;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 3rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.contact-btn {
    background: white;
    color: #5A8DE5;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Gilroy-Bold', sans-serif;
    font-size: 1.4rem;
    line-height: 1.1;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0 10px;
    box-shadow: 0px 4px 25.8px rgba(0, 0, 0, 0.32);
}
.whatsapp {color: #33C033}
.telegram {color: #338CB8}

.contact-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.contact .container {
    padding: 130px 0 340px;
    background: #3171DE;
    background: linear-gradient(210deg,rgba(49, 113, 222, 1) 0%, rgba(74, 192, 242, 1) 100%);
    border-radius: 35px;
}

.contact .container:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    content: 'ANKER ANKER ANKER';
    display: block;
    font-size: 8.9rem;
    font-family: 'Gilroy-Heavy', sans-serif;
    line-height: 1.1;
    opacity: 0.1;
}

.contact-image {
    position: absolute;
    bottom: -190px;
    left: 0;
    right: 0;
    width: 100%;
}

.contact-image::before {
    content: '';
    display: block;
    width: 900px;
    height: 555px;
    background: url('img/contact-us.png') center no-repeat;
    background-size: contain;
    margin: auto;
}

.footer {
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    border-top: 1px solid #d5d5d5;
    padding-top: 30px;
}

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

.footer-links a {
    font-family: 'Gilroy-Regular', sans-serif;
    font-size: 0.9rem;
    color: #0A142F;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.about-section {
    /*background: #f8fafc;*/
    padding: 40px 0;
}

.about-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-family: 'Gilroy-Medium', sans-serif;
    font-size: 2rem;
    line-height: 1.3;
    color: #2c3e50;
}

.company-name {
    color: #4A90E2;
    font-weight: 700;
}

.highlight-blue {
    color: #4A90E2;
    font-weight: 600;
}

/*@media (max-width: 768px) {*/
/*    .hero-content {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*	.hero-text h1 {*/
/*		font-size: 2rem;*/
/*	}*/
/*	.hero-text p {*/
/*		font-size: 1.5rem;*/
/*	}*/

/*    .features {*/
/*        grid-template-columns: 2fr;*/
/*    }*/

/*    .footer-content {*/
/*        flex-direction: column;*/
/*        text-align: center;*/
/*    }*/

/*    .footer-links {*/
/*        justify-content: center;*/
/*    }*/
/*    .contact-buttons {*/
/*        align-items: center;*/
/*    }*/
/*	.contact-image::before {*/
/*		width: 750px;*/
/*		height: 435px;*/
/*	}*/
/*}*/
@media (max-width: 1200px) {
    .participants .container {
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .header-content {
        width: 100%;
        justify-content: center;
    }
    .hero-content {
        gap: 0;
    }
    .hero .container {
        padding: 30px 30px;
        margin: 50px auto 0 ;
    }
    .hero .container img {
        width: 90px;
    }
    .hero .container::before {
        background-position: right;
        right: 20px;
        background-size: cover;
        z-index: -2;
    }
    .hero .container::after {
        position: absolute;
        left: 0;
        top: 0;
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: rgba(255, 255, 255, 0);
        background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    }
    .hero-text h1 {
        margin-top: 20px;
        font-size: 1.5rem;
    }
    .hero-text p {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-top: 35px;
    }
    header .btn-primary {display: none}
    .about-text {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    .figure-title svg {
        width: 150px;
        margin-right: 20px;
    }
    .figure-title {
        text-align: left;
        line-height: 1.2;
    }
    #features .figure-green {
        top: 570px;
        right: -10vw;
    }
    .feature-card {
        min-width: 100%;
        min-height: 250px;
    }
    #features .figure-blue {
        top: auto;
        bottom: 200px;
        left: -10vw;
    }
    .participants .figure-green {
        top: 520px;
        left: -15vw;
    }
    .participants .figure-blue {
        top: auto;
        bottom: 220px;
        right: -17vw;
    }
    .guarantee-section .figure-green {
        bottom: -100px;
        right: -25vw;
    }
    .feature-card h3,
    .participant-card h3,
    .guarantee-text-content {
        font-size: 1.2rem;
    }
    .participant-card {gap: 0;}
    #features .container,
    .guarantee-section {
        overflow: hidden;
    }
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .guarantee-number {
        position: absolute;
    }
    .guarantee-list li {
        position: relative;
    }
    .guarantee-text-content {
        text-align: left;
        padding-left: 35px;
    }
    .contact {
        top: -100px;
        position: relative;
        padding-bottom: 90px;
        overflow: hidden;
    }
    .contact .container {
        padding-bottom: 170px;
        margin: 0 20px;
    }
    .contact .container:before {
        left: -15px;
        font-size: 8rem;
    }
    .contact h2 {
        font-size: 1.5rem;
    }
    .contact .container:before {
        content: 'ANKER';
    }
    .contact-image {
        left: -10.5vw;
        bottom: -100px
    }
    .contact-image::before {
        width: 112vw;
        height: 250px;
    }
    .contact-buttons {
        padding-top: 50px;
        position: relative;
    }
    .contact-btn {
        font-size: 0.9rem;
        z-index: 9;
    }
    .contact-buttons img {
        position: absolute;
    }
    .whatsapp-img {left: 15vw; top: -33px;z-index: 0}
    .telegram-img {right: 16vw; top: -25px;z-index: 0}
    .footer {
        position: relative;
        top: -50px
    }
}
@media (max-width: 576px) {
    .whatsapp-img {left: 0; top: -33px;z-index: 0}
    .telegram-img {right: 0; top: -25px;z-index: 0}
}
img	{
    max-width: 100%;
}
.gradient-shape-svg {
    width: 300px;
    height: 150px;
    margin: 50px;
    transform: rotate(-15deg);
    filter: drop-shadow(0 10px 30px rgba(99, 102, 241, 0.3));
}

.gradient-shape-svg svg {
    width: 100%;
    height: 100%;
}