.editor_txt h1,
.editor_txt h2,
.editor_txt h3,
.editor_txt h4,
.editor_txt h5,
.editor_txt h6 {
    line-height: inherit;
    margin: 0;
}

#main.wide {
    width: 100%;
    min-width: inherit;
}

.art_content,
.article_content_box,
.main_content {
    padding: 0 !important;
}

#location,
.article_content_box .main_title {
    display: none;
}

div#main {
    width: 100% !important
}

.article_content_box {
    padding: 0
}

.main_content {
    padding: 0;
    line-height: inherit
}

.editor_txt {
    background: #fff;
    overflow: visible
}

body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.dealer-program_page,
.dealer-program_page>* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.dealer-program_page p,
.dealer-program_page span,
.dealer-program_page h2,
.dealer-program_page h3,
.dealer-program_page h4,
.dealer-program_page h5,
.dealer-program_page h6 {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}


.dealer-program_page {
    --primary: #F26522;
    --primary-dark: #E55A00;
    --dark: #1A1A1A;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --green: #22C55E;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.5;
    background: var(--white);
    overflow: hidden;
}

.dealer-program_page .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
}

/* dealer-program_hero --start */
.dealer-program_hero {
    max-width: 1800px;
    width: 100%;
    margin: auto;
    display: flex;
    overflow: hidden;
    background: var(--white);
    padding: 50px 0 0;
}

.dealer-program_hero .text-image {
    display: flex;
    width: 70%;
    flex: 1;
}

.dealer-program_hero .hero-text {
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff) drop-shadow(0 0 15px #fff) drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
    position: relative;
    z-index: 3;
    margin: auto;
}

.dealer-program_hero .hero-image {
    margin-left: -200px;
    position: relative;
}

.dealer-program_hero .s-curve-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 13%;
    height: 100%;
    background: radial-gradient(circle at 45% 20%, #fff 0%, transparent 40%), radial-gradient(circle at 52% 50%, #fff 0%, transparent 40%), radial-gradient(circle at 45% 85%, #fff 0%, transparent 40%), linear-gradient(to right, #fff 0, #fff 51%, transparent 60%);
    z-index: 1;
    filter: blur(15px);
    opacity: 0.95;
}

.dealer-program_hero .hero-image img {
    display: block;
    height: 100%;
    width: 100%;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent 2%, rgba(0, 0, 0, 0.3) 7%, black 17%);
    -webkit-mask-image: linear-gradient(to right, transparent 2%, rgba(0, 0, 0, 0.3) 7%, black 17%);
}

.dealer-program_hero .form-card {
    margin-left: -20px;
    position: relative;
    z-index: 2;
    margin-top: 10px;
    width: 30%;
}

/* dealer-program_hero --end */



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== HERO SECTION ==================== */
h2.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.hero-desc {
    font-size: 15px;
    color: var(--gray-700);
    margin-bottom: 28px;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--white);
    color: var(--gray-700);
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--gray-400);
    background: var(--gray-50);
}



/* Form Card */
.form-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 28px;
    box-sizing: border-box;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

h3.form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 6px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
    border: 1px solid var(--gray-300);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
    color: var(--gray-700);
}

.form-input::placeholder {
    color: var(--gray-400);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.08);
}

.form-input.error {
    border-color: #EF4444;
}

.form-error {
    color: #EF4444;
    font-size: 11px;
    margin-top: 4px;
    display: none;
}

.form-error.show {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.btn-submit:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
}

/* ==================== FEATURES BAR ==================== */
.features-bar {
    margin-top: 20px;
    background: #f8f8f9;
    overflow: visible;
}

.features-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1600px;
    width: 100%;
    margin: auto;
}

.feature-bar-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    cursor: pointer;
    padding: 40px 0;
    height: 100%;
    margin-bottom: 5px;
}

.features-bar-grid .feature-bar-item:last-child {
    border-right: none;
}

.feature-bar-icon {
    width: 44px;
    height: 44px;
    color: var(--primary);
    transition: 0.2s;
}

.feature-bar-icon svg {
    width: 100%;
    height: 100%;
}

.feature-bar-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
}
.feature-bar-tooltip {
    font-size: 13px;
    color: var(--gray-700);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    background: #fff;
    padding: 10px 15px;
    box-sizing: content-box;
    border-radius: 5px;
    width: 220px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, .12);
    border: 1px solid #e4e7ed;
    pointer-events: none;
    transition: 0.25s ease;
    opacity: 0;
    text-align: center;
    z-index: 333;
}
.feature-bar-item:hover .feature-bar-tooltip {
    opacity: 1;
}
.feature-bar-item:hover .feature-bar-icon {
    transform: translateY(-3px);
}
.feature-bar_popper_arrow {
    position: absolute;
    left: 50%;
    width: 10px;
    height: 10px;
    z-index: -1;
    top: -5px;
    transform: translateX(-50%);
}
.feature-bar_popper_arrow::before {
    content: " ";
    position: absolute;
    width: 10px;
    height: 10px;
    z-index: -1;
    transform: rotate(45deg);
    box-sizing: border-box;
    border-bottom-color: transparent !important;
    border-right-color: transparent !important;
    border-top-left-radius: 2px;
    border: 1px solid #e4e7ed;
    background: #fff;
    right: 0;
}

/* ==================== WHY SECTION ==================== */
.why-section {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 40px 0 20px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 20px;
}

h2.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 32px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.why-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--gray-300);
}

.why-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 13px;
    color: var(--gray-700);
    text-align: left;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    max-width: 1800px;
    width: 100%;
    margin: auto;
    padding: 20px 0;
    background: var(--white);
}

.products-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.2s ease;
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.product-image-wrap {
    width: 50%;
    overflow: hidden;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.product-info {
    width: 50%;
}

.product-tag {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.product-name a {
    color: var(--dark);
    text-decoration: none;
}

.product-model {
    font-size: 15px;
    color: var(--gray-600);
    background: #fee7d4;
    padding: 5px 10px;
    box-sizing: border-box;
    width: fit-content;
    border-radius: 3px;
}

.product-model span {
    color: var(--primary);
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    font-size: 12px;
    color: var(--gray-600);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-features li::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ==================== HOW IT WORKS ==================== */
.how-section {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 20px 0;
    background: var(--white);
}

.how-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.step-item {
    text-align: center;
    position: relative;
}

.step_head {
    text-align: center;
    color: #d0d0d0;
    border-color: #d0d0d0;
    position: relative;
    width: 100%;
    padding-bottom: 20px;
}

.step_line {
    left: 50%;
    right: -50%;
    height: 2px;
    top: 11px;
    position: absolute;
}

.step_line-inner {
    display: block;
    border-style: dashed;
    border-color: currentColor;
    transition: .15s ease-out;
    box-sizing: border-box;
    height: 0;
    transition-delay: 150ms;
    border-width: 1px;
    width: 100%;
}

.step_head_icon {
    border-radius: 50%;
    border: 2px solid;
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    position: relative;
    z-index: 1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    font-size: 14px;
    box-sizing: border-box;
    transition: .15s ease-out;
}

.step_line-after {
    width: 2px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    border-color: currentColor;
    background-color: #d0d0d0;
}

.step_icon-inner {
    position: relative;
    z-index: 6;
    border-radius: 50%;
    border: 2px solid;
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.step_head_icon-line {
    bottom: 0;
    right: 0;
    top: auto;
    transform: translateX(-50%);
    color: #d0d0d0;
    width: 25px;
    z-index: 2;
}

.step_head_icon-line .step_line-inner {
    transform: rotate(90deg);
    position: relative;
}

.step_head_icon-line .step_line-inner::after {
    content: '';
    width: 4px;
    height: 4px;
    background-color: #5a5c5a;
    position: absolute;
    bottom: 0;
    left: 100%;
    display: block;
    top: 0;
    z-index: 88888;
    margin: auto;
    border-radius: 50%;
}

.step-icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    position: relative;
}

.step-number-bg {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 24px;
    height: 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    color: var(--primary);
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.step-item p {
    font-size: 12px;
    color: var(--gray-600);
}


/* ==================== BENEFITS TABLE ==================== */
.benefits-section {
    max-width: 1800px;
    width: 100%;
    margin: auto;
    padding: 20px 0;
    background: var(--white);
}

.benefits-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-table {
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.benefits-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--gray-100);
}

.benefits-header>div {
    padding: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.benefits-header>div:first-child {
    text-align: left;
    padding-left: 24px;
}

.benefits-header>div:nth-child(2) {
    background-color: #d1d1d0;
}

.benefits-header>div:last-child {
    background-color: #2c2d2d;
    color: #fff;
}

.benefits-header .highlight-header {
    background: var(--primary);
    color: var(--white);
}

.benefits-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-200);
}

.benefits-row:last-child {
    border-bottom: none;
}

.benefits-row>div {
    padding: 14px 16px;
    font-size: 13px;
    color: var(--gray-700);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--gray-200);
}

.benefits-row>div:first-child {
    justify-content: flex-start;
    padding-left: 24px;
    font-weight: 500;
}

.benefits-row>div:last-child {
    border-right: none;
}

.benefits-row .highlight-col {
    background: rgba(242, 101, 34, 0.04);
}

span.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.check-icon svg {
    width: 100%;
    height: 100%;
}

.dash {
    color: var(--gray-400);
    font-size: 14px;
}

/* ==================== TRUSTED SECTION ==================== */
.trusted-section {
    max-width: 1800px;
    width: 100%;
    margin: 20px auto;
    padding: 40px 20px;
    box-sizing: border-box;
    background: #f8f8f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    gap: 10px;
}

.trusted-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.trusted-header p {
    font-size: 13px;
    color: var(--gray-500);
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trusted-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #e2e2e3;
    padding-right: 20px;
    margin: auto;
}

.trusted-grid .trusted-item:last-child {
    border-right: none;
    padding-right: 0;
}

.trusted-icon {
    width: 40px;
    height: 40px;
    color: var(--gray-700);
    flex-shrink: 0;
}

.trusted-icon svg {
    width: 100%;
    height: 100%;
}

.trusted-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.trusted-text p {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-700);
}

/* ==================== FORM SUCCESS ==================== */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--green);
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 14px;
    color: var(--gray-600);
}

/* ==================== TOAST ==================== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--dark);
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(150%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    background: #22C55E;
}

.toast.error {
    background: #EF4444;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1850px) {
    .dealer-program_hero {
        padding: 30px 20px 0 20px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .dealer-program_hero .text-image {
        width: 60%;
    }
    .dealer-program_hero .form-card {
        width: auto;
    }
    .why-section ,.products-section,.how-section{
        padding: 40px 20px 0px 20px;
        box-sizing: border-box;
    }
    .how-section {
        padding: 40px 10px 0px 10px;
    }
}
@media (max-width: 1600px) {
.step-icon{
    width: 50px;
    height: 50px;
}
}
@media (max-width: 1300px) {
    .dealer-program_hero {
        position: relative;
        gap: 10px;
    }
    .dealer-program_hero .text-image {
        display: block;
        margin: auto;
        width: auto;
    }
    .dealer-program_hero .hero-text {
        max-width: 100%;
        filter: none;
    }
    .dealer-program_hero .hero-image {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    }
    .dealer-program_hero .s-curve-overlay {
        display: none;
    }
    .dealer-program_hero .hero-image img {
        mask-image: none;
        -webkit-mask-image: none;
    }
    .dealer-program_hero .form-card {
        margin: auto;
        padding: 25px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    h2.hero-title,.hero-subtitle,.hero-desc {
        color: #000;
        filter: drop-shadow(0 0 5px #fff) drop-shadow(0 0 10px #fff) drop-shadow(0 0 15px #fff) drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
    }
    .btn-primary {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    h2.hero-title {
        font-size: 40px;
    }
    .products-grid {
        gap: 20px;
    }
}
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
    .trusted-section {
        justify-content: space-around;
    }
    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .trusted-item {
        margin-left: 0;
        border-right: 0;
    }
    .features-bar-grid .feature-bar-item:first-child .feature-bar-tooltip {
        transform: inherit;
        left: 30%;
    }
    .features-bar-grid .feature-bar-item:first-child .feature-bar_popper_arrow {
        transform: inherit;
        left: 25px;
    }
    .features-bar-grid .feature-bar-item:last-child .feature-bar-tooltip {
        transform: inherit;
        left: -30%;
    }
    .features-bar-grid .feature-bar-item:last-child .feature-bar_popper_arrow {
        transform: inherit;
        left: auto;
        right: 25px;
    }
}
@media (max-width: 1100px) {
    .dealer-program_hero .form-card {
        width: 45%;
        padding: 20px;
        border-radius: 5px;
    }
    h2.hero-title {
        font-size: 35px;
    } 
    .hero-main {
        grid-template-columns: 1fr 1fr;
    }

    .form-card {
        grid-column: 1 / -1;
        margin: 0 auto;
    }
    .features-bar-grid .feature-bar-item:last-child .feature-bar-tooltip {
        left: -40%;
    }
}

@media (max-width: 1000px) {
    .features-bar-grid .feature-bar-item:last-child .feature-bar-tooltip {
        left: -45%;
    }
}


@media (max-width: 992px) {
    .hero-main {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        gap: 10px;
    }
    .step-icon {
        width: 40px;
        height: 40px;
    }

    .trusted-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .dealer-program_hero {
        padding: 20px 10px 0 10px;
    }
    .dealer-program_hero .form-card {
        width: 55%;
        padding: 15px;
    }
    h2.hero-title {
        font-size: 25px;
    }
    .features-bar-grid .feature-bar-item:last-child .feature-bar-tooltip {
        left: -48%;
    }
}
@media (max-width: 850px) {
    .features-bar-grid .feature-bar-item:last-child .feature-bar-tooltip {
        left: -60%;
    }
}
@media (max-width: 768px) {
    .dealer-program_hero {
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }
    .dealer-program_hero .form-card {
        width: 100%;
    }
    .dealer-program_hero .hero-image {
        position: inherit;
        margin: 20px auto;
    }
    .dealer-program_hero .hero-image img {
        border-radius: 3px;
    }
    .hero-buttons {
        margin-top: 10px;
    }
    .btn-primary {
        box-shadow: none;
    }
    h2.hero-title {
        font-size: 32px;
        margin-bottom: 0;
    }
    .dealer-program_hero .form-card {
        box-shadow: none;
        padding: 20px;
    }
    h2.section-title {
        font-size: 27px;
    }
    .features-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
        column-gap: 10px;
        padding: 0 5px;
        box-sizing: border-box;
    }
    .features-bar-grid .feature-bar-item:nth-child(2) {
        border-right: none;
    }

    .why-grid {
       row-gap: 25px;
       column-gap: 15px;
    }
    .why-card {
        padding: 20px 10px;
        box-sizing: border-box;
        border-radius: 5px;
    }
    .why-card p,.why-card h4 {
        text-align: center;
    }

    .products-grid {
        row-gap: 20px;
        column-gap: 10px;
    }
    .product-card {
        border-radius: 5px;
        padding: 10px 5px;
    }
    .how-section {
        padding: 40px 20px 0px 20px;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
    .step_line {
        display: none;
    }
    .step_head_icon-line.step_line {
        display: block;
    }

    .benefits-header,
    .benefits-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .benefits-header>div,
    .benefits-row>div {
        padding: 10px 8px;
        font-size: 11px;
    }
    .features-bar-grid .feature-bar-tooltip {
        display: none;
    }
    .feature-bar-item{
        padding: 0;
    }
    .features-bar {
        padding: 30px 0;
    }
}
@media (max-width: 750px) {
    .product-card {
        flex-direction: column;
        padding: 10px 10px 30px 10px;
    }
    .product-image-wrap ,.product-info {
        width: 100%;
    }

}
@media (max-width: 700px) {
.trusted-section {
    flex-direction: column;
    padding: 30px 10px;
}
.trusted-header {
    margin-bottom: 15px;
}
}
@media (max-width: 630px) {
    h2.hero-title {
        font-size: 30px;
    }
}
@media (max-width: 576px) {
    .dealer-program_hero {
        padding: 15px 15px 0 15px;
    }
    h2.hero-title {
        font-size: 25px;
    }
    .features-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    h2.section-title {
        font-size: 20px;
    }

    .trusted-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 500px) {
    .feature-bar-icon {
        width: 35px;
        height: 35px;
    }
    .why-icon {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 450px) {
    .dealer-program_hero {
        padding: 15px 10px 0 10px;
    }
    .why-section,.products-section ,.how-section{
        padding: 30px 10px 0px 10px;
    }
    .why-card {
        padding: 15px 3px;
    }
    .why-grid {
        column-gap: 10px;
        row-gap: 20px;
    }
}
@media (max-width: 400px) {
    .feature-bar-icon {
        width: 30px;
        height: 30px;
    }
    .why-icon {
        width: 35px;
        height: 35px;
    }
    .why-grid {
        column-gap: 5px;
        row-gap: 15px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-image-wrap {
        max-width: 250px;
    }
}