:root {
    --bg: #0a1018;
    --bg-soft: #111b29;
    --card: rgba(17, 27, 41, 0.8);
    --text: #f4f7fb;
    --text-soft: #c0cee0;
    --accent: #67e3a9;
    --accent-2: #6fa8ff;
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

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

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at 20% 20%, #17263b 0%, var(--bg) 45%, #070b11 100%) !important;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.parallax-layer {
    position: fixed;
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
    transition: transform 0.1s linear;
}

.layer-1 {
    width: 460px;
    height: 460px;
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, #5d7eff 0%, rgba(93, 126, 255, 0.05) 70%);
}

.layer-2 {
    width: 380px;
    height: 380px;
    top: 30%;
    right: -90px;
    background: radial-gradient(circle, #2ccf98 0%, rgba(44, 207, 152, 0.06) 70%);
}

.layer-3 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: 38%;
    background: radial-gradient(circle, #4ab2ff 0%, rgba(74, 178, 255, 0.05) 72%);
}

.page-wrap {
    position: relative;
    z-index: 1;
}

.container {
    /* width: min(1120px, 92%); */
    margin: 0 auto;
}

.hero {
    padding: 90px 0 70px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-bottom: 22px;
    color: #111111;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    max-width: 900px;
    color: #000000;
    font-size: clamp(17px, 2.2vw, 21px);
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    height: auto;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #48c88f);
    color: #072314;
    box-shadow: 0 14px 30px rgba(72, 200, 143, 0.28);
}

.btn-ghost {
    border: 1px solid var(--border);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}

section {
    padding: 44px 0;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-text {
    color: var(--text-soft);
    font-size: 18px;
    max-width: 960px;
}

.cards {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-soft);
    font-size: 16px;
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
    align-items: stretch;
    margin-top: 16px;
}

.glass-panel {
    background: linear-gradient(145deg, rgba(21, 31, 49, 0.88), rgba(11, 17, 27, 0.88));
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 26px;
}

.list {
    list-style: none;
    margin-top: 6px;
}

.list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    color: var(--text-soft);
}

.list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 0 4px rgba(103, 227, 169, 0.13);
}

.features-section {
    position: relative;
}

.features-section::before {
    content: "";
    position: absolute;
    top: 40px;
    right: 8%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(103, 227, 169, 0.2), rgba(111, 168, 255, 0));
    pointer-events: none;
}

.features-heading {
    position: relative;
    max-width: 860px;
    margin-bottom: 30px;
}

.features-heading .badge {
    color: var(--accent);
    background: rgba(103, 227, 169, 0.08);
}

.features-heading .section-title {
    color: #111111;
}

.features-heading .section-text {
    color: #000000;
}

.features-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-card {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(21, 31, 49, 0.94), rgba(8, 14, 23, 0.96));
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.feature-card-content {
    position: relative;
    z-index: 1;
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.feature-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 14px;
    color: #072314;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), #48c88f);
    box-shadow: 0 12px 24px rgba(103, 227, 169, 0.22);
}

.feature-card-number_wide {
    width: auto;
    min-width: 42px;
    padding: 0 10px;
    font-size: 14px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: clamp(21px, 2.1vw, 30px);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-soft);
    font-size: 16px;
}

.feature-card-image {
    position: relative;
    z-index: 1;
    width: 54%;
    margin: 14px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
}

.feature-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 332px;
    object-fit: contain;
    cursor: zoom-in;
}

.feature-card-wide .feature-card-image img {
    height: 100%;
}

.feature-image-popup-lock {
    overflow: hidden;
}

.feature-image-popup {
    position: fixed;
    z-index: 1300;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(0, 0, 0, 0.82);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.feature-image-popup_opened {
    opacity: 1;
    visibility: visible;
}

.feature-image-popup__content {
    max-width: min(1120px, 100%);
    max-height: 90vh;
}

.feature-image-popup__image {
    display: block;
    max-width: 100%;
    max-height: 90vh;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.feature-image-popup__close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    cursor: pointer;
    font-size: 34px;
    line-height: 1;
    transition: background 0.18s ease, transform 0.18s ease;
}

.feature-image-popup__close:hover {
    background: rgba(255, 255, 255, 0.24);
    transform: scale(1.04);
}

.cta {
    margin: 20px 0 70px;
    text-align: center;
    padding: 44px 28px;
    background: linear-gradient(140deg, rgba(21, 35, 53, 0.94), rgba(7, 12, 20, 0.96));
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.cta p {
    color: var(--text-soft);
    margin: 14px auto 28px;
    max-width: 780px;
    font-size: 18px;
}

.cta .mini_text_after_role_ai_chat_system {
    color: var(--text-soft);
    margin: 14px auto 28px;
    max-width: 780px;
}

.mini_text_after_role_ai_chat_system_price {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
}

.cta .mini_text_after_role_ai_chat_system_price {
    max-width: 900px;
}

.price-info-item {
    padding: 26px 22px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.price-info-value,
.price-info-label,
.price-info-note {
    display: block;
}

.price-info-value {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.05;
}

.price-info-label {
    color: var(--text);
    font-size: 18px;
    line-height: 1.35;
}

.price-info-note {
    margin-top: 8px;
    color: var(--text-soft);
    font-size: 14px;
    line-height: 1.4;
}

footer {
    border-top: 1px solid var(--border);
    padding: 18px 0 24px;
    color: #9eb2cb;
    font-size: 14px;
}

@media (max-width: 900px) {
    .split {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card:nth-child(even) {
        flex-direction: column;
        min-height: auto;
    }

    .feature-card-content,
    .feature-card-image {
        width: auto;
    }

    .feature-card-content {
        padding: 26px 26px 10px;
    }

    .feature-card-image img,
    .feature-card-wide .feature-card-image img {
        height: 260px;
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .mini_text_after_role_ai_chat_system_price {
        grid-template-columns: 1fr;
    }

    .feature-card,
    .feature-card-wide {
        min-height: auto;
    }

    .feature-card-image img,
    .feature-card-wide .feature-card-image img {
        height: 210px;
    }

    .feature-image-popup {
        padding: 18px;
    }

    .feature-image-popup__close {
        top: 10px;
        right: 10px;
    }
}

.dp-modal__dialog {
    font-family: "TT Squares", sans-serif;
    padding: 40px;
    font-size: 16px;
    line-height: 1.4;
    color: #000000;
    text-align: left;
    background-color: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 1055px;
    position: relative;
    z-index: 2;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}

.dp-modal__overlay {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    opacity: 0.75;
}

.dp-modal__close-btn {
    height: 24px;
    width: 24px;
    position: absolute;
    color: #000000;
    right: 40px;
    top: 40px;
    border: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: transparent !important;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: color;
}

.dp-modal__close-btn .icon {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    fill: currentColor;
}

.dp-modal-discuss-project .dp-modal__header {
    margin-bottom: 170px;
}

@media (min-width: 1200px) and (max-height: 1149px) {
    .dp-modal-discuss-project .dp-modal__header {
        margin-bottom: 40px;
    }
}

#modal-call-ai-rag-demo .dp-modal__title {
    font-size: 87px;
    line-height: 1;
    font-weight: 400;
    padding-right: 40px;
}

@media (min-width: 1200px) and (max-height: 1149px) {
    .dp-modal-discuss-project .dp-modal__title {
        margin-bottom: 0;
    }
}

.dp-modal__body {
    position: relative;
    padding: 0;
}

.dp-form-modal-discuss-project .dp-form__body {
    margin-bottom: 170px;
}

@media (min-width: 1200px) and (max-height: 1149px) {
    .dp-form-modal-discuss-project .dp-form__body {
        margin-bottom: 40px;
    }
}

.dp-form-checkbox-container {
    margin-bottom: 40px;
}

.dp-form input[type=checkbox] {
    display: none;
}

.dp-form-checkbox-label {
    font-size: 20px;
    line-height: 24px;
    position: relative;
    padding-left: 33px;
    cursor: pointer;
    font-weight: 300;
    margin: 0;
}

.error_row_data {
    color: red;
    margin: 10px;
}

#captcha_container_discuss_project_popup {
    margin-bottom: 0px;
}

.smart-captcha.smart-captcha_invisible {
    height: 0;
}

.smart-captcha {
     min-width: 300px;
     height: 102px;
}

.dp-form-modal-discuss-project .dp-form__submit {
    width: 100%;
}

.dp-btn.dp-btn_lg {
    height: 80px;
    padding: 26px 30px;
    font-size: 24px;
}

.dp-form__body .dp-form-group {
    margin-bottom: 20px;
}

.dp-form-modal-discuss-project .dp-form-control {
    border: 1px solid transparent;
}
.dp-form-modal-discuss-project .dp-form-control {
    background: #EFEFEF;
}
.dp-form-control.dp-form-control_lg {
    height: 80px;
    padding-top: 28px;
    padding-bottom: 28px;
}
.dp-form-control {
    height: 68px;
    border-radius: 16px;
    display: block;
    width: 100%;
    border: none;
    font-size: 20px;
    line-height: 24px;
    padding: 22px 30px;
    font-weight: 400;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    color: #000000;
    background: #ffffff;
    cursor: text;
}

.dp-form-control-label.dp-form-control-label_lg {
    height: 80px;
    padding-top: 28px;
    padding-bottom: 28px;
    line-height: 30px;
    font-size: 0.75em;

}

.dp-form-control-label {
    position: absolute;
    font-size: 20px;
    line-height: 24px;
    padding: 22px 30px;
    left: 0;
    top: 0;
    color: #000000;
    font-weight: 300;
    cursor: text;
    -webkit-transition: padding 0.3s, font-size 0.3s, line-height 0.3s;
    transition: padding 0.3s, font-size 0.3s, line-height 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: padding, font-size, line-height;
}

.dp-btn {
    display: inline-block;
    position: relative;
    padding: 20px 24px;
    min-width: 68px;
    height: 68px;
    line-height: 28px;
    font-family: "TT Squares", sans-serif;
    font-size: 20px;
    font-weight: 400;
    background-color: #000000;
    color: #20d17d;
    border: none;
    cursor: pointer;
    outline: 0;
    text-align: center;
    white-space: nowrap;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none !important;
    -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: background-color, color, border-color;
    border-radius: 16px;
}

.dp-modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    line-height: 100%;
}



.dp-form-checkbox-label:before, .dp-form-checkbox-label:after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    top: 50%;
    margin-top: -10px;
}

.dp-form-checkbox-label:before {
    background: #ffffff;
    border: 2px solid rgba(102, 112, 128, 0.3);
}

.dp-form-checkbox-link {
    font-weight: 400;
    color: #000000;
}

.dp-form-checkbox-label:after {
    opacity: 0;
    background: #000000;
}

.dp-form-group {
    margin-bottom: 20px;
    position: relative;
}

.dp-modal {
    display: none;
    position: fixed;
    z-index: 1200;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    white-space: nowrap;
    text-align: center;
    padding: 20px;
    overflow: auto;
    color: #000000;
    line-height: 1.6;
    font-size: 0;
    -webkit-overflow-scrolling: touch;
}

.fancybox-can-swipe .dp-modal-discuss-project.fancybox-content {
    background: transparent;
    cursor: auto;
}

.dp-modal__close-btn {
    cursor: pointer;
}

input[type=checkbox]:checked + .dp-form-checkbox-label:after {
    opacity: 1;
}


#form_call_ai_demo input[name="personal_data"].error + .dp-form-checkbox-label:before {
    border: 1px solid red;
}

#form_call_ai_demo #captcha-container {
    margin-bottom: 40px;
}

.dp-form-group > input[type=text].dp-form-control.error {
    border-color: red;
}

#form_call_ai_demo input[name="personal_data"].error + .dp-form-checkbox-label:before {
    border: 1px solid red;
}

.dp-form-group > input[type=text].dp-form-control.error {
    border-color: red;
}

.dp-form-group > textarea.dp-form-control.error {
    border-color: red;
}

.dp-form-checkbox-label.error:before {

}

.dp-form-group > input[type=email].dp-form-control.error {
    border-color: red;
}

.error_row_data {
    color: red;
    margin: 10px;
}

.dp-form-modal-discuss-project .dp-form-control {
    border: 1px solid transparent;
}

#modal-call-ai-rag-demo .dp-modal__header {
    margin-bottom: 60px;
}

#modal-call-ai-rag-demo .dp-form__body {
    margin-bottom: 40px;
}

.dp-wrapper {
    padding-top: 10px;
    background: #efefef;
    color: #fff;
}

.mini_text_after_role_ai_chat_system {
    font-size: 12px;
}

.dp-product-callback-section .ai_landing_title_form {
    font-size: 65px;
    color: #111111;
}

.wrap_landing_ai_callback .dp-form-checkbox-label {
    color: #111111;
}

.wrap_landing_ai_callback .dp-form-social__title {
    color: #111111;
}

.wrap_landing_ai_callback {
    margin: 20px 0 70px;
    text-align: center;
    padding: 44px 28px;

    /* background: linear-gradient(140deg, rgba(21, 35, 53, 0.94), rgba(7, 12, 20, 0.96)); */
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.wrap_landing_ai_callback .dp-form-checkbox-container {
    text-align: left;
}


.dp-form-social__list .dp-form-social__item path {
    fill: var(--color-v1);
}

#customization-settings .feature-card .feature-card-image img {
    height: 400px;
    object-fit: cover;
}

#form_callback_portfolio_detail .step-top-txt-2 {
    color: #000;
    font-size: 30px;
}

