body {
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
}

.container {
    width: 100%;
    max-width: 1920px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    margin: 0 auto;
}

@media (max-width: 1440px) {
    .container {
        max-width: 1440px;
    }
}

@media (max-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

.tw .header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    box-sizing: border-box;
    background: var(--color-white);
    border-bottom: 0.5px solid rgba(4, 27, 78, 0.08);
}

.tw .footer {
    padding: 60px 0;
    background: var(--color-white);
}

.tw .header__inner {
    height: 85px;
    display: flex;
    align-items: center;
    gap: 32px;
    min-width: 0;
}

.tw .brand {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    text-decoration: none;
}

.tw .brand__logo {
    width: 96px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.tw .brand__divider {
    width: 2px;
    height: 40px;
    background-color: #ddd;
}

.tw .brand__tagline {
    width: 117px;
    font-weight: 800;
    font-size: 10px;
    line-height: 1.1;
    color: var(--color-text);
}

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

.tw .nav__link {
    font-weight: 600;
    font-size: 20px;
    color: var(--color-primary);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 150ms ease;
}

.tw .nav__link:hover {
    opacity: 0.85;
}

.tw .header__right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tw .header__phone {
    font-weight: 600;
    font-size: 20px;
    color: var(--color-primary);
    white-space: nowrap;
    text-decoration: none;
}

.tw .header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tw .btn {
    height: 45px;
    padding: 0 18px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 150ms ease;
}

.tw .btn--primary {
    background: var(--color-primary);
    color: #fff;
}

.tw .btn--primary:hover {
    filter: brightness(1.2);
}

.tw .btn--secondary {
    background: #ebedff;
    color: var(--color-text);
}

.tw .btn--secondary:hover {
    background: #dce0ff;
}

.tw .hero {
    padding-top: 20px;
    min-height: 0;
}

.tw .hero.container {
    max-width: 1920px;
    padding-left: 0;
    padding-right: 0;
    width: min(1920px, calc(100% - (var(--project-it-header-gutter, var(--container-padding)) * 2)));
}

.tw .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 0;
    align-items: stretch;
}

.hero__card {
    min-height: 600px;
    border-radius: 20px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.hero__card--content {
    background: linear-gradient(57.7516deg, #041b4e 0%, #093eb4 102.39%);
    padding: 80px 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__title {
    font-size: clamp(40px, 4.1vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0.9;
}

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

.tw .btn--hero {
    height: 52px;
    padding: 0 32px;
    font-size: 16px;
}

.tw .btn--hero-fill {
    background: #fff;
    color: var(--color-primary);
}

.tw .btn--hero-outline {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #fff;
}

.tw .btn--hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.section {
    padding: 90px 0;
}

.section__head {
    margin-bottom: 50px;
}

.section__title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 16px;
    display: block;
}

.section__lead {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    max-width: 800px;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid--audience {
    grid-template-columns: repeat(4, 1fr);
}

.audience-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-card__icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.audience-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-text);
}

.audience-card__desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.5;
}

.grid--capabilities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
}

.capability__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.capability:hover .capability__img {
    transform: scale(1.05);
}

.capability__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.capability__content {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    color: #fff;
}

.capability__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.capability__text {
    font-size: 14px;
    opacity: 0.9;
}

.price-table-scroll {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price-table th,
.price-table td {
    padding: 24px 30px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

.price-table td {
    color: var(--color-text);
    font-size: 16px;
}

.price-table td:last-child {
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.consultation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.consultation__card {
    border-radius: 20px;
    overflow: hidden;
}

.consultation__card--left {
    background: linear-gradient(135deg, #041b4e 0%, #093eb4 100%);
    padding: 60px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultation__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.consultation__desc {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.9;
}

.consultation__form-wrapper {
    background: var(--color-white);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 0 16px;
    background: var(--color-input);
    font-size: 16px;
}

.form-input:focus {
    border-color: var(--color-primary);
    outline: none;
}

.consultation .field__phone {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: var(--color-input);
    display: grid;
    grid-template-columns: 32px 46px 1fr;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}

.consultation .field__phone:focus-within {
    border-color: var(--color-primary);
}

.consultation .field__input--phone {
    height: 50px;
    font-size: 16px;
    color: var(--color-text);
}

.tw .consultation .field__phone .field__input--phone {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.tw .consultation .field__phone .field__input {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    outline: none !important;
}

.tw .consultation .field__phone .field__input--phone:focus {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.grid--process {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.process-step {
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.process-step__number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(4, 27, 78, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.process-step__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.process-step__text {
    color: var(--color-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item__header {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-primary);
}

.faq-item__header::-webkit-details-marker {
    display: none;
}

.faq-item__header {
    list-style: none;
}

.faq-item__icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item__icon {
    font-size: 24px;
}

.faq-item:not([open]) .faq-item__icon--open {
    display: none;
}

.faq-item[open] .faq-item__icon--closed {
    display: none;
}

.faq-item__content {
    padding: 0 24px 24px;
    color: var(--color-muted);
    line-height: 1.6;
}

.tw .footer__top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
}

.tw .footer__col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.tw .footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tw .footer__links li {
    margin-bottom: 12px;
}

.tw .footer__links a {
    color: var(--color-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.tw .footer__links a:hover {
    color: var(--color-primary);
}

.tw .footer__bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #888;
}

@media (max-width: 1024px) {
    .tw .hero__inner {
        grid-template-columns: 1fr;
    }

    .grid--audience,
    .grid--capabilities,
    .grid--process {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .tw .footer__top {
        grid-template-columns: repeat(2, 1fr);
    }

    .tw .header__phone,
    .tw .nav {
        display: none;
    }

    .tw .header__actions {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    main.tw {
        padding-left: var(--project-it-header-gutter, var(--container-padding));
        padding-right: var(--project-it-header-gutter, var(--container-padding));
    }

    .tw .hero.container {
        max-width: none;
        width: 100%;
    }

    main.tw .container {
        padding-left: 0;
        padding-right: 0;
    }

    .tw .hero__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero__card {
        min-height: auto;
        height: auto;
    }

    .hero__card--content {
        padding: 40px 24px;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .tw .btn--hero {
        width: 100%;
    }

    .hero__card--image {
        display: none;
    }

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

    .hero__title {
        font-size: 32px;
    }

    .section__lead {
        font-size: 24px;
    }

    .tw .footer__top {
        grid-template-columns: 1fr;
    }
}
