/**
 * Autodealer Page Styles - Isolated Scope
 * ========================================
 * This stylesheet is scoped to .autodealer-isolated-scope to prevent
 * style conflicts with header and footer elements
 */

.autodealer-isolated-scope {
    /* Isolate content from header and footer */
    overflow-x: hidden;
    display: block;
    width: 100%;
}

/**
 * CSS Reset for Isolated Scope
 * Applies box-sizing and font settings only to elements within autodealer scope
 */
.autodealer-isolated-scope,
.autodealer-isolated-scope *,
.autodealer-isolated-scope *::before,
.autodealer-isolated-scope *::after {
    font-family: "Inter", sans-serif !important;
    box-sizing: border-box;
}

/**
 * Reset margins and padding for common elements
 * These styles only apply to autodealer page content, not header/footer
 */
.autodealer-isolated-scope h2,
.autodealer-isolated-scope h3,
.autodealer-isolated-scope p {
    margin: 0;
    padding: 0;
    line-height: normal;
}

/**
 * Ensure autodealer scope doesn't inherit unwanted styles from body/wrapper
 */
.autodealer-isolated-scope {
    /* Prevent inheritance of global link styles */
    color: inherit;
}

.autodealer-isolated-scope a {
    /* Define link styles specific to autodealer page */
    color: inherit;
}

.autodealer-isolated-scope .btn-primary {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;

    font-weight: 300;
    font-size: 20px;
    letter-spacing: 1.8px;
    text-decoration: none;
    text-align: center;
    padding: 0 30px;

    height: 80px;
    min-width: 250px;
    max-width: 260px;
    line-height: 110%;

    background-color: #0c76f0;
    color: #ffffff;
    border-radius: 40px;
    border: 0;
    outline: none;

    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}


.autodealer-isolated-scope .btn-primary:hover {
    box-shadow: 0 0 20px 0 #777777;
}

.autodealer-isolated-scope .btn-cyan {
    background: #3bcbf6;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 40px;
    display: inline-block;
    transition: all 0.3s ease;
    outline: none;
    border: 0;
    cursor: pointer;
}

.autodealer-isolated-scope .btn-cyan:hover {
    box-shadow: 0 8px 20px rgba(59, 203, 246, 0.4);
    transform: translateY(-2px);
}


.autodealer-isolated-scope .hero-autodealer-section {
    display: flex;
    flex-direction: row;
    margin: 50px auto 100px;

    max-width: 1168px;
    width: 100%;
}


.autodealer-isolated-scope .hero-autodealer-content {
	flex: 1 1 641px;
	display: flex;
	width: 100%;
	padding-top: 34px;
	flex-direction: column;
}

.autodealer-isolated-scope .hero-title {
    font-size: 40px;
    font-weight: 200;
    color: #555;
    line-height: 1.3;
    letter-spacing: -0.4px;
}

.autodealer-isolated-scope .hero-title .highlight {
    display: block;
    font-size: 40px;
    font-weight: 800;
    color: #0d6efd;
    margin-top: 5px;
}

.autodealer-isolated-scope .divider {
    width: 140px;
    height: 4px;
    background: #D3D3D3;
    border: none;
}

.autodealer-isolated-scope .divider.hero {
    margin-top: 22px;
    margin-bottom: 30px;
}

.autodealer-isolated-scope .divider.blue {
    margin: 0;
    background-color: #48dbfb;
    width: 90px;
    height: 2px;
}

.autodealer-isolated-scope .divider.orange {
    margin: 0;
    background-color: #eec64f;
    width: 90px;
    height: 2px;
}

.autodealer-isolated-scope .divider.small {
    margin: 0;
    background-color: #1669DA;
    width: 42px;
    height: 2px;
}

.autodealer-isolated-scope .hero-description {
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1.6px;
    color: #4d4d4d;
    line-height: 30px;
}

.autodealer-isolated-scope .hero-button-wrapper {
    display: flex;
    align-self: flex-end;
    margin-top: 80px;
    margin-right: 118px;
}

.autodealer-isolated-scope .hero-image {
    display: flex;
    flex: 0 1 529px;
    max-width: 529px;
    width: 100%;
    height: 100%;
    overflow: visible;
    justify-content: flex-start;
    position: relative;

}

.autodealer-isolated-scope .hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.autodealer-isolated-scope .why-section {
    display: flex;
    flex-direction: column;
    max-width: 1362px;
    width: 100%;
    margin: 0 auto;
    padding: 0 28px;
}

.autodealer-isolated-scope .why-section-divider {
    display: none;
    width: 100%;
    max-width: 1228px;
    height: 1px;
    margin: 30px auto 0;
    background: linear-gradient(270deg, rgba(102, 102, 102, 0) 0%, rgba(102, 102, 102, 0.5) 50.9%, rgba(102, 102, 102, 0) 100%);
}

.autodealer-isolated-scope .section-title {
	font-size: 36px;
	font-weight: 200;
	color: #414141;
	text-align: center;
	letter-spacing: 0;
	width: calc(100% + 200px);
	margin-left: -100px;
	margin-right: -100px;
}

.autodealer-isolated-scope .section-title span {
    font-weight: 800;
    color: #414141;
}

.autodealer-isolated-scope .why-grid {
    margin-top: 53px;
    display: grid;
    align-items: flex-start;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 210px 336px;

    background-repeat: no-repeat;
    background-position: center;

    margin-bottom: 63px;
}

.autodealer-isolated-scope .why-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 23px 0 35px 23px;
    gap: 16px;
    border-radius: 24px;
    width: 100%;
    max-width: 485px;
}

.autodealer-isolated-scope .why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background: linear-gradient(124deg, rgba(217, 217, 217, 0.20) -17.88%, #B9B9B9 98.07%);

    filter: blur(20px);

    border-radius: 24px;

    transform: scale(0.95) translateY(10px);

    pointer-events: none;
}

.autodealer-isolated-scope .why-card.blue {
    background: linear-gradient(135deg, #1b80ff 0%, #0e6cff 100%);
}

.autodealer-isolated-scope .why-card.blue h3,
.autodealer-isolated-scope .why-card.blue p {
    color: #ffffff;
}

.autodealer-isolated-scope .why-card.white {
    background: #ffffff;
}

.autodealer-isolated-scope .why-card.white h3 {
    color: #1669da;
}

.autodealer-isolated-scope .why-card.white p {
    color: #000000;
}

.autodealer-isolated-scope .why-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.64px;
    max-width: 80%;
}

.autodealer-isolated-scope .why-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    letter-spacing: 0.7px;
    color: #2e2e2e;
}

.autodealer-isolated-scope .why-illustration {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -30%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    z-index: -2;
}

.autodealer-isolated-scope .why-illustration img {
    width: 100%;
    max-width: 1050px;
    height: auto;
    display: block;
}

.autodealer-isolated-scope .why-stats {
    margin-top: 85px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    text-align: center;
    color: #1c1c1c;
}

.autodealer-isolated-scope .why-stats > div {
    position: relative;
}

.autodealer-isolated-scope .why-stats > div:not(:last-child)::after {
    content: '';
    position: absolute;

    right: -10px;

    top: 50%;
    transform: translateY(-50%);

    width: 1px;
    height: 185px;
    background: linear-gradient(180deg, #FFF 0%, #C7C7C7 47.5%, #FFF 100%);
}

.autodealer-isolated-scope .stat-value {
    font-size: 64px;
    font-weight: 800;
    color: #0f65d9;
}

.autodealer-isolated-scope .stat-label {
    display: flex;
    justify-content: center;
    max-width: 50%;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.8px;
    color: #646464;
}

.autodealer-isolated-scope .services-section {
    margin: 87px auto 0px;
    max-width: 1250px;
}

.autodealer-isolated-scope .services-title {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: #1c1c1c;
    margin-bottom: 60px;
}

.autodealer-isolated-scope .services-title span {
    font-weight: 700;
}

.autodealer-isolated-scope .services-grid {
    margin-top: 109px;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 109px 100px;
}

.autodealer-isolated-scope .service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: start;
    justify-content: space-between;
}

.autodealer-isolated-scope .service-card img {
    width: 64px;
    height: auto;
    display: block;
}

.autodealer-isolated-scope .service-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.autodealer-isolated-scope .service-title {
    line-height: normal;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #595959;
    text-decoration: none;
}

.autodealer-isolated-scope .service-title:hover {
    color: #1669da
}

.autodealer-isolated-scope .service-desc {
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 1.2px;
    color: #646464;
}

.autodealer-isolated-scope .service-link {
    font-size: 14px;
    font-weight: 600;
    color: #1669da;
    text-decoration: none;
    letter-spacing: 0.7px;
}

.autodealer-isolated-scope .service-link:hover {
    text-decoration: underline;
}

.autodealer-isolated-scope .service-arrow {
    height: 10px !important;
    width: auto !important;
}

.autodealer-isolated-scope .service-link-wrapper {
    margin-top: 29px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.autodealer-isolated-scope .service-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}

.autodealer-isolated-scope .clients-section {
    margin-top: 78px;
    margin-bottom: 76px;
}

.autodealer-isolated-scope .clients-container {
    margin: 61px auto 0;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.autodealer-isolated-scope .clients-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.autodealer-isolated-scope .clients-logos {
    display: flex;
    align-items: center;
    gap: 76px;
    padding-right: 76px;
}

.autodealer-isolated-scope .client-logo {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    justify-content: center;
}

.autodealer-isolated-scope .client-logo img {
    max-width: 100%;
    height: auto;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%);
    }
}

.autodealer-isolated-scope .form-section {
    background: linear-gradient(90deg, #2c7bff 0%, #25c0ff 55%, #3cf3e1 100%);
}

body .autodealer-isolated-scope .form-button {
    width: 178px;
    height: 57px;
    padding: 0;
    flex-shrink: 0;

    color: #414141;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    background-color: #fff;

    border: none;
    outline: none;

    border-radius: 40px;
    transition: all 0.3s ease;
}

body .autodealer-isolated-scope .form-button:hover {
    box-shadow: 0 0 20px 0 #777777;
}

.autodealer-isolated-scope .form-container {
    display: flex;
    flex-direction: column;
    max-width: 1106px;
    margin: 0 auto;
    padding: 27px 75px 71px 0;
}


.autodealer-isolated-scope .form-container h2 {
    width: 706px;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.autodealer-isolated-scope .form-title-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.autodealer-isolated-scope .form-inner-icon-wrapper {
    width: 101px;
    contain: size;
    overflow: visible;
    margin-top: -15px;
}

.autodealer-isolated-scope .form-body {
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
}

.autodealer-isolated-scope .form-left {
    display: flex;
    align-items: center;
    margin-right: 114px;
}

.autodealer-isolated-scope .form-left .form-input {
    margin-right: 70px;
}

.autodealer-isolated-scope .form-left :last-child {
    margin-right: 0;
}

.autodealer-isolated-scope .form-input {
    max-width: 200px;
    width: 100%;
    min-width: 100px;
    flex-shrink: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    padding: 12px 0;
    transition: border-color 0.2s ease;
}

.autodealer-isolated-scope .form-input::placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.autodealer-isolated-scope .form-input:focus {
    outline: none;
    border-color: #ffffff;
}

.autodealer-isolated-scope .form-submit {
    border: none;
    background: #ffffff;
    color: #414141;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 30px;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 15px 30px rgba(11, 62, 93, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.autodealer-isolated-scope .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(11, 62, 93, 0.3);
}

.autodealer-isolated-scope .form-submit:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.2);
    outline-offset: 4px;
}

/* ==================
 * Contact Form 7 Styles (form-section1.php)
 * Adapted to match form-section.php styling
 * ================== */

.autodealer-isolated-scope .wpcf7-form {
    width: 100%;
}

.autodealer-isolated-scope .form-body.d-flex.justify-between.align-end {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
    gap: 0;
}

.autodealer-isolated-scope .form-left.d-flex {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 114px;
}

/* Contact Form 7 field wrappers */
.autodealer-isolated-scope .form-row-field {
    display: flex;
    margin-right: 70px;
}

.autodealer-isolated-scope .form-row-field:last-child {
    margin-right: 0;
}

/* Contact Form 7 input fields - match form-input styles */
.autodealer-isolated-scope .wpcf7-form-control.wpcf7-text,
.autodealer-isolated-scope .wpcf7-form-control.wpcf7-tel {
    max-width: 200px;
    width: 100%;
    min-width: 100px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    padding: 12px 0;
    transition: border-color 0.2s ease;
    box-shadow: none;
}

.autodealer-isolated-scope .wpcf7-form-control.wpcf7-text::placeholder,
.autodealer-isolated-scope .wpcf7-form-control.wpcf7-tel::placeholder {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.autodealer-isolated-scope .wpcf7-form-control.wpcf7-text:focus,
.autodealer-isolated-scope .wpcf7-form-control.wpcf7-tel:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: none;
}

/* Contact Form 7 submit button - match form-button styles */
.autodealer-isolated-scope .form-row-field-send {
    position: relative;
}

.autodealer-isolated-scope .wpcf7-form-control.wpcf7-submit.form-send {
    width: 178px;
    height: 57px;
    padding: 0;
    flex-shrink: 0;
    color: #414141;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    background-color: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: none;
}

.autodealer-isolated-scope .wpcf7-form-control.wpcf7-submit.form-send:hover {
    box-shadow: 0 0 20px 0 #777777;
}

.autodealer-isolated-scope .wpcf7-form-control.wpcf7-submit.form-send:focus {
    outline: none;
    box-shadow: 0 0 20px 0 #777777;
}

/* Hide Contact Form 7 default wrapper paragraphs */
.autodealer-isolated-scope .wpcf7-form p {
    margin: 0;
}

.autodealer-isolated-scope .wpcf7-form-control-wrap {
    display: inline;
}

.autodealer-isolated-scope .faq-section {
    display: flex;
    flex-direction: column;
    width: 933px;
    margin: 75px auto 70px;
    align-items: center;
    gap: 60px;
}

.autodealer-isolated-scope .faq-divider {
    width: 1228px;
    height: 1px;
    background: linear-gradient(270deg, rgba(102, 102, 102, 0.00) 0%, rgba(102, 102, 102, 0.50) 50.9%, rgba(102, 102, 102, 0.00) 100%);
}

.autodealer-isolated-scope .faq-widget-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.autodealer-isolated-scope .faq-item-element {
    max-width: 933px;
    width: 100%;
    position: relative;
    overflow: visible;
    background-color: #ffffff;
    cursor: pointer;

    border-radius: 30px;
    outline: none;
    border: 0;
    padding: 31px;
    flex: 1 1 auto;
}

.autodealer-isolated-scope .faq-item-element:hover {
    background: #F1F7FF;
}

.autodealer-isolated-scope .faq-item-element::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    border-radius: 30px;
    background: linear-gradient(91deg, #F8F8F8 0%, #CDCDCD 100.7%);
    filter: blur(7.5px);

    pointer-events: none;
}

.autodealer-isolated-scope .faq-item-element.active {
    background: #F1F7FF;
    padding-bottom: 0;
}

.autodealer-isolated-scope .faq-item-element.active::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    border-radius: 30px;
    background: linear-gradient(91deg, #F8F8F8 0%, #CDCDCD 100.7%);
    filter: blur(7.5px);
    rotate: 180deg;

    pointer-events: none;
}

.autodealer-isolated-scope .faq-question-element {
    display: flex;
    flex: 1;
    flex-direction: row;
    align-items: center;

    user-select: none;
    transition: background-color 0.2s ease-out;
}

.autodealer-isolated-scope .faq-question-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.autodealer-isolated-scope .faq-question-wrapper img {
    margin-left: 15px;

    rotate: -104.91deg;
    transform: scaleX(-1)
}


.autodealer-isolated-scope .faq-item-element h3 {
    color: #414141;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 1.8px;
    margin: 0;
}

.autodealer-isolated-scope .faq-item-element p {
    color: #414141;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 1.4px;
    margin: 0;
}


.autodealer-isolated-scope .faq-icon-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease-out;
}

.autodealer-isolated-scope .faq-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.2s ease-out, opacity 0.2s ease-out;
    pointer-events: none;
}


.autodealer-isolated-scope .faq-inner-icon-wrapper {
    padding-top: 15px;
    height: 25px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.autodealer-isolated-scope .faq-question-wrapper img {
    rotate: -104.91deg;
    transform: scaleX(-1);
    flex-shrink: 0;
}

.autodealer-isolated-scope .faq-answer-element,
.faq-answer-short {
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.autodealer-isolated-scope .faq-answer-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.autodealer-isolated-scope .faq-answer-element p {
    padding-top: 13px;
    font-size: 16px;
    line-height: 1.6;
    color: #414141;
}

.autodealer-isolated-scope .faq-item-element.active .faq-answer-wrapper {
    display: grid;
    margin-right: 58px;
    margin-top: 29px;
    margin-bottom: 50px;
    grid-template-rows: 1fr;
    opacity: 1;
    pointer-events: auto;
}

.autodealer-isolated-scope .faq-item-element.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.autodealer-isolated-scope .autodealer__faq-answer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 23px;
    padding: 20px 60px;

    border-radius: 40px;
    border: none;
    outline: none;

    background: transparent;
    color: #FFF;

    text-decoration: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-align: center;
    line-height: normal;

    position: relative;
    z-index: 1;
}

.autodealer-isolated-scope .autodealer__faq-answer-button::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 40px;
    background: #36CFF0;
}

.autodealer-isolated-scope .autodealer__faq-answer-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    border-radius: 40px;
    background: linear-gradient(113deg, rgba(211, 211, 211, 0.50) 22.08%, #ACACAC 92.71%);
    filter: blur(10px);

    opacity: 0;
    transition: opacity 0.3s ease;
}

.autodealer-isolated-scope .autodealer__faq-answer-button:hover::before {
    opacity: 1;
}

.autodealer-isolated-scope .difficulties-section {
    display: flex;
    flex-direction: column;
    max-width: 1154px;
    margin: 75px auto 150px;
}

.autodealer-isolated-scope .difficulties-container {
    margin-top: 51px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.autodealer-isolated-scope .difficulties-content {
    display: flex;
    flex: 1 1 741px;
    margin-top: 24px;
}

.autodealer-isolated-scope .difficulties-image {
    flex: 0 0 412px;
    width: 412px;

    overflow: visible;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.autodealer-isolated-scope .difficulties-image img {
    width: 678px;
    max-width: none;

    height: auto;
    display: block;

    position: relative;
}

.autodealer-isolated-scope .difficulties-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.autodealer-isolated-scope .difficulties-item {
    position: relative;
    overflow: visible;
    background-color: #ffffff;
    cursor: pointer;
    border-radius: 30px;
    outline: none;
    border: 0;
    padding: 31px;
}

.autodealer-isolated-scope .difficulties-item span {
    color: #4283EA;
    font-size: 24px;
    font-weight: 800;
    line-height: 25px;
    letter-spacing: 2.4px;
}

.autodealer-isolated-scope .difficulties-item:hover {
    background: #F1F7FF;
}

.autodealer-isolated-scope .difficulties-item.active {
    background: #F1F7FF;
    padding-bottom: 0;
}

.autodealer-isolated-scope .difficulties-item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 30px;
    background: linear-gradient(91deg, #F8F8F8 0%, #CDCDCD 100.7%);
    filter: blur(7.5px);
    pointer-events: none;
}

.autodealer-isolated-scope .difficulties-item.active::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 30px;
    background: linear-gradient(91deg, #F8F8F8 0%, #CDCDCD 100.7%);
    filter: blur(7.5px);
    rotate: 180deg;
    pointer-events: none;
}

.autodealer-isolated-scope .difficulties-item-question {
    display: flex;
    flex-direction: row;
    align-items: center;
    user-select: none;
    transition: background-color 0.2s ease-out;
}

.autodealer-isolated-scope .difficulties-item-question-wrapper {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.autodealer-isolated-scope .difficulties-item h3 {
    color: #414141;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 1.8px;
    margin: 0;
}

.autodealer-isolated-scope .difficulties-item p {
    color: #414141;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 1.4px;
    margin: 0;
}

.autodealer-isolated-scope .difficulties-icon-arrow {
    flex-shrink: 0;
    transition: transform 0.2s ease-out;
}

.autodealer-isolated-scope .difficulties-inner-icon-wrapper {
    left: 80%;
    position: absolute;
    padding-top: 15px;
    height: 25px;
    margin-left: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.autodealer-isolated-scope .difficulties-inner-icon-wrapper svg {
    display: none;
    flex-shrink: 0;
}

.autodealer-isolated-scope .difficulties-item.active .difficulties-inner-icon-wrapper svg {
    width: 60px;
    display: block;
}

.autodealer-isolated-scope .difficulties-answer-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.2s ease-out, opacity 0.2s ease-out;
}

.autodealer-isolated-scope .difficulties-answer,
.difficulties-answer-short {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.autodealer-isolated-scope .difficulties-answer-icon {
    flex-shrink: 0;
    margin-right: 20px;
}

.autodealer-isolated-scope .difficulties-answer p {
    padding-top: 13px;
    font-size: 16px;
    line-height: 1.6;
    color: #414141;
}

.autodealer-isolated-scope .difficulties-item.active .difficulties-answer-wrapper {
    margin-right: 58px;
    margin-top: 29px;
    grid-template-rows: 1fr;
    opacity: 1;
}

.autodealer-isolated-scope .difficulties-item.active .difficulties-icon-arrow {
    transform: rotate(180deg);
}

.autodealer-isolated-scope .dropdown-overlap {
    margin: 75px auto 90px;
    max-width: 1050px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.autodealer-isolated-scope .background-arrow-right {
    position: absolute;
    top: 50px;
    right: -100px;
    width: 119px;
    height: 123px;
    z-index: 1;
}

.autodealer-isolated-scope .background-arrow-left {
    position: absolute;
    top: 20px;
    left: -100px;
    width: 119px;
    height: 123px;
    z-index: 1;
}

.autodealer-isolated-scope .section-background-decoration {
    position: absolute;
    z-index: -1;
    pointer-events: none;
}

.autodealer-isolated-scope .bg-google-ads {
    top: -190px;
    left: -300px;
}

.autodealer-isolated-scope .bg-analytics {
    top: -200px;
    right: -270px;
}

.autodealer-isolated-scope .bg-seo {
    bottom: 330px;
    left: -300px;
}

.autodealer-isolated-scope .bg-dev {
    top: -100px;
    right: -300px;
}

.autodealer-isolated-scope .bg-target {
    bottom: 330px;
    left: -300px;
}

.autodealer-isolated-scope .bg-education {
    top: -100px;
    right: -400px;
}

.autodealer-isolated-scope .accordion-container {
    margin-top: 71px;
    display: flex;
    flex-direction: row;
}

.autodealer-isolated-scope .dropdown-image-right {
    display: flex;
    flex: 0 0 480px;
    width: 480px;
    overflow: visible;
    justify-content: flex-end;
    position: relative;
}

.autodealer-isolated-scope .dropdown-image-right img {
	width: 717px;
	max-width: none;
	height: auto;
	display: block;
	position: relative;
	aspect-ratio: auto;
	object-fit: contain;
}

.autodealer-isolated-scope .dropdown-image-left {
    display: flex;
    flex: 0 0 480px;
    width: 480px;
    overflow: visible;
    justify-content: flex-start;
    position: relative;
}

.autodealer-isolated-scope .dropdown-image-left img {
	width: 717px;
	left: 50px;
	max-width: none;
	height: auto;
	display: block;
	position: relative;
	aspect-ratio: auto;
	object-fit: contain;
}

.autodealer-isolated-scope .accordion-widget {
    display: flex;
    flex-direction: column;
    flex: 1 1 570px;
}

.autodealer-isolated-scope .accordion-item {
    padding: 23px 28px;
    position: relative;
    margin: 0;
    background-color: transparent;
    background-image: linear-gradient(#D9D9D9, #D9D9D9);
    background-size: 515px 1px;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.autodealer-isolated-scope .accordion-item:last-child {
    background-image: none;
}

.autodealer-isolated-scope .accordion-header {
    display: flex;
    align-items: center;
    gap: 28px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-radius 0.2s ease, box-shadow 0.2s ease;
}

.autodealer-isolated-scope .accordion-header h3 {
    flex-grow: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #6B6B6B;
    line-height: 1.4;
    transition: color 0.2s ease;
    user-select: none;
}

.autodealer-isolated-scope .chevron {
    color: #999;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.2s ease;
}

.autodealer-isolated-scope .chevron svg {
    max-width: 14px;
    width: 14px;
    height: 8px;
}

.autodealer-isolated-scope .accordion-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.3s ease-out, opacity 0.3s ease-out;
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

.autodealer-isolated-scope .accordion-body {
    overflow: hidden;
    box-sizing: border-box;
    padding: 23px 23px 23px 43px;
    border-top: 1px solid transparent;
}

.autodealer-isolated-scope .accordion-body p {
    color: #000;
    font-size: 15px;
    font-weight: 200;
    line-height: 27px;
    letter-spacing: 0.75px;
    margin: 0;
}

.autodealer-isolated-scope .accordion-item.active {
    z-index: 20;
}

.autodealer-isolated-scope .accordion-item.active .accordion-header {
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 2;
}

.autodealer-isolated-scope .accordion-item.active .accordion-header h3 {
    color: #000;
}

.autodealer-isolated-scope .accordion-header .icon-default {
    display: block;
}

.autodealer-isolated-scope .accordion-header .icon-active {
    display: none;
}

.autodealer-isolated-scope .accordion-item.active .accordion-header .icon-default {
    display: none;
}

.autodealer-isolated-scope .accordion-item.active .accordion-header .icon-active {
    display: block;
    filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.25));
}


.autodealer-isolated-scope .accordion-item.active .chevron {
    color: #1671ee;
    transform: rotate(180deg);
}

.autodealer-isolated-scope .accordion-item.active .accordion-body-wrapper {
    grid-template-rows: 1fr;
    opacity: 1;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
    border-top-color: #f0f0f0;
    pointer-events: auto;
}

.autodealer-isolated-scope .carousel-section {
    width: 100%;
    max-width: 1170px;
    display: flex;
    flex-direction: column;
    margin: 75px auto 0;
    padding: 0 28px;
}

.autodealer-isolated-scope .carousel-container {
    margin-top: 66px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.autodealer-isolated-scope .carousel-view {
    overflow: hidden;
    padding-block: 60px;
    margin-block: -60px;
    width: 100%;
}

.autodealer-isolated-scope .carousel-track {
    display: flex;
    gap: 100px;
    transition: transform 0.4s ease-in-out;
    width: fit-content;
}

.autodealer-isolated-scope .carousel-card {
    display: flex;
    flex-direction: row;
    gap: 107px;
    flex: 0 0 100%;
    min-width: 100%;
}

.autodealer-isolated-scope .carousel-card-image {
    display: flex;
    flex: 1 1 50%;
    max-width: 570px;
    width: 100%;
    position: relative;
    justify-content: flex-start;
    aspect-ratio: 16 / 11;
}

.autodealer-isolated-scope .review-media {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 570 / 389;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.autodealer-isolated-scope .review-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.autodealer-isolated-scope .review-media .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.autodealer-isolated-scope .review-media:hover .play {
    transform: translate(-50%, -50%) scale(1.1);
}

.autodealer-isolated-scope .review-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 3;
}

.autodealer-isolated-scope .carousel-card-content {
    display: flex;
    flex-direction: column;
    flex: 0 0 493px;
    padding: 31px 62px 0 0;
    width: 100%;
    min-width: 300px;
}

.autodealer-isolated-scope .carousel-card-content h2 {
    color: #4283EA;
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1px;
}

.autodealer-isolated-scope .carousel-card-content h4 {
    margin-top: 19px;
    color: #5B5B5B;
    font-size: 12px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.6px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.autodealer-isolated-scope .carousel-card-content p {
    margin-top: 14px;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
    line-height: 20px;
    letter-spacing: 1.4px;
}

.autodealer-isolated-scope .carousel-controls {
    margin-top: 51px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 23px;
}

.autodealer-isolated-scope .carousel-divider-vertical {
    width: 2px;
    height: 54px;
    background: linear-gradient(180deg, rgba(220, 220, 220, 0.00) 0%, #DCDCDC 50%, rgba(220, 220, 220, 0.00) 100%);
}

.autodealer-isolated-scope .carousel-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    color: #4283EA;
}

.autodealer-isolated-scope .carousel-btn:hover {
    box-shadow: none;
    transform: scale(1.1);
}

.autodealer-isolated-scope .carousel-btn:disabled {
    box-shadow: none;

    cursor: not-allowed !important;
    opacity: 0.5;
}

.autodealer-isolated-scope .carousel-btn:disabled:hover {
    box-shadow: none;
    transform: none;
}

.autodealer-isolated-scope .achievements-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 75px auto 75px;
    align-items: center;
    box-sizing: border-box;
    padding: 0 28px;
}

.autodealer-isolated-scope .achievements-divider {
    margin: 61px auto 0;
    width: 100%;
    max-width: 1228px;
    height: 1px;
    background: linear-gradient(270deg, rgba(102, 102, 102, 0.00) 0%, rgba(102, 102, 102, 0.50) 50.9%, rgba(102, 102, 102, 0.00) 100%);
}

.autodealer-isolated-scope .cases-carousel {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.autodealer-isolated-scope .cases-view {
    overflow: hidden;
    padding-block: 60px;
    margin-block: -60px;
    width: 100%;
}

.autodealer-isolated-scope .cases-track {
    display: flex;
    gap: 100px;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.autodealer-isolated-scope .case-slide {
    flex: 0 0 100%;
    display: flex;
    gap: 113px;
    align-items: center;
    box-sizing: border-box;
    min-width: 100%;
}

.autodealer-isolated-scope .case-content {
    display: flex;
    flex-direction: column;
    flex: 1 1 402px;
    width: 100%;
    min-width: 300px;
    color: #141414;

    gap: 20px;
}

.autodealer-isolated-scope .case-content h3 {
    color: #414141;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 1.8px;
}

.autodealer-isolated-scope .case-content p {
    color: #414141;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 25px;
    letter-spacing: 1.2px;
}

.autodealer-isolated-scope .achievements-button-wrapper {
    display: flex;
    align-self: flex-end;
}


.autodealer-isolated-scope .case-btn {
    display: inline-flex;
    align-items: center;
    align-self: center;
    justify-content: center;

    text-decoration: none;

    height: 57px;
    min-width: 178px;

    color: #FFF;
    background-color: #0C76F0;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 2.1px;

    border-radius: 40px;

    transition: all 0.3s ease;
    cursor: pointer;
}

.autodealer-isolated-scope .case-divider {
    width: 46px;
    height: 3px;
    background: #1669DA;
    border: none;
}

.autodealer-isolated-scope .case-btn:hover {
    background-color: #085bbd;
}

.autodealer-isolated-scope .case-image {
    display: flex;
    flex: 0 0 623px;
    width: 100%;
    max-width: 623px;
    height: auto;

    overflow: visible;
    justify-content: flex-start;
    position: relative;
    aspect-ratio: 16 / 9;
}

.autodealer-isolated-scope .case-image img {
    width: 100%;
    max-width: 665px;
    height: 100%;
    display: block;
    position: relative;
    object-fit: cover;
}

.autodealer-isolated-scope .cases-pagination {
    margin-top: 79px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.autodealer-isolated-scope .case-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #FFF;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.autodealer-isolated-scope .case-dot:hover {
    background: rgba(12, 118, 240, 0.50);
}

.autodealer-isolated-scope .case-dot.active {
    background: rgba(12, 118, 240, 0.50);
}

.autodealer-isolated-scope .faq-question-wrapper img {
    display: none;
}

.autodealer-isolated-scope .faq-item-element.active .faq-question-wrapper img {
    display: block;
}

@media (max-width: 1200px) {
    .autodealer-isolated-scope .hero-autodealer-section, .services-section, .difficulties-section, .dropdown-overlap {
        padding: 0 28px;
    }

    .autodealer-isolated-scope .form-container {
        padding: 27px 60px 71px;
    }

    .autodealer-isolated-scope .hero-button-wrapper {
        margin-right: 0;
    }

    .autodealer-isolated-scope .why-grid {
        gap: 80px 100px;
    }

    .autodealer-isolated-scope .background-arrow-right {
        display: none;
    }

    .autodealer-isolated-scope .background-arrow-left {
        display: none;
    }
}

@media (max-width: 992px) {


    .autodealer-isolated-scope .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .autodealer-isolated-scope .why-section-divider {
        display: flex;
    }

    .autodealer-isolated-scope .form-left {
        margin-right: 70px;
    }

    .autodealer-isolated-scope .difficulties-item-question-wrapper {
        justify-content: center;
        position: relative;
    }

    .autodealer-isolated-scope .difficulties-item h3 {
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 25px;
        letter-spacing: 0.8px;
        max-width: 100%;
    }

    .autodealer-isolated-scope .difficulties-answer,
    .autodealer-isolated-scope .difficulties-answer-short {
        align-items: center;
    }

    .autodealer-isolated-scope .difficulties-answer p,
    .autodealer-isolated-scope .difficulties-answer-short p {
        text-align: center;
    }

    .autodealer-isolated-scope .difficulties-inner-icon-wrapper {
        position: absolute;
        left: 0;
        top: 0;
        margin: 0;
        padding: 0;
        height: auto;
    }

    .autodealer-isolated-scope .difficulties-inner-icon-wrapper svg {
        rotate: 0deg;
        transform: scaleX(-1) scaleY(1) rotate(40deg);
    }

    .autodealer-isolated-scope .autodealer__faq-answer-button {
        margin: 25px auto 30px;
    }

    .autodealer-isolated-scope .faq-item-element.active .faq-answer-wrapper {
        margin-right: 0;
        margin-top: 10px;
    }

    .autodealer-isolated-scope .difficulties-item.active .difficulties-answer-wrapper {
        margin-right: 0;
    }

    .autodealer-isolated-scope .accordion-container, .case-slide {
        flex-direction: column;
        align-items: center;
    }

    .autodealer-isolated-scope .carousel-card {
        flex-direction: column;
        gap: 40px;
    }

    .autodealer-isolated-scope .carousel-card-content {
        align-items: center;
        flex: 0 0 auto;
        width: 100%;
        padding: 20px 0;
        max-width: 100%;
    }

    .autodealer-isolated-scope .slider-paragraph {
        text-align: center;
    }

    .autodealer-isolated-scope .carousel-card-image {
        max-width: 100%;
        width: 100%;
        order: -1;
    }

    .autodealer-isolated-scope .case-slide {
        gap: 70px;
    }

    .autodealer-isolated-scope .case-content {
        align-items: center;
        flex: 1 1 auto;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .autodealer-isolated-scope .case-desc p {
        text-align: center;
    }

    .autodealer-isolated-scope .achievements-button-wrapper {
        align-self: center;
    }

    .autodealer-isolated-scope .case-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
        justify-content: center;
        order: -1;
        aspect-ratio: 16 / 7;
    }

    .autodealer-isolated-scope .case-image img {
        max-width: 100%;
        width: 100%;
    }

    .autodealer-isolated-scope .dropdown-image-right, .dropdown-image-left, .case-image {
        width: 100%;
        flex: auto;
        order: -1;
    }

    .autodealer-isolated-scope .accordion-widget {
        order: 0;
        width: 100%;
    }

    .autodealer-isolated-scope .accordion-item {
        padding: 28px 0;
        background-image: linear-gradient(#D9D9D9, #D9D9D9);
        background-size: 100% 1px;
        background-position: bottom center;
        background-repeat: no-repeat;
    }

    .autodealer-isolated-scope .faq-section {
        width: 100%;
        max-width: 100%;
        padding: 0 28px;
        margin: 60px auto 0;
        gap: 50px;
    }

    .autodealer-isolated-scope .faq-widget-element {
        width: 100%;
    }

    .autodealer-isolated-scope .autodealer__faq-answer-button {
        max-width: 100%;
    }

    .autodealer-isolated-scope .difficulties-container {
        flex-direction: column;
    }

    .autodealer-isolated-scope .difficulties-image {
        width: 100%;
        justify-content: center;
        max-width: 100%;
    }

    .autodealer-isolated-scope .difficulties-image img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .autodealer-isolated-scope .dropdown-image-right, .dropdown-image-left {
        width: 100%;
        justify-content: center;
        max-width: 100%;

    }

    .autodealer-isolated-scope .dropdown-image-right img {
        width: 100%;
        height: auto;
        max-width: 400px;
    }

    .autodealer-isolated-scope .dropdown-image-left img {
        width: 100%;
        height: auto;
        max-width: 400px;
        left: 0;
    }


}

@media (max-width: 768px) {
    .autodealer-isolated-scope .faq-section {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        margin: 40px auto 0;
        gap: 30px;
    }

    .autodealer-isolated-scope .faq-divider {
        width: 100%;
    }

    .autodealer-isolated-scope .faq-widget-element {
        width: 100%;
    }

    .autodealer-isolated-scope .faq-answer-element p {
        padding-top: 0;
        font-size: 14px;
        line-height: 1.5;
    }

    .autodealer-isolated-scope .autodealer__faq-answer-button {
        max-width: 100%;
        font-size: 12px;
        margin: 20px 0 30px 0;
    }

    .autodealer-isolated-scope .hero-autodealer-section {
        align-items: center;
        flex-direction: column;
        margin-bottom: 50px;
        padding: 0 28px;
    }

	.autodealer-isolated-scope .hero-autodealer-content {
		flex: 1 1 auto;
		width: 100%;
		padding-top: 20px;
		align-items: center;
		text-align: center;
	}

    .autodealer-isolated-scope .hero-title,
    .autodealer-isolated-scope .hero-title .highlight {
        font-size: 28px;
        line-height: 1.2;
    }

    .autodealer-isolated-scope .divider.hero {
        margin: 20px auto;
    }

    .autodealer-isolated-scope .hero-description {
        font-size: 14px;
        line-height: 24px;
    }

    .autodealer-isolated-scope .hero-button-wrapper {
        align-self: center;
        margin-top: 40px;
        margin-right: 0;
    }

    .autodealer-isolated-scope .btn-primary {
        font-size: 16px;
        padding: 19px 49px 19px 49px;
    }

    .autodealer-isolated-scope .hero-image {
        flex: 1 1 auto;
        width: 100%;
        margin-top: 40px;
        justify-content: center;
    }

    .autodealer-isolated-scope .hero-image img {
        width: 100%;
        max-width: 350px;
        height: auto;
    }

    .autodealer-isolated-scope .section-title {
        font-size: 28px;
    }

    .autodealer-isolated-scope .why-grid {
        grid-template-columns: 1fr;
        gap: 47px;

        justify-items: center;

        background-size: 100% auto;
        background-position: center 23%;
        margin: 30px 0 40px;
    }

    .autodealer-isolated-scope .why-card {
        width: 100%;
        padding: 20px;
        align-items: center;
    }

    .autodealer-isolated-scope .why-card h3 {
        text-align: center;
    }

    .autodealer-isolated-scope .why-card p {
        text-align: center;
    }

    .autodealer-isolated-scope .why-grid .why-card:nth-child(3) {
        background: #ffffff;
    }

    .autodealer-isolated-scope .why-grid .why-card:nth-child(3) h3 {
        color: #1669da;
    }

    .autodealer-isolated-scope .why-grid .why-card:nth-child(3) p {
        color: #000000;
    }

    .autodealer-isolated-scope .why-grid .why-card:nth-child(4) {
        background: linear-gradient(135deg, #1b80ff 0%, #0e6cff 100%);
    }

    .autodealer-isolated-scope .why-grid .why-card:nth-child(4) h3,
    .autodealer-isolated-scope .why-grid .why-card:nth-child(4) p {
        color: #ffffff;
    }

    .autodealer-isolated-scope .why-stats {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }

    .autodealer-isolated-scope .why-stats > div:not(:last-child)::after {
        width: 150px;
        height: 1px;

        right: auto;
        left: 50%;
        top: auto;
        bottom: -20px;
        transform: translateX(-50%);

        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #C7C7C7 50%, rgba(255, 255, 255, 0) 100%);
    }

    .autodealer-isolated-scope .stat-value {
        font-size: 48px;
    }

    .autodealer-isolated-scope .stat-label {
        max-width: 90%;
    }

    .autodealer-isolated-scope .services-section {
        margin: 50px auto 50px;
        max-width: 100%;
        padding: 0 28px;
    }

    .autodealer-isolated-scope .services-grid {
        margin-top: 30px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .autodealer-isolated-scope .service-card {
        width: 100%;
        align-items: center;
    }

    .autodealer-isolated-scope .service-card img {
        width: 48px;
        height: auto;
    }

    .autodealer-isolated-scope .service-card-wrapper {
        gap: 18px;
        align-items: center;
    }

    .autodealer-isolated-scope .service-content {
        align-items: center;
        text-align: center;
    }

    .autodealer-isolated-scope .service-desc {
        width: 50%;
    }

    .autodealer-isolated-scope .service-link {
        font-size: 13px;
    }

    .autodealer-isolated-scope .service-link-wrapper {
        margin-top: 20px;
    }

    .autodealer-isolated-scope .clients-section {
        display: none;
    }

    .autodealer-isolated-scope .form-container {
        display: flex;
        flex-direction: column;
        max-width: 100%;
        margin: 0 auto;
        padding: 27px 28px 50px 28px;
    }

    .autodealer-isolated-scope .form-container h2 {
        color: #FFF;
        text-align: center;
        font-size: 20px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
    }

    .autodealer-isolated-scope .form-title-wrapper {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .autodealer-isolated-scope .form-inner-icon-wrapper {
        width: 30px;
        margin-left: 0;
        margin-bottom: 20px;
        transform: scaleX(-1) rotate(60deg);
    }

    .autodealer-isolated-scope .form-inner-icon-wrapper svg {
        width: 60px;
        height: auto;
    }

    .autodealer-isolated-scope .form-body {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .autodealer-isolated-scope .form-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        width: 100%;
        gap: 15px;
        padding: 0 60px;
    }

    .autodealer-isolated-scope .form-left .form-input {
        margin-right: 0;
        width: 100%;
        flex: 1;
    }

    .autodealer-isolated-scope .form-left :last-child {
        margin-right: 0;
    }

    .autodealer-isolated-scope .form-input {
        max-width: 100%;
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.75);
        color: #ffffff;
        font-size: 13px;
        font-weight: 300;
        font-style: italic;
        transition: border-color 0.2s ease;
    }

    .autodealer-isolated-scope .form-input::placeholder {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
    }

    .autodealer-isolated-scope .form-button {
        height: 48px;
        color: #414141;
        text-align: center;
        font-size: 12px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        border: none;
        outline: none;
        border-radius: 40px;
        transition: all 0.3s ease;
        margin-top: 25px;
    }

    .autodealer-isolated-scope .clients-section {
        display: none;
    }

    .autodealer-isolated-scope .difficulties-inner-icon-wrapper {
        top: 40%;
        transform: scale(0.5);
    }

    .autodealer-isolated-scope .carousel-section {
        padding: 0 16px;
    }

    .autodealer-isolated-scope .carousel-card {
        gap: 30px;
    }

    .autodealer-isolated-scope .carousel-track {
        gap: 60px;
    }

    .autodealer-isolated-scope .carousel-card-content {
        padding: 15px 0 0 0;
    }

    .autodealer-isolated-scope .carousel-card-content h2 {
        font-size: 18px;
    }

    .autodealer-isolated-scope .carousel-card-content h4 {
        font-size: 11px;
    }

    .autodealer-isolated-scope .carousel-card-content p {
        font-size: 13px;
        line-height: 18px;
    }

    .autodealer-isolated-scope .carousel-controls {
        margin-top: 40px;
        gap: 16px;
    }

    .autodealer-isolated-scope .carousel-divider-vertical {
        height: 40px;
    }

    .autodealer-isolated-scope .achievements-section {
        padding: 0 16px;
        margin: 50px auto 50px;
    }

    .autodealer-isolated-scope .cases-track {
        gap: 60px;
    }

    .autodealer-isolated-scope .case-slide {
        gap: 30px;
    }

    .autodealer-isolated-scope .case-content {
        padding: 0;
    }

    .autodealer-isolated-scope .case-content h3 {
        font-size: 28px;
        letter-spacing: 1.4px;
    }

    .autodealer-isolated-scope .case-content p {
        font-size: 11px;
        line-height: 22px;
    }

    .autodealer-isolated-scope .case-btn {
        height: 48px;
        min-width: 150px;
        font-size: 12px;
    }

    .autodealer-isolated-scope .achievements-button-wrapper {
        align-self: flex-start;
    }

    .autodealer-isolated-scope .cases-pagination {
        margin-top: 50px;
        gap: 18px;
    }

    .autodealer-isolatedscope .case-dot {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .autodealer-isolated-scope .faq-section {
        width: 100%;
        max-width: 100%;
        padding: 0 16px;
        margin: 40px auto 0;
        gap: 30px;
    }

    .autodealer-isolated-scope .faq-divider {
        width: 100%;
    }

    .autodealer-isolated-scope .faq-widget-element {
        width: 100%;
    }


    .autodealer-isolated-scope .difficulties-inner-icon-wrapper {
        left: -10%;
    }

    .autodealer-isolated-scope .autodealer__faq-answer-button {
        width: 70%;
        max-width: 100%;
        font-size: 11px;
        padding: 10px 36px;
        margin: 15px 0 30px 0;
    }

    .autodealer-isolated-scope .faq-icon-arrow {
        width: 18px;
        height: 18px;
    }

    .autodealer-isolated-scope .faq-answer-icon {
        width: 32px;
        height: auto;
        margin-right: 12px;
        flex-shrink: 0;
    }

    .autodealer-isolated-scope .hero-title {
        font-size: 28px;
    }

    .autodealer-isolated-scope .stat-value {
        font-size: 64px;
    }

    .autodealer-isolated-scope .carousel-track {
        gap: 40px;
    }

    .autodealer-isolated-scope .carousel-card {
        gap: 20px;
        flex-direction: column;
    }

    .autodealer-isolated-scope .carousel-card-image {
        max-width: 100%;
        width: 100%;
    }

    .autodealer-isolated-scope .carousel-card-content {
        padding: 10px 0;
    }

    .autodealer-isolated-scope .carousel-card-content h2 {
        font-size: 16px;
    }

    .autodealer-isolated-scope .carousel-card-content h4 {
        font-size: 10px;
    }

    .autodealer-isolated-scope .carousel-card-content p {
        font-size: 12px;
        line-height: 16px;
    }

    .autodealer-isolated-scope .carousel-controls {
        margin-top: 30px;
    }

    .autodealer-isolated-scope .carousel-btn svg {
        width: 10px;
        height: 20px;
    }

    .autodealer-isolated-scope .achievements-section {
        padding: 0 12px;
        margin: 40px auto 40px;
    }

    .autodealer-isolated-scope .cases-track {
        gap: 40px;
    }

    .autodealer-isolated-scope .case-slide {
        gap: 20px;
    }

    .autodealer-isolated-scope .case-content h3 {
        font-size: 22px;
    }

    .autodealer-isolated-scope .case-content p {
        font-size: 10px;
        line-height: 18px;
    }

    .autodealer-isolated-scope .case-btn {
        height: 42px;
        min-width: 130px;
        font-size: 11px;
    }

    .autodealer-isolated-scope .case-divider {
        width: 35px;
        height: 2px;
    }

    .autodealer-isolated-scope .cases-pagination {
        margin-top: 35px;
        gap: 12px;
    }

    .autodealer-isolated-scope .case-dot {
        width: 16px;
        height: 16px;
    }
}



/* --- fix: define Inter family with Cyrillic self-hosted files (autodealer page had Latin-only bcf Inter -> Cyrillic fell back to sans-serif) --- */
@font-face{font-family:"Inter";font-style:normal;font-weight:200;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-extralightbeta-1.woff) format("woff");}
@font-face{font-family:"Inter";font-style:normal;font-weight:300;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-lightbeta-1.woff) format("woff");}
@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-regular-1.woff) format("woff");}
@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-medium-1.woff) format("woff");}
@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-semibold-1.woff) format("woff");}
@font-face{font-family:"Inter";font-style:normal;font-weight:700;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-bold-1.woff) format("woff");}
@font-face{font-family:"Inter";font-style:normal;font-weight:800;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-extrabold-1.woff) format("woff");}
@font-face{font-family:"Inter";font-style:normal;font-weight:900;font-display:swap;src:url(/wp-content/uploads/2026/02/inter-black-1.woff) format("woff");}

/* === Mobile responsiveness corrections v2 (2026-08-02) ===
 * Supersedes the v1 block. Fixes:
 *  - section titles pushed off-screen by desktop -100px side margins
 *  - contact form: single column, compact spacing, full-width fields
 *    (forms.css sets .form-row-field{flex:0 1 200px} -> 200px turns into
 *     row HEIGHT in a column, creating huge vertical gaps; .form-left{gap:70px})
 *  - reviews carousel card/content/text overflowing the viewport
 */
@media (max-width: 768px) {
    /* ---- Section titles ---- */
    .autodealer-isolated-scope .section-title {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        overflow-wrap: break-word;
    }

    /* ---- Contact form: layout ---- */
    .autodealer-isolated-scope .form-section .form-container {
        padding: 24px 20px 40px !important;
        max-width: 100% !important;
    }
    .autodealer-isolated-scope .form-section .form-container h2 {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
    .autodealer-isolated-scope .form-section .form-title-wrapper {
        flex-direction: column !important;
        align-items: center;
    }
    .autodealer-isolated-scope .form-section .form-body,
    .autodealer-isolated-scope .form-section .form-body.d-flex.justify-between.align-end {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        height: auto !important;
        min-height: 0 !important;
        gap: 24px !important;
        margin-top: 18px !important;
    }
    .autodealer-isolated-scope .form-section .form-left,
    .autodealer-isolated-scope .form-section .form-left.d-flex {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        height: auto !important;
        min-height: 0 !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 24px !important;
    }
    .autodealer-isolated-scope .form-section .form-right {
        width: 100% !important;
        display: flex;
        justify-content: center;
        margin-top: 6px;
    }
    /* kill the flex-basis:200px that becomes row-height in a column */
    .autodealer-isolated-scope .form-section .form-row-field {
        flex: none !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .autodealer-isolated-scope .form-section .form-row-field p {
        margin: 0 !important;
        width: 100%;
    }
    /* ---- Contact form: inputs full width ---- */
    .autodealer-isolated-scope .form-section .wpcf7-form-control-wrap {
        display: block !important;
        width: 100%;
    }
    .autodealer-isolated-scope .form-section .wpcf7-form-control.wpcf7-text,
    .autodealer-isolated-scope .form-section .wpcf7-form-control.wpcf7-tel,
    .autodealer-isolated-scope .form-section .form-field {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }
    .autodealer-isolated-scope .form-section .wpcf7-form-control.wpcf7-submit.form-send,
    .autodealer-isolated-scope .form-section .form-button {
        width: 100% !important;
        max-width: 280px;
        margin: 6px auto 0 !important;
    }

    /* ---- Reviews carousel: keep everything inside the viewport ---- */
    .autodealer-isolated-scope .carousel-section,
    .autodealer-isolated-scope .carousel-view {
        overflow-x: hidden;
    }
    .autodealer-isolated-scope .carousel-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .autodealer-isolated-scope .carousel-card-image,
    .autodealer-isolated-scope .carousel-card-content {
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .autodealer-isolated-scope .carousel-card-content {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .autodealer-isolated-scope .carousel-card-content h2,
    .autodealer-isolated-scope .carousel-card-content h4,
    .autodealer-isolated-scope .carousel-card-content p {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    /* ---- Achievements CTA: center on mobile (768 block forced flex-start) ---- */
    .autodealer-isolated-scope .achievements-button-wrapper {
        align-self: center !important;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* ---- Gap between FAQ block and the following form section ---- */
    .autodealer-isolated-scope .faq-section {
        margin-bottom: 50px !important;
    }

    /* ---- Global safety net ---- */
    .autodealer-isolated-scope {
        overflow-x: hidden;
    }
}

/* wm-autodealer-achievements-image-style — match homepage .case-slide__image (2026-08-20) */
.autodealer-isolated-scope .case-image img {
    border-radius: 20px;
    position: relative;
    z-index: 12;
}
.autodealer-isolated-scope .case-image::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(40px);
    background: linear-gradient(225deg, rgba(216, 216, 216, 0.2) 0%, rgba(148, 147, 147, 0.5) 100%);
    border-radius: 20px;
}

/* wm-autodealer-achievements-shadow-room — give the blurred shadow room so it isn't clipped (match homepage) 2026-08-20 */
.autodealer-isolated-scope .cases-carousel {
    overflow: visible;
}
.autodealer-isolated-scope .case-image {
    margin-right: 55px;
}
@media (max-width: 992px) {
    .autodealer-isolated-scope .case-image {
        margin-right: 0;
    }
}

/* wm-autodealer-fonts-match-homepage v2 (2026-08-20) */
/* Autodealer template loads ONLY the "Inter" @font-face family (weights 200-900),
   NOT the "Inter Bold"/"Inter Light" families used on Elementor pages. Match the
   homepage by using "Inter" + equivalent numeric weight:
   Inter Light = 300, Inter Semibold = 600, Inter Bold = 700. */

/* Task1+2: achievements description = homepage .case-slide__desc */
.autodealer-isolated-scope .case-content .case-desc p {
    font-family: "Inter", Sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 195%;
    letter-spacing: 0.05em;
    color: #414141;
}
.autodealer-isolated-scope .case-desc b,
.autodealer-isolated-scope .case-desc strong {
    font-family: "Inter", Sans-serif;
    font-weight: 700;
}

/* Task3: service card title + desc = homepage service card (bbde5c5 / e68a4b3) */
.autodealer-isolated-scope .service-card .service-title {
    font-family: "Inter", Sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.2;
    color: #595959;
}
.autodealer-isolated-scope .service-card .service-desc {
    font-family: "Inter", Sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: 0.03em;
}

/* Task4: 'Детальніше' link = homepage service button (38abeb3): Inter Semibold 16px */
.autodealer-isolated-scope .service-card .service-link,
.autodealer-isolated-scope .service-card .service-link span {
    font-family: "Inter", Sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.05px;
}

/* wm-autodealer-reviews-match-homepage v2 (2026-08-20) — the review text is styled via
   `.carousel-card-content h2/h4/p` (spec 0,2,1), NOT `.slider-*`. Override with the SAME
   selector appended last (wins on desktop) to match homepage reviews-carousel typography.
   Colors/margins left intact (card is on white bg; homepage uses #fff on dark). */
.autodealer-isolated-scope .carousel-card-content h2 {
    font-family: "Inter", Sans-serif;
    font-weight: 700;        /* was 800 → Inter Bold, like homepage .review-title */
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: normal;
}
.autodealer-isolated-scope .carousel-card-content h4 {
    font-family: "Inter", Sans-serif;
    font-weight: 300;
    font-style: italic;
    font-size: 13px;         /* was 12 → like homepage .review-position */
    letter-spacing: 0.05em;
    line-height: normal;
    text-decoration: underline;
    text-decoration-skip-ink: none;
}
.autodealer-isolated-scope .carousel-card-content p {
    font-family: "Inter", Sans-serif;
    font-weight: 300;        /* was 200 → Inter Light, like homepage .review-text */
    font-size: 18px;         /* was 14 */
    line-height: 170%;       /* was 20px */
    letter-spacing: 0.03em;  /* was 1.4px */
}
