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

:root {
    --color-bg-dark: #181818;
    --color-bg-card: #2F3739;
    --color-accent: #49A8C9;
    --color-accent-light: #4AB3D7;
    --color-text-dark: #2F3739;
    --color-text-light: #FFFFFF;
    --color-text-muted: #939B9D;
    --color-text-blue: #C3F0FF;
    --color-text-blue-light: #C4F0FF;
    --color-bg-light: #E8F4F8;
    --color-bg-form: #EFF8FE;
    --font-main: 'Manrope', sans-serif;
    --font-mono: 'PT Mono', monospace;
    --font-deco: 'Geologica', sans-serif;
    --container-width: 1440px;
    --container-padding: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background: #FFFFFF;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== SECTION LABEL ===== */
.section-label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 40px;
}

.section-label__line {
    width: 100%;
    max-width: 340px;
    height: 2px;
    background: #4AB3D7;
    border-radius: 10px;
}

.section-label__text {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: var(--color-text-dark);
}

.section-label--dark .section-label__text {
    color: var(--color-text-light);
}

/* ===== 1. HERO ===== */
.hero {
    position: relative;
    min-height: 549px;
    background: #181818;
    overflow: hidden;
    padding: 105px 0 60px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    background: #49A8C9;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    filter: blur(200px);
}

.hero__glow--1 {
    width: 745px;
    height: 745px;
    right: -100px;
    top: 240px;
}

.hero__glow--2 {
    width: 397px;
    height: 397px;
    left: 0;
    top: 178px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(50% 50% at 50% 50%, #181818 0%, rgba(24, 24, 24, 0) 100%);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-main);
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-light);
}

.hero__breadcrumbs a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.hero__breadcrumbs a:hover {
    color: var(--color-accent-light);
}

.hero__chevron {
    color: var(--color-accent);
    font-size: 14px;
}

.hero__content {
    max-width: 641px;
}

.hero__title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 50px;
    line-height: 108%;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.hero__subtitle {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 25px;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.hero__btn {
    display: inline-block;
    padding: 24px 46px;
    background: #4AB3D7;
    color: var(--color-text-light);
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 23px;
    line-height: 31px;
    border-radius: 49px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    max-width: 415px;
}

.hero__btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.hero__visual {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 498px;
    height: 551px;
    z-index: 0;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== 2. FACTORS ===== */
.factors {
    background: #FFFFFF;
    padding: 20px 0 80px;
    margin-top: 60px;
}

.factors__grid {
    position: relative;
    min-height: 379px;
}

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

.factors__item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 1;
}

.factors__item--1 { left: 0; top: 0; }
.factors__item--2 {     right: 50px;
    top: 120px;
 }
.factors__item--3 { left: 98px; top: 250px; }
.factors__item--4 { right: 70px; top: 350px; }

.factors {
    background-image: url(/upload/imgprice/work.png);
    background-size: cover;}

.factors__dot {
    position: relative;
    width: 73px;
    height: 74px;
    flex-shrink: 0;
}

.factors__dot-glow {
    position: absolute;
    inset: 0;
    background: rgba(73, 168, 201, 0.8);
    box-shadow: 0px 1.37px 1.37px rgba(0, 0, 0, 0.25);
    filter: blur(34px);
    border-radius: 50%;
}

.factors__dot-core {
    position: absolute;
    width: 28px;
    height: 28px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(50% 50% at 67.86% 50%, #C0D7DF 0%, #33758C 100%);
    box-shadow: -5px 4px 13.7px rgba(228, 228, 228, 0.25);
    border-radius: 50%;
}

.factors__text {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 20px;
    line-height: 37px;
    color: var(--color-text-dark);
    text-align: center;
    max-width: 614px;
}




/* ===== ПОЧЕМУ СТОИМОСТЬ ОТЛИЧАЕТСЯ ===== */

.pricing-factors {

    padding: 80px 0 120px;
	 background-image: url(/upload/imgprice/worksss.png);
    background-size: cover;
}

.pricing-factors__subtitle {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-light);
    max-width: 488px;
    margin-top: -30px;
    margin-bottom: 80px;
}

.pricing-factors__grid {
    position: relative;
    min-height: 620px;
    width: 100%;
}

/* SVG зигзаг-линия */
.pricing-factors__line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.pricing-factor {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    z-index: 1;
    max-width: 753px;
}

/* Позиции: 1 и 3 слева, 2 и 4 справа (шахматный порядок) */
.pricing-factor--1 { 
    left: 0; 
    top: 0; 
}

.pricing-factor--2 { 
    right: 0; 
    top: 255px; 
    flex-direction: row-reverse;
}

.pricing-factor--3 { 
    left: 0; 
    top: 410px; 
}

.pricing-factor--4 { 
    right: 0; 
    top: 575px; 
    flex-direction: row-reverse;
}

.pricing-factor__dot {
    position: relative;
    width: 73px;
    height: 74px;
    flex-shrink: 0;
}

.pricing-factor__dot-glow {
    position: absolute;
    inset: 0;
    background: rgba(73, 168, 201, 0.8);
    box-shadow: 0px 1.37px 1.37px rgba(0, 0, 0, 0.25);
    filter: blur(34px);
    border-radius: 50%;
}

.pricing-factor__dot-core {
    position: absolute;
    width: 28px;
    height: 28px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(50% 50% at 67.86% 50%, #C0D7DF 0%, #33758C 100%);
    box-shadow: -5px 4px 13.7px rgba(228, 228, 228, 0.25);
    border-radius: 50%;
}

.pricing-factor__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 655px;
}

/* Для правых блоков выравнивание текста */
.pricing-factor--2 .pricing-factor__content,
.pricing-factor--4 .pricing-factor__content {
    align-items: flex-start;
}

.pricing-factor__title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 24px;
    line-height: 37px;
    color: var(--color-text-light);
    margin: 0;
}

.pricing-factor__text {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-light);
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .pricing-factor {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        flex-direction: row !important;
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .pricing-factors__grid {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .pricing-factors__line {
        display: none;
    }
}

@media (max-width: 768px) {
    .pricing-factors {
        padding: 60px 0 80px;
    }
    
    .pricing-factor__title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .pricing-factor__text {
        font-size: 14px;
        line-height: 20px;
    }
}

/* ===== ПОЧЕМУ ВЫБИРАЮТ НАС ===== */
.why-us {
    background: #2F3739;
    padding: 80px 81px 80px 80px;
}

.why-us__grid {
    position: relative;
    width: 100%;
    height: 1020px;
    background: linear-gradient(0deg, rgba(47, 55, 57, 0.4), rgba(47, 55, 57, 0.4)), url('/upload/imgprice/why-us-circuit-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
}

.why-us__card {
    position: absolute;
    box-sizing: border-box;
    padding: 20px 14px;
    background: #2F3739;
    border: 1px solid #C4F0FF;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 308px;
    z-index: 1;
    transition: all 0.3s;
}

.why-us__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 179, 215, 0.3);
}

/* Позиции карточек по макету */
.why-us__card--1 {
    left: 0;
    top: 0;
    height: 295px;
}

.why-us__card--2 {
    left: 632px;
    top: 0;
    height: 295px;
}

.why-us__card--3 {
    left: 316px;
    top: 304px;
    height: 295px;
}

.why-us__card--4 {
    left: 970px;
    top: 304px;
    height: 295px;
}

.why-us__card--5 {
    left: 0;
    top: 714px;
    height: 306px;
}

.why-us__card--6 {
    left: 970px;
    top: 714px;
    height: 306px;
}

.why-us__card-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #C4F0FF;
    margin: 0;
}

.why-us__card-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .why-us__grid {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px;
        background: #2F3739;
    }
    
    .why-us__card {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100%;
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 60px 20px;
    }
    
    .why-us__grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .why-us__card {
        min-height: 200px;
    }
}

/* ===== КАК МЫ РАБОТАЕМ ===== */
.how-we-work {
    position: relative;
    background: #2F3739;
    padding: 80px 0 120px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.how-we-work__visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 500px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.how-we-work__visual-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top right;
}

.how-we-work__inner {
    position: relative;
    z-index: 1;
}

.how-we-work__steps {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 60px;
}

.how-we-work__step {
    display: flex;
    align-items: center;
    gap: 25px;
}

.how-we-work__bar {
    position: relative;
    height: 45px;
    background: linear-gradient(90deg, #49A8C9 0%, #2F3739 100%);
    border-radius: 22px 0 0 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    margin-left: calc(-1 * var(--container-padding));
}

.how-we-work__number {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 30px;
    line-height: 41px;
    color: #FFFFFF;
    white-space: nowrap;
}

.how-we-work__text {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: #FFFFFF;
    white-space: nowrap;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .how-we-work__visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-we-work {
        padding: 60px 0 80px;
    }
    
    .how-we-work__bar {
        margin-left: calc(-1 * 20px);
        height: 38px;
    }
    
    .how-we-work__number {
        font-size: 24px;
        line-height: 32px;
    }
    
    .how-we-work__text {
        font-size: 18px;
        line-height: 26px;
        white-space: normal;
    }
    
    .how-we-work__steps {
        gap: 30px;
    }
}

/* ===== 7. FORM ===== */
.form-section {
    background: #FFFFFF;
    padding: 60px 0;
}

.form-section__inner {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
}

.form-section__card {
    flex: 1;
    max-width: 671px;
    background: #EFF8FE;
    border-radius: 16px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.form-section__title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    color: var(--color-text-dark);
}

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

.form-section__input {
    width: 100%;
    height: 71px;
    padding: 20px 32px;
    background: #FFFFFF;
    border: none;
    border-radius: 100px;
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 25px;
    color: var(--color-text-dark);
    outline: none;
}

.form-section__input::placeholder {
    color: #939B9D;
}

.form-section__btn {
    width: 100%;
    height: 60px;
    background: #4AB3D7;
    border: none;
    border-radius: 49px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 23px;
    line-height: 31px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: background 0.3s;
}

.form-section__btn:hover {
    background: var(--color-accent);
}

.form-section__checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.form-section__checkbox input[type="checkbox"] {
    width: 25px;
    height: 25px;
    border: 1px solid var(--color-text-dark);
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
}

.form-section__checkbox input[type="checkbox"]:checked {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.form-section__checkbox span {
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 15px;
    line-height: 17px;
    color: var(--color-text-dark);
}

.form-section__checkbox a {
    color: var(--color-text-dark);
    text-decoration: underline;
}

.form-section__visual {
    flex: 1;
    max-width: 609px;
    height: 746px;
    position: relative;
}

.form-section__visual-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .hero__visual {
        display: none;
    }
    
    .services__slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        min-height: auto;
    }
    
    .why-us__grid {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 30px 0px;
        background: #2F3739;
    }
    
    .why-us__card {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100%;
        height: auto;
        min-height: 250px;
    }
    
    .factors__item,
    .pricing-factor {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        margin-bottom: 40px;
    }
    
    .factors__grid,
    .pricing-factors__grid {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .factors__line,
    .pricing-factors__line {
        display: none;
    }
    
    .form-section__inner {
        flex-direction: column;
    }
    
    .form-section__visual {
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 768px) {
	html body .how-we-work .how-we-work__steps .how-we-work__step:nth-child(1) .how-we-work__bar{
		width: 60px!important;

	}
	html body .how-we-work .how-we-work__steps .how-we-work__step:nth-child(2) .how-we-work__bar{
		width: 80px!important;

	}
	html body .how-we-work .how-we-work__steps .how-we-work__step:nth-child(3) .how-we-work__bar{
		width: 100px!important;

	}
	html body .how-we-work .how-we-work__steps .how-we-work__step:nth-child(4) .how-we-work__bar{
		width: 130px!important;

	}
	html body .how-we-work .how-we-work__steps .how-we-work__step:nth-child(5) .how-we-work__bar{
		width: 160px!important;

	}
	.services .service-card__btn {
		padding: 8px 20px;
	}
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__btn {
		font-size: 17px;
        padding: 10px 36px;
        text-align: center;
        line-height: normal;
    }
    
    .section-label__text {
        font-size: 24px;
        line-height: 32px;
    }
    
    .why-us__grid {
        grid-template-columns: 1fr;
    }
    
    .how-we-work__text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .how-we-work__number {
        font-size: 24px;
    }
    
    .form-section__card {
        padding: 40px 20px;
    }
    
    .form-section__title {
        font-size: 24px;
    }
}