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

body {
    font-family: 'Archivo', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 112px;
}

.header {
    padding: 20px 0;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 32px;
    font-weight: 700;
    color: #EF742F;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: #EF742F;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.3s;
}
.footer-nav-link {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.3s;
}


.nav-link:hover {
    opacity: 0.8;
}

.hero {
    padding: 80px 0 120px;
    background: white;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 24px;
}

.btn {
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Archivo', sans-serif;
}

.btn-primary {
    background: #EF742F;
    color: white;
}

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

.btn-secondary {
    background: white;
    color: #EF742F;
    border: 2px solid #EF742F;
}

.btn-secondary:hover {
    background: #FFF5F0;
}

.btn-primary-inverted {
    background: #003A7D;
    color: white;
}

.btn-primary-inverted:hover {
    background: #002b5c;
}

.full-width {
    width: 100%;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    margin:0;
    padding:0;
}

.hero-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.circle-decoration {
    position: absolute;
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-decoration::before,
.circle-decoration::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 60px solid #EF742F;
}

.circle-decoration::before {
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.circle-decoration::after {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    opacity: 0.1;
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 530px;
    height: auto;
}

.intro-section {
    background: #003A7D;
    position: relative;
    overflow: hidden;
    padding: -10px 0;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-title.white {
    color: white;
}

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

.section-description {
    font-size: 18px;
    line-height: 1.7;
}

.section-description.white {
    color: white;
}

.intro-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.orange-circles-bg {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.orange-circles-bg::before,
.orange-circles-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 70px solid #EF742F;
}

.orange-circles-bg::before {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.orange-circles-bg::after {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    opacity: 0.2;
}

.intro-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 530px;
    height: auto;
    margin-right: 0;
}

.benefits-section {
    padding: 100px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.benefit-card {
    text-align: left;
}

.benefit-icon {
    width: 55px;
    height: 55px;
    background: #FFF5F0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #1a1a1a;
}

.benefit-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.how-it-works {
    background: #EF742F;
    padding: 100px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    margin-top: 16px;
}

.section-subtitle.white {
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.step-card {
    background: white;
    padding: 48px 32px;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 55px;
    height: 55px;
    background: #EF742F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.testimonials-container {
    max-width: 900px;
    overflow: hidden;
    position: relative;
}

.testimonial-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-slide.active {
    display: grid;
}

.testimonial-card {
    background: white;
    padding: 48px;
}

.quote-icon {
    font-size: 48px;
    color: #003A7D;
    margin-bottom: 24px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
}

.author-role {
    font-size: 14px;
    color: #666;
}

.slider-btn {
    background: white;
    border: 2px solid #EF742F;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    color: #EF742F;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #EF742F;
    color: white;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #EF742F;
}

.cta-section {
    background: #003A7D;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-start;
}

.cta-circles-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    left: -180px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.cta-circles-bg::before,
.cta-circles-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 60px solid #EF742F;
}

.cta-circles-bg::before {
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.cta-circles-bg::after {
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
    opacity: 0.15;
}

.cta-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 530px;
    height: auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: white;
    margin-bottom: 32px;
    line-height: 1.7;
}

.target-audience {
    background: white;
    padding: 100px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.audience-card {
    text-align: left;
}

.audience-icon {
    width: 55px;
    height: 55px;
    background: #F0F7FF;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.audience-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: #1a1a1a;
}

.audience-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.cta-banner {
    background: #EF742F;
    padding: 80px 0;
}

.cta-banner-content {
    text-align: center;
}

.banner-title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 20px;
    color: white;
    margin-bottom: 32px;
}

.services {
    background: white;
    padding: 100px 0;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 120px;
    margin: 60px auto 48px;
    text-align: left;
    max-width: 1000px;
}

.services-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    color: #1a1a1a;
}

.services-list {
    list-style: none;
    margin-bottom: 32px;
}

.services-list li {
    font-size: 16px;
    padding: 10px 0;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
}

.video-section {
    background: #E8E8E8;
    padding: 100px 0;
    text-align: center;
}

.video-wrapper {
    max-width: 900px;
    margin: 60px auto 48px;
}

.video-placeholder {
    background: white;
    border-radius: 12px;
    padding: 200px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(128, 128, 128, 0.6);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(128, 128, 128, 0.8);
}

.contact-form {
    padding: 0px 0;
    background: white;
    position: relative;
    overflow: hidden;

}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.form-input {
    padding: 18px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Archivo', sans-serif;
    background: #F8F8F8;
}

.form-input:focus {
    outline: none;
    border-color: #EF742F;
    background: white;
}

.form-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.form-circles-bg {
    position: absolute;
    width: 650px;
    height: 650px;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.form-circles-bg::before,
.form-circles-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 70px solid #EF742F;
}

.form-circles-bg::before {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.form-circles-bg::after {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    opacity: 0.2;
}

.form-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 530px;
    height: auto;
}

.footer {
    background: #003A7D;
    padding: 40px 0;
}

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

.footer-logo {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.footer-links span {
    color: white;
    font-size: 16px;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 48px;
    }

    .hero-content,
    .intro-content,
    .cta-content,
    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 60px;
    }

    .hero-title,
    .section-title,
    .cta-title {
        font-size: 40px;
    }

    .intro-image,
    .form-image {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .benefits-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title,
    .section-title,
    .cta-title {
        font-size: 32px;
    }

    .banner-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .slider-btn {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
