* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 53px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your actual truck/desert road background image */
    background-image: url('img/banner01.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgb(255 255 255) 28%, rgb(255 255 255 / 94%) 31%, rgb(229 222 222 / 5%) 60%, rgb(226 219 219 / 0%) 100%); */
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.3) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 504px 1fr 410px;
    gap: 0px;
    align-items: center;
    width: 100%;
}

.hero-middle {
    /* Empty middle column for spacing */
    min-height: 1px;
}

.hero-left {
    color: #2c3e50;
    /* padding-right: 20px; */
}
.section-label1 {
    display: block;
    background: #0fa491;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    /* font-weight: 600; */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    /* margin: 0 auto 31px auto; */
    margin-bottom: 10px;
    text-align: center;
    width: fit-content;
}
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    /* margin-bottom: 7px; */
    color: #4a5568;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-subtitle {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 22px;
    margin-top: 16px;
    line-height: 1.7;
    padding-right: 50px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}
.hero-list {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    /* gap: 10px; */
}
.hero-list li img {
    width: 18px;
    margin-right: 15px;
}
.hero-list li {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 10px;
}
.hero-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 21px;
    width: 81%;
}

.stat-box {
    background: #E2F7EE;
    /* background: linear-gradient(180deg, rgba(220, 244, 247, .8) 0, rgba(220, 244, 247, .3) 100%); */
    padding: 3px 5px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(144, 238, 144, 0.3);
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 27px;
    font-weight: 700;
    color: #4a5568;
    /* margin-bottom: 8px; */
}

.stat-text {
    font-size: 13px;
    color: #4a5568;
    line-height: 17px;
    /* font-weight: 500; */
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.hero-buttons .btn {
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
}

.top-demo-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    background: linear-gradient(135deg, #20b2aa 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

/* Demo Form */
.demo-form {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.form-header {
    background: #0FA491;
    color: white;
    padding: 7px 10px 7px 22px;
    text-align: center;
}

.form-header h6 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 0px 0;
    color: white;
    text-align: left;
}

.form-header p {
    font-size: 11.9px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-align: left;
}

.demo-form-content {
    padding: 17px 30px;
}
::placeholder, select {
    font-size: 12px;
}
.demo-form-content input,
.demo-form-content select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    font-family: Inter, sans-serif;
    background: white;
    color: #999;
    border: 1px solid #999999;
}

.demo-form-content input::placeholder {
    color: #999;
}

.demo-form-content input:focus,
.demo-form-content select:focus {
    outline: none;
    border-color: #20b2aa;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.demo-form-content select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    font-size: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 3px;
    width: auto;
}

.demo-form-content .btn-primary {
    width: 100%;
    margin-bottom: 15px;
}

.form-disclaimer {
    font-size: 12px;
    color: #666;
    text-align: center;
    /* margin: 16px 0 20px 0; */
    line-height: 1.5;
}

/* Section Styles */
.btn-gradient, #submit_btn, #submit_btn1 {
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.3);
    display: inline-block;
    border-radius: 8px;
}
#submit_btn, #submit_btn1 {
    box-shadow: none;
    font-size: 19px;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #007a3a 0, #148899 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 150, 68, .4);
    color: #fff;
}

.btn-custom-order {
    background-color: #dae8e9 !important;
    color: #004b5a;
    font-weight: 600;
    /* border: 2px solid #20b2aa; */
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-custom-order:hover {
    background-color: #dae8e9;
    color: #148899;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, .3);
}
section {
    padding: 40px 0;
}

.section-label {
    display: block;
    background: #16AAB6;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    /* font-weight: 600; */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    margin: 17px auto 34px auto;
    text-align: center;
    width: fit-content;
}
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.section-title.white {
    color: white;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 50px;
    /* max-width: 800px; */
    text-align: center;
}
.solutions .container {
    max-width: 1158px;
    margin: 0 auto;
    padding: 0 20px;
}
.solutions .section-subtitle {
    font-size: 19px;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 843px;
    text-align: center;
    margin: 0 auto 50px;
    display: block;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.9);
}

.section-cta {
    text-align: center;
    margin-top: 35px;
    display: flex;
    gap: 25px;
    justify-content: center;
}
.section-cta1 {
    text-align: center;
    margin-top: 35px;
    display: flex;
    gap: 31px;
    justify-content: center;
}
.section-cta1 .btn-gradient {
    border: 1px dashed #fff;
    padding: 23px 47px;
    font-size: 20px;
    font-weight: 400;
    width: 26%;
}
.section-cta1 .btn-custom-order {
    border: 1px solid #000;
    padding: 23px 47px;
    font-size: 20px;
    font-weight: 400;
    width: 26%;
}



/* Social Proof Section */
.social-proof {
    margin-top: 18px;
    /* background: #f8f9fa; */
    padding-bottom: 0;
}
.social-proof .container {
    max-width: 928px;
    margin: 0 auto;
    padding: 0 20px;
} 
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    margin-bottom: 30px;
}

.stat-card {
    /* background: linear-gradient(180deg, rgba(232, 245, 244, 0.8) 0%, rgba(220, 240, 238, 0.6) 100%); */
    background: linear-gradient(180deg, rgba(220, 244, 247, .8) 0, rgb(220 244 247 / 4%) 100%);   
    padding: 27px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #C1D0C9;
}

.stat-card-number {
    font-size: 26px;
    font-weight: 700;
    color: #4a5568;
    /* margin-bottom: 4px; */
}

.stat-card-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.stat-card-icon {
    width: 25px;
}
.stat-card-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 22px;
    /* font-weight: 500; */
}

.pill-label {
    display: block;
    background: #15ABB9;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 auto 18px auto;
    text-align: center;
    width: fit-content;
}
/* what's included in bundle section */
.whats-included-in-bundle {
    padding-top: 0px;
    padding-bottom: 100px;
}
.whats-included-in-bundle .container {
    max-width: 1170px;
}
.whats-included-in-bundle .pill-label {
    display: block;
    background: #15ABB9;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 auto 18px auto;
    text-align: center;
    width: fit-content;
}
.whats-included-in-bundle .section-subtitle {
    font-size: 19px;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 650px;
    text-align: center;
    margin: 0 auto 50px;
    display: block;
}
.whats-included-in-bundle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}
.whats-included-in-bundle-card {
    background: #E3F8F1;
    padding: 27px;
    border-radius: 12px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
    box-shadow: 3px 3px 7px 9px #D3F0EA;
    border: 1px solid #6F8382;
    padding-bottom: 60px;
}
.whats-included-in-bundle-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
}   
.whats-included-in-bundle-card-icon {
    width: 50px;
}
.whats-included-in-bundle-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #4a5568;
}
.whats-included-in-bundle-card-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 27px;
    margin-top: 20px;
}
.whats-included-in-bundle-card-content {
    margin-top: 20px;
}
.whats-included-in-bundle-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.whats-included-in-bundle-card-content ul li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #4a5568;
    font-weight: 700;
    padding-bottom: 14px;
}
.whats-included-in-bundle-card-content ul li img {
    width: 15px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 3px;
}


/* Subscription Included Section */
.subscription-included {
    padding-top: 50px;
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
    /* background: linear-gradient(to right, #2d3e50 0%, #3a4f63 100%); */
}
.subscription-included .container {
    max-width: 1286px;
}
.subscription-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("img/banner03.webp");
    background-size: cover;
    background-position: center;
    /* opacity: 0.25; */
    z-index: 1;
}
.subscription-content {
    display: flex;
    align-items: flex-start;
    gap: 58px;
}
.subscription-icon {
    border-radius: 50%;
}
.subscription-icon img {
    width: 170px;
}
.subscription-stats {
    /* flex: 1; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.subscription-stats .subscription-title, .subscription-stats .subscription-description {
    grid-column: 1 / -1;
}
.subscription-stats-card {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.subscription-stats-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.subscription-title {
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.2;
}
.subscription-description {
    font-size: 20px;
    color: #fff;
    /* line-height: 1.7; */
    /* margin: 0 0 30px 0; */
    max-width: 985px;
    /* margin-bottom: -4px; */
}
.subscription-content .stat-card {
    background: #4A5D70;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 25px 30px;
    text-align: center;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border: none;
}
.stat-label {
    display: block;
    font-size: 17px;
    color: #fff;
    line-height: 1.4;
    font-weight: 700;
}



/* ===== Complete Protection Section ===== */
.complete-protection {
    padding: 133px 0;
    background: #e8f4fc;
    text-align: center;
}

.complete-protection .pill-label {
    display: block;
    background: #15ABB9;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 auto 31px auto;
    text-align: center;
    width: fit-content;
}
.complete-protection .section-title {
    font-size: 32px;
    margin-bottom: 7px;
}
.complete-protection .section-subtitle {
    font-size: 19px;
    max-width: 650px;
    margin: 0 auto;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 50px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e8eef4;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    /* background: #e8f4fc; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    /* color: #0066cc; */
}
.feature-icon img {
    width: 65px;
}

.feature-title {
    font-size: 21px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 20px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* built for dealers and installers section */
/* ===== Built for Dealers Section ===== */
.built-for-dealers {
    padding: 150px 0 20px;
    background: #fff;
}

.dealers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.dealers-title {
    font-size: 36px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 16px;
}

.dealers-description {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
}

.dealers-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dealer-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.dealer-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    /* background: #e6f7f5; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: #14b8a6; */
    font-size: 20px;
}
.dealer-feature-icon img {
    width: 38px;
}

.dealer-feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 6px;
}

.dealer-feature-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.dealers-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dealers-stats-box {
    background: #2D3F53;
    border-radius: 6px;
    padding: 65px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    width: 100%;
    /* max-width: 480px; */
}

.dealer-stat {
    text-align: center;
    padding: 20px;
    background: #445464;
    border-radius: 12px;
}

.dealer-stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.dealer-stat-unit {
    font-size: 56px;
    font-weight: 700;
    color: #14b8a6;
}

.dealer-stat-label {
    display: block;
    font-size: 19px;
    color: #fff;
    line-height: 1.4;
}

/* ===== Partner Program Section ===== */
.partner-program {
    padding: 80px 0;
    /* background: #f8fafc; */
    text-align: center;
}
.partner-program .section-title {
   font-size: 35px;
   margin-bottom: 0;
}
.partner-program .section-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #BEBEBE;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 56px;
    height: 56px;
    /* background: #14b8a6; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 12px;
}
.step-number img {
    width: 58px;
}
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 16px;
}

.step-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* feature table */
/* ===== Comparison Table Section ===== */
.comparison-section {
    padding: 50px 0;
    /* background: #f0f7fa; */
}

.comparison-table-wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #BEBEBE;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: #2D3F53;
}

.comparison-table th {
    padding: 24px 30px;
    text-align: left;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}

.comparison-table th.feature-col {
    width: 40%;
}

.comparison-table th.package-col,
.comparison-table th.separate-col {
    width: 30%;
    text-align: center;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e8eef4;
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparison-table td {
    padding: 20px 30px;
    font-size: 17px;
    vertical-align: middle;
}

.comparison-table td.feature-name {
    color: #64748b;
    /* font-weight: 500; */
}

.comparison-table td.package-value,
.comparison-table td.separate-value {
    text-align: center;
    color: #64748b;
}
.package-value img, .separate-value img {
    margin-right: 15px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    font-size: 22px;
    margin-right: 6px;
}

.check-icon i {
    background: #14b8a6;
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    padding: 2px;
}

.x-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    font-size: 22px;
    margin-right: 6px;
}

.x-icon i {
    background: #ef4444;
    color: #fff;
    border-radius: 4px;
    font-size: 18px;
    padding: 2px;
}

.comparison-table td.separate-value {
    color: #888;
}

/* ===== Comparison Table Responsive ===== */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 16px 15px;
        font-size: 13px;
    }
    
    .comparison-table th.feature-col {
        width: 35%;
    }
    
    .comparison-table th.package-col,
    .comparison-table th.separate-col {
        width: 32.5%;
    }
    
    .check-icon i,
    .x-icon i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-table-wrapper {
        border-radius: 12px;
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 14px 12px;
        font-size: 12px;
    }
}





/* FAQ Section */
.faq {
    background: white;
    margin-top: 120px;
    margin-bottom: 80px;
}
.faq .container {
    max-width: 940px;
}
.faq .section-label {
    margin: 0px auto 13px auto;
}
.faq .section-title {
    font-size: 40px;
    margin-bottom: 10px;
}
.faq .section-subtitle {
    font-size: 19px;
    max-width: 576px;
    text-align: center;
    margin: 0 auto 17px;
}
.faq-list {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: white;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    cursor: pointer;
    transition: all 0.2s;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(32, 178, 170, 0.1);
}

.faq-question {
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #4a5568;
    font-weight: 600;
    background: #E8F5FD;
    border-radius:  9px;
    border: 1px dashed #000;
}

.faq-icon {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(90deg, #009644 0%, #18adc0 100%);
    height: 28px;
    width: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.3s ease;
}

.faq-ans {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}
.faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-item.active .faq-ans {
    max-height: 500px;
    padding: 20px;
    background: #E8F5FD;
}

.faq-ans p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.faq-ans ul {
    position: relative;
}
.faq-ans ul li {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}



/* request pricing section */
.request-pricing {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 53px 0;
    overflow: hidden;
}
.request-pricing-background { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Replace with your actual truck/desert road background image */
    background-image: url('img/banner02.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.request-pricing-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(to right, rgb(255 255 255) 28%, rgb(255 255 255 / 94%) 31%, rgb(229 222 222 / 5%) 60%, rgb(226 219 219 / 0%) 100%); */
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 40%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.3) 100%); */
    z-index: 1;
}
.request-pricing-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.2fr 504px 1fr 410px;
    gap: 0px;
    align-items: flex-start;
    width: 100%;
    margin: 40px 0 20px;
}

.request-pricing-middle {
    /* Empty middle column for spacing */
    min-height: 1px;
}

.request-pricing-left {
    color: #2c3e50;
    /* padding-right: 20px; */
}
.request-pricing-content .section-label1 {
    display: block;
    background: #17ABB7;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    /* font-weight: 600; */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    /* margin: 0 auto 31px auto; */
    margin-bottom: 10px;
    text-align: center;
    width: fit-content;
}
.request-pricing-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    /* margin-bottom: 7px; */
    margin: 30px 0;
    color: #fff;
    /* text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8); */
}

.request-pricing-subtitle {
    font-size: 19px;
    color: #fff;
    margin-bottom: 47px;
    line-height: 1.7;
    padding-right: 0px;
    /* text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8); */
}
.request-pricing-list {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 14px;
}
.request-pricing-list li img {
    width: 18px;
    margin-right: 10px;
}
.request-pricing-list li {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    color: #fff;
    /* margin-bottom: 10px; */
}
/* Demo Form */
.request-pricing-form {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    /* margin: 40px 0 20px; */
}

.request-pricing-form .form-header {
    background: #0FA491;
    color: white;
    padding: 7px 10px 7px 22px;
    text-align: center;
}

.request-pricing-form .form-header h6 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 0px 0;
    color: white;
    text-align: left;
}

.request-pricing-form .form-header p {
    font-size: 12px;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-align: left;
}

.request-pricing-form-content {
    padding: 17px 30px;
}
::placeholder, select {
    font-size: 12px;
}
.request-pricing-form-content input,
.request-pricing-form-content select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    font-family: Inter, sans-serif;
    background: white;
    color: #999;
    border: 1px solid #999999;
}

.request-pricing-form-content input::placeholder {
    color: #999;
}

.request-pricing-form-content input:focus,
.request-pricing-form-content select:focus {
    outline: none;
    border-color: #20b2aa;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.1);
}

.request-pricing-form-content select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    font-size: 12px;
}
.request-pricing-form-content .btn-primary {
    width: 100%;
    margin-bottom: 15px;
}

.form-disclaimer {
    font-size: 12px;
    color: #666;
    text-align: center;
    /* margin: 16px 0 20px 0; */
    line-height: 1.5;
}



/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-middle {
        display: none;
    }
    
    .hero-right {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .hero-list {
        justify-content: center;
        text-align: left;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
        display: block;
    }
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .whats-included-in-bundle-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-content {
        grid-template-columns: 1fr;
        text-align: center;
        display: block;
    }
    .subscription-stats-card {
        grid-template-columns: 1fr;
    }
    .subscription-included {
        padding: 30px 0;
    }
    .complete-protection {
        padding: 30px 0;
    }
    .subscription-icon {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    .section-label1 {
        margin: 0 auto 10px auto;
    }
    .hero-subtitle {
        padding-right: 0;
        text-shadow: none;
        color: #2c3e50;
    }
    .section-title {
        font-size: 28px;
    }
    .whats-included-in-bundle .section-subtitle {
        font-size: 15px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .built-for-dealers {
        padding: 50px 0 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto 20px;
    }
    .request-pricing {
        padding: 0;
    }
    .request-pricing-content {
        grid-template-columns: 1fr;
    }
    .request-pricing-title {
        font-size: 28px;
    }
    .request-pricing-subtitle {
        font-size: 15px;
    }
    .request-pricing-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }
    .request-pricing-form {
        margin: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
        text-shadow: none;
        color: #2c3e50;
    }
    
    .hero-list {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-title {
        font-size: 28px;
    }
}
@media (max-width: 1024px) {
    .dealers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* .dealers-right {
        order: -1;
    } */
    
    .dealers-stats-box {
        max-width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dealers-title {
        font-size: 28px;
        text-align: center;
    }
    .dealers-description {
        font-size: 15px;
        text-align: center;
    }
    .dealers-stats-box {
        padding: 30px;
        gap: 20px;
    }
    
    .dealer-stat-number {
        font-size: 42px;
    }
    
    .dealer-stat-unit {
        font-size: 24px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .partner-program {
        padding: 30px 0;
    }
    .partner-program .section-title {
        font-size: 28px;
    }
    .partner-program .section-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
        margin-top: 5px;
    }
    .faq {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
    }
    .faq .section-title {
        font-size: 28px;
    }
    .faq .section-subtitle {
        font-size: 15px;
    }
    .faq-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dealers-stats-box {
        grid-template-columns: 1fr;
    }
    
    .dealer-stat {
        padding: 15px;
    }
}

/* Dealer Pricing Modal */
.dealer-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.dealer-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    position: relative;
    margin: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dealer-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.dealer-modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.dealer-modal-content {
    padding: 40px 35px;
}

.dealer-modal-content .form-header {
    margin-bottom: 25px;
    text-align: center;
}

.dealer-modal-content .form-header h6 {
    font-size: 24px;
    font-weight: 700;
    /* color: #1a1a2e; */
    margin-bottom: 10px;
}

.dealer-modal-content .form-header p {
    font-size: 14px;
    /* color: #6b7280; */
    line-height: 1.5;
}

.dealer-modal-form input,
.dealer-modal-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: Inter, sans-serif;
}

.dealer-modal-form input:focus,
.dealer-modal-form select:focus {
    outline: none;
    border-color: #0d9488;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.dealer-modal-form input::placeholder {
    color: #9ca3af;
}

.dealer-modal-form select {
    color: #6b7280;
    background: #fff;
    cursor: pointer;
}

.dealer-modal-form select option {
    color: #333;
}

.dealer-modal-form .form-disclaimer {
    font-size: 12px;
    color: #9ca3af;
    text-align: center;
    margin: 15px 0;
}

.dealer-modal-form .btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dealer-modal-form .btn-primary:hover {
    /* background: linear-gradient(135deg, #0f766e 0%, #115e59 100%); */
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

@media (max-width: 576px) {
    .dealer-modal-content {
        padding: 30px 20px;
    }
    
    .dealer-modal-content .form-header h6 {
        font-size: 20px;
    }
}






.contact-custom-close {
    color: #fff;
    text-shadow: 0 0 transparent;
}
@media (max-width: 767px) {
    .contact-custom-close {
        color: #000 !important;
    }
}
.contact-custom-close, .custom-close {
    top: 0;
    right: 0;
    z-index: 999;
    border: none;
    font-size: 24px;
    font-weight: 900;
    opacity: 1;
    position: absolute;
    background: 0 0;
    cursor: pointer;
}
@media (max-width: 576px) {
    .d-flex {
        text-align: center;
    }
}
@media (max-width: 767px) {
    .sideMainHead, .sideMainpara {
        text-align: left;
    }
}
.modal-body p {
    font-weight: 500;
    color: #666;
    margin: 0;
}
.sideMainpara {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #000 !important;
}
.box {
    background-color: #1fa0d6;
    padding: 20px;
}
.box.arrow-left:after {
    content: " ";
    position: absolute;
    left: 48%;
    top: 25px;
    border-top: 20px solid transparent;
    border-right: 20px solid #1fa0d6;
    border-left: none;
    border-bottom: 20px solid transparent;
}
.feedback-input {
    font-weight: 500;
    font-size: 18px;
    border-radius: 5px;
    line-height: 22px;
    background-color: transparent !important;
    border: 1px solid #fff;
    transition: .3s;
    padding: 13px;
    margin-bottom: 15px;
    box-sizing: border-box;
    width: 100%;
    outline: 0;
}
.sendEmail {
    width: 100%;
    background: #fff;
    border-radius: 50px !important;
    border: 0;
    color: #000;
    font-size: 20px;
    transition: .3s;
    margin-top: -4px;
}
@media (max-width: 767px) {
    .box.arrow-left:after {
        content: " ";
        position: absolute;
        left: -18px !important;
        top: 48% !important;
        border-top: 20px solid transparent;
        border-right: 20px solid #1fa0d6;
        border-left: none;
        border-bottom: 20px solid transparent;
    }
}