
/* =========================================================
   REZGLOBE RATE SHOPPING LANDING PAGE
   IMPORTANT:
   This stylesheet is used only by /rate-shopping/
========================================================= */

:root {
    --rs-blue: #043069;
    --rs-blue-dark: #043069;
    --rs-blue-light: #043069;
    --rs-purple: #043069;
    --rs-purple-dark: #043069;
    --rs-purple-light: #043069;
    --rs-text: #17191f;
    --rs-muted: #68717d;
    --rs-border: #e6e9ee;
    --rs-light: #f7f8fb;
    --rs-white: #ffffff;
    --rs-container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--rs-text);
    background: #fff;
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.rs-container {
    width: min(var(--rs-container), calc(100% - 80px));
    margin: 0 auto;
}

.rs-small-label {
    color: var(--rs-purple);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.rs-light-label {
    color: rgba(255,255,255,.78);
}



/* =========================================================
   HERO
========================================================= */

.rs-hero {
    position: relative;
    min-height: 555px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #eef0ec;
}

/* .rs-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-image: url('https://rezglobe.com/images/image1-home12.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
} */

/*
 * If the hero image is not uploaded yet, the gradient still gives
 * a clean background. Add the actual image at:
 *
 * /rate-shopping/images/hero/car-rate-hero.jpg
 */

.rs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(255,255,255,.02),
        rgba(255,255,255,0)
    );
}

.rs-hero-inner {
    position: relative;
    z-index: 2;
}

.rs-hero-copy {
    width: 58%;
    max-width: 690px;
    padding: 40px 0 105px;
}

.rs-hero-copy h1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2em;
    color: #000000;
}

.rs-hero-copy h1 span {
    color: var(--rs-purple);
}

.rs-hero-text {
    max-width: 575px;
    margin-top: 28px;
    color: #61656a;
    font-size: 18px;
    line-height: 1.8;
}

.rs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 35px;
}

.rs-btn {
    min-height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 0 36px;
    border-radius: 35px;
    font-size: 16px;
    font-weight: 700;
    transition: transform .25s ease, box-shadow .25s ease;
}

.rs-btn-purple {
    color: #fff;
    background: linear-gradient(100deg, #043069 , #043069 );
    box-shadow: 0 15px 35px rgba(137, 44, 230, .22);
}

.rs-btn-purple:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(137, 44, 230, .30);
}

.rs-btn span {
    font-size: 19px;
}

/* =========================================================
   OVERLAPPING PURPLE PANEL
========================================================= */

.rs-overlap-wrap {
    position: relative;
    z-index: 5;
    margin-top: -60px;
    padding-bottom: 75px;
}

.rs-purple-panel {
    position: relative;
    overflow: hidden;
    padding: 50px 50px 50px;
    border-radius: 15px;
    background:
        radial-gradient(circle at 0 0, #043069, transparent 40%),
        linear-gradient(110deg, #043069 0%, #043069 100%);
    /* box-shadow: 0 25px 55px #043069; */
}

.rs-panel-heading {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.rs-panel-heading h2 {
    /* margin-top: 10px; */
    color: #fff;
    /* font-family: "Plus Jakarta Sans", Arial, sans-serif; */
    font-size: clamp(32px, 3.5vw, 40px);
    line-height: 1.18;
    letter-spacing: -1.5px;
}

.rs-panel-heading h2 span {
    color: #fff;
}

.rs-panel-heading p {
    max-width: 680px;
    margin: 16px auto 0;
    color: rgba(255,255,255,.78);
    font-size: 15px;
}

.rs-three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 45px;
}

.rs-purple-card {
    /* min-height: 215px; */
    padding: 27px 30px;
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 13px;
    text-align: center;
    background: rgba(255,255,255,.035);
}

.rs-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: #fff;
    font-size: 35px;
    line-height: 1;
}

.rs-purple-card h3 {
    max-width: 250px;
    margin: 0 auto;
    color: #fff;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.35;
}

.rs-purple-card p {
    max-width: 270px;
    margin: 10px auto 0;
    color: rgba(255,255,255,.70);
    font-size: 12px;
    line-height: 1.65;
}

/* =========================================================
   CENTERED HEADINGS
========================================================= */

.rs-centered-heading {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.rs-centered-heading h2 {
    margin-top: 12px;
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 51px);
    line-height: 1.16;
    letter-spacing: -1.8px;
}

.rs-centered-heading h2 span {
    color: var(--rs-purple);
}

.rs-centered-heading > p {
    max-width: 760px;
    margin: 20px auto 0;
    color: var(--rs-muted);
    font-size: 16px;
    line-height: 1.85;
}

/* =========================================================
   INTRO
========================================================= */

.rs-intro-section {
    padding: 95px 0 115px;
    background: #fff;
}

.rs-feature-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 55px;
}

.rs-feature-mini {
    padding: 30px 30px 35px;
    text-align: center;
    border-bottom: 2px solid transparent;
    transition: .25s ease;
}

.rs-feature-mini:hover {
    border-color: var(--rs-purple);
    transform: translateY(-4px);
}

.rs-mini-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: var(--rs-purple);
    background: #f2e8ff;
    font-size: 25px;
}

.rs-feature-mini h3 {
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 18px;
}

.rs-feature-mini p {
    margin-top: 10px;
    color: var(--rs-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   SPLIT SECTIONS
========================================================= */

.rs-split-section {
    padding: 110px 0;
}

.rs-light-section {
    background: #f8f9fb;
}

.rs-white-section {
    background: #fff;
}

.rs-split-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: center;
    gap: 75px;
}

.rs-split-grid.rs-reverse-mobile {
    grid-template-columns: 1.18fr .82fr;
}

.rs-split-content {
    max-width: 510px;
}

.rs-split-content h2 {
    margin-top: 12px;
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.16;
    letter-spacing: -1.7px;
}

.rs-split-content h2 span {
    color: var(--rs-purple);
}

.rs-split-content > p {
    margin-top: 21px;
    color: var(--rs-muted);
    font-size: 15px;
    line-height: 1.9;
}

.rs-check-list {
    list-style: none;
    margin-top: 25px;
}

.rs-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 11px 0;
    color: #4f5965;
    font-size: 13px;
    font-weight: 600;
}

.rs-check-list li span {
    width: 21px;
    height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 21px;
    border-radius: 50%;
    color: #fff;
    background: var(--rs-purple);
    font-size: 10px;
}

.rs-text-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: var(--rs-purple);
    font-size: 13px;
    font-weight: 800;
}

.rs-text-button:hover {
    gap: 15px;
}

/* =========================================================
   MOCK BROWSER / PRODUCT SCREEN
========================================================= */

.rs-browser {
    overflow: hidden;
    border: 1px solid #dfe4eb;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 25px 60px rgba(21, 34, 52, .12);
}

.rs-browser-bar {
    height: 47px;
    display: flex;
    align-items: center;
    padding: 0 17px;
    border-bottom: 1px solid #e8ecf1;
    background: #fafbfd;
}

.rs-browser-dots {
    display: flex;
    gap: 5px;
}

.rs-browser-dots i {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: #ccd2da;
}

.rs-browser-bar > span {
    margin-left: 18px;
    color: #7a8491;
    font-size: 10px;
    font-weight: 700;
}

.rs-browser-body {
    padding: 25px;
}

.rs-mock-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
}

.rs-mock-title small {
    display: block;
    color: #9ba4af;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.rs-mock-title strong {
    display: block;
    margin-top: 3px;
    color: var(--rs-blue-dark);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 16px;
}

.rs-mock-date,
.rs-mock-title button {
    padding: 8px 11px;
    border: 1px solid #e2e7ed;
    border-radius: 6px;
    color: #74808d;
    background: #fff;
    font-size: 9px;
}

.rs-mock-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.rs-mock-stats > div {
    padding: 15px;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
}

.rs-mock-stats small {
    display: block;
    color: #929ba6;
    font-size: 8px;
}

.rs-mock-stats strong {
    display: inline-block;
    margin-top: 4px;
    color: var(--rs-blue-dark);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 22px;
}

.rs-mock-stats em {
    display: block;
    margin-top: 2px;
    color: #18a26b;
    font-size: 8px;
    font-style: normal;
    font-weight: 700;
}

.rs-mock-chart {
    display: flex;
    height: 190px;
    gap: 12px;
    margin-top: 14px;
    padding: 15px;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
}

.rs-chart-labels {
    width: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #a1a9b3;
    font-size: 7px;
}

.rs-chart-lines {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.rs-chart-lines > i {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: #edf0f3;
}

.rs-chart-lines > i:nth-child(1) { top: 0; }
.rs-chart-lines > i:nth-child(2) { top: 33%; }
.rs-chart-lines > i:nth-child(3) { top: 66%; }
.rs-chart-lines > i:nth-child(4) { bottom: 0; }

.rs-chart-lines > b {
    position: absolute;
    left: 0;
    width: 100%;
    height: 70%;
    border-top: 3px solid;
    border-radius: 50%;
}

.rs-line-a {
    top: 24%;
    border-color: var(--rs-purple);
    transform: rotate(-5deg) skewY(-7deg);
}

.rs-line-b {
    top: 38%;
    border-color: #8795a5;
    transform: rotate(3deg) skewY(6deg);
}

.rs-line-c {
    top: 51%;
    border-color: #c0c8d1;
    transform: rotate(-2deg) skewY(-3deg);
}

.rs-mock-table {
    margin-top: 14px;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    overflow: hidden;
}

.rs-mock-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 10px;
    align-items: center;
    min-height: 39px;
    padding: 0 13px;
    border-bottom: 1px solid #eef1f4;
    color: #697584;
    font-size: 9px;
}

.rs-mock-row:last-child {
    border-bottom: 0;
}

.rs-table-head {
    min-height: 34px;
    color: #9aa3ae;
    background: #fafbfd;
    font-weight: 700;
}

.rs-mock-row strong {
    color: var(--rs-blue-dark);
    font-size: 10px;
}

.rs-mock-row em {
    color: #8995a2;
    font-style: normal;
    font-size: 8px;
}

.rs-mock-row .good {
    color: #159e68;
}

/* =========================================================
   KEY FEATURES
========================================================= */

.rs-key-features {
    
    background: #f8f9fb;
}

.rs-key-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 55px;
}

.rs-key-grid article {
    position: relative;
    min-height: 255px;
    padding: 32px;
    border: 1px solid #e2e7ed;
    border-radius: 15px;
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

.rs-key-grid article:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(32, 45, 63, .09);
}

.rs-key-number {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #e8eaf0;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 27px;
    font-weight: 800;
}

.rs-key-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 12px;
    color: var(--rs-purple);
    background: #f2e8ff;
    font-size: 20px;
}

.rs-key-grid h3 {
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 18px;
}

.rs-key-grid p {
    margin-top: 10px;
    color: var(--rs-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   PRICING MOCKUP
========================================================= */

.rs-price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.rs-price-cards > div {
    padding: 13px;
    border: 1px solid #e7ebf0;
    border-radius: 7px;
}

.rs-price-cards small {
    display: block;
    color: #929ca7;
    font-size: 7px;
}

.rs-price-cards strong {
    display: block;
    margin-top: 4px;
    color: var(--rs-blue-dark);
    font-size: 18px;
}

.rs-price-bars {
    margin-top: 20px;
}

.rs-price-bars > div {
    display: grid;
    grid-template-columns: 85px 1fr 42px;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
}

.rs-price-bars span {
    color: #737e8b;
    font-size: 8px;
}

.rs-price-bars b {
    height: 9px;
    overflow: hidden;
    border-radius: 20px;
    background: #edf0f4;
}

.rs-price-bars b i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #043069, #043069);
}

.rs-price-bars strong {
    color: #384453;
    font-size: 9px;
    text-align: right;
}

/* =========================================================
   REPORTS
========================================================= */

.rs-report-section {
    padding: 115px 0;
    background: #fff;
}

.rs-report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 55px;
}

.rs-report-grid article {
    padding: 38px 30px;
    text-align: center;
    border: 1px solid #e3e7ed;
    border-radius: 15px;
    background: #fff;
}

.rs-report-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border-radius: 50%;
    color: var(--rs-purple);
    background: #f2e8ff;
    font-size: 23px;
    font-weight: 800;
}

.rs-report-grid h3 {
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 19px;
}

.rs-report-grid p {
    margin-top: 11px;
    color: var(--rs-muted);
    font-size: 13px;
    line-height: 1.75;
}

/* =========================================================
   STATS
========================================================= */

.rs-stat-section {
    padding: 0 0 115px;
    background: #fff;
}

.rs-stat-box {
    position: relative;
    overflow: hidden;
    padding: 65px;
    border-radius: 17px;
    background:
        radial-gradient(circle at 100% 0, #043069, transparent 35%),
        linear-gradient(105deg, #043069, #043069);
    box-shadow: 0 25px 55px rgba(87, 30, 137, .18);
}

.rs-stat-copy {
    max-width: 700px;
}

.rs-stat-copy .rs-small-label {
    color: #e0c2ff;
}

.rs-stat-copy h2 {
    margin-top: 10px;
    color: #fff;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.16;
    letter-spacing: -1.6px;
}

.rs-stat-copy h2 span {
    color: #fff;
}

.rs-stat-copy p {
    max-width: 650px;
    margin-top: 18px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
}

.rs-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 45px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.rs-stat-grid > div {
    padding: 25px 18px 0;
    border-right: 1px solid rgba(255,255,255,.18);
}

.rs-stat-grid > div:last-child {
    border-right: 0;
}

.rs-stat-grid strong {
    display: block;
    color: #fff;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 29px;
}

.rs-stat-grid span {
    display: block;
    margin-top: 2px;
    color: rgba(255,255,255,.67);
    font-size: 11px;
}

/* =========================================================
   TESTIMONIALS
========================================================= */

.rs-testimonial-section {
    padding: 115px 0;
    background: #f8f9fb;
}

.rs-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 55px;
}

.rs-testimonial-grid article {
    padding: 32px;
    border: 1px solid #e2e7ed;
    border-radius: 15px;
    background: #fff;
}

.rs-quote {
    color: var(--rs-purple);
    font-family: Georgia, serif;
    font-size: 50px;
    line-height: .7;
}

.rs-testimonial-grid article > p {
    min-height: 125px;
    margin-top: 18px;
    color: #5d6773;
    font-size: 13px;
    line-height: 1.85;
}

.rs-person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #edf0f3;
}

.rs-person > div {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: var(--rs-blue);
    font-size: 10px;
    font-weight: 800;
}

.rs-person span {
    color: #8994a1;
    font-size: 9px;
}

.rs-person strong {
    display: block;
    color: var(--rs-text);
    font-size: 11px;
}

/* =========================================================
   CONTENT / BLOG
========================================================= */

.rs-content-section {
    padding: 115px 0;
    background: #fff;
}

.rs-content-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.rs-content-heading h2 {
    margin-top: 10px;
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.15;
    letter-spacing: -1.6px;
}

.rs-content-heading h2 span {
    color: var(--rs-purple);
}

.rs-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.rs-content-grid article {
    overflow: hidden;
    border: 1px solid #e2e7ed;
    border-radius: 15px;
    background: #fff;
}

.rs-content-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rs-purple);
    background:
        radial-gradient(circle at 30% 30%, rgba(159,55,246,.15), transparent 30%),
        linear-gradient(135deg, #f4eaff, #e9e3f6);
    font-size: 38px;
}

.rs-content-body {
    padding: 27px;
}

.rs-content-body small {
    color: var(--rs-purple);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.rs-content-body h3 {
    margin-top: 9px;
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.4;
}

.rs-content-body p {
    margin-top: 10px;
    color: var(--rs-muted);
    font-size: 12px;
    line-height: 1.7;
}

.rs-content-body a {
    display: inline-block;
    margin-top: 17px;
    color: var(--rs-purple);
    font-size: 11px;
    font-weight: 800;
}

/* =========================================================
   FINAL CTA
========================================================= */

.rs-final-section {
    padding: 105px 0;
    background: #f7f8fb;
}

.rs-final-inner {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.rs-purple-label {
    color: var(--rs-purple);
}

.rs-final-inner h2 {
    margin-top: 12px;
    color: var(--rs-text);
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    font-size: clamp(36px, 4.2vw, 54px);
    line-height: 1.15;
    letter-spacing: -1.8px;
}

.rs-final-inner h2 span {
    color: var(--rs-purple);
}

.rs-final-inner p {
    max-width: 650px;
    margin: 19px auto 0;
    color: var(--rs-muted);
    font-size: 16px;
    line-height: 1.85;
}

.rs-final-inner .rs-btn {
    margin-top: 30px;
}

/* =========================================================
   FOOTER
========================================================= */

.rs-footer {
    padding: 70px 0 0;
    color: #aebdd0;
    background: #071f3b;
}

.rs-footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr .95fr 1.15fr;
    gap: 55px;
    padding-bottom: 55px;
}

.rs-footer-logo {
    display: inline-flex;
    padding: 8px 11px;
    border-radius: 6px;
    background: #fff;
}

.rs-footer-logo img {
    width: 155px;
}

.rs-footer-brand p {
    max-width: 310px;
    margin-top: 20px;
    color: #94a8bf;
    font-size: 12px;
    line-height: 1.8;
}

.rs-social {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.rs-social a {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    color: #c5d1df;
    font-size: 10px;
}

.rs-social a:hover {
    color: #fff;
    background: var(--rs-purple);
    border-color: var(--rs-purple);
}

.rs-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rs-footer-column h4 {
    margin-bottom: 20px;
    color: #fff;
    
    font-size: 13px;
}

.rs-footer-column > a {
    color: #94a8bf;
    font-size: 20px;
}

.rs-footer-column > a:hover {
    color: #fff;
}

.rs-footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    color: #94a8bf;
    font-size: 11px;
}

.rs-footer-contact p span {
    color: #a64dff;
}

.rs-footer-bottom {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.rs-footer-bottom p,
.rs-footer-bottom a {
    color: #71879f;
    font-size: 10px;
}

.rs-footer-bottom > div {
    display: flex;
    gap: 20px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .rs-container {
        width: min(var(--rs-container), calc(100% - 50px));
    }

    .rs-navigation {
        gap: 20px;
    }

    .rs-navigation > a {
        font-size: 13px;
    }

    .rs-hero-copy {
        width: 62%;
    }

    .rs-purple-panel {
        padding-left: 45px;
        padding-right: 45px;
    }

    .rs-three-cards {
        gap: 20px;
    }

    .rs-split-grid,
    .rs-split-grid.rs-reverse-mobile {
        gap: 45px;
    }

    .rs-footer-grid {
        gap: 30px;
    }
}

@media (max-width: 900px) {

    .rs-site-header {
        height: 76px;
    }

    .rs-header-inner {
        position: relative;
    }

    .rs-logo img {
        width: 150px;
    }

    .rs-mobile-toggle {
        display: block;
    }

    .rs-navigation {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid #e8ebef;
        background: #fff;
        box-shadow: 0 20px 35px rgba(20,30,45,.10);
    }

    .rs-navigation.rs-menu-open {
        display: flex;
    }

    .rs-navigation > a {
        padding: 12px;
    }

    .rs-navigation > a:not(.rs-login)::after {
        display: none;
    }

    .rs-navigation .rs-login {
        margin-top: 6px;
        text-align: center;
    }

    .rs-hero {
        min-height: 570px;
    }

    .rs-hero-copy {
        width: 65%;
    }

    .rs-hero-copy h1 {
        font-size: 52px;
    }

    .rs-three-cards,
    .rs-feature-strip,
    .rs-key-grid,
    .rs-report-grid,
    .rs-testimonial-grid,
    .rs-content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-purple-card:last-child,
    .rs-feature-mini:last-child,
    .rs-key-grid article:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        width: 100%;
        margin: auto;
    }

    .rs-split-grid,
    .rs-split-grid.rs-reverse-mobile {
        grid-template-columns: 1fr;
    }

    .rs-split-content {
        max-width: 700px;
    }

    .rs-split-grid.rs-reverse-mobile .rs-split-content {
        order: -1;
    }

    .rs-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rs-stat-grid > div:nth-child(2) {
        border-right: 0;
    }

    .rs-stat-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.18);
    }

    .rs-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {

    .rs-container {
        width: calc(100% - 30px);
    }

    .rs-hero {
        min-height: 620px;
    }

    .rs-hero-image {
        background:
            linear-gradient(
                180deg,
                rgba(239,241,237,.96) 0%,
                rgba(239,241,237,.92) 52%,
                rgba(239,241,237,.58) 100%
            ),
            url("../images/hero/car-rate-hero.jpg") center / cover no-repeat;
    }

    .rs-hero-copy {
        width: 100%;
        padding: 55px 0 130px;
        text-align: center;
    }

    .rs-hero-copy h1 {
        font-size: 40px;
        letter-spacing: -1.7px;
    }

    .rs-hero-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .rs-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .rs-btn {
        width: 100%;
        min-height: 58px;
        font-size: 14px;
    }

    .rs-overlap-wrap {
        margin-top: -55px;
    }

    .rs-purple-panel {
        padding: 40px 20px 45px;
        border-radius: 12px;
    }

    .rs-panel-heading h2 {
        font-size: 31px;
    }

    .rs-three-cards,
    .rs-feature-strip,
    .rs-key-grid,
    .rs-report-grid,
    .rs-testimonial-grid,
    .rs-content-grid {
        grid-template-columns: 1fr;
    }

    .rs-purple-card:last-child,
    .rs-feature-mini:last-child,
    .rs-key-grid article:last-child {
        grid-column: auto;
        max-width: none;
    }

    .rs-purple-card {
        min-height: auto;
    }

    .rs-intro-section,
    .rs-split-section,
    .rs-key-features,
    .rs-report-section,
    .rs-testimonial-section,
    .rs-content-section {
        padding: 75px 0;
    }

    .rs-centered-heading h2,
    .rs-split-content h2,
    .rs-content-heading h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .rs-browser-body {
        padding: 15px;
    }

    .rs-mock-stats {
        grid-template-columns: 1fr;
    }

    .rs-mock-chart {
        height: 145px;
    }

    .rs-mock-row {
        min-width: 430px;
    }

    .rs-mock-table {
        overflow-x: auto;
    }

    .rs-price-cards {
        grid-template-columns: 1fr;
    }

    .rs-stat-box {
        padding: 40px 25px;
    }

    .rs-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rs-stat-grid > div {
        padding-left: 10px;
        padding-right: 10px;
    }

    .rs-stat-grid > div:nth-child(2) {
        border-right: 0;
    }

    .rs-content-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .rs-footer {
        padding-top: 55px;
    }

    .rs-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .rs-footer-bottom {
        min-height: auto;
        padding: 20px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .rs-footer-bottom > div {
        flex-wrap: wrap;
    }
}

@media (max-width: 430px) {

    .rs-hero-copy h1 {
        font-size: 35px;
    }

    .rs-panel-heading h2 {
        font-size: 28px;
    }

    .rs-centered-heading h2,
    .rs-split-content h2,
    .rs-content-heading h2,
    .rs-final-inner h2 {
        font-size: 30px;
    }

    .rs-stat-grid {
        grid-template-columns: 1fr;
    }

    .rs-stat-grid > div {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.18);
        padding-bottom: 16px;
    }

    .rs-stat-grid > div:last-child {
        border-bottom: 0;
    }
}

/* =========================================================
   KEY FEATURES - REV-AI STYLE
========================================================= */

.rs-key-features {
    position: relative;
    /* min-height: 700px; */
    overflow: hidden;
    background: #f8fbfb;
}

/* .rs-key-features-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;

    background-image: url('https://rezglobe.com/images/image1-home12.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;

    z-index: 0;
} */

.rs-key-features-inner {
    position: relative;
    z-index: 2;

    /* min-height: 700px; */

    display: flex;
    align-items: center;
}

.rs-key-features-content {
    width: 100%;
    padding: 70px 0;
}

.rs-key-features-content h2 {
    margin: 0 0 42px;

    /* font-family: 'Plus Jakarta Sans', sans-serif; */
    font-size: 48px;
    line-height: 1.15;
    font-weight: 600;

    color: #222;
}

/* .rs-feature-list {
    display: flex;
    flex-direction: row;
    gap: 18px;
} */
.rs-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 35px;
}
/* .rs-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;

    max-width: 650px;
} */
.rs-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    max-width: none;
}
.rs-feature-icon {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;

    border-radius: 50%;

    background: #043069;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    font-weight: 400;
}

.rs-feature-item h3 {
    margin: 7px 0 2px;

    font-family: 'DM Sans', sans-serif;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 500;

    color: #171717;
}

.rs-feature-item p {
    margin: 0;

    max-width: 560px;

    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;

    color: #666;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .rs-key-features {
        min-height: auto;
    }
    .rs-feature-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 25px;
    }

    /* .rs-key-features-bg {
        position: relative;
        width: 100%;
        height: 400px;
        order: 2;

        background-position: center;
    } */

    .rs-key-features-inner {
        min-height: auto;
    }

    .rs-key-features-content {
        width: 100%;
        padding: 60px 0 40px;
    }

    .rs-key-features-content h2 {
        font-size: 40px;
    }

    .rs-feature-item {
        max-width: 100%;
    }
}


@media (max-width: 600px) {

    .rs-key-features-content {
        padding: 45px 20px 35px;
    }
    .rs-feature-list {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .rs-key-features-content h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .rs-feature-item {
        gap: 16px;
    }

    .rs-feature-icon {
        flex: 0 0 58px;
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .rs-feature-item h3 {
        font-size: 19px;
    }

    .rs-feature-item p {
        font-size: 15px;
    }

}