#primary section.aizen-hero {
            padding: 0;
        }

        .aizen-lang-dd{
            position: relative;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            margin-bottom: 73px;
            margin-top: 139px;
        }

        .aizen-lang-dd__inner{
            position: relative;
            display: inline-block;
        }

        .aizen-hero__container {
            width: 100%;
        }
        
        .aizen-lang-dd__current {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .aizen-lang-dd__toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            border-radius: 24px;
            min-width: 168px;
            height: 48px;
            padding: 0 16px;
            cursor: pointer;
            background: #FFFFFF33;
            backdrop-filter: blur(9px);
            box-shadow: 0px 4px 32px 0px #06063C29;
            border: 1px solid #F3F5FB;
        }

        .aizen-lang-dd__current-text {
            font-weight: 500;
            font-size: 16px;
            line-height: 130%;
            letter-spacing: 0;
            color: #06063C;
        }

        .aizen-lang-dd__chev {
            transition: transform .2s ease;
        }

        .aizen-lang-dd.is-open .aizen-lang-dd__chev {
            transform: rotate(180deg);
        }

        .aizen-lang-dd__menu{
            position: absolute;
            top: calc(100% + 10px);
            width: 100%;
            left: auto;
            right: 0;
            padding: 24px 0;
            background: #FFFFFF33;
            backdrop-filter: blur(9px);
            border-radius: 24px;
            box-shadow: 0px 4px 32px 0px #06063C29;
            opacity: 0;
            transform: translateY(-6px);
            pointer-events: none;
            transition: opacity .18s ease, transform .18s ease;
            z-index: 50;
            border: 1px solid #F3F5FB;
            box-sizing: border-box;
        }

        .aizen-lang-dd.is-open .aizen-lang-dd__menu{
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .aizen-lang-dd__item{
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 16px;
            text-decoration: none;
        }

        .aizen-lang-dd__item:hover{
            background: rgba(255,255,255,0.65);
            border-radius: 0;
        }

        .aizen-lang-dd__flag img{
            width: 24px;
            height: 24px;
            border-radius: 50%;
            object-fit: cover;
            display: block;
            border: 0.5px solid #0000001A;
        }

        .aizen-lang-dd__label{
            font-weight: 400;
            font-size: 16px;
            line-height: 140%;
            letter-spacing: 0;
            color: var(--grey-600, #4f4f4f);
        }

        .aizen-lang-dd__item.is-active .aizen-lang-dd__label{
            color: #06063C;
        }

        .aizen-lang-dd__check{
            margin-left: auto;
        }

        .voice-bars {
            display: flex;
            gap: 4px;
            justify-content: center;
            align-items: center;
            height: 40px;
            display: none;
        }

        .paused-conversation__tooltip {
            position: fixed;
            left: 40px;
            bottom: 40px;
            background-color: var(--white-color);
            border-radius: 16px;
            display: flex;
            align-items: center;
            padding: 16px;
            z-index: 10;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 150ms ease, opacity 150ms ease;
        }

        .paused-conversation__tooltip.aizen-paused {
            transform: translateY(0);
            opacity: 1;
        }

        .paused-conversation__tooltip-close {
            cursor: pointer;
            border-radius: 4px;
        }

        .paused-conversation__tooltip-close:hover {
            background-color: #E4EBFF;
        }

        .paused-conversation__tooltip svg:first-child {
            margin-right: 8px;
        }

        .paused-conversation__tooltip svg:last-child {
            margin-left: 32px;
        }

        .aizen-hero__tooltip-container {
            position: absolute;
            bottom: -52px;
            box-sizing: border-box;
            padding: 8px;
            background-color: #30377F;
            border-radius: 8px;
            font-size: 14px;
            line-height: 1.5;
            font-weight: 400;
            pointer-events: none;
            display: block;
            opacity: 0;
            transform: translateY(-10px);
            transition: transform 150ms ease, opacity 150ms ease;
        }


        .aizen-hero__tooltip-container svg {
            position: absolute;
            top: -7px;
            left: 50%;
            transform: translateX(-50%);
        }

        .aizen-hero__btn.aizen__btn:hover .aizen-hero__btn-tooltip,
        .aizen-hero__btn-pouse.aizen__btn:hover .aizen-hero__btn-pouse-tooltip {
            opacity: 1;
            transform: translateY(0);
        }

        .aizen-hero__btn-pouse-tooltip {
            bottom: -52px;
            white-space: nowrap;
        }
        .aizen-hero__btn-pouse.aizen__btn {
            background-color: #FEFEFE;
            width: 0;
            height: 64px;
            box-sizing: border-box;
            transform: translateX(-20px);
            opacity: 0;
            z-index: -1;
            box-shadow: inset 0 2px 16px 0 rgba(22, 41, 214, 0.04), inset 0 -2px 16px 0 rgba(22, 41, 214, 0.16);
            border: 1px solid var(--primary-color);
            transition: transform 0.3s ease, width 0.3s ease;
        }

        .aizen-hero__btn-wrapper.listening .aizen-hero__btn-pouse.aizen__btn {
            width: 64px;
            opacity: 1;
            transform: translateX(0);
            transition: opacity 0.1s ease, transform 0.5s ease, width 150ms ease;
            z-index: 10;
        }

        .aizen-hero__btn-pouse.aizen__btn.aizen-paused {
            background-color: #06063C;
            border-color: #06063C;
        }

        .aizen-hero__btn-pouse.aizen__btn.aizen-paused > svg:first-of-type {
            fill: #FEFEFE;
        }

        .aizen-hero__btn-pouse.aizen__btn.aizen-paused > svg path:first-of-type {
            stroke: #FEFEFE;
        }

        .aizen__btn.aizen-paused .voice-bars {
            opacity: 0;
        }

        .aizen-hero__btn.aizen__btn.listening.showing-bars.aizen-loading .voice-bars{
            opacity: 0;
        }

        .aizen-hero__btn-pouse.aizen__btn:hover::before {
            border-color: #06063C;
        }

        .aizen-hero__btn-pouse.aizen__btn.aizen-paused::before {
            border-color: #06063C;
        }

        .aizen-hero__btn-pouse.aizen__btn:hover > svg path:first-of-type {
            stroke: #FEFEFE;
        }

        .aizen-hero__btn-pouse.aizen__btn:hover {
            border-color: #06063C;
        }

        .aizen-hero__btn-wrapper {
            display: flex;
            gap: 18px;
            align-items: center;
            position: relative;
        }

        .aizen__btn .btn-text {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .aizen__btn .btn-text::after {
            content: "";
            width: 24px;
            height: 24px;
            background: url('/wp-content/uploads/2025/12/mic.svg');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .aizen__btn .voice-bars {
            display: none;
        }

        .aizen__btn.showing-bars .btn-text {
            display: none;
        }

        .aizen__btn.showing-bars .voice-bars {
            display: flex;
        }

        .voice-bars span {
            max-height: 48px;
            width: 4px;
            height: 4px;
            background-color: #E0E0E0;
            border-radius: 4px;
            display: block;
            transition: height 0.1s ease-out, transform 0.1s ease-out;
            transform-origin: center center;

        }

        .listening .voice-bars span {
            border-radius: 4px;
            height: calc(4px + (var(--scale, 0) * 24px));
            background: linear-gradient(to right, #E2E7FD 0%, #6549E2 100%);;
        }

        .aizen-lang__pill:first-child {
            margin-left: 0;
            border-left: 1px solid #EEF3FF;
            border-top-left-radius: 40px;
            border-bottom-left-radius: 40px;
        }

        .aizen-lang__pill:last-child {
            border-top-right-radius: 40px;
            border-bottom-right-radius: 40px;
        }


        .aizen-lang {
            display: inline-flex;
            padding: 4px;
            justify-content: center;
            align-items: center;
            border-radius: 40px;
            border: 1px solid #D0DBFF;
            background: #FEFEFE;
            position: relative;
            margin-bottom: 50px;
            overflow: hidden;
        }


        .aizen-lang__pill {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            padding: 12px 16px;
            background: #F3F5FB;
            border: 1px solid #EEF3FF;
            box-shadow: 0 0 4px 0 #D0DBFF inset;
            text-decoration: none;
            box-sizing: border-box;
            transition: all 0.35s ease;
            margin-left: -24px;
            z-index: var(--pill-z, 5);
            border-left: none;
            border-radius: 40px;
        }

        .aizen-lang__pill--before {
            justify-content: flex-start;
            border-radius: 40px 0px 0px 40px;
        }

        .aizen-lang__pill--after {
            justify-content: flex-end;
            border-radius: 0px 40px 40px 0px;
        }


        .aizen-lang__pill span {
            color: #0D1118;
            font-size: 16px;
            font-weight: 400;
            line-height: 150%;
        }

        .aizen-lang__pill .aizen-lang__full {
            display: none;
        }

        .aizen-lang__pill .aizen-lang__short {
            display: inline;
        }

        .aizen-lang__pill.is-active {
            background: #06063C;
            box-shadow: 0 0 6px 0 #BEC1F6 inset;
            color: #FEFEFE;
            width: 100px;
            border-radius: 40px;
        }

        .aizen-lang__pill.is-active span {
            color: #FEFEFE;
        }

        .aizen-lang__pill.is-active .aizen-lang__full {
            display: inline;
        }

        .aizen-lang__pill.is-active .aizen-lang__short {
            display: none;
        }

        .aizen-lang__pill:not(.is-active):hover {
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(145, 167, 255, 0.4);
        }
        .aizen-hero {
            position: relative;
            background: url('/wp-content/uploads/2025/10/gradient-scaled.webp') no-repeat center/cover;
            display: flex;
            min-height: 810px;
            justify-content: center;
            text-align: center;
            overflow: hidden;
            z-index: 0;
        }

        .aizen-hero::before {
            content: "";
            position: absolute;
            top: 0;
            right: 300px;
            width: 100%;
            height: 100%;
            background: url('/wp-content/uploads/2025/10/left_hero_.svg') no-repeat left center;
            background-size: cover;
            pointer-events: none;
            z-index: -1;

        }

        .aizen-hero::after {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 1100px;
            height: 100%;
            background: url('/wp-content/uploads/2025/10/right_hero_.svg') no-repeat right center;
            background-size: cover;
            pointer-events: none;
            z-index: -1;
        }

        @media screen and (max-width: 1600px) {
            .aizen-hero::after {
                right: -300px;
            }
        }

        .aizen-hero__wrapper {
            position: relative;
            z-index: 1;
        }

        .aizen-hero__wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .aizen-hero__title {
            color: #06063C;
            max-width: 640px;
            text-wrap: balance;
        }

        .aizen-hero__subtitle {
            color: var(--grey-600, #4f4f4f);
            margin-top: 24px;
        }

        .aizen__btn {
            margin-top: 40px;
            position: relative;
            width: 230px;
            height: 64px;
            background: #1629D6;
            border: none;
            color: white;
            cursor: pointer;
            border-radius: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 500;
            line-height: 130%;
            letter-spacing: 0;
            transition: transform 0.2s ease, background 0.3s ease;
        }

        .aizen__btn::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 1px solid #1629D6;
            border-radius: 40px;
            pointer-events: none;
        }

        .aizen__btn:hover::before {
            border-color: #06063C;
        }

        .aizen__btn:hover {
            background: #06063C;
        }

        #talkToAizen.listening {
            background: linear-gradient(270deg, #06063C, #1629D6, #06063C);
            background-size: 600% 600%;
            animation: gradientShift 5s ease infinite;
            color: white;
            border: none;
            cursor: pointer;
        }

        #talkToAizen.listening.aizen-paused {
            background: var(--primary-color);
        }

        #talkToAizen.listening.aizen-paused:hover {
            background: #06063C;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .aizen__btn.listening.stopping {
            background: #06063C !important;
        }

        .aizen__btn::before.listening.stopping {
            border: 1px solid #06063C !important;
        }

        @media screen and (max-width: 900px) {

            .aizen-lang-dd {
                margin-top: unset;
                margin-bottom: 55px;
            }

            .aizen-hero::after {
                background: url('/wp-content/uploads/2025/10/hero_mobile_right.svg') no-repeat right bottom;
                width: 300px;
                right: 0;
                z-index: -1;
            }

            .aizen-hero::before {
                background: url('/wp-content/uploads/2025/10/hero_mobile_left.svg') no-repeat left center;
                width: 300px;
                left: 0;
            }

            .aizen-hero__wrapper {
                padding-top: 144px;
                padding-bottom: 141px;
            }

            .aizen-hero {
                height: unset;
            }
        }

        @media screen and (max-width: 768px) {
            .aizen__btn {
                width: 200px;
                font-size: 16px;
            }

            .aizen-hero__tooltip-container {
                display: none;
            }
        }

        .lang-short {
            display: none;
        }
        @media screen and (max-width: 500px) {
            .aizen-hero__subtitle br {
                display: none;
            }

            .aizen-lang-dd__toggle {
                min-width: 120px;
            }

            .lang-full {
                display: none;
            }

            .lang-short {
                display: inline;
                font-weight: 600;
                letter-spacing: .02em;
            }
        }

        .confirme-details-form {
            z-index: 200;
            max-width: 580px;
            width: 100%;
            padding: 40px;
            background: linear-gradient(to right,rgba(28, 27, 116, 1),  rgba(6, 6, 60, 1) );
            border: 1px solid #30377F;
            border-radius: 16px;
            position: fixed;
            right: 40px;
            bottom: 40px;
            box-sizing: border-box;
            display: none;
        }

        .confirme-details-form.show {
            display: block;
        }

        .confirme-details-form__title {
            color: var(--white-color);
            font-weight: 500;
            font-size: 24px;
            line-height: 1.3;
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .confirme-details-form__icon {
            background-color: #373CC2;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            border-radius: 50%;
            position: relative;
        }

        .confirme-details-form__icon::after {
            content: "";
            position: absolute;
            width: 96px;
            height: 96px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .confirme-details-form__icon::before {
            content: "";
            position: absolute;
            width: 128px;
            height: 128px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .confirme-details-form .form-field + .form-field {
            margin-top: 16px;
        }

        .confirme-details-form .form-field input {
            box-sizing: border-box;
            background-color: transparent;
            border: 0;
            border-bottom: 1px solid #CFCFCF;
            border-radius: 0 ;
            padding: 5px 10px 11px 10px;
            width: 100%;
            color: var(--white-color);
        }

        .confirme-details-form .form-field input:-webkit-autofill,
        .confirme-details-form .form-field input:-webkit-autofill:hover,
        .confirme-details-form .form-field input:-webkit-autofill:focus,
        .confirme-details-form .form-field input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 30px transparent inset !important;
            -webkit-text-fill-color: var(--white-color) !important;
            background-color: transparent !important;
            transition: background-color 5000s ease-in-out 0s;
        }

        .confirme-details-form .form-field input:-moz-autofill {
            background-color: transparent !important;
            color: var(--white-color) !important;
        }

        .confirme-details-form .required {
            /* color: #e74c3c; */
        }

        .confirme-details-form input[type="text"]:focus,
        .confirme-details-form input[type="email"]:focus,
        .confirme-details-form input[type="tel"]:focus {
            outline: none;
        }

        .confirme-details-form input[type="text"]:required:invalid,
        .confirme-details-form input[type="email"]:required:invalid {
            /* border-color: #e74c3c; */
        }

        .confirme-details-form .form-field input.error {
            border-bottom: 1px solid #e74c3c;
        }

        .confirme-details-form .form-field input.error:focus {
            border-bottom: 1px solid #e74c3c;
        }

        .confirme-details-form .confirm-btn {
            margin-top: 24px;
        }

        .confirme-details-form .confirm-btn:active {
            background-color: #FEFEFE;
        }

        .confirme-details-form .close-btn {
            background: transparent;
            display: flex;
            border: 0;
            position: absolute;
            top: 16px;
            right: 16px;
        }



        @media screen and (max-width: 768px) {
            .confirme-details-form {
                max-width: 300px;
                padding: 24px;
                top: 124px;
                bottom: unset;
                right: unset;
                left: unset;
            }

            .confirme-details-form__title {
                font-size: 20px;
                line-height: 1.4;
            }

            .confirm-btn {
                width: 100%;
            }
            .confirm-btn.standard__btn:hover svg  {
                opacity: 0;
                transform: none;
                display: none;
            }
        }

        .confirme-details-form {
            z-index: 200;
            max-width: 580px;
            width: 100%;
            padding: 40px;
            background: linear-gradient(to right,rgba(28, 27, 116, 1),  rgba(6, 6, 60, 1) );
            border: 1px solid #30377F;
            border-radius: 16px;
            position: fixed;
            right: 40px;
            bottom: 40px;
            box-sizing: border-box;
            display: none;
        }
        
        .confirme-details-form.show {
            display: block;
        }

        .confirme-details-form__title {
            color: var(--white-color);
            font-weight: 500;
            font-size: 24px;
            line-height: 1.3;
            margin-top: 32px;
            margin-bottom: 16px;
        }

        .confirme-details-form__icon {
            background-color: #373CC2;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            border-radius: 50%;
            position: relative;
        }

        .confirme-details-form__icon::after {
            content: "";
            position: absolute;
            width: 96px;
            height: 96px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .confirme-details-form__icon::before {
            content: "";
            position: absolute;
            width: 128px;
            height: 128px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .confirme-details-form .form-field + .form-field {
            margin-top: 16px;
        }

        .confirme-details-form .form-field input {
            box-sizing: border-box;
            background-color: transparent;
            border: 0;
            border-bottom: 1px solid #CFCFCF;
            border-radius: 0 ;
            padding: 5px 10px 11px 10px;
            width: 100%;
            color: var(--white-color);
        }

        .confirme-details-form .form-field input:-webkit-autofill,
        .confirme-details-form .form-field input:-webkit-autofill:hover,
        .confirme-details-form .form-field input:-webkit-autofill:focus,
        .confirme-details-form .form-field input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 30px transparent inset !important;
            -webkit-text-fill-color: var(--white-color) !important;
            background-color: transparent !important;
            transition: background-color 5000s ease-in-out 0s;
        }

        .confirme-details-form .form-field input:-moz-autofill {
            background-color: transparent !important;
            color: var(--white-color) !important;
        }

        .confirme-details-form .required {
            /* color: #e74c3c; */
        }

        .confirme-details-form input[type="text"]:focus,
        .confirme-details-form input[type="email"]:focus,
        .confirme-details-form input[type="tel"]:focus {
            outline: none;
        }

        .confirme-details-form input[type="text"]:required:invalid,
        .confirme-details-form input[type="email"]:required:invalid {
            /* border-color: #e74c3c; */
        }
        
        .confirme-details-form .form-field input.error {
            border-bottom: 1px solid #e74c3c;
        }
        
        .confirme-details-form .form-field input.error:focus {
            border-bottom: 1px solid #e74c3c;
        }

        .confirme-details-form .confirm-btn {
           margin-top: 24px;
        }

        .confirme-details-form .confirm-btn:active {
            background-color: #FEFEFE;
        }

        .confirme-details-form .close-btn {
            background: transparent;
            display: flex;
            border: 0;
            position: absolute;
            top: 16px;
            right: 16px;
        }

    

        @media screen and (max-width: 768px) {
            .confirme-details-form {
                max-width: 300px;
                padding: 24px;
                top: 124px;
                bottom: unset;
                right: unset;
                left: unset;
            }

            .confirme-details-form__title {
                font-size: 20px;
                line-height: 1.4;
            }

            .confirm-btn {
                width: 100%;
            }
            .confirm-btn.standard__btn:hover svg  {
                opacity: 0;
                transform: none;
                display: none;
            }
        }
