/* Reset and Base Styles */
* {
    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;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* padding: 15px 0; */
}

.header-container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

header nav ul li a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

header nav ul li a:hover {
    color: #20b2aa;
}

.header-btn {
    /* background: linear-gradient(135deg, #20b2aa 0%, #2ecc71 100%); */
    background: linear-gradient(135deg, #20b2aa 0%, #239d57 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.2s;
}

.header-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.4);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #20b2aa 0%, #2ecc71 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.4);
}

.btn-secondary {
    background: white;
    color: #20b2aa;
    border: 2px solid #20b2aa;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #20b2aa;
    color: white;
}

.btn-secondary.white-border {
    background: #fff;
    color: #6c757d;
    border-color: white;
}

.btn-secondary.white-border:hover {
    background: white;
    color: #20b2aa;
}

/* 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/img01.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; */
}

.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: 16px;
    line-height: 1.7;
    padding-right: 50px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.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: 10px;
}

.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: 27px;
    font-weight: 600;
    margin: 0 0 0px 0;
    color: white;
    text-align: left;
}

.form-header p {
    font-size: 13px;
    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;
}

.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 {
    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;
}

.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-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;
    text-align: center;
    width: fit-content;
}
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #4a5568;
    /* margin-bottom: 15px; */
    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; */
}
.social-proof .container {
    max-width: 928px;
    margin: 0 auto;
    padding: 0 20px;
} 
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    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 rgba(200, 220, 220, 0.5);
}

.stat-card-number {
    font-size: 26px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 4px;
}

.stat-card-text {
    font-size: 14px;
    color: #64748b;
    /* font-weight: 500; */
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding-bottom: 34px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    background: linear-gradient(180deg, rgba(220, 244, 247, .8) 0, rgba(220, 244, 247, .3) 100%);
    border-radius: 15px;
    border: 1px dashed #0000003d;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FF6634;
    font-size: 31px;
    margin-bottom: 15px;
}
.stars img {
    width: 33%;
}
.testimonial-text {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
    /* font-style: italic; */
}

.testimonial-author {
    /* border-top: 1px solid #ddd; */
    padding-top: 15px;
    margin-top: auto;
}

.author-name {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0px;
}

.author-title {
    font-size: 14px;
    color: #64748b;
}

/* Problems Section */
.problems {
    background: #E8F5FD;
    margin-top: 63px;
    padding-bottom: 120px;
}
.problems .section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 677px;
    text-align: center;
    margin: 0 auto 50px;
}
.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 3px 3px 8px 8px rgba(0, 0, 0, 0.05);
}

.problem-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.problem-title {
    font-size: 19px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 30px;
}

.problem-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 14px;
}

/* Solutions Section */
.solutions {
    background: white;
    margin-top: 55px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 87px;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-icon-wrapper .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E3F8F1;
    /* border: 1px solid rgba(144, 238, 144, 0.5); */
    border-radius: 12px;
    padding: 7px;
    font-size: 30px;
    margin: 0;
    flex-shrink: 0;
}
.feature-icon img {
    width: 100%;
    height: 100%;
}
.feature-icon-wrapper .feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #4a5568;
    margin: 0;
}

.feature-card {
    background: #E3F8F1;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 4px 4px 10px 9px rgba(0, 0, 0, 0.05);
}
.feature-title-bottom {
    text-align: center;
    color: #4a5568;
    font-size: 29px;
    font-weight: 700;
    margin-top: 60px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
}

.feature-description {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #4a5568;
    padding: 3px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0px 0.2px 0.8px #4a5568;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

/* Payment Section */
.payment-section {
    position: relative;
    padding: 94px 0 100px;
    overflow: hidden;
    margin: 40px 0;
}
.payment-section .section-title {
    font-size: 39px;
    max-width: 867px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    margin: 0 auto 15px;
    display: block;
}
.payment-section .section-subtitle {
    font-size: 14px;
    color: #fff;
    margin-bottom: 50px;
    max-width: 473px;
    text-align: center;
    margin: 0 auto 50px;
}
.payment-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/img02.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background: linear-gradient(135deg, #1a1f3a 0%, #2c3e50 100%); */
    z-index: 0;
}

.payment-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a1f3a" width="1200" height="800"/><circle cx="200" cy="200" r="100" fill="%232c3e50" opacity="0.3"/><circle cx="1000" cy="600" r="150" fill="%232c3e50" opacity="0.2"/></svg>') center/cover; */
    opacity: 0.5;
}

.payment-section .container {
    position: relative;
    z-index: 1;
    max-width: 1283px;
}

.payment-content {
    display: grid;
    grid-template-columns: 498px 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.payment-savings-box {
    background: #445565;
    border-radius: 12px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 67vh;
}

.savings-card-content {
    padding: 40px 40px 0 40px;
    flex: 1;
}

.savings-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-align: center;
    line-height: 58px;
}
.savings-title span {
    font-size: 54px;
}
.savings-subtitle {
    font-size: 21px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.savings-example {
    margin-top: 20px;
    margin-bottom: 0;
}

.example-label {
    color: #fff;
    margin-bottom: 10px;
    font-size: 36px;
    text-align: center;
    font-weight: 600;
}
.payment-cta-text{
    color: white;
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    margin: 40px 0 30px 0;
}
.fee-comparison {
    margin-bottom: 0;
    margin-top: 0;
}

.fee-item {
    /* display: flex; */
    align-items: center;
    gap: 10px;
    /* padding: 12px; */
    margin-bottom: 0px;
    border-radius: 6px;
    font-size: 14px;
    padding-left: 32px;
    /* text-align: center;
    justify-content: center; */
}

.fee-item.negative {
    /* background: rgba(231, 76, 60, 0.2); */
    color: #ffff;
}

.fee-item.positive {
    /* background: rgba(46, 204, 113, 0.2); */
    color: #fff;
}

.fee-icon {
    font-size: 20px;
    font-weight: bold;
}

.savings-amount {
    font-size: 29px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 21px 20px;
    background: #253242;
    /* border-top: 1px solid rgba(46, 204, 113, 0.3); */
    /* margin-top: auto; */
}

.payment-features {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 20px;
}

.payment-feature-box {
    display: flex;
    gap: 20px;
    background: #253242;
    padding: 18px 11px;
    border-radius: 12px;
    align-items: center;
}
.payment-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #253242;
    padding: 16px;
    border-radius: 12px;
}
.payment-icon {
    font-size: 31px;
}
.payment-icon img {
    width: 85%;
}
.payment-feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.payment-feature-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.payment-feature-title {
    font-size: 23px;
    font-weight: 600;
    color: #B6CBE0;
    margin-bottom: 0;
}

.payment-feature-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    padding-right: 88px;
}


/* Getting Started Section */
.getting-started {
    /* background: #E3F8F1; */
    margin-top: 91px;
}

.getting-started .section-label {
    margin: 0 auto 20px auto;
}

.getting-started .section-title {
    font-size: 38px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 5px;
    line-height: 1.2;
    text-align: center;
}
.getting-started .section-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
    text-align: center;
}
.steps-grid { 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: #E3F8F1;
    padding: 40px 30px;
    border-radius: 47px;
    text-align: center;
    box-shadow: 3px 3px 7px 9px #D3F0EA;
    position: relative;
}

.step-number {
    position: absolute;
    top: -19px;
    right: 45%;
    z-index: 1;
    width: 45px;
    height: 45px;
    background: #16AAB6;
    border: 1px dashed #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.step-title {
    font-size: 27px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 15px;
    padding-top: 62px;
}

.step-text {
    color: #6c757d;
    line-height: 1.7;
    font-size: 14px;
    padding: 0 26px;
}

/* FAQ Section */
.faq {
    background: white;
    margin-top: 50px;
    margin-bottom: 80px;
}
.faq .container {
    max-width: 940px;
}
.faq .section-title {
    font-size: 40px;
}
.faq .section-subtitle {
    font-size: 20px;
}
.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: #6c757d;
    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;
}


/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 40px 0 100px 0;
    overflow: hidden;
}
.final-cta .section-title {
    font-size: 37px;
    max-width: auto;
}
.final-cta .section-subtitle {font-size: 19px;}
.final-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/img03.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(3px);
    z-index: 0;
}

.final-cta-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(26, 31, 58, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%); */
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1166px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin: 50px 0;
}

.benefit-card {
    background: rgba(44, 62, 80, 0.7);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.benefit-icon img {
    width: 18%;
}
.benefit-text {
    font-size: 21px;
    font-weight: 700;
    padding: 0 14px;
    color: white;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.final-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-middle {
        display: none;
    }
    
    .stats-grid,
    .testimonials-grid,
    .features-grid,
    .payment-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .header-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: row;
        width: 100%;
        margin: 0 auto;
    }
    
    .stats-grid,
    .testimonials-grid,
    .features-grid,
    .problems-grid,
    .payment-content,
    .payment-features,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        display: grid;
        gap: 42px;
    }
    .fee-item {
        padding-left: 0;
    }
    .savings-title {
        line-height: 37px;
    }
    .hero-buttons,
    .section-cta {
        flex-direction: column;
    }
    
    .top-demo-btn {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        display: block;
    }
    section {
        padding: 20px 0;
    }
    .solutions {
        margin-top: 0;
    }   
    .payment-section {
        padding: 0;
        padding-bottom: 50px;
    }
    .getting-started {
        margin-top: 0;
    }
    .steps-grid {
        display: block;
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
    .step-card {
        margin-bottom: 57px;
    }
    .faq {
        margin-top: 0;
        margin-bottom: 0;
    }
    .faq-list {
        display: block;
    }
    .faq-item {
        margin-bottom: 26px;
    }
    .section-cta1 {
        display: block;
    }
    .section-cta1 .btn-gradient {
        width: 100%;
        margin-bottom: 20px;
    }
    .section-cta1 .btn-custom-order {
        width: 100%;
    }
    .payment-feature-text {
        padding-right: 0;
    }
    .hero-subtitle {
        padding-right: 0;
    }
    .payment-savings-box {
        height: auto;
    }
}
.bottom-text {
    color: #fff;
    font-size: 5px;
    position: relative;
    bottom: 2px;
}

/* Demo Modal Popup Styles */
.demo-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;
    backdrop-filter: blur(4px);
}

.demo-modal {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.demo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease;
}

.demo-modal-close:hover {
    color: #e0e0e0;
}

.demo-modal-content {
    padding: 0;
}

.demo-modal-content .form-header {
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    padding: 25px 30px;
    border-radius: 20px 20px 0 0;
}

.demo-modal-content .form-header h6 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.demo-modal-content .form-header p {
    font-size: 14px;
    color: #fff;
    line-height: 1.5;
}

.demo-modal-form {
    padding: 25px 30px 30px;
}

.demo-modal-form input,
.demo-modal-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: Inter, sans-serif;
}

.demo-modal-form input:focus,
.demo-modal-form select:focus {
    outline: none;
    border-color: #14b8a6;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
}

.demo-modal-form input::placeholder {
    color: #9ca3af;
}

.demo-modal-form select {
    color: #9ca3af;
    appearance: auto;
}

.demo-modal-form select option {
    color: #333;
}

.demo-modal-form .form-disclaimer {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

.demo-modal-form .btn-primary {
    width: 100%;
    padding: 14px;
    background: linear-gradient(90deg, #009644 0, #18adc0 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.demo-modal-form .btn-primary:hover {
    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: 480px) {
    .demo-modal {
        width: 95%;
        max-height: 95vh;
    }
    
    .demo-modal-content .form-header {
        padding: 20px;
    }
    
    .demo-modal-content .form-header h6 {
        font-size: 20px;
    }
    
    .demo-modal-form {
        padding: 20px;
    }
}

